FTM Price: $0.503756 (+6.05%)
 

Overview

Max Total Supply

855.81811520044394311 SOL

Holders

636 (0.00%)

Market

Price

$131.47 @ 260.979266 FTM (-4.16%)

Onchain Market Cap

$112,514.41

Circulating Supply Market Cap

$0.00

Other Info

Token Contract (WITH 18 Decimals)

Balance
0 SOL

Value
$0.00
0x23cca1f8858a9a1c625386a47993066bf9758c92
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Solana is an open-source project implementing a new, high-performance, permissionless blockchain.

Contract Source Code Verified (Exact Match)

Contract Name:
WrappedToken

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at ftmscan.com on 2021-11-19
*/

// SPDX-License-Identifier: Apache 2
pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

    /**
     * @dev 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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][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) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), 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:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

contract WrappedToken is Context, Ownable, ERC20 {
    uint8 private _decimals;
    bytes4 public source;
    bytes32 public sourceAddress;

    constructor(
        bytes4 source_,
        bytes32 sourceAddress_,
        uint8 decimals_,
        string memory name,
        string memory symbol
    ) ERC20(name, symbol) {
        source = source_;
        sourceAddress = sourceAddress_;
        _decimals = decimals_;
    }

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

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

    function burn(address from, uint256 amount) public virtual onlyOwner {
        _burn(from, amount);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"bytes4","name":"source_","type":"bytes4"},{"internalType":"bytes32","name":"sourceAddress_","type":"bytes32"},{"internalType":"uint8","name":"decimals_","type":"uint8"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"}],"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":"address","name":"from","type":"address"},{"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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"source","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sourceAddress","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040516200252d3803806200252d8339818101604052810190620000379190620004c7565b8181620000596200004d620000d860201b60201c565b620000e060201b60201c565b816004908051906020019062000071929190620001a4565b5080600590805190602001906200008a929190620001a4565b50505084600660016101000a81548163ffffffff021916908360e01c02179055508360078190555082600660006101000a81548160ff021916908360ff1602179055505050505050620005f2565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001b290620005bc565b90600052602060002090601f016020900481019282620001d6576000855562000222565b82601f10620001f157805160ff191683800117855562000222565b8280016001018555821562000222579182015b828111156200022157825182559160200191906001019062000204565b5b50905062000231919062000235565b5090565b5b808211156200025057600081600090555060010162000236565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6200029f8162000268565b8114620002ab57600080fd5b50565b600081519050620002bf8162000294565b92915050565b6000819050919050565b620002da81620002c5565b8114620002e657600080fd5b50565b600081519050620002fa81620002cf565b92915050565b600060ff82169050919050565b620003188162000300565b81146200032457600080fd5b50565b60008151905062000338816200030d565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620003938262000348565b810181811067ffffffffffffffff82111715620003b557620003b462000359565b5b80604052505050565b6000620003ca62000254565b9050620003d8828262000388565b919050565b600067ffffffffffffffff821115620003fb57620003fa62000359565b5b620004068262000348565b9050602081019050919050565b60005b838110156200043357808201518184015260208101905062000416565b8381111562000443576000848401525b50505050565b6000620004606200045a84620003dd565b620003be565b9050828152602081018484840111156200047f576200047e62000343565b5b6200048c84828562000413565b509392505050565b600082601f830112620004ac57620004ab6200033e565b5b8151620004be84826020860162000449565b91505092915050565b600080600080600060a08688031215620004e657620004e56200025e565b5b6000620004f688828901620002ae565b95505060206200050988828901620002e9565b94505060406200051c8882890162000327565b935050606086015167ffffffffffffffff81111562000540576200053f62000263565b5b6200054e8882890162000494565b925050608086015167ffffffffffffffff81111562000572576200057162000263565b5b620005808882890162000494565b9150509295509295909350565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620005d557607f821691505b60208210811415620005ec57620005eb6200058d565b5b50919050565b611f2b80620006026000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c8063715018a6116100a2578063a457c2d711610071578063a457c2d7146102d1578063a9059cbb14610301578063b0fa844414610331578063dd62ed3e1461034f578063f2fde38b1461037f57610116565b8063715018a61461026f5780638da5cb5b1461027957806395d89b41146102975780639dc29fac146102b557610116565b8063313ce567116100e9578063313ce567146101b757806339509351146101d557806340c10f191461020557806367e828bf1461022157806370a082311461023f57610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd1461016957806323b872dd14610187575b600080fd5b61012361039b565b6040516101309190611449565b60405180910390f35b610153600480360381019061014e9190611504565b61042d565b604051610160919061155f565b60405180910390f35b61017161044b565b60405161017e9190611589565b60405180910390f35b6101a1600480360381019061019c91906115a4565b610455565b6040516101ae919061155f565b60405180910390f35b6101bf61054d565b6040516101cc9190611613565b60405180910390f35b6101ef60048036038101906101ea9190611504565b610564565b6040516101fc919061155f565b60405180910390f35b61021f600480360381019061021a9190611504565b610610565b005b61022961069a565b6040516102369190611669565b60405180910390f35b61025960048036038101906102549190611684565b6106ad565b6040516102669190611589565b60405180910390f35b6102776106f6565b005b61028161077e565b60405161028e91906116c0565b60405180910390f35b61029f6107a7565b6040516102ac9190611449565b60405180910390f35b6102cf60048036038101906102ca9190611504565b610839565b005b6102eb60048036038101906102e69190611504565b6108c3565b6040516102f8919061155f565b60405180910390f35b61031b60048036038101906103169190611504565b6109ae565b604051610328919061155f565b60405180910390f35b6103396109cc565b60405161034691906116f4565b60405180910390f35b6103696004803603810190610364919061170f565b6109d2565b6040516103769190611589565b60405180910390f35b61039960048036038101906103949190611684565b610a59565b005b6060600480546103aa9061177e565b80601f01602080910402602001604051908101604052809291908181526020018280546103d69061177e565b80156104235780601f106103f857610100808354040283529160200191610423565b820191906000526020600020905b81548152906001019060200180831161040657829003601f168201915b5050505050905090565b600061044161043a610b51565b8484610b59565b6001905092915050565b6000600354905090565b6000610462848484610d24565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006104ad610b51565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561052d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161052490611822565b60405180910390fd5b61054185610539610b51565b858403610b59565b60019150509392505050565b6000600660009054906101000a900460ff16905090565b6000610606610571610b51565b84846002600061057f610b51565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546106019190611871565b610b59565b6001905092915050565b610618610b51565b73ffffffffffffffffffffffffffffffffffffffff1661063661077e565b73ffffffffffffffffffffffffffffffffffffffff161461068c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161068390611913565b60405180910390fd5b6106968282610fa8565b5050565b600660019054906101000a900460e01b81565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6106fe610b51565b73ffffffffffffffffffffffffffffffffffffffff1661071c61077e565b73ffffffffffffffffffffffffffffffffffffffff1614610772576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076990611913565b60405180910390fd5b61077c6000611109565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546107b69061177e565b80601f01602080910402602001604051908101604052809291908181526020018280546107e29061177e565b801561082f5780601f106108045761010080835404028352916020019161082f565b820191906000526020600020905b81548152906001019060200180831161081257829003601f168201915b5050505050905090565b610841610b51565b73ffffffffffffffffffffffffffffffffffffffff1661085f61077e565b73ffffffffffffffffffffffffffffffffffffffff16146108b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ac90611913565b60405180910390fd5b6108bf82826111cd565b5050565b600080600260006108d2610b51565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561098f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610986906119a5565b60405180910390fd5b6109a361099a610b51565b85858403610b59565b600191505092915050565b60006109c26109bb610b51565b8484610d24565b6001905092915050565b60075481565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610a61610b51565b73ffffffffffffffffffffffffffffffffffffffff16610a7f61077e565b73ffffffffffffffffffffffffffffffffffffffff1614610ad5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610acc90611913565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3c90611a37565b60405180910390fd5b610b4e81611109565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc090611ac9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3090611b5b565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d179190611589565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8b90611bed565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfb90611c7f565b60405180910390fd5b610e0f8383836113a6565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8d90611d11565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f2b9190611871565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f8f9190611589565b60405180910390a3610fa28484846113ab565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611018576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100f90611d7d565b60405180910390fd5b611024600083836113a6565b80600360008282546110369190611871565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461108c9190611871565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516110f19190611589565b60405180910390a3611105600083836113ab565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561123d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123490611e0f565b60405180910390fd5b611249826000836113a6565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156112d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c790611ea1565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282546113289190611ec1565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161138d9190611589565b60405180910390a36113a1836000846113ab565b505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156113ea5780820151818401526020810190506113cf565b838111156113f9576000848401525b50505050565b6000601f19601f8301169050919050565b600061141b826113b0565b61142581856113bb565b93506114358185602086016113cc565b61143e816113ff565b840191505092915050565b600060208201905081810360008301526114638184611410565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061149b82611470565b9050919050565b6114ab81611490565b81146114b657600080fd5b50565b6000813590506114c8816114a2565b92915050565b6000819050919050565b6114e1816114ce565b81146114ec57600080fd5b50565b6000813590506114fe816114d8565b92915050565b6000806040838503121561151b5761151a61146b565b5b6000611529858286016114b9565b925050602061153a858286016114ef565b9150509250929050565b60008115159050919050565b61155981611544565b82525050565b60006020820190506115746000830184611550565b92915050565b611583816114ce565b82525050565b600060208201905061159e600083018461157a565b92915050565b6000806000606084860312156115bd576115bc61146b565b5b60006115cb868287016114b9565b93505060206115dc868287016114b9565b92505060406115ed868287016114ef565b9150509250925092565b600060ff82169050919050565b61160d816115f7565b82525050565b60006020820190506116286000830184611604565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6116638161162e565b82525050565b600060208201905061167e600083018461165a565b92915050565b60006020828403121561169a5761169961146b565b5b60006116a8848285016114b9565b91505092915050565b6116ba81611490565b82525050565b60006020820190506116d560008301846116b1565b92915050565b6000819050919050565b6116ee816116db565b82525050565b600060208201905061170960008301846116e5565b92915050565b600080604083850312156117265761172561146b565b5b6000611734858286016114b9565b9250506020611745858286016114b9565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061179657607f821691505b602082108114156117aa576117a961174f565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b600061180c6028836113bb565b9150611817826117b0565b604082019050919050565b6000602082019050818103600083015261183b816117ff565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061187c826114ce565b9150611887836114ce565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156118bc576118bb611842565b5b828201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006118fd6020836113bb565b9150611908826118c7565b602082019050919050565b6000602082019050818103600083015261192c816118f0565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061198f6025836113bb565b915061199a82611933565b604082019050919050565b600060208201905081810360008301526119be81611982565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611a216026836113bb565b9150611a2c826119c5565b604082019050919050565b60006020820190508181036000830152611a5081611a14565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611ab36024836113bb565b9150611abe82611a57565b604082019050919050565b60006020820190508181036000830152611ae281611aa6565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611b456022836113bb565b9150611b5082611ae9565b604082019050919050565b60006020820190508181036000830152611b7481611b38565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611bd76025836113bb565b9150611be282611b7b565b604082019050919050565b60006020820190508181036000830152611c0681611bca565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611c696023836113bb565b9150611c7482611c0d565b604082019050919050565b60006020820190508181036000830152611c9881611c5c565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611cfb6026836113bb565b9150611d0682611c9f565b604082019050919050565b60006020820190508181036000830152611d2a81611cee565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000611d67601f836113bb565b9150611d7282611d31565b602082019050919050565b60006020820190508181036000830152611d9681611d5a565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611df96021836113bb565b9150611e0482611d9d565b604082019050919050565b60006020820190508181036000830152611e2881611dec565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611e8b6022836113bb565b9150611e9682611e2f565b604082019050919050565b60006020820190508181036000830152611eba81611e7e565b9050919050565b6000611ecc826114ce565b9150611ed7836114ce565b925082821015611eea57611ee9611842565b5b82820390509291505056fea2646970667358221220a9f56006d78df24d2a6e1ff185a4345654f4cd02d6396f1072407ae8268be6aa64736f6c63430008090033534f4c0000000000000000000000000000000000000000000000000000000000069b8857feab8184fb687f634618c035dac439dc1aeb3b5598a0f00000000001000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000003534f4c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003534f4c0000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101165760003560e01c8063715018a6116100a2578063a457c2d711610071578063a457c2d7146102d1578063a9059cbb14610301578063b0fa844414610331578063dd62ed3e1461034f578063f2fde38b1461037f57610116565b8063715018a61461026f5780638da5cb5b1461027957806395d89b41146102975780639dc29fac146102b557610116565b8063313ce567116100e9578063313ce567146101b757806339509351146101d557806340c10f191461020557806367e828bf1461022157806370a082311461023f57610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd1461016957806323b872dd14610187575b600080fd5b61012361039b565b6040516101309190611449565b60405180910390f35b610153600480360381019061014e9190611504565b61042d565b604051610160919061155f565b60405180910390f35b61017161044b565b60405161017e9190611589565b60405180910390f35b6101a1600480360381019061019c91906115a4565b610455565b6040516101ae919061155f565b60405180910390f35b6101bf61054d565b6040516101cc9190611613565b60405180910390f35b6101ef60048036038101906101ea9190611504565b610564565b6040516101fc919061155f565b60405180910390f35b61021f600480360381019061021a9190611504565b610610565b005b61022961069a565b6040516102369190611669565b60405180910390f35b61025960048036038101906102549190611684565b6106ad565b6040516102669190611589565b60405180910390f35b6102776106f6565b005b61028161077e565b60405161028e91906116c0565b60405180910390f35b61029f6107a7565b6040516102ac9190611449565b60405180910390f35b6102cf60048036038101906102ca9190611504565b610839565b005b6102eb60048036038101906102e69190611504565b6108c3565b6040516102f8919061155f565b60405180910390f35b61031b60048036038101906103169190611504565b6109ae565b604051610328919061155f565b60405180910390f35b6103396109cc565b60405161034691906116f4565b60405180910390f35b6103696004803603810190610364919061170f565b6109d2565b6040516103769190611589565b60405180910390f35b61039960048036038101906103949190611684565b610a59565b005b6060600480546103aa9061177e565b80601f01602080910402602001604051908101604052809291908181526020018280546103d69061177e565b80156104235780601f106103f857610100808354040283529160200191610423565b820191906000526020600020905b81548152906001019060200180831161040657829003601f168201915b5050505050905090565b600061044161043a610b51565b8484610b59565b6001905092915050565b6000600354905090565b6000610462848484610d24565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006104ad610b51565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561052d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161052490611822565b60405180910390fd5b61054185610539610b51565b858403610b59565b60019150509392505050565b6000600660009054906101000a900460ff16905090565b6000610606610571610b51565b84846002600061057f610b51565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546106019190611871565b610b59565b6001905092915050565b610618610b51565b73ffffffffffffffffffffffffffffffffffffffff1661063661077e565b73ffffffffffffffffffffffffffffffffffffffff161461068c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161068390611913565b60405180910390fd5b6106968282610fa8565b5050565b600660019054906101000a900460e01b81565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6106fe610b51565b73ffffffffffffffffffffffffffffffffffffffff1661071c61077e565b73ffffffffffffffffffffffffffffffffffffffff1614610772576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076990611913565b60405180910390fd5b61077c6000611109565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546107b69061177e565b80601f01602080910402602001604051908101604052809291908181526020018280546107e29061177e565b801561082f5780601f106108045761010080835404028352916020019161082f565b820191906000526020600020905b81548152906001019060200180831161081257829003601f168201915b5050505050905090565b610841610b51565b73ffffffffffffffffffffffffffffffffffffffff1661085f61077e565b73ffffffffffffffffffffffffffffffffffffffff16146108b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ac90611913565b60405180910390fd5b6108bf82826111cd565b5050565b600080600260006108d2610b51565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561098f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610986906119a5565b60405180910390fd5b6109a361099a610b51565b85858403610b59565b600191505092915050565b60006109c26109bb610b51565b8484610d24565b6001905092915050565b60075481565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610a61610b51565b73ffffffffffffffffffffffffffffffffffffffff16610a7f61077e565b73ffffffffffffffffffffffffffffffffffffffff1614610ad5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610acc90611913565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3c90611a37565b60405180910390fd5b610b4e81611109565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc090611ac9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3090611b5b565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d179190611589565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8b90611bed565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfb90611c7f565b60405180910390fd5b610e0f8383836113a6565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8d90611d11565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f2b9190611871565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f8f9190611589565b60405180910390a3610fa28484846113ab565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611018576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100f90611d7d565b60405180910390fd5b611024600083836113a6565b80600360008282546110369190611871565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461108c9190611871565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516110f19190611589565b60405180910390a3611105600083836113ab565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561123d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123490611e0f565b60405180910390fd5b611249826000836113a6565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156112d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c790611ea1565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282546113289190611ec1565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161138d9190611589565b60405180910390a36113a1836000846113ab565b505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156113ea5780820151818401526020810190506113cf565b838111156113f9576000848401525b50505050565b6000601f19601f8301169050919050565b600061141b826113b0565b61142581856113bb565b93506114358185602086016113cc565b61143e816113ff565b840191505092915050565b600060208201905081810360008301526114638184611410565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061149b82611470565b9050919050565b6114ab81611490565b81146114b657600080fd5b50565b6000813590506114c8816114a2565b92915050565b6000819050919050565b6114e1816114ce565b81146114ec57600080fd5b50565b6000813590506114fe816114d8565b92915050565b6000806040838503121561151b5761151a61146b565b5b6000611529858286016114b9565b925050602061153a858286016114ef565b9150509250929050565b60008115159050919050565b61155981611544565b82525050565b60006020820190506115746000830184611550565b92915050565b611583816114ce565b82525050565b600060208201905061159e600083018461157a565b92915050565b6000806000606084860312156115bd576115bc61146b565b5b60006115cb868287016114b9565b93505060206115dc868287016114b9565b92505060406115ed868287016114ef565b9150509250925092565b600060ff82169050919050565b61160d816115f7565b82525050565b60006020820190506116286000830184611604565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6116638161162e565b82525050565b600060208201905061167e600083018461165a565b92915050565b60006020828403121561169a5761169961146b565b5b60006116a8848285016114b9565b91505092915050565b6116ba81611490565b82525050565b60006020820190506116d560008301846116b1565b92915050565b6000819050919050565b6116ee816116db565b82525050565b600060208201905061170960008301846116e5565b92915050565b600080604083850312156117265761172561146b565b5b6000611734858286016114b9565b9250506020611745858286016114b9565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061179657607f821691505b602082108114156117aa576117a961174f565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b600061180c6028836113bb565b9150611817826117b0565b604082019050919050565b6000602082019050818103600083015261183b816117ff565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061187c826114ce565b9150611887836114ce565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156118bc576118bb611842565b5b828201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006118fd6020836113bb565b9150611908826118c7565b602082019050919050565b6000602082019050818103600083015261192c816118f0565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061198f6025836113bb565b915061199a82611933565b604082019050919050565b600060208201905081810360008301526119be81611982565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611a216026836113bb565b9150611a2c826119c5565b604082019050919050565b60006020820190508181036000830152611a5081611a14565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611ab36024836113bb565b9150611abe82611a57565b604082019050919050565b60006020820190508181036000830152611ae281611aa6565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611b456022836113bb565b9150611b5082611ae9565b604082019050919050565b60006020820190508181036000830152611b7481611b38565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611bd76025836113bb565b9150611be282611b7b565b604082019050919050565b60006020820190508181036000830152611c0681611bca565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611c696023836113bb565b9150611c7482611c0d565b604082019050919050565b60006020820190508181036000830152611c9881611c5c565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611cfb6026836113bb565b9150611d0682611c9f565b604082019050919050565b60006020820190508181036000830152611d2a81611cee565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000611d67601f836113bb565b9150611d7282611d31565b602082019050919050565b60006020820190508181036000830152611d9681611d5a565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611df96021836113bb565b9150611e0482611d9d565b604082019050919050565b60006020820190508181036000830152611e2881611dec565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611e8b6022836113bb565b9150611e9682611e2f565b604082019050919050565b60006020820190508181036000830152611eba81611e7e565b9050919050565b6000611ecc826114ce565b9150611ed7836114ce565b925082821015611eea57611ee9611842565b5b82820390509291505056fea2646970667358221220a9f56006d78df24d2a6e1ff185a4345654f4cd02d6396f1072407ae8268be6aa64736f6c63430008090033

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

534f4c0000000000000000000000000000000000000000000000000000000000069b8857feab8184fb687f634618c035dac439dc1aeb3b5598a0f00000000001000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000003534f4c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003534f4c0000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : source_ (bytes4): 0x534f4c00
Arg [1] : sourceAddress_ (bytes32): 0x069b8857feab8184fb687f634618c035dac439dc1aeb3b5598a0f00000000001
Arg [2] : decimals_ (uint8): 18
Arg [3] : name (string): SOL
Arg [4] : symbol (string): SOL

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 534f4c0000000000000000000000000000000000000000000000000000000000
Arg [1] : 069b8857feab8184fb687f634618c035dac439dc1aeb3b5598a0f00000000001
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [4] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 534f4c0000000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [8] : 534f4c0000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

18241:778:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6090:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8257:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7210:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8908:492;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18690:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9809:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18798:103;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18327:20;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7381:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17612:94;;;:::i;:::-;;16961:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6309:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18909:107;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10527:413;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7721:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18354:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7959:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17861:192;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6090:100;6144:13;6177:5;6170:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6090:100;:::o;8257:169::-;8340:4;8357:39;8366:12;:10;:12::i;:::-;8380:7;8389:6;8357:8;:39::i;:::-;8414:4;8407:11;;8257:169;;;;:::o;7210:108::-;7271:7;7298:12;;7291:19;;7210:108;:::o;8908:492::-;9048:4;9065:36;9075:6;9083:9;9094:6;9065:9;:36::i;:::-;9114:24;9141:11;:19;9153:6;9141:19;;;;;;;;;;;;;;;:33;9161:12;:10;:12::i;:::-;9141:33;;;;;;;;;;;;;;;;9114:60;;9213:6;9193:16;:26;;9185:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;9300:57;9309:6;9317:12;:10;:12::i;:::-;9350:6;9331:16;:25;9300:8;:57::i;:::-;9388:4;9381:11;;;8908:492;;;;;:::o;18690:100::-;18748:5;18773:9;;;;;;;;;;;18766:16;;18690:100;:::o;9809:215::-;9897:4;9914:80;9923:12;:10;:12::i;:::-;9937:7;9983:10;9946:11;:25;9958:12;:10;:12::i;:::-;9946:25;;;;;;;;;;;;;;;:34;9972:7;9946:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;9914:8;:80::i;:::-;10012:4;10005:11;;9809:215;;;;:::o;18798:103::-;17192:12;:10;:12::i;:::-;17181:23;;:7;:5;:7::i;:::-;:23;;;17173:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18876:17:::1;18882:2;18886:6;18876:5;:17::i;:::-;18798:103:::0;;:::o;18327:20::-;;;;;;;;;;;;;:::o;7381:127::-;7455:7;7482:9;:18;7492:7;7482:18;;;;;;;;;;;;;;;;7475:25;;7381:127;;;:::o;17612:94::-;17192:12;:10;:12::i;:::-;17181:23;;:7;:5;:7::i;:::-;:23;;;17173:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17677:21:::1;17695:1;17677:9;:21::i;:::-;17612:94::o:0;16961:87::-;17007:7;17034:6;;;;;;;;;;;17027:13;;16961:87;:::o;6309:104::-;6365:13;6398:7;6391:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6309:104;:::o;18909:107::-;17192:12;:10;:12::i;:::-;17181:23;;:7;:5;:7::i;:::-;:23;;;17173:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18989:19:::1;18995:4;19001:6;18989:5;:19::i;:::-;18909:107:::0;;:::o;10527:413::-;10620:4;10637:24;10664:11;:25;10676:12;:10;:12::i;:::-;10664:25;;;;;;;;;;;;;;;:34;10690:7;10664:34;;;;;;;;;;;;;;;;10637:61;;10737:15;10717:16;:35;;10709:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;10830:67;10839:12;:10;:12::i;:::-;10853:7;10881:15;10862:16;:34;10830:8;:67::i;:::-;10928:4;10921:11;;;10527:413;;;;:::o;7721:175::-;7807:4;7824:42;7834:12;:10;:12::i;:::-;7848:9;7859:6;7824:9;:42::i;:::-;7884:4;7877:11;;7721:175;;;;:::o;18354:28::-;;;;:::o;7959:151::-;8048:7;8075:11;:18;8087:5;8075:18;;;;;;;;;;;;;;;:27;8094:7;8075:27;;;;;;;;;;;;;;;;8068:34;;7959:151;;;;:::o;17861:192::-;17192:12;:10;:12::i;:::-;17181:23;;:7;:5;:7::i;:::-;:23;;;17173:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17970:1:::1;17950:22;;:8;:22;;;;17942:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;18026:19;18036:8;18026:9;:19::i;:::-;17861:192:::0;:::o;3898:98::-;3951:7;3978:10;3971:17;;3898:98;:::o;14211:380::-;14364:1;14347:19;;:5;:19;;;;14339:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14445:1;14426:21;;:7;:21;;;;14418:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14529:6;14499:11;:18;14511:5;14499:18;;;;;;;;;;;;;;;:27;14518:7;14499:27;;;;;;;;;;;;;;;:36;;;;14567:7;14551:32;;14560:5;14551:32;;;14576:6;14551:32;;;;;;:::i;:::-;;;;;;;;14211:380;;;:::o;11430:733::-;11588:1;11570:20;;:6;:20;;;;11562:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;11672:1;11651:23;;:9;:23;;;;11643:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;11727:47;11748:6;11756:9;11767:6;11727:20;:47::i;:::-;11787:21;11811:9;:17;11821:6;11811:17;;;;;;;;;;;;;;;;11787:41;;11864:6;11847:13;:23;;11839:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;11985:6;11969:13;:22;11949:9;:17;11959:6;11949:17;;;;;;;;;;;;;;;:42;;;;12037:6;12013:9;:20;12023:9;12013:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;12078:9;12061:35;;12070:6;12061:35;;;12089:6;12061:35;;;;;;:::i;:::-;;;;;;;;12109:46;12129:6;12137:9;12148:6;12109:19;:46::i;:::-;11551:612;11430:733;;;:::o;12450:399::-;12553:1;12534:21;;:7;:21;;;;12526:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;12604:49;12633:1;12637:7;12646:6;12604:20;:49::i;:::-;12682:6;12666:12;;:22;;;;;;;:::i;:::-;;;;;;;;12721:6;12699:9;:18;12709:7;12699:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;12764:7;12743:37;;12760:1;12743:37;;;12773:6;12743:37;;;;;;:::i;:::-;;;;;;;;12793:48;12821:1;12825:7;12834:6;12793:19;:48::i;:::-;12450:399;;:::o;18061:173::-;18117:16;18136:6;;;;;;;;;;;18117:25;;18162:8;18153:6;;:17;;;;;;;;;;;;;;;;;;18217:8;18186:40;;18207:8;18186:40;;;;;;;;;;;;18106:128;18061:173;:::o;13182:591::-;13285:1;13266:21;;:7;:21;;;;13258:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;13338:49;13359:7;13376:1;13380:6;13338:20;:49::i;:::-;13400:22;13425:9;:18;13435:7;13425:18;;;;;;;;;;;;;;;;13400:43;;13480:6;13462:14;:24;;13454:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;13599:6;13582:14;:23;13561:9;:18;13571:7;13561:18;;;;;;;;;;;;;;;:44;;;;13643:6;13627:12;;:22;;;;;;;:::i;:::-;;;;;;;;13693:1;13667:37;;13676:7;13667:37;;;13697:6;13667:37;;;;;;:::i;:::-;;;;;;;;13717:48;13737:7;13754:1;13758:6;13717:19;:48::i;:::-;13247:526;13182:591;;:::o;15191:125::-;;;;:::o;15920:124::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:118::-;3581:24;3599:5;3581:24;:::i;:::-;3576:3;3569:37;3494:118;;:::o;3618:222::-;3711:4;3749:2;3738:9;3734:18;3726:26;;3762:71;3830:1;3819:9;3815:17;3806:6;3762:71;:::i;:::-;3618:222;;;;:::o;3846:619::-;3923:6;3931;3939;3988:2;3976:9;3967:7;3963:23;3959:32;3956:119;;;3994:79;;:::i;:::-;3956:119;4114:1;4139:53;4184:7;4175:6;4164:9;4160:22;4139:53;:::i;:::-;4129:63;;4085:117;4241:2;4267:53;4312:7;4303:6;4292:9;4288:22;4267:53;:::i;:::-;4257:63;;4212:118;4369:2;4395:53;4440:7;4431:6;4420:9;4416:22;4395:53;:::i;:::-;4385:63;;4340:118;3846:619;;;;;:::o;4471:86::-;4506:7;4546:4;4539:5;4535:16;4524:27;;4471:86;;;:::o;4563:112::-;4646:22;4662:5;4646:22;:::i;:::-;4641:3;4634:35;4563:112;;:::o;4681:214::-;4770:4;4808:2;4797:9;4793:18;4785:26;;4821:67;4885:1;4874:9;4870:17;4861:6;4821:67;:::i;:::-;4681:214;;;;:::o;4901:149::-;4937:7;4977:66;4970:5;4966:78;4955:89;;4901:149;;;:::o;5056:115::-;5141:23;5158:5;5141:23;:::i;:::-;5136:3;5129:36;5056:115;;:::o;5177:218::-;5268:4;5306:2;5295:9;5291:18;5283:26;;5319:69;5385:1;5374:9;5370:17;5361:6;5319:69;:::i;:::-;5177:218;;;;:::o;5401:329::-;5460:6;5509:2;5497:9;5488:7;5484:23;5480:32;5477:119;;;5515:79;;:::i;:::-;5477:119;5635:1;5660:53;5705:7;5696:6;5685:9;5681:22;5660:53;:::i;:::-;5650:63;;5606:117;5401:329;;;;:::o;5736:118::-;5823:24;5841:5;5823:24;:::i;:::-;5818:3;5811:37;5736:118;;:::o;5860:222::-;5953:4;5991:2;5980:9;5976:18;5968:26;;6004:71;6072:1;6061:9;6057:17;6048:6;6004:71;:::i;:::-;5860:222;;;;:::o;6088:77::-;6125:7;6154:5;6143:16;;6088:77;;;:::o;6171:118::-;6258:24;6276:5;6258:24;:::i;:::-;6253:3;6246:37;6171:118;;:::o;6295:222::-;6388:4;6426:2;6415:9;6411:18;6403:26;;6439:71;6507:1;6496:9;6492:17;6483:6;6439:71;:::i;:::-;6295:222;;;;:::o;6523:474::-;6591:6;6599;6648:2;6636:9;6627:7;6623:23;6619:32;6616:119;;;6654:79;;:::i;:::-;6616:119;6774:1;6799:53;6844:7;6835:6;6824:9;6820:22;6799:53;:::i;:::-;6789:63;;6745:117;6901:2;6927:53;6972:7;6963:6;6952:9;6948:22;6927:53;:::i;:::-;6917:63;;6872:118;6523:474;;;;;:::o;7003:180::-;7051:77;7048:1;7041:88;7148:4;7145:1;7138:15;7172:4;7169:1;7162:15;7189:320;7233:6;7270:1;7264:4;7260:12;7250:22;;7317:1;7311:4;7307:12;7338:18;7328:81;;7394:4;7386:6;7382:17;7372:27;;7328:81;7456:2;7448:6;7445:14;7425:18;7422:38;7419:84;;;7475:18;;:::i;:::-;7419:84;7240:269;7189:320;;;:::o;7515:227::-;7655:34;7651:1;7643:6;7639:14;7632:58;7724:10;7719:2;7711:6;7707:15;7700:35;7515:227;:::o;7748:366::-;7890:3;7911:67;7975:2;7970:3;7911:67;:::i;:::-;7904:74;;7987:93;8076:3;7987:93;:::i;:::-;8105:2;8100:3;8096:12;8089:19;;7748:366;;;:::o;8120:419::-;8286:4;8324:2;8313:9;8309:18;8301:26;;8373:9;8367:4;8363:20;8359:1;8348:9;8344:17;8337:47;8401:131;8527:4;8401:131;:::i;:::-;8393:139;;8120:419;;;:::o;8545:180::-;8593:77;8590:1;8583:88;8690:4;8687:1;8680:15;8714:4;8711:1;8704:15;8731:305;8771:3;8790:20;8808:1;8790:20;:::i;:::-;8785:25;;8824:20;8842:1;8824:20;:::i;:::-;8819:25;;8978:1;8910:66;8906:74;8903:1;8900:81;8897:107;;;8984:18;;:::i;:::-;8897:107;9028:1;9025;9021:9;9014:16;;8731:305;;;;:::o;9042:182::-;9182:34;9178:1;9170:6;9166:14;9159:58;9042:182;:::o;9230:366::-;9372:3;9393:67;9457:2;9452:3;9393:67;:::i;:::-;9386:74;;9469:93;9558:3;9469:93;:::i;:::-;9587:2;9582:3;9578:12;9571:19;;9230:366;;;:::o;9602:419::-;9768:4;9806:2;9795:9;9791:18;9783:26;;9855:9;9849:4;9845:20;9841:1;9830:9;9826:17;9819:47;9883:131;10009:4;9883:131;:::i;:::-;9875:139;;9602:419;;;:::o;10027:224::-;10167:34;10163:1;10155:6;10151:14;10144:58;10236:7;10231:2;10223:6;10219:15;10212:32;10027:224;:::o;10257:366::-;10399:3;10420:67;10484:2;10479:3;10420:67;:::i;:::-;10413:74;;10496:93;10585:3;10496:93;:::i;:::-;10614:2;10609:3;10605:12;10598:19;;10257:366;;;:::o;10629:419::-;10795:4;10833:2;10822:9;10818:18;10810:26;;10882:9;10876:4;10872:20;10868:1;10857:9;10853:17;10846:47;10910:131;11036:4;10910:131;:::i;:::-;10902:139;;10629:419;;;:::o;11054:225::-;11194:34;11190:1;11182:6;11178:14;11171:58;11263:8;11258:2;11250:6;11246:15;11239:33;11054:225;:::o;11285:366::-;11427:3;11448:67;11512:2;11507:3;11448:67;:::i;:::-;11441:74;;11524:93;11613:3;11524:93;:::i;:::-;11642:2;11637:3;11633:12;11626:19;;11285:366;;;:::o;11657:419::-;11823:4;11861:2;11850:9;11846:18;11838:26;;11910:9;11904:4;11900:20;11896:1;11885:9;11881:17;11874:47;11938:131;12064:4;11938:131;:::i;:::-;11930:139;;11657:419;;;:::o;12082:223::-;12222:34;12218:1;12210:6;12206:14;12199:58;12291:6;12286:2;12278:6;12274:15;12267:31;12082:223;:::o;12311:366::-;12453:3;12474:67;12538:2;12533:3;12474:67;:::i;:::-;12467:74;;12550:93;12639:3;12550:93;:::i;:::-;12668:2;12663:3;12659:12;12652:19;;12311:366;;;:::o;12683:419::-;12849:4;12887:2;12876:9;12872:18;12864:26;;12936:9;12930:4;12926:20;12922:1;12911:9;12907:17;12900:47;12964:131;13090:4;12964:131;:::i;:::-;12956:139;;12683:419;;;:::o;13108:221::-;13248:34;13244:1;13236:6;13232:14;13225:58;13317:4;13312:2;13304:6;13300:15;13293:29;13108:221;:::o;13335:366::-;13477:3;13498:67;13562:2;13557:3;13498:67;:::i;:::-;13491:74;;13574:93;13663:3;13574:93;:::i;:::-;13692:2;13687:3;13683:12;13676:19;;13335:366;;;:::o;13707:419::-;13873:4;13911:2;13900:9;13896:18;13888:26;;13960:9;13954:4;13950:20;13946:1;13935:9;13931:17;13924:47;13988:131;14114:4;13988:131;:::i;:::-;13980:139;;13707:419;;;:::o;14132:224::-;14272:34;14268:1;14260:6;14256:14;14249:58;14341:7;14336:2;14328:6;14324:15;14317:32;14132:224;:::o;14362:366::-;14504:3;14525:67;14589:2;14584:3;14525:67;:::i;:::-;14518:74;;14601:93;14690:3;14601:93;:::i;:::-;14719:2;14714:3;14710:12;14703:19;;14362:366;;;:::o;14734:419::-;14900:4;14938:2;14927:9;14923:18;14915:26;;14987:9;14981:4;14977:20;14973:1;14962:9;14958:17;14951:47;15015:131;15141:4;15015:131;:::i;:::-;15007:139;;14734:419;;;:::o;15159:222::-;15299:34;15295:1;15287:6;15283:14;15276:58;15368:5;15363:2;15355:6;15351:15;15344:30;15159:222;:::o;15387:366::-;15529:3;15550:67;15614:2;15609:3;15550:67;:::i;:::-;15543:74;;15626:93;15715:3;15626:93;:::i;:::-;15744:2;15739:3;15735:12;15728:19;;15387:366;;;:::o;15759:419::-;15925:4;15963:2;15952:9;15948:18;15940:26;;16012:9;16006:4;16002:20;15998:1;15987:9;15983:17;15976:47;16040:131;16166:4;16040:131;:::i;:::-;16032:139;;15759:419;;;:::o;16184:225::-;16324:34;16320:1;16312:6;16308:14;16301:58;16393:8;16388:2;16380:6;16376:15;16369:33;16184:225;:::o;16415:366::-;16557:3;16578:67;16642:2;16637:3;16578:67;:::i;:::-;16571:74;;16654:93;16743:3;16654:93;:::i;:::-;16772:2;16767:3;16763:12;16756:19;;16415:366;;;:::o;16787:419::-;16953:4;16991:2;16980:9;16976:18;16968:26;;17040:9;17034:4;17030:20;17026:1;17015:9;17011:17;17004:47;17068:131;17194:4;17068:131;:::i;:::-;17060:139;;16787:419;;;:::o;17212:181::-;17352:33;17348:1;17340:6;17336:14;17329:57;17212:181;:::o;17399:366::-;17541:3;17562:67;17626:2;17621:3;17562:67;:::i;:::-;17555:74;;17638:93;17727:3;17638:93;:::i;:::-;17756:2;17751:3;17747:12;17740:19;;17399:366;;;:::o;17771:419::-;17937:4;17975:2;17964:9;17960:18;17952:26;;18024:9;18018:4;18014:20;18010:1;17999:9;17995:17;17988:47;18052:131;18178:4;18052:131;:::i;:::-;18044:139;;17771:419;;;:::o;18196:220::-;18336:34;18332:1;18324:6;18320:14;18313:58;18405:3;18400:2;18392:6;18388:15;18381:28;18196:220;:::o;18422:366::-;18564:3;18585:67;18649:2;18644:3;18585:67;:::i;:::-;18578:74;;18661:93;18750:3;18661:93;:::i;:::-;18779:2;18774:3;18770:12;18763:19;;18422:366;;;:::o;18794:419::-;18960:4;18998:2;18987:9;18983:18;18975:26;;19047:9;19041:4;19037:20;19033:1;19022:9;19018:17;19011:47;19075:131;19201:4;19075:131;:::i;:::-;19067:139;;18794:419;;;:::o;19219:221::-;19359:34;19355:1;19347:6;19343:14;19336:58;19428:4;19423:2;19415:6;19411:15;19404:29;19219:221;:::o;19446:366::-;19588:3;19609:67;19673:2;19668:3;19609:67;:::i;:::-;19602:74;;19685:93;19774:3;19685:93;:::i;:::-;19803:2;19798:3;19794:12;19787:19;;19446:366;;;:::o;19818:419::-;19984:4;20022:2;20011:9;20007:18;19999:26;;20071:9;20065:4;20061:20;20057:1;20046:9;20042:17;20035:47;20099:131;20225:4;20099:131;:::i;:::-;20091:139;;19818:419;;;:::o;20243:191::-;20283:4;20303:20;20321:1;20303:20;:::i;:::-;20298:25;;20337:20;20355:1;20337:20;:::i;:::-;20332:25;;20376:1;20373;20370:8;20367:34;;;20381:18;;:::i;:::-;20367:34;20426:1;20423;20419:9;20411:17;;20243:191;;;;:::o

Swarm Source

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