ETH Price: $2,266.07 (+5.65%)
Gas: 0.71 Gwei

Token

Casper (CASPER)
 

Overview

Max Total Supply

1,000,000,000 CASPER

Holders

33

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
14,226,524.265866722416653859 CASPER

Value
$0.00
0x39A300a0ec8cb0a5a87f37cb2e445c46641633eF
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:
Token

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-04-28
*/

// Twitter: twitter.com/casper_erc20?s=11&t=0p0WJrEueEbihW0AAh0goQ
// Telegram : t.me/Caspertoken_erc20

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

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

interface IERC20 {
    function totalSupply() external view returns (uint256);

    function balanceOf(address account) external view returns (uint256);

    function transfer(address recipient, uint256 amount) external returns (bool);

    function allowance(address owner, address spender) external view returns (uint256);

    function approve(address spender, uint256 amount) external returns (bool);

    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    event Transfer(address indexed from, address indexed to, uint256 value);
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );
}

contract Ownable is Context {
    address private _owner;
    address private _previousOwner;
    event OwnershipTransferred(
        address indexed previousOwner,
        address indexed newOwner
    );

    constructor() {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    function owner() public view returns (address) {
        return _owner;
    }

    modifier onlyOwner() {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }

}

library SafeMath {
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");
        return c;
    }

    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;
        return c;
    }

    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }
        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");
        return c;
    }

    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        return c;
    }
}

interface IUniswapV2Factory {
    function createPair(address tokenA, address tokenB)
        external
        returns (address pair);
}

interface IUniswapV2Router02 {
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;

    function factory() external pure returns (address);

    function WETH() external pure returns (address);

    function addLiquidityETH(
        address token,
        uint256 amountTokenDesired,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    )
        external
        payable
        returns (
            uint256 amountToken,
            uint256 amountETH,
            uint256 liquidity
        );
}

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

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

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

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

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

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

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

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

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

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



/**
 * @dev Extension of {ERC20} that adds a cap to the supply of tokens.
 */
abstract contract ERC20Capped is ERC20 {
    uint256 private immutable _cap;

    /**
     * @dev Sets the value of the `cap`. This value is immutable, it can only be
     * set once during construction.
     */
    constructor(uint256 cap_) {
        require(cap_ > 0, "ERC20Capped: cap is 0");
        _cap = cap_;
    }

    /**
     * @dev Returns the cap on the token's total supply.
     */
    function cap() public view virtual returns (uint256) {
        return _cap;
    }

    /**
     * @dev See {ERC20-_mint}.
     */
    function _mint(address account, uint256 amount) internal virtual override {
        require(ERC20.totalSupply() + amount <= cap(), "ERC20Capped: cap exceeded");
        super._mint(account, amount);
    }
}

contract Token is ERC20Capped {
    address payable public owner;

    uint256 maxSupply = 1000000000 * (10 ** decimals());

    constructor() ERC20("Casper", "CASPER") ERC20Capped(maxSupply) {
        owner = payable(msg.sender);
        _mint(owner, maxSupply);
    }

    modifier isOwner() {
        require(msg.sender == owner, "Only the owner can call this function");
        _;
    }

    function renounceOwnership(address _newOwner) public virtual isOwner {
        require(_newOwner != address(0), "New owner must be a real address");
        owner = payable(_newOwner);
    }

    function burn(uint256 _value) external {
        uint256 amountToBurn = _value * (10 ** decimals());
        _burn(msg.sender, amountToBurn);
    }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[],"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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cap","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":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_newOwner","type":"address"}],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

60a060405262000014620001a560201b60201c565b600a62000022919062000564565b633b9aca00620000339190620005b5565b6006553480156200004357600080fd5b506006546040518060400160405280600681526020017f43617370657200000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f43415350455200000000000000000000000000000000000000000000000000008152508160039081620000c4919062000870565b508060049081620000d6919062000870565b505050600081116200011f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200011690620009b8565b60405180910390fd5b80608081815250505033600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200019f600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600654620001ae60201b60201c565b62000b27565b60006012905090565b620001be6200023f60201b60201c565b81620001d46200024960201b620003eb1760201c565b620001e09190620009da565b111562000224576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200021b9062000a65565b60405180910390fd5b6200023b82826200025360201b620008211760201c565b5050565b6000608051905090565b6000600254905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620002c5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002bc9062000ad7565b60405180910390fd5b620002d960008383620003c060201b60201c565b8060026000828254620002ed9190620009da565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003a0919062000b0a565b60405180910390a3620003bc60008383620003c560201b60201c565b5050565b505050565b505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115620004585780860481111562000430576200042f620003ca565b5b6001851615620004405780820291505b80810290506200045085620003f9565b945062000410565b94509492505050565b60008262000473576001905062000546565b8162000483576000905062000546565b81600181146200049c5760028114620004a757620004dd565b600191505062000546565b60ff841115620004bc57620004bb620003ca565b5b8360020a915084821115620004d657620004d5620003ca565b5b5062000546565b5060208310610133831016604e8410600b8410161715620005175782820a905083811115620005115762000510620003ca565b5b62000546565b62000526848484600162000406565b9250905081840481111562000540576200053f620003ca565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b600062000571826200054d565b91506200057e8362000557565b9250620005ad7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000461565b905092915050565b6000620005c2826200054d565b9150620005cf836200054d565b9250828202620005df816200054d565b91508282048414831517620005f957620005f8620003ca565b5b5092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200068257607f821691505b6020821081036200069857620006976200063a565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620007027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620006c3565b6200070e8683620006c3565b95508019841693508086168417925050509392505050565b6000819050919050565b6000620007516200074b62000745846200054d565b62000726565b6200054d565b9050919050565b6000819050919050565b6200076d8362000730565b620007856200077c8262000758565b848454620006d0565b825550505050565b600090565b6200079c6200078d565b620007a981848462000762565b505050565b5b81811015620007d157620007c560008262000792565b600181019050620007af565b5050565b601f8211156200082057620007ea816200069e565b620007f584620006b3565b8101602085101562000805578190505b6200081d6200081485620006b3565b830182620007ae565b50505b505050565b600082821c905092915050565b6000620008456000198460080262000825565b1980831691505092915050565b600062000860838362000832565b9150826002028217905092915050565b6200087b8262000600565b67ffffffffffffffff8111156200089757620008966200060b565b5b620008a3825462000669565b620008b0828285620007d5565b600060209050601f831160018114620008e85760008415620008d3578287015190505b620008df858262000852565b8655506200094f565b601f198416620008f8866200069e565b60005b828110156200092257848901518255600182019150602085019450602081019050620008fb565b868310156200094257848901516200093e601f89168262000832565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332304361707065643a2063617020697320300000000000000000000000600082015250565b6000620009a060158362000957565b9150620009ad8262000968565b602082019050919050565b60006020820190508181036000830152620009d38162000991565b9050919050565b6000620009e7826200054d565b9150620009f4836200054d565b925082820190508082111562000a0f5762000a0e620003ca565b5b92915050565b7f45524332304361707065643a2063617020657863656564656400000000000000600082015250565b600062000a4d60198362000957565b915062000a5a8262000a15565b602082019050919050565b6000602082019050818103600083015262000a808162000a3e565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000abf601f8362000957565b915062000acc8262000a87565b602082019050919050565b6000602082019050818103600083015262000af28162000ab0565b9050919050565b62000b04816200054d565b82525050565b600060208201905062000b21600083018462000af9565b92915050565b608051611c8b62000b4360003960006104310152611c8b6000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c8063395093511161009757806395d89b411161006657806395d89b4114610288578063a457c2d7146102a6578063a9059cbb146102d6578063dd62ed3e14610306576100f5565b806339509351146101ee57806342966c681461021e57806370a082311461023a5780638da5cb5b1461026a576100f5565b806323b872dd116100d357806323b872dd14610166578063313ce56714610196578063355274ea146101b457806338bf3cfa146101d2576100f5565b806306fdde03146100fa578063095ea7b31461011857806318160ddd14610148575b600080fd5b610102610336565b60405161010f91906110b1565b60405180910390f35b610132600480360381019061012d919061116c565b6103c8565b60405161013f91906111c7565b60405180910390f35b6101506103eb565b60405161015d91906111f1565b60405180910390f35b610180600480360381019061017b919061120c565b6103f5565b60405161018d91906111c7565b60405180910390f35b61019e610424565b6040516101ab919061127b565b60405180910390f35b6101bc61042d565b6040516101c991906111f1565b60405180910390f35b6101ec60048036038101906101e79190611296565b610455565b005b6102086004803603810190610203919061116c565b610598565b60405161021591906111c7565b60405180910390f35b610238600480360381019061023391906112c3565b6105cf565b005b610254600480360381019061024f9190611296565b610600565b60405161026191906111f1565b60405180910390f35b610272610648565b60405161027f9190611311565b60405180910390f35b61029061066e565b60405161029d91906110b1565b60405180910390f35b6102c060048036038101906102bb919061116c565b610700565b6040516102cd91906111c7565b60405180910390f35b6102f060048036038101906102eb919061116c565b610777565b6040516102fd91906111c7565b60405180910390f35b610320600480360381019061031b919061132c565b61079a565b60405161032d91906111f1565b60405180910390f35b6060600380546103459061139b565b80601f01602080910402602001604051908101604052809291908181526020018280546103719061139b565b80156103be5780601f10610393576101008083540402835291602001916103be565b820191906000526020600020905b8154815290600101906020018083116103a157829003601f168201915b5050505050905090565b6000806103d3610977565b90506103e081858561097f565b600191505092915050565b6000600254905090565b600080610400610977565b905061040d858285610b48565b610418858585610bd4565b60019150509392505050565b60006012905090565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146104e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104dc9061143e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610554576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161054b906114aa565b60405180910390fd5b80600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000806105a3610977565b90506105c48185856105b5858961079a565b6105bf91906114f9565b61097f565b600191505092915050565b60006105d9610424565b600a6105e59190611660565b826105f091906116ab565b90506105fc3382610e4a565b5050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606004805461067d9061139b565b80601f01602080910402602001604051908101604052809291908181526020018280546106a99061139b565b80156106f65780601f106106cb576101008083540402835291602001916106f6565b820191906000526020600020905b8154815290600101906020018083116106d957829003601f168201915b5050505050905090565b60008061070b610977565b90506000610719828661079a565b90508381101561075e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107559061175f565b60405180910390fd5b61076b828686840361097f565b60019250505092915050565b600080610782610977565b905061078f818585610bd4565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610890576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610887906117cb565b60405180910390fd5b61089c60008383611017565b80600260008282546108ae91906114f9565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161095f91906111f1565b60405180910390a36109736000838361101c565b5050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e59061185d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a54906118ef565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b3b91906111f1565b60405180910390a3505050565b6000610b54848461079a565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610bce5781811015610bc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb79061195b565b60405180910390fd5b610bcd848484840361097f565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3a906119ed565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca990611a7f565b60405180910390fd5b610cbd838383611017565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610d43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3a90611b11565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e3191906111f1565b60405180910390a3610e4484848461101c565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610eb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb090611ba3565b60405180910390fd5b610ec582600083611017565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610f4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4290611c35565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ffe91906111f1565b60405180910390a36110128360008461101c565b505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561105b578082015181840152602081019050611040565b60008484015250505050565b6000601f19601f8301169050919050565b600061108382611021565b61108d818561102c565b935061109d81856020860161103d565b6110a681611067565b840191505092915050565b600060208201905081810360008301526110cb8184611078565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611103826110d8565b9050919050565b611113816110f8565b811461111e57600080fd5b50565b6000813590506111308161110a565b92915050565b6000819050919050565b61114981611136565b811461115457600080fd5b50565b60008135905061116681611140565b92915050565b60008060408385031215611183576111826110d3565b5b600061119185828601611121565b92505060206111a285828601611157565b9150509250929050565b60008115159050919050565b6111c1816111ac565b82525050565b60006020820190506111dc60008301846111b8565b92915050565b6111eb81611136565b82525050565b600060208201905061120660008301846111e2565b92915050565b600080600060608486031215611225576112246110d3565b5b600061123386828701611121565b935050602061124486828701611121565b925050604061125586828701611157565b9150509250925092565b600060ff82169050919050565b6112758161125f565b82525050565b6000602082019050611290600083018461126c565b92915050565b6000602082840312156112ac576112ab6110d3565b5b60006112ba84828501611121565b91505092915050565b6000602082840312156112d9576112d86110d3565b5b60006112e784828501611157565b91505092915050565b60006112fb826110d8565b9050919050565b61130b816112f0565b82525050565b60006020820190506113266000830184611302565b92915050565b60008060408385031215611343576113426110d3565b5b600061135185828601611121565b925050602061136285828601611121565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806113b357607f821691505b6020821081036113c6576113c561136c565b5b50919050565b7f4f6e6c7920746865206f776e65722063616e2063616c6c20746869732066756e60008201527f6374696f6e000000000000000000000000000000000000000000000000000000602082015250565b600061142860258361102c565b9150611433826113cc565b604082019050919050565b600060208201905081810360008301526114578161141b565b9050919050565b7f4e6577206f776e6572206d7573742062652061207265616c2061646472657373600082015250565b600061149460208361102c565b915061149f8261145e565b602082019050919050565b600060208201905081810360008301526114c381611487565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061150482611136565b915061150f83611136565b9250828201905080821115611527576115266114ca565b5b92915050565b60008160011c9050919050565b6000808291508390505b6001851115611584578086048111156115605761155f6114ca565b5b600185161561156f5780820291505b808102905061157d8561152d565b9450611544565b94509492505050565b60008261159d5760019050611659565b816115ab5760009050611659565b81600181146115c157600281146115cb576115fa565b6001915050611659565b60ff8411156115dd576115dc6114ca565b5b8360020a9150848211156115f4576115f36114ca565b5b50611659565b5060208310610133831016604e8410600b841016171561162f5782820a90508381111561162a576116296114ca565b5b611659565b61163c848484600161153a565b92509050818404811115611653576116526114ca565b5b81810290505b9392505050565b600061166b82611136565b91506116768361125f565b92506116a37fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848461158d565b905092915050565b60006116b682611136565b91506116c183611136565b92508282026116cf81611136565b915082820484148315176116e6576116e56114ca565b5b5092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061174960258361102c565b9150611754826116ed565b604082019050919050565b600060208201905081810360008301526117788161173c565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006117b5601f8361102c565b91506117c08261177f565b602082019050919050565b600060208201905081810360008301526117e4816117a8565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061184760248361102c565b9150611852826117eb565b604082019050919050565b600060208201905081810360008301526118768161183a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006118d960228361102c565b91506118e48261187d565b604082019050919050565b60006020820190508181036000830152611908816118cc565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611945601d8361102c565b91506119508261190f565b602082019050919050565b6000602082019050818103600083015261197481611938565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006119d760258361102c565b91506119e28261197b565b604082019050919050565b60006020820190508181036000830152611a06816119ca565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611a6960238361102c565b9150611a7482611a0d565b604082019050919050565b60006020820190508181036000830152611a9881611a5c565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611afb60268361102c565b9150611b0682611a9f565b604082019050919050565b60006020820190508181036000830152611b2a81611aee565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611b8d60218361102c565b9150611b9882611b31565b604082019050919050565b60006020820190508181036000830152611bbc81611b80565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611c1f60228361102c565b9150611c2a82611bc3565b604082019050919050565b60006020820190508181036000830152611c4e81611c12565b905091905056fea26469706673582212204dd9bda3bde100c0907dcca565f0697cdaea514605e9695e2149e615cfb943c664736f6c63430008110033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100f55760003560e01c8063395093511161009757806395d89b411161006657806395d89b4114610288578063a457c2d7146102a6578063a9059cbb146102d6578063dd62ed3e14610306576100f5565b806339509351146101ee57806342966c681461021e57806370a082311461023a5780638da5cb5b1461026a576100f5565b806323b872dd116100d357806323b872dd14610166578063313ce56714610196578063355274ea146101b457806338bf3cfa146101d2576100f5565b806306fdde03146100fa578063095ea7b31461011857806318160ddd14610148575b600080fd5b610102610336565b60405161010f91906110b1565b60405180910390f35b610132600480360381019061012d919061116c565b6103c8565b60405161013f91906111c7565b60405180910390f35b6101506103eb565b60405161015d91906111f1565b60405180910390f35b610180600480360381019061017b919061120c565b6103f5565b60405161018d91906111c7565b60405180910390f35b61019e610424565b6040516101ab919061127b565b60405180910390f35b6101bc61042d565b6040516101c991906111f1565b60405180910390f35b6101ec60048036038101906101e79190611296565b610455565b005b6102086004803603810190610203919061116c565b610598565b60405161021591906111c7565b60405180910390f35b610238600480360381019061023391906112c3565b6105cf565b005b610254600480360381019061024f9190611296565b610600565b60405161026191906111f1565b60405180910390f35b610272610648565b60405161027f9190611311565b60405180910390f35b61029061066e565b60405161029d91906110b1565b60405180910390f35b6102c060048036038101906102bb919061116c565b610700565b6040516102cd91906111c7565b60405180910390f35b6102f060048036038101906102eb919061116c565b610777565b6040516102fd91906111c7565b60405180910390f35b610320600480360381019061031b919061132c565b61079a565b60405161032d91906111f1565b60405180910390f35b6060600380546103459061139b565b80601f01602080910402602001604051908101604052809291908181526020018280546103719061139b565b80156103be5780601f10610393576101008083540402835291602001916103be565b820191906000526020600020905b8154815290600101906020018083116103a157829003601f168201915b5050505050905090565b6000806103d3610977565b90506103e081858561097f565b600191505092915050565b6000600254905090565b600080610400610977565b905061040d858285610b48565b610418858585610bd4565b60019150509392505050565b60006012905090565b60007f0000000000000000000000000000000000000000033b2e3c9fd0803ce8000000905090565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146104e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104dc9061143e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610554576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161054b906114aa565b60405180910390fd5b80600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000806105a3610977565b90506105c48185856105b5858961079a565b6105bf91906114f9565b61097f565b600191505092915050565b60006105d9610424565b600a6105e59190611660565b826105f091906116ab565b90506105fc3382610e4a565b5050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606004805461067d9061139b565b80601f01602080910402602001604051908101604052809291908181526020018280546106a99061139b565b80156106f65780601f106106cb576101008083540402835291602001916106f6565b820191906000526020600020905b8154815290600101906020018083116106d957829003601f168201915b5050505050905090565b60008061070b610977565b90506000610719828661079a565b90508381101561075e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107559061175f565b60405180910390fd5b61076b828686840361097f565b60019250505092915050565b600080610782610977565b905061078f818585610bd4565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610890576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610887906117cb565b60405180910390fd5b61089c60008383611017565b80600260008282546108ae91906114f9565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161095f91906111f1565b60405180910390a36109736000838361101c565b5050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e59061185d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a54906118ef565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b3b91906111f1565b60405180910390a3505050565b6000610b54848461079a565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610bce5781811015610bc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb79061195b565b60405180910390fd5b610bcd848484840361097f565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3a906119ed565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca990611a7f565b60405180910390fd5b610cbd838383611017565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610d43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3a90611b11565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e3191906111f1565b60405180910390a3610e4484848461101c565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610eb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb090611ba3565b60405180910390fd5b610ec582600083611017565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610f4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4290611c35565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ffe91906111f1565b60405180910390a36110128360008461101c565b505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561105b578082015181840152602081019050611040565b60008484015250505050565b6000601f19601f8301169050919050565b600061108382611021565b61108d818561102c565b935061109d81856020860161103d565b6110a681611067565b840191505092915050565b600060208201905081810360008301526110cb8184611078565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611103826110d8565b9050919050565b611113816110f8565b811461111e57600080fd5b50565b6000813590506111308161110a565b92915050565b6000819050919050565b61114981611136565b811461115457600080fd5b50565b60008135905061116681611140565b92915050565b60008060408385031215611183576111826110d3565b5b600061119185828601611121565b92505060206111a285828601611157565b9150509250929050565b60008115159050919050565b6111c1816111ac565b82525050565b60006020820190506111dc60008301846111b8565b92915050565b6111eb81611136565b82525050565b600060208201905061120660008301846111e2565b92915050565b600080600060608486031215611225576112246110d3565b5b600061123386828701611121565b935050602061124486828701611121565b925050604061125586828701611157565b9150509250925092565b600060ff82169050919050565b6112758161125f565b82525050565b6000602082019050611290600083018461126c565b92915050565b6000602082840312156112ac576112ab6110d3565b5b60006112ba84828501611121565b91505092915050565b6000602082840312156112d9576112d86110d3565b5b60006112e784828501611157565b91505092915050565b60006112fb826110d8565b9050919050565b61130b816112f0565b82525050565b60006020820190506113266000830184611302565b92915050565b60008060408385031215611343576113426110d3565b5b600061135185828601611121565b925050602061136285828601611121565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806113b357607f821691505b6020821081036113c6576113c561136c565b5b50919050565b7f4f6e6c7920746865206f776e65722063616e2063616c6c20746869732066756e60008201527f6374696f6e000000000000000000000000000000000000000000000000000000602082015250565b600061142860258361102c565b9150611433826113cc565b604082019050919050565b600060208201905081810360008301526114578161141b565b9050919050565b7f4e6577206f776e6572206d7573742062652061207265616c2061646472657373600082015250565b600061149460208361102c565b915061149f8261145e565b602082019050919050565b600060208201905081810360008301526114c381611487565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061150482611136565b915061150f83611136565b9250828201905080821115611527576115266114ca565b5b92915050565b60008160011c9050919050565b6000808291508390505b6001851115611584578086048111156115605761155f6114ca565b5b600185161561156f5780820291505b808102905061157d8561152d565b9450611544565b94509492505050565b60008261159d5760019050611659565b816115ab5760009050611659565b81600181146115c157600281146115cb576115fa565b6001915050611659565b60ff8411156115dd576115dc6114ca565b5b8360020a9150848211156115f4576115f36114ca565b5b50611659565b5060208310610133831016604e8410600b841016171561162f5782820a90508381111561162a576116296114ca565b5b611659565b61163c848484600161153a565b92509050818404811115611653576116526114ca565b5b81810290505b9392505050565b600061166b82611136565b91506116768361125f565b92506116a37fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848461158d565b905092915050565b60006116b682611136565b91506116c183611136565b92508282026116cf81611136565b915082820484148315176116e6576116e56114ca565b5b5092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061174960258361102c565b9150611754826116ed565b604082019050919050565b600060208201905081810360008301526117788161173c565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006117b5601f8361102c565b91506117c08261177f565b602082019050919050565b600060208201905081810360008301526117e4816117a8565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061184760248361102c565b9150611852826117eb565b604082019050919050565b600060208201905081810360008301526118768161183a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006118d960228361102c565b91506118e48261187d565b604082019050919050565b60006020820190508181036000830152611908816118cc565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611945601d8361102c565b91506119508261190f565b602082019050919050565b6000602082019050818103600083015261197481611938565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006119d760258361102c565b91506119e28261197b565b604082019050919050565b60006020820190508181036000830152611a06816119ca565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611a6960238361102c565b9150611a7482611a0d565b604082019050919050565b60006020820190508181036000830152611a9881611a5c565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611afb60268361102c565b9150611b0682611a9f565b604082019050919050565b60006020820190508181036000830152611b2a81611aee565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611b8d60218361102c565b9150611b9882611b31565b604082019050919050565b60006020820190508181036000830152611bbc81611b80565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611c1f60228361102c565b9150611c2a82611bc3565b604082019050919050565b60006020820190508181036000830152611c4e81611c12565b905091905056fea26469706673582212204dd9bda3bde100c0907dcca565f0697cdaea514605e9695e2149e615cfb943c664736f6c63430008110033

Deployed Bytecode Sourcemap

16626:766:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4804:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7137:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5906:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7918:261;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5757:84;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16271:83;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17038:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8588:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17239:150;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6077:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16663:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5014:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9329:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6410:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6666:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4804:91;4849:13;4882:5;4875:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4804:91;:::o;7137:201::-;7220:4;7237:13;7253:12;:10;:12::i;:::-;7237:28;;7276:32;7285:5;7292:7;7301:6;7276:8;:32::i;:::-;7326:4;7319:11;;;7137:201;;;;:::o;5906:108::-;5967:7;5994:12;;5987:19;;5906:108;:::o;7918:261::-;8015:4;8032:15;8050:12;:10;:12::i;:::-;8032:30;;8073:38;8089:4;8095:7;8104:6;8073:15;:38::i;:::-;8122:27;8132:4;8138:2;8142:6;8122:9;:27::i;:::-;8167:4;8160:11;;;7918:261;;;;;:::o;5757:84::-;5806:5;5831:2;5824:9;;5757:84;:::o;16271:83::-;16315:7;16342:4;16335:11;;16271:83;:::o;17038:193::-;16963:5;;;;;;;;;;;16949:19;;:10;:19;;;16941:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;17147:1:::1;17126:23;;:9;:23;;::::0;17118:68:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;17213:9;17197:5;;:26;;;;;;;;;;;;;;;;;;17038:193:::0;:::o;8588:238::-;8676:4;8693:13;8709:12;:10;:12::i;:::-;8693:28;;8732:64;8741:5;8748:7;8785:10;8757:25;8767:5;8774:7;8757:9;:25::i;:::-;:38;;;;:::i;:::-;8732:8;:64::i;:::-;8814:4;8807:11;;;8588:238;;;;:::o;17239:150::-;17289:20;17328:10;:8;:10::i;:::-;17322:2;:16;;;;:::i;:::-;17312:6;:27;;;;:::i;:::-;17289:50;;17350:31;17356:10;17368:12;17350:5;:31::i;:::-;17278:111;17239:150;:::o;6077:127::-;6151:7;6178:9;:18;6188:7;6178:18;;;;;;;;;;;;;;;;6171:25;;6077:127;;;:::o;16663:28::-;;;;;;;;;;;;;:::o;5014:95::-;5061:13;5094:7;5087:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5014:95;:::o;9329:436::-;9422:4;9439:13;9455:12;:10;:12::i;:::-;9439:28;;9478:24;9505:25;9515:5;9522:7;9505:9;:25::i;:::-;9478:52;;9569:15;9549:16;:35;;9541:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;9662:60;9671:5;9678:7;9706:15;9687:16;:34;9662:8;:60::i;:::-;9753:4;9746:11;;;;9329:436;;;;:::o;6410:193::-;6489:4;6506:13;6522:12;:10;:12::i;:::-;6506:28;;6545;6555:5;6562:2;6566:6;6545:9;:28::i;:::-;6591:4;6584:11;;;6410:193;;;;:::o;6666:151::-;6755:7;6782:11;:18;6794:5;6782:18;;;;;;;;;;;;;;;:27;6801:7;6782:27;;;;;;;;;;;;;;;;6775:34;;6666:151;;;;:::o;11328:548::-;11431:1;11412:21;;:7;:21;;;11404:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;11482:49;11511:1;11515:7;11524:6;11482:20;:49::i;:::-;11560:6;11544:12;;:22;;;;;;;:::i;:::-;;;;;;;;11737:6;11715:9;:18;11725:7;11715:18;;;;;;;;;;;;;;;;:28;;;;;;;;;;;11791:7;11770:37;;11787:1;11770:37;;;11800:6;11770:37;;;;;;:::i;:::-;;;;;;;;11820:48;11848:1;11852:7;11861:6;11820:19;:48::i;:::-;11328:548;;:::o;202:98::-;255:7;282:10;275:17;;202:98;:::o;13322:346::-;13441:1;13424:19;;:5;:19;;;13416:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13522:1;13503:21;;:7;:21;;;13495:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13606:6;13576:11;:18;13588:5;13576:18;;;;;;;;;;;;;;;:27;13595:7;13576:27;;;;;;;;;;;;;;;:36;;;;13644:7;13628:32;;13637:5;13628:32;;;13653:6;13628:32;;;;;;:::i;:::-;;;;;;;;13322:346;;;:::o;13959:419::-;14060:24;14087:25;14097:5;14104:7;14087:9;:25::i;:::-;14060:52;;14147:17;14127:16;:37;14123:248;;14209:6;14189:16;:26;;14181:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14293:51;14302:5;14309:7;14337:6;14318:16;:25;14293:8;:51::i;:::-;14123:248;14049:329;13959:419;;;:::o;10235:806::-;10348:1;10332:18;;:4;:18;;;10324:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10425:1;10411:16;;:2;:16;;;10403:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;10480:38;10501:4;10507:2;10511:6;10480:20;:38::i;:::-;10531:19;10553:9;:15;10563:4;10553:15;;;;;;;;;;;;;;;;10531:37;;10602:6;10587:11;:21;;10579:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;10719:6;10705:11;:20;10687:9;:15;10697:4;10687:15;;;;;;;;;;;;;;;:38;;;;10922:6;10905:9;:13;10915:2;10905:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;10972:2;10957:26;;10966:4;10957:26;;;10976:6;10957:26;;;;;;:::i;:::-;;;;;;;;10996:37;11016:4;11022:2;11026:6;10996:19;:37::i;:::-;10313:728;10235:806;;;:::o;12209:675::-;12312:1;12293:21;;:7;:21;;;12285:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;12365:49;12386:7;12403:1;12407:6;12365:20;:49::i;:::-;12427:22;12452:9;:18;12462:7;12452:18;;;;;;;;;;;;;;;;12427:43;;12507:6;12489:14;:24;;12481:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;12626:6;12609:14;:23;12588:9;:18;12598:7;12588:18;;;;;;;;;;;;;;;:44;;;;12743:6;12727:12;;:22;;;;;;;;;;;12804:1;12778:37;;12787:7;12778:37;;;12808:6;12778:37;;;;;;:::i;:::-;;;;;;;;12828:48;12848:7;12865:1;12869:6;12828:19;:48::i;:::-;12274:610;12209:675;;:::o;14978:91::-;;;;:::o;15673:90::-;;;;:::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: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:::-;5247:6;5296:2;5284:9;5275:7;5271:23;5267:32;5264:119;;;5302:79;;:::i;:::-;5264:119;5422:1;5447:53;5492:7;5483:6;5472:9;5468:22;5447:53;:::i;:::-;5437:63;;5393:117;5188:329;;;;:::o;5523:104::-;5568:7;5597:24;5615:5;5597:24;:::i;:::-;5586:35;;5523:104;;;:::o;5633:142::-;5736:32;5762:5;5736:32;:::i;:::-;5731:3;5724:45;5633:142;;:::o;5781:254::-;5890:4;5928:2;5917:9;5913:18;5905:26;;5941:87;6025:1;6014:9;6010:17;6001:6;5941:87;:::i;:::-;5781:254;;;;:::o;6041:474::-;6109:6;6117;6166:2;6154:9;6145:7;6141:23;6137:32;6134:119;;;6172:79;;:::i;:::-;6134:119;6292:1;6317:53;6362:7;6353:6;6342:9;6338:22;6317:53;:::i;:::-;6307:63;;6263:117;6419:2;6445:53;6490:7;6481:6;6470:9;6466:22;6445:53;:::i;:::-;6435:63;;6390:118;6041:474;;;;;:::o;6521:180::-;6569:77;6566:1;6559:88;6666:4;6663:1;6656:15;6690:4;6687:1;6680:15;6707:320;6751:6;6788:1;6782:4;6778:12;6768:22;;6835:1;6829:4;6825:12;6856:18;6846:81;;6912:4;6904:6;6900:17;6890:27;;6846:81;6974:2;6966:6;6963:14;6943:18;6940:38;6937:84;;6993:18;;:::i;:::-;6937:84;6758:269;6707:320;;;:::o;7033:224::-;7173:34;7169:1;7161:6;7157:14;7150:58;7242:7;7237:2;7229:6;7225:15;7218:32;7033:224;:::o;7263:366::-;7405:3;7426:67;7490:2;7485:3;7426:67;:::i;:::-;7419:74;;7502:93;7591:3;7502:93;:::i;:::-;7620:2;7615:3;7611:12;7604:19;;7263:366;;;:::o;7635:419::-;7801:4;7839:2;7828:9;7824:18;7816:26;;7888:9;7882:4;7878:20;7874:1;7863:9;7859:17;7852:47;7916:131;8042:4;7916:131;:::i;:::-;7908:139;;7635:419;;;:::o;8060:182::-;8200:34;8196:1;8188:6;8184:14;8177:58;8060:182;:::o;8248:366::-;8390:3;8411:67;8475:2;8470:3;8411:67;:::i;:::-;8404:74;;8487:93;8576:3;8487:93;:::i;:::-;8605:2;8600:3;8596:12;8589:19;;8248:366;;;:::o;8620:419::-;8786:4;8824:2;8813:9;8809:18;8801:26;;8873:9;8867:4;8863:20;8859:1;8848:9;8844:17;8837:47;8901:131;9027:4;8901:131;:::i;:::-;8893:139;;8620:419;;;:::o;9045:180::-;9093:77;9090:1;9083:88;9190:4;9187:1;9180:15;9214:4;9211:1;9204:15;9231:191;9271:3;9290:20;9308:1;9290:20;:::i;:::-;9285:25;;9324:20;9342:1;9324:20;:::i;:::-;9319:25;;9367:1;9364;9360:9;9353:16;;9388:3;9385:1;9382:10;9379:36;;;9395:18;;:::i;:::-;9379:36;9231:191;;;;:::o;9428:102::-;9470:8;9517:5;9514:1;9510:13;9489:34;;9428:102;;;:::o;9536:848::-;9597:5;9604:4;9628:6;9619:15;;9652:5;9643:14;;9666:712;9687:1;9677:8;9674:15;9666:712;;;9782:4;9777:3;9773:14;9767:4;9764:24;9761:50;;;9791:18;;:::i;:::-;9761:50;9841:1;9831:8;9827:16;9824:451;;;10256:4;10249:5;10245:16;10236:25;;9824:451;10306:4;10300;10296:15;10288:23;;10336:32;10359:8;10336:32;:::i;:::-;10324:44;;9666:712;;;9536:848;;;;;;;:::o;10390:1073::-;10444:5;10635:8;10625:40;;10656:1;10647:10;;10658:5;;10625:40;10684:4;10674:36;;10701:1;10692:10;;10703:5;;10674:36;10770:4;10818:1;10813:27;;;;10854:1;10849:191;;;;10763:277;;10813:27;10831:1;10822:10;;10833:5;;;10849:191;10894:3;10884:8;10881:17;10878:43;;;10901:18;;:::i;:::-;10878:43;10950:8;10947:1;10943:16;10934:25;;10985:3;10978:5;10975:14;10972:40;;;10992:18;;:::i;:::-;10972:40;11025:5;;;10763:277;;11149:2;11139:8;11136:16;11130:3;11124:4;11121:13;11117:36;11099:2;11089:8;11086:16;11081:2;11075:4;11072:12;11068:35;11052:111;11049:246;;;11205:8;11199:4;11195:19;11186:28;;11240:3;11233:5;11230:14;11227:40;;;11247:18;;:::i;:::-;11227:40;11280:5;;11049:246;11320:42;11358:3;11348:8;11342:4;11339:1;11320:42;:::i;:::-;11305:57;;;;11394:4;11389:3;11385:14;11378:5;11375:25;11372:51;;;11403:18;;:::i;:::-;11372:51;11452:4;11445:5;11441:16;11432:25;;10390:1073;;;;;;:::o;11469:281::-;11527:5;11551:23;11569:4;11551:23;:::i;:::-;11543:31;;11595:25;11611:8;11595:25;:::i;:::-;11583:37;;11639:104;11676:66;11666:8;11660:4;11639:104;:::i;:::-;11630:113;;11469:281;;;;:::o;11756:410::-;11796:7;11819:20;11837:1;11819:20;:::i;:::-;11814:25;;11853:20;11871:1;11853:20;:::i;:::-;11848:25;;11908:1;11905;11901:9;11930:30;11948:11;11930:30;:::i;:::-;11919:41;;12109:1;12100:7;12096:15;12093:1;12090:22;12070:1;12063:9;12043:83;12020:139;;12139:18;;:::i;:::-;12020:139;11804:362;11756:410;;;;:::o;12172:224::-;12312:34;12308:1;12300:6;12296:14;12289:58;12381:7;12376:2;12368:6;12364:15;12357:32;12172:224;:::o;12402:366::-;12544:3;12565:67;12629:2;12624:3;12565:67;:::i;:::-;12558:74;;12641:93;12730:3;12641:93;:::i;:::-;12759:2;12754:3;12750:12;12743:19;;12402:366;;;:::o;12774:419::-;12940:4;12978:2;12967:9;12963:18;12955:26;;13027:9;13021:4;13017:20;13013:1;13002:9;12998:17;12991:47;13055:131;13181:4;13055:131;:::i;:::-;13047:139;;12774:419;;;:::o;13199:181::-;13339:33;13335:1;13327:6;13323:14;13316:57;13199:181;:::o;13386:366::-;13528:3;13549:67;13613:2;13608:3;13549:67;:::i;:::-;13542:74;;13625:93;13714:3;13625:93;:::i;:::-;13743:2;13738:3;13734:12;13727:19;;13386:366;;;:::o;13758:419::-;13924:4;13962:2;13951:9;13947:18;13939:26;;14011:9;14005:4;14001:20;13997:1;13986:9;13982:17;13975:47;14039:131;14165:4;14039:131;:::i;:::-;14031:139;;13758:419;;;:::o;14183:223::-;14323:34;14319:1;14311:6;14307:14;14300:58;14392:6;14387:2;14379:6;14375:15;14368:31;14183:223;:::o;14412:366::-;14554:3;14575:67;14639:2;14634:3;14575:67;:::i;:::-;14568:74;;14651:93;14740:3;14651:93;:::i;:::-;14769:2;14764:3;14760:12;14753:19;;14412:366;;;:::o;14784:419::-;14950:4;14988:2;14977:9;14973:18;14965:26;;15037:9;15031:4;15027:20;15023:1;15012:9;15008:17;15001:47;15065:131;15191:4;15065:131;:::i;:::-;15057:139;;14784:419;;;:::o;15209:221::-;15349:34;15345:1;15337:6;15333:14;15326:58;15418:4;15413:2;15405:6;15401:15;15394:29;15209:221;:::o;15436:366::-;15578:3;15599:67;15663:2;15658:3;15599:67;:::i;:::-;15592:74;;15675:93;15764:3;15675:93;:::i;:::-;15793:2;15788:3;15784:12;15777:19;;15436:366;;;:::o;15808:419::-;15974:4;16012:2;16001:9;15997:18;15989:26;;16061:9;16055:4;16051:20;16047:1;16036:9;16032:17;16025:47;16089:131;16215:4;16089:131;:::i;:::-;16081:139;;15808:419;;;:::o;16233:179::-;16373:31;16369:1;16361:6;16357:14;16350:55;16233:179;:::o;16418:366::-;16560:3;16581:67;16645:2;16640:3;16581:67;:::i;:::-;16574:74;;16657:93;16746:3;16657:93;:::i;:::-;16775:2;16770:3;16766:12;16759:19;;16418:366;;;:::o;16790:419::-;16956:4;16994:2;16983:9;16979:18;16971:26;;17043:9;17037:4;17033:20;17029:1;17018:9;17014:17;17007:47;17071:131;17197:4;17071:131;:::i;:::-;17063:139;;16790:419;;;:::o;17215:224::-;17355:34;17351:1;17343:6;17339:14;17332:58;17424:7;17419:2;17411:6;17407:15;17400:32;17215:224;:::o;17445:366::-;17587:3;17608:67;17672:2;17667:3;17608:67;:::i;:::-;17601:74;;17684:93;17773:3;17684:93;:::i;:::-;17802:2;17797:3;17793:12;17786:19;;17445:366;;;:::o;17817:419::-;17983:4;18021:2;18010:9;18006:18;17998:26;;18070:9;18064:4;18060:20;18056:1;18045:9;18041:17;18034:47;18098:131;18224:4;18098:131;:::i;:::-;18090:139;;17817:419;;;:::o;18242:222::-;18382:34;18378:1;18370:6;18366:14;18359:58;18451:5;18446:2;18438:6;18434:15;18427:30;18242:222;:::o;18470:366::-;18612:3;18633:67;18697:2;18692:3;18633:67;:::i;:::-;18626:74;;18709:93;18798:3;18709:93;:::i;:::-;18827:2;18822:3;18818:12;18811:19;;18470:366;;;:::o;18842:419::-;19008:4;19046:2;19035:9;19031:18;19023:26;;19095:9;19089:4;19085:20;19081:1;19070:9;19066:17;19059:47;19123:131;19249:4;19123:131;:::i;:::-;19115:139;;18842:419;;;:::o;19267:225::-;19407:34;19403:1;19395:6;19391:14;19384:58;19476:8;19471:2;19463:6;19459:15;19452:33;19267:225;:::o;19498:366::-;19640:3;19661:67;19725:2;19720:3;19661:67;:::i;:::-;19654:74;;19737:93;19826:3;19737:93;:::i;:::-;19855:2;19850:3;19846:12;19839:19;;19498:366;;;:::o;19870:419::-;20036:4;20074:2;20063:9;20059:18;20051:26;;20123:9;20117:4;20113:20;20109:1;20098:9;20094:17;20087:47;20151:131;20277:4;20151:131;:::i;:::-;20143:139;;19870:419;;;:::o;20295:220::-;20435:34;20431:1;20423:6;20419:14;20412:58;20504:3;20499:2;20491:6;20487:15;20480:28;20295:220;:::o;20521:366::-;20663:3;20684:67;20748:2;20743:3;20684:67;:::i;:::-;20677:74;;20760:93;20849:3;20760:93;:::i;:::-;20878:2;20873:3;20869:12;20862:19;;20521:366;;;:::o;20893:419::-;21059:4;21097:2;21086:9;21082:18;21074:26;;21146:9;21140:4;21136:20;21132:1;21121:9;21117:17;21110:47;21174:131;21300:4;21174:131;:::i;:::-;21166:139;;20893:419;;;:::o;21318:221::-;21458:34;21454:1;21446:6;21442:14;21435:58;21527:4;21522:2;21514:6;21510:15;21503:29;21318:221;:::o;21545:366::-;21687:3;21708:67;21772:2;21767:3;21708:67;:::i;:::-;21701:74;;21784:93;21873:3;21784:93;:::i;:::-;21902:2;21897:3;21893:12;21886:19;;21545:366;;;:::o;21917:419::-;22083:4;22121:2;22110:9;22106:18;22098:26;;22170:9;22164:4;22160:20;22156:1;22145:9;22141:17;22134:47;22198:131;22324:4;22198:131;:::i;:::-;22190:139;;21917:419;;;:::o

Swarm Source

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