ETH Price: $2,680.10 (+1.89%)
Gas: 1 Gwei

Token

Remittance Token (Remco)
 

Overview

Max Total Supply

3,000,000,000 Remco

Holders

698 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 8 Decimals)

Balance
3,989.130605 Remco

Value
$0.00
0x56d2a689f4e8c4c4a62a72eb3a287ab93a065cb8
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

REMCO's Token-Generating Platform’s APIs allow Businesses/Financial Institutions and Central banks to mint programmable Tokens that can incorporate stable coins, CBDCs and other assets, and leverage distributed ledger advantages at speed and scale.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
RemcoToken

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-04-12
*/

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

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 `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);

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

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

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

    /**
     * @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, _allowances[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 = _allowances[owner][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

abstract contract Ownable is Context {
    address private _owner;

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

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

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

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

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

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

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

contract RemcoToken is ERC20, Ownable {
    constructor(string memory name, string memory symbol, uint256 initialSupply) ERC20(name, symbol) {
        _mint(msg.sender, initialSupply);
    }

	function mint(address account, uint256 amount) public onlyOwner {
		_mint(account, amount);
    }

    function burn(uint256 amount) public {
		_burn(msg.sender, amount);
	}

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint256","name":"initialSupply","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":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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":"amount","type":"uint256"}],"name":"burn","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":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","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"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604051620025453803806200254583398181016040528101906200003791906200043e565b8282816003908051906020019062000051929190620002f9565b5080600490805190602001906200006a929190620002f9565b5050506200008d62000081620000a860201b60201c565b620000b060201b60201c565b6200009f33826200017660201b60201c565b505050620007bd565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620001e9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001e09062000510565b60405180910390fd5b620001fd60008383620002ef60201b60201c565b8060026000828254620002119190620005bf565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620002689190620005bf565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620002cf919062000532565b60405180910390a3620002eb60008383620002f460201b60201c565b5050565b505050565b505050565b82805462000307906200065c565b90600052602060002090601f0160209004810192826200032b576000855562000377565b82601f106200034657805160ff191683800117855562000377565b8280016001018555821562000377579182015b828111156200037657825182559160200191906001019062000359565b5b5090506200038691906200038a565b5090565b5b80821115620003a55760008160009055506001016200038b565b5090565b6000620003c0620003ba8462000578565b6200054f565b905082815260208101848484011115620003df57620003de6200075a565b5b620003ec84828562000626565b509392505050565b600082601f8301126200040c576200040b62000755565b5b81516200041e848260208601620003a9565b91505092915050565b6000815190506200043881620007a3565b92915050565b6000806000606084860312156200045a576200045962000764565b5b600084015167ffffffffffffffff8111156200047b576200047a6200075f565b5b6200048986828701620003f4565b935050602084015167ffffffffffffffff811115620004ad57620004ac6200075f565b5b620004bb86828701620003f4565b9250506040620004ce8682870162000427565b9150509250925092565b6000620004e7601f83620005ae565b9150620004f4826200077a565b602082019050919050565b6200050a816200061c565b82525050565b600060208201905081810360008301526200052b81620004d8565b9050919050565b6000602082019050620005496000830184620004ff565b92915050565b60006200055b6200056e565b905062000569828262000692565b919050565b6000604051905090565b600067ffffffffffffffff82111562000596576200059562000726565b5b620005a18262000769565b9050602081019050919050565b600082825260208201905092915050565b6000620005cc826200061c565b9150620005d9836200061c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620006115762000610620006c8565b5b828201905092915050565b6000819050919050565b60005b838110156200064657808201518184015260208101905062000629565b8381111562000656576000848401525b50505050565b600060028204905060018216806200067557607f821691505b602082108114156200068c576200068b620006f7565b5b50919050565b6200069d8262000769565b810181811067ffffffffffffffff82111715620006bf57620006be62000726565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b620007ae816200061c565b8114620007ba57600080fd5b50565b611d7880620007cd6000396000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c806370a0823111610097578063a457c2d711610066578063a457c2d71461029d578063a9059cbb146102cd578063dd62ed3e146102fd578063f2fde38b1461032d57610100565b806370a0823114610227578063715018a6146102575780638da5cb5b1461026157806395d89b411461027f57610100565b8063313ce567116100d3578063313ce567146101a157806339509351146101bf57806340c10f19146101ef57806342966c681461020b57610100565b806306fdde0314610105578063095ea7b31461012357806318160ddd1461015357806323b872dd14610171575b600080fd5b61010d610349565b60405161011a9190611626565b60405180910390f35b61013d6004803603810190610138919061136a565b6103db565b60405161014a919061160b565b60405180910390f35b61015b6103fe565b60405161016891906117c8565b60405180910390f35b61018b60048036038101906101869190611317565b610408565b604051610198919061160b565b60405180910390f35b6101a9610437565b6040516101b691906117e3565b60405180910390f35b6101d960048036038101906101d4919061136a565b610440565b6040516101e6919061160b565b60405180910390f35b6102096004803603810190610204919061136a565b6104ea565b005b610225600480360381019061022091906113aa565b610574565b005b610241600480360381019061023c91906112aa565b610581565b60405161024e91906117c8565b60405180910390f35b61025f6105c9565b005b610269610651565b60405161027691906115f0565b60405180910390f35b61028761067b565b6040516102949190611626565b60405180910390f35b6102b760048036038101906102b2919061136a565b61070d565b6040516102c4919061160b565b60405180910390f35b6102e760048036038101906102e2919061136a565b6107f7565b6040516102f4919061160b565b60405180910390f35b610317600480360381019061031291906112d7565b61081a565b60405161032491906117c8565b60405180910390f35b610347600480360381019061034291906112aa565b6108a1565b005b6060600380546103589061192c565b80601f01602080910402602001604051908101604052809291908181526020018280546103849061192c565b80156103d15780601f106103a6576101008083540402835291602001916103d1565b820191906000526020600020905b8154815290600101906020018083116103b457829003601f168201915b5050505050905090565b6000806103e6610999565b90506103f38185856109a1565b600191505092915050565b6000600254905090565b600080610413610999565b9050610420858285610b6c565b61042b858585610bf8565b60019150509392505050565b60006008905090565b60008061044b610999565b90506104df818585600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546104da919061181a565b6109a1565b600191505092915050565b6104f2610999565b73ffffffffffffffffffffffffffffffffffffffff16610510610651565b73ffffffffffffffffffffffffffffffffffffffff1614610566576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161055d90611708565b60405180910390fd5b6105708282610e79565b5050565b61057e3382610fd9565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105d1610999565b73ffffffffffffffffffffffffffffffffffffffff166105ef610651565b73ffffffffffffffffffffffffffffffffffffffff1614610645576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161063c90611708565b60405180910390fd5b61064f60006111b0565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461068a9061192c565b80601f01602080910402602001604051908101604052809291908181526020018280546106b69061192c565b80156107035780601f106106d857610100808354040283529160200191610703565b820191906000526020600020905b8154815290600101906020018083116106e657829003601f168201915b5050505050905090565b600080610718610999565b90506000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050838110156107de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107d590611788565b60405180910390fd5b6107eb82868684036109a1565b60019250505092915050565b600080610802610999565b905061080f818585610bf8565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6108a9610999565b73ffffffffffffffffffffffffffffffffffffffff166108c7610651565b73ffffffffffffffffffffffffffffffffffffffff161461091d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091490611708565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561098d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098490611688565b60405180910390fd5b610996816111b0565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0890611768565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a78906116a8565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b5f91906117c8565b60405180910390a3505050565b6000610b78848461081a565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610bf25781811015610be4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdb906116c8565b60405180910390fd5b610bf184848484036109a1565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5f90611748565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610cd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ccf90611648565b60405180910390fd5b610ce3838383611276565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610d69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d60906116e8565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610dfc919061181a565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e6091906117c8565b60405180910390a3610e7384848461127b565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ee9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee0906117a8565b60405180910390fd5b610ef560008383611276565b8060026000828254610f07919061181a565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f5c919061181a565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610fc191906117c8565b60405180910390a3610fd56000838361127b565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611049576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104090611728565b60405180910390fd5b61105582600083611276565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156110db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d290611668565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546111329190611870565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161119791906117c8565b60405180910390a36111ab8360008461127b565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b60008135905061128f81611d14565b92915050565b6000813590506112a481611d2b565b92915050565b6000602082840312156112c0576112bf6119bc565b5b60006112ce84828501611280565b91505092915050565b600080604083850312156112ee576112ed6119bc565b5b60006112fc85828601611280565b925050602061130d85828601611280565b9150509250929050565b6000806000606084860312156113305761132f6119bc565b5b600061133e86828701611280565b935050602061134f86828701611280565b925050604061136086828701611295565b9150509250925092565b60008060408385031215611381576113806119bc565b5b600061138f85828601611280565b92505060206113a085828601611295565b9150509250929050565b6000602082840312156113c0576113bf6119bc565b5b60006113ce84828501611295565b91505092915050565b6113e0816118a4565b82525050565b6113ef816118b6565b82525050565b6000611400826117fe565b61140a8185611809565b935061141a8185602086016118f9565b611423816119c1565b840191505092915050565b600061143b602383611809565b9150611446826119d2565b604082019050919050565b600061145e602283611809565b915061146982611a21565b604082019050919050565b6000611481602683611809565b915061148c82611a70565b604082019050919050565b60006114a4602283611809565b91506114af82611abf565b604082019050919050565b60006114c7601d83611809565b91506114d282611b0e565b602082019050919050565b60006114ea602683611809565b91506114f582611b37565b604082019050919050565b600061150d602083611809565b915061151882611b86565b602082019050919050565b6000611530602183611809565b915061153b82611baf565b604082019050919050565b6000611553602583611809565b915061155e82611bfe565b604082019050919050565b6000611576602483611809565b915061158182611c4d565b604082019050919050565b6000611599602583611809565b91506115a482611c9c565b604082019050919050565b60006115bc601f83611809565b91506115c782611ceb565b602082019050919050565b6115db816118e2565b82525050565b6115ea816118ec565b82525050565b600060208201905061160560008301846113d7565b92915050565b600060208201905061162060008301846113e6565b92915050565b6000602082019050818103600083015261164081846113f5565b905092915050565b600060208201905081810360008301526116618161142e565b9050919050565b6000602082019050818103600083015261168181611451565b9050919050565b600060208201905081810360008301526116a181611474565b9050919050565b600060208201905081810360008301526116c181611497565b9050919050565b600060208201905081810360008301526116e1816114ba565b9050919050565b60006020820190508181036000830152611701816114dd565b9050919050565b6000602082019050818103600083015261172181611500565b9050919050565b6000602082019050818103600083015261174181611523565b9050919050565b6000602082019050818103600083015261176181611546565b9050919050565b6000602082019050818103600083015261178181611569565b9050919050565b600060208201905081810360008301526117a18161158c565b9050919050565b600060208201905081810360008301526117c1816115af565b9050919050565b60006020820190506117dd60008301846115d2565b92915050565b60006020820190506117f860008301846115e1565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611825826118e2565b9150611830836118e2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156118655761186461195e565b5b828201905092915050565b600061187b826118e2565b9150611886836118e2565b9250828210156118995761189861195e565b5b828203905092915050565b60006118af826118c2565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156119175780820151818401526020810190506118fc565b83811115611926576000848401525b50505050565b6000600282049050600182168061194457607f821691505b602082108114156119585761195761198d565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b611d1d816118a4565b8114611d2857600080fd5b50565b611d34816118e2565b8114611d3f57600080fd5b5056fea264697066735822122078e3e3e37b85776ed952b134ab8d5d2e060ba88660c3b8e6d893d084450fdbe664736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000429d069189e0000000000000000000000000000000000000000000000000000000000000000001052656d697474616e636520546f6b656e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000552656d636f000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101005760003560e01c806370a0823111610097578063a457c2d711610066578063a457c2d71461029d578063a9059cbb146102cd578063dd62ed3e146102fd578063f2fde38b1461032d57610100565b806370a0823114610227578063715018a6146102575780638da5cb5b1461026157806395d89b411461027f57610100565b8063313ce567116100d3578063313ce567146101a157806339509351146101bf57806340c10f19146101ef57806342966c681461020b57610100565b806306fdde0314610105578063095ea7b31461012357806318160ddd1461015357806323b872dd14610171575b600080fd5b61010d610349565b60405161011a9190611626565b60405180910390f35b61013d6004803603810190610138919061136a565b6103db565b60405161014a919061160b565b60405180910390f35b61015b6103fe565b60405161016891906117c8565b60405180910390f35b61018b60048036038101906101869190611317565b610408565b604051610198919061160b565b60405180910390f35b6101a9610437565b6040516101b691906117e3565b60405180910390f35b6101d960048036038101906101d4919061136a565b610440565b6040516101e6919061160b565b60405180910390f35b6102096004803603810190610204919061136a565b6104ea565b005b610225600480360381019061022091906113aa565b610574565b005b610241600480360381019061023c91906112aa565b610581565b60405161024e91906117c8565b60405180910390f35b61025f6105c9565b005b610269610651565b60405161027691906115f0565b60405180910390f35b61028761067b565b6040516102949190611626565b60405180910390f35b6102b760048036038101906102b2919061136a565b61070d565b6040516102c4919061160b565b60405180910390f35b6102e760048036038101906102e2919061136a565b6107f7565b6040516102f4919061160b565b60405180910390f35b610317600480360381019061031291906112d7565b61081a565b60405161032491906117c8565b60405180910390f35b610347600480360381019061034291906112aa565b6108a1565b005b6060600380546103589061192c565b80601f01602080910402602001604051908101604052809291908181526020018280546103849061192c565b80156103d15780601f106103a6576101008083540402835291602001916103d1565b820191906000526020600020905b8154815290600101906020018083116103b457829003601f168201915b5050505050905090565b6000806103e6610999565b90506103f38185856109a1565b600191505092915050565b6000600254905090565b600080610413610999565b9050610420858285610b6c565b61042b858585610bf8565b60019150509392505050565b60006008905090565b60008061044b610999565b90506104df818585600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546104da919061181a565b6109a1565b600191505092915050565b6104f2610999565b73ffffffffffffffffffffffffffffffffffffffff16610510610651565b73ffffffffffffffffffffffffffffffffffffffff1614610566576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161055d90611708565b60405180910390fd5b6105708282610e79565b5050565b61057e3382610fd9565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105d1610999565b73ffffffffffffffffffffffffffffffffffffffff166105ef610651565b73ffffffffffffffffffffffffffffffffffffffff1614610645576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161063c90611708565b60405180910390fd5b61064f60006111b0565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461068a9061192c565b80601f01602080910402602001604051908101604052809291908181526020018280546106b69061192c565b80156107035780601f106106d857610100808354040283529160200191610703565b820191906000526020600020905b8154815290600101906020018083116106e657829003601f168201915b5050505050905090565b600080610718610999565b90506000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050838110156107de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107d590611788565b60405180910390fd5b6107eb82868684036109a1565b60019250505092915050565b600080610802610999565b905061080f818585610bf8565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6108a9610999565b73ffffffffffffffffffffffffffffffffffffffff166108c7610651565b73ffffffffffffffffffffffffffffffffffffffff161461091d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091490611708565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561098d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098490611688565b60405180910390fd5b610996816111b0565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0890611768565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a78906116a8565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b5f91906117c8565b60405180910390a3505050565b6000610b78848461081a565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610bf25781811015610be4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdb906116c8565b60405180910390fd5b610bf184848484036109a1565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5f90611748565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610cd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ccf90611648565b60405180910390fd5b610ce3838383611276565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610d69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d60906116e8565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610dfc919061181a565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e6091906117c8565b60405180910390a3610e7384848461127b565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ee9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee0906117a8565b60405180910390fd5b610ef560008383611276565b8060026000828254610f07919061181a565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f5c919061181a565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610fc191906117c8565b60405180910390a3610fd56000838361127b565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611049576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104090611728565b60405180910390fd5b61105582600083611276565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156110db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d290611668565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546111329190611870565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161119791906117c8565b60405180910390a36111ab8360008461127b565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b60008135905061128f81611d14565b92915050565b6000813590506112a481611d2b565b92915050565b6000602082840312156112c0576112bf6119bc565b5b60006112ce84828501611280565b91505092915050565b600080604083850312156112ee576112ed6119bc565b5b60006112fc85828601611280565b925050602061130d85828601611280565b9150509250929050565b6000806000606084860312156113305761132f6119bc565b5b600061133e86828701611280565b935050602061134f86828701611280565b925050604061136086828701611295565b9150509250925092565b60008060408385031215611381576113806119bc565b5b600061138f85828601611280565b92505060206113a085828601611295565b9150509250929050565b6000602082840312156113c0576113bf6119bc565b5b60006113ce84828501611295565b91505092915050565b6113e0816118a4565b82525050565b6113ef816118b6565b82525050565b6000611400826117fe565b61140a8185611809565b935061141a8185602086016118f9565b611423816119c1565b840191505092915050565b600061143b602383611809565b9150611446826119d2565b604082019050919050565b600061145e602283611809565b915061146982611a21565b604082019050919050565b6000611481602683611809565b915061148c82611a70565b604082019050919050565b60006114a4602283611809565b91506114af82611abf565b604082019050919050565b60006114c7601d83611809565b91506114d282611b0e565b602082019050919050565b60006114ea602683611809565b91506114f582611b37565b604082019050919050565b600061150d602083611809565b915061151882611b86565b602082019050919050565b6000611530602183611809565b915061153b82611baf565b604082019050919050565b6000611553602583611809565b915061155e82611bfe565b604082019050919050565b6000611576602483611809565b915061158182611c4d565b604082019050919050565b6000611599602583611809565b91506115a482611c9c565b604082019050919050565b60006115bc601f83611809565b91506115c782611ceb565b602082019050919050565b6115db816118e2565b82525050565b6115ea816118ec565b82525050565b600060208201905061160560008301846113d7565b92915050565b600060208201905061162060008301846113e6565b92915050565b6000602082019050818103600083015261164081846113f5565b905092915050565b600060208201905081810360008301526116618161142e565b9050919050565b6000602082019050818103600083015261168181611451565b9050919050565b600060208201905081810360008301526116a181611474565b9050919050565b600060208201905081810360008301526116c181611497565b9050919050565b600060208201905081810360008301526116e1816114ba565b9050919050565b60006020820190508181036000830152611701816114dd565b9050919050565b6000602082019050818103600083015261172181611500565b9050919050565b6000602082019050818103600083015261174181611523565b9050919050565b6000602082019050818103600083015261176181611546565b9050919050565b6000602082019050818103600083015261178181611569565b9050919050565b600060208201905081810360008301526117a18161158c565b9050919050565b600060208201905081810360008301526117c1816115af565b9050919050565b60006020820190506117dd60008301846115d2565b92915050565b60006020820190506117f860008301846115e1565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611825826118e2565b9150611830836118e2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156118655761186461195e565b5b828201905092915050565b600061187b826118e2565b9150611886836118e2565b9250828210156118995761189861195e565b5b828203905092915050565b60006118af826118c2565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156119175780820151818401526020810190506118fc565b83811115611926576000848401525b50505050565b6000600282049050600182168061194457607f821691505b602082108114156119585761195761198d565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b611d1d816118a4565b8114611d2857600080fd5b50565b611d34816118e2565b8114611d3f57600080fd5b5056fea264697066735822122078e3e3e37b85776ed952b134ab8d5d2e060ba88660c3b8e6d893d084450fdbe664736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000429d069189e0000000000000000000000000000000000000000000000000000000000000000001052656d697474616e636520546f6b656e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000552656d636f000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): Remittance Token
Arg [1] : symbol (string): Remco
Arg [2] : initialSupply (uint256): 300000000000000000

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000429d069189e0000
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000010
Arg [4] : 52656d697474616e636520546f6b656e00000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [6] : 52656d636f000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

16825:382:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4151:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6501:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5270:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7282:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5113:92;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7986:240;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17023:99;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17130:72;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5441:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16008:103;;;:::i;:::-;;15357:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4370:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8729:438;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5774:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6030:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16266:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4151:100;4205:13;4238:5;4231:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4151:100;:::o;6501:201::-;6584:4;6601:13;6617:12;:10;:12::i;:::-;6601:28;;6640:32;6649:5;6656:7;6665:6;6640:8;:32::i;:::-;6690:4;6683:11;;;6501:201;;;;:::o;5270:108::-;5331:7;5358:12;;5351:19;;5270:108;:::o;7282:295::-;7413:4;7430:15;7448:12;:10;:12::i;:::-;7430:30;;7471:38;7487:4;7493:7;7502:6;7471:15;:38::i;:::-;7520:27;7530:4;7536:2;7540:6;7520:9;:27::i;:::-;7565:4;7558:11;;;7282:295;;;;;:::o;5113:92::-;5171:5;5196:1;5189:8;;5113:92;:::o;7986:240::-;8074:4;8091:13;8107:12;:10;:12::i;:::-;8091:28;;8130:66;8139:5;8146:7;8185:10;8155:11;:18;8167:5;8155:18;;;;;;;;;;;;;;;:27;8174:7;8155:27;;;;;;;;;;;;;;;;:40;;;;:::i;:::-;8130:8;:66::i;:::-;8214:4;8207:11;;;7986:240;;;;:::o;17023:99::-;15588:12;:10;:12::i;:::-;15577:23;;:7;:5;:7::i;:::-;:23;;;15569:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17092:22:::1;17098:7;17107:6;17092:5;:22::i;:::-;17023:99:::0;;:::o;17130:72::-;17172:25;17178:10;17190:6;17172:5;:25::i;:::-;17130:72;:::o;5441:127::-;5515:7;5542:9;:18;5552:7;5542:18;;;;;;;;;;;;;;;;5535:25;;5441:127;;;:::o;16008:103::-;15588:12;:10;:12::i;:::-;15577:23;;:7;:5;:7::i;:::-;:23;;;15569:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16073:30:::1;16100:1;16073:18;:30::i;:::-;16008:103::o:0;15357:87::-;15403:7;15430:6;;;;;;;;;;;15423:13;;15357:87;:::o;4370:104::-;4426:13;4459:7;4452:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4370:104;:::o;8729:438::-;8822:4;8839:13;8855:12;:10;:12::i;:::-;8839:28;;8878:24;8905:11;:18;8917:5;8905:18;;;;;;;;;;;;;;;:27;8924:7;8905:27;;;;;;;;;;;;;;;;8878:54;;8971:15;8951:16;:35;;8943:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;9064:60;9073:5;9080:7;9108:15;9089:16;:34;9064:8;:60::i;:::-;9155:4;9148:11;;;;8729:438;;;;:::o;5774:193::-;5853:4;5870:13;5886:12;:10;:12::i;:::-;5870:28;;5909;5919:5;5926:2;5930:6;5909:9;:28::i;:::-;5955:4;5948:11;;;5774:193;;;;:::o;6030:151::-;6119:7;6146:11;:18;6158:5;6146:18;;;;;;;;;;;;;;;:27;6165:7;6146:27;;;;;;;;;;;;;;;;6139:34;;6030:151;;;;:::o;16266:201::-;15588:12;:10;:12::i;:::-;15577:23;;:7;:5;:7::i;:::-;:23;;;15569:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16375:1:::1;16355:22;;:8;:22;;;;16347:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;16431:28;16450:8;16431:18;:28::i;:::-;16266:201:::0;:::o;3157:98::-;3210:7;3237:10;3230:17;;3157:98;:::o;12365:380::-;12518:1;12501:19;;:5;:19;;;;12493:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12599:1;12580:21;;:7;:21;;;;12572:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12683:6;12653:11;:18;12665:5;12653:18;;;;;;;;;;;;;;;:27;12672:7;12653:27;;;;;;;;;;;;;;;:36;;;;12721:7;12705:32;;12714:5;12705:32;;;12730:6;12705:32;;;;;;:::i;:::-;;;;;;;;12365:380;;;:::o;13032:453::-;13167:24;13194:25;13204:5;13211:7;13194:9;:25::i;:::-;13167:52;;13254:17;13234:16;:37;13230:248;;13316:6;13296:16;:26;;13288:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13400:51;13409:5;13416:7;13444:6;13425:16;:25;13400:8;:51::i;:::-;13230:248;13156:329;13032:453;;;:::o;9646:671::-;9793:1;9777:18;;:4;:18;;;;9769:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9870:1;9856:16;;:2;:16;;;;9848:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;9925:38;9946:4;9952:2;9956:6;9925:20;:38::i;:::-;9976:19;9998:9;:15;10008:4;9998:15;;;;;;;;;;;;;;;;9976:37;;10047:6;10032:11;:21;;10024:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;10164:6;10150:11;:20;10132:9;:15;10142:4;10132:15;;;;;;;;;;;;;;;:38;;;;10209:6;10192:9;:13;10202:2;10192:13;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;10248:2;10233:26;;10242:4;10233:26;;;10252:6;10233:26;;;;;;:::i;:::-;;;;;;;;10272:37;10292:4;10298:2;10302:6;10272:19;:37::i;:::-;9758:559;9646:671;;;:::o;10604:399::-;10707:1;10688:21;;:7;:21;;;;10680:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;10758:49;10787:1;10791:7;10800:6;10758:20;:49::i;:::-;10836:6;10820:12;;:22;;;;;;;:::i;:::-;;;;;;;;10875:6;10853:9;:18;10863:7;10853:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;10918:7;10897:37;;10914:1;10897:37;;;10927:6;10897:37;;;;;;:::i;:::-;;;;;;;;10947:48;10975:1;10979:7;10988:6;10947:19;:48::i;:::-;10604:399;;:::o;11336:591::-;11439:1;11420:21;;:7;:21;;;;11412:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;11492:49;11513:7;11530:1;11534:6;11492:20;:49::i;:::-;11554:22;11579:9;:18;11589:7;11579:18;;;;;;;;;;;;;;;;11554:43;;11634:6;11616:14;:24;;11608:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;11753:6;11736:14;:23;11715:9;:18;11725:7;11715:18;;;;;;;;;;;;;;;:44;;;;11797:6;11781:12;;:22;;;;;;;:::i;:::-;;;;;;;;11847:1;11821:37;;11830:7;11821:37;;;11851:6;11821:37;;;;;;:::i;:::-;;;;;;;;11871:48;11891:7;11908:1;11912:6;11871:19;:48::i;:::-;11401:526;11336:591;;:::o;16627:191::-;16701:16;16720:6;;;;;;;;;;;16701:25;;16746:8;16737:6;;:17;;;;;;;;;;;;;;;;;;16801:8;16770:40;;16791:8;16770:40;;;;;;;;;;;;16690:128;16627:191;:::o;14085:125::-;;;;:::o;14814:124::-;;;;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;7:139;;;;:::o;152:::-;198:5;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;152:139;;;;:::o;297:329::-;356:6;405:2;393:9;384:7;380:23;376:32;373:119;;;411:79;;:::i;:::-;373:119;531:1;556:53;601:7;592:6;581:9;577:22;556:53;:::i;:::-;546:63;;502:117;297:329;;;;:::o;632:474::-;700:6;708;757:2;745:9;736:7;732:23;728:32;725:119;;;763:79;;:::i;:::-;725:119;883:1;908:53;953:7;944:6;933:9;929:22;908:53;:::i;:::-;898:63;;854:117;1010:2;1036:53;1081:7;1072:6;1061:9;1057:22;1036:53;:::i;:::-;1026:63;;981:118;632:474;;;;;:::o;1112:619::-;1189:6;1197;1205;1254:2;1242:9;1233:7;1229:23;1225:32;1222:119;;;1260:79;;:::i;:::-;1222:119;1380:1;1405:53;1450:7;1441:6;1430:9;1426:22;1405:53;:::i;:::-;1395:63;;1351:117;1507:2;1533:53;1578:7;1569:6;1558:9;1554:22;1533:53;:::i;:::-;1523:63;;1478:118;1635:2;1661:53;1706:7;1697:6;1686:9;1682:22;1661:53;:::i;:::-;1651:63;;1606:118;1112:619;;;;;:::o;1737:474::-;1805:6;1813;1862:2;1850:9;1841:7;1837:23;1833:32;1830:119;;;1868:79;;:::i;:::-;1830:119;1988:1;2013:53;2058:7;2049:6;2038:9;2034:22;2013:53;:::i;:::-;2003:63;;1959:117;2115:2;2141:53;2186:7;2177:6;2166:9;2162:22;2141:53;:::i;:::-;2131:63;;2086:118;1737:474;;;;;:::o;2217:329::-;2276:6;2325:2;2313:9;2304:7;2300:23;2296:32;2293:119;;;2331:79;;:::i;:::-;2293:119;2451:1;2476:53;2521:7;2512:6;2501:9;2497:22;2476:53;:::i;:::-;2466:63;;2422:117;2217:329;;;;:::o;2552:118::-;2639:24;2657:5;2639:24;:::i;:::-;2634:3;2627:37;2552:118;;:::o;2676:109::-;2757:21;2772:5;2757:21;:::i;:::-;2752:3;2745:34;2676:109;;:::o;2791:364::-;2879:3;2907:39;2940:5;2907:39;:::i;:::-;2962:71;3026:6;3021:3;2962:71;:::i;:::-;2955:78;;3042:52;3087:6;3082:3;3075:4;3068:5;3064:16;3042:52;:::i;:::-;3119:29;3141:6;3119:29;:::i;:::-;3114:3;3110:39;3103:46;;2883:272;2791:364;;;;:::o;3161:366::-;3303:3;3324:67;3388:2;3383:3;3324:67;:::i;:::-;3317:74;;3400:93;3489:3;3400:93;:::i;:::-;3518:2;3513:3;3509:12;3502:19;;3161:366;;;:::o;3533:::-;3675:3;3696:67;3760:2;3755:3;3696:67;:::i;:::-;3689:74;;3772:93;3861:3;3772:93;:::i;:::-;3890:2;3885:3;3881:12;3874:19;;3533:366;;;:::o;3905:::-;4047:3;4068:67;4132:2;4127:3;4068:67;:::i;:::-;4061:74;;4144:93;4233:3;4144:93;:::i;:::-;4262:2;4257:3;4253:12;4246:19;;3905:366;;;:::o;4277:::-;4419:3;4440:67;4504:2;4499:3;4440:67;:::i;:::-;4433:74;;4516:93;4605:3;4516:93;:::i;:::-;4634:2;4629:3;4625:12;4618:19;;4277:366;;;:::o;4649:::-;4791:3;4812:67;4876:2;4871:3;4812:67;:::i;:::-;4805:74;;4888:93;4977:3;4888:93;:::i;:::-;5006:2;5001:3;4997:12;4990:19;;4649:366;;;:::o;5021:::-;5163:3;5184:67;5248:2;5243:3;5184:67;:::i;:::-;5177:74;;5260:93;5349:3;5260:93;:::i;:::-;5378:2;5373:3;5369:12;5362:19;;5021:366;;;:::o;5393:::-;5535:3;5556:67;5620:2;5615:3;5556:67;:::i;:::-;5549:74;;5632:93;5721:3;5632:93;:::i;:::-;5750:2;5745:3;5741:12;5734:19;;5393:366;;;:::o;5765:::-;5907:3;5928:67;5992:2;5987:3;5928:67;:::i;:::-;5921:74;;6004:93;6093:3;6004:93;:::i;:::-;6122:2;6117:3;6113:12;6106:19;;5765:366;;;:::o;6137:::-;6279:3;6300:67;6364:2;6359:3;6300:67;:::i;:::-;6293:74;;6376:93;6465:3;6376:93;:::i;:::-;6494:2;6489:3;6485:12;6478:19;;6137:366;;;:::o;6509:::-;6651:3;6672:67;6736:2;6731:3;6672:67;:::i;:::-;6665:74;;6748:93;6837:3;6748:93;:::i;:::-;6866:2;6861:3;6857:12;6850:19;;6509:366;;;:::o;6881:::-;7023:3;7044:67;7108:2;7103:3;7044:67;:::i;:::-;7037:74;;7120:93;7209:3;7120:93;:::i;:::-;7238:2;7233:3;7229:12;7222:19;;6881:366;;;:::o;7253:::-;7395:3;7416:67;7480:2;7475:3;7416:67;:::i;:::-;7409:74;;7492:93;7581:3;7492:93;:::i;:::-;7610:2;7605:3;7601:12;7594:19;;7253:366;;;:::o;7625:118::-;7712:24;7730:5;7712:24;:::i;:::-;7707:3;7700:37;7625:118;;:::o;7749:112::-;7832:22;7848:5;7832:22;:::i;:::-;7827:3;7820:35;7749:112;;:::o;7867:222::-;7960:4;7998:2;7987:9;7983:18;7975:26;;8011:71;8079:1;8068:9;8064:17;8055:6;8011:71;:::i;:::-;7867:222;;;;:::o;8095:210::-;8182:4;8220:2;8209:9;8205:18;8197:26;;8233:65;8295:1;8284:9;8280:17;8271:6;8233:65;:::i;:::-;8095:210;;;;:::o;8311:313::-;8424:4;8462:2;8451:9;8447:18;8439:26;;8511:9;8505:4;8501:20;8497:1;8486:9;8482:17;8475:47;8539:78;8612:4;8603:6;8539:78;:::i;:::-;8531:86;;8311:313;;;;:::o;8630:419::-;8796:4;8834:2;8823:9;8819:18;8811:26;;8883:9;8877:4;8873:20;8869:1;8858:9;8854:17;8847:47;8911:131;9037:4;8911:131;:::i;:::-;8903:139;;8630:419;;;:::o;9055:::-;9221:4;9259:2;9248:9;9244:18;9236:26;;9308:9;9302:4;9298:20;9294:1;9283:9;9279:17;9272:47;9336:131;9462:4;9336:131;:::i;:::-;9328:139;;9055:419;;;:::o;9480:::-;9646:4;9684:2;9673:9;9669:18;9661:26;;9733:9;9727:4;9723:20;9719:1;9708:9;9704:17;9697:47;9761:131;9887:4;9761:131;:::i;:::-;9753:139;;9480:419;;;:::o;9905:::-;10071:4;10109:2;10098:9;10094:18;10086:26;;10158:9;10152:4;10148:20;10144:1;10133:9;10129:17;10122:47;10186:131;10312:4;10186:131;:::i;:::-;10178:139;;9905:419;;;:::o;10330:::-;10496:4;10534:2;10523:9;10519:18;10511:26;;10583:9;10577:4;10573:20;10569:1;10558:9;10554:17;10547:47;10611:131;10737:4;10611:131;:::i;:::-;10603:139;;10330:419;;;:::o;10755:::-;10921:4;10959:2;10948:9;10944:18;10936:26;;11008:9;11002:4;10998:20;10994:1;10983:9;10979:17;10972:47;11036:131;11162:4;11036:131;:::i;:::-;11028:139;;10755:419;;;:::o;11180:::-;11346:4;11384:2;11373:9;11369:18;11361:26;;11433:9;11427:4;11423:20;11419:1;11408:9;11404:17;11397:47;11461:131;11587:4;11461:131;:::i;:::-;11453:139;;11180:419;;;:::o;11605:::-;11771:4;11809:2;11798:9;11794:18;11786:26;;11858:9;11852:4;11848:20;11844:1;11833:9;11829:17;11822:47;11886:131;12012:4;11886:131;:::i;:::-;11878:139;;11605:419;;;:::o;12030:::-;12196:4;12234:2;12223:9;12219:18;12211:26;;12283:9;12277:4;12273:20;12269:1;12258:9;12254:17;12247:47;12311:131;12437:4;12311:131;:::i;:::-;12303:139;;12030:419;;;:::o;12455:::-;12621:4;12659:2;12648:9;12644:18;12636:26;;12708:9;12702:4;12698:20;12694:1;12683:9;12679:17;12672:47;12736:131;12862:4;12736:131;:::i;:::-;12728:139;;12455:419;;;:::o;12880:::-;13046:4;13084:2;13073:9;13069:18;13061:26;;13133:9;13127:4;13123:20;13119:1;13108:9;13104:17;13097:47;13161:131;13287:4;13161:131;:::i;:::-;13153:139;;12880:419;;;:::o;13305:::-;13471:4;13509:2;13498:9;13494:18;13486:26;;13558:9;13552:4;13548:20;13544:1;13533:9;13529:17;13522:47;13586:131;13712:4;13586:131;:::i;:::-;13578:139;;13305:419;;;:::o;13730:222::-;13823:4;13861:2;13850:9;13846:18;13838:26;;13874:71;13942:1;13931:9;13927:17;13918:6;13874:71;:::i;:::-;13730:222;;;;:::o;13958:214::-;14047:4;14085:2;14074:9;14070:18;14062:26;;14098:67;14162:1;14151:9;14147:17;14138:6;14098:67;:::i;:::-;13958:214;;;;:::o;14259:99::-;14311:6;14345:5;14339:12;14329:22;;14259:99;;;:::o;14364:169::-;14448:11;14482:6;14477:3;14470:19;14522:4;14517:3;14513:14;14498:29;;14364:169;;;;:::o;14539:305::-;14579:3;14598:20;14616:1;14598:20;:::i;:::-;14593:25;;14632:20;14650:1;14632:20;:::i;:::-;14627:25;;14786:1;14718:66;14714:74;14711:1;14708:81;14705:107;;;14792:18;;:::i;:::-;14705:107;14836:1;14833;14829:9;14822:16;;14539:305;;;;:::o;14850:191::-;14890:4;14910:20;14928:1;14910:20;:::i;:::-;14905:25;;14944:20;14962:1;14944:20;:::i;:::-;14939:25;;14983:1;14980;14977:8;14974:34;;;14988:18;;:::i;:::-;14974:34;15033:1;15030;15026:9;15018:17;;14850:191;;;;:::o;15047:96::-;15084:7;15113:24;15131:5;15113:24;:::i;:::-;15102:35;;15047:96;;;:::o;15149:90::-;15183:7;15226:5;15219:13;15212:21;15201:32;;15149:90;;;:::o;15245:126::-;15282:7;15322:42;15315:5;15311:54;15300:65;;15245:126;;;:::o;15377:77::-;15414:7;15443:5;15432:16;;15377:77;;;:::o;15460:86::-;15495:7;15535:4;15528:5;15524:16;15513:27;;15460:86;;;:::o;15552:307::-;15620:1;15630:113;15644:6;15641:1;15638:13;15630:113;;;15729:1;15724:3;15720:11;15714:18;15710:1;15705:3;15701:11;15694:39;15666:2;15663:1;15659:10;15654:15;;15630:113;;;15761:6;15758:1;15755:13;15752:101;;;15841:1;15832:6;15827:3;15823:16;15816:27;15752:101;15601:258;15552:307;;;:::o;15865:320::-;15909:6;15946:1;15940:4;15936:12;15926:22;;15993:1;15987:4;15983:12;16014:18;16004:81;;16070:4;16062:6;16058:17;16048:27;;16004:81;16132:2;16124:6;16121:14;16101:18;16098:38;16095:84;;;16151:18;;:::i;:::-;16095:84;15916:269;15865:320;;;:::o;16191:180::-;16239:77;16236:1;16229:88;16336:4;16333:1;16326:15;16360:4;16357:1;16350:15;16377:180;16425:77;16422:1;16415:88;16522:4;16519:1;16512:15;16546:4;16543:1;16536:15;16686:117;16795:1;16792;16785:12;16809:102;16850:6;16901:2;16897:7;16892:2;16885:5;16881:14;16877:28;16867:38;;16809:102;;;:::o;16917:222::-;17057:34;17053:1;17045:6;17041:14;17034:58;17126:5;17121:2;17113:6;17109:15;17102:30;16917:222;:::o;17145:221::-;17285:34;17281:1;17273:6;17269:14;17262:58;17354:4;17349:2;17341:6;17337:15;17330:29;17145:221;:::o;17372:225::-;17512:34;17508:1;17500:6;17496:14;17489:58;17581:8;17576:2;17568:6;17564:15;17557:33;17372:225;:::o;17603:221::-;17743:34;17739:1;17731:6;17727:14;17720:58;17812:4;17807:2;17799:6;17795:15;17788:29;17603:221;:::o;17830:179::-;17970:31;17966:1;17958:6;17954:14;17947:55;17830:179;:::o;18015:225::-;18155:34;18151:1;18143:6;18139:14;18132:58;18224:8;18219:2;18211:6;18207:15;18200:33;18015:225;:::o;18246:182::-;18386:34;18382:1;18374:6;18370:14;18363:58;18246:182;:::o;18434:220::-;18574:34;18570:1;18562:6;18558:14;18551:58;18643:3;18638:2;18630:6;18626:15;18619:28;18434:220;:::o;18660:224::-;18800:34;18796:1;18788:6;18784:14;18777:58;18869:7;18864:2;18856:6;18852:15;18845:32;18660:224;:::o;18890:223::-;19030:34;19026:1;19018:6;19014:14;19007:58;19099:6;19094:2;19086:6;19082:15;19075:31;18890:223;:::o;19119:224::-;19259:34;19255:1;19247:6;19243:14;19236:58;19328:7;19323:2;19315:6;19311:15;19304:32;19119:224;:::o;19349:181::-;19489:33;19485:1;19477:6;19473:14;19466:57;19349:181;:::o;19536:122::-;19609:24;19627:5;19609:24;:::i;:::-;19602:5;19599:35;19589:63;;19648:1;19645;19638:12;19589:63;19536:122;:::o;19664:::-;19737:24;19755:5;19737:24;:::i;:::-;19730:5;19727:35;19717:63;;19776:1;19773;19766:12;19717:63;19664:122;:::o

Swarm Source

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