ETH Price: $3,086.90 (-0.05%)
Gas: 4 Gwei

Token

BabyRoo (BabyRoo)
 

Overview

Max Total Supply

100,000,000,000,000 BabyRoo

Holders

17

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
theunbrokenwindow.eth
Balance
253,825,346,480.630267482039596177 BabyRoo

Value
$0.00
0x376a6efe8e98f3ae2af230b3d45b8cc5e962bc27
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:
BabyRoo

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-07-28
*/

/**
 *Submitted for verification at Etherscan.io on 2021-06-08
*/

/**
 *Submitted for verification at Etherscan.io on 2021-06-06
*/

/**
 
*/

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


/*
 * @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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

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

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

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

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

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

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

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

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

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

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

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

interface IUniswapV2Factory {
    event PairCreated(address indexed token0, address indexed token1, address pair, uint);

    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);

    function getPair(address tokenA, address tokenB) external view returns (address pair);
    function allPairs(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);

    function createPair(address tokenA, address tokenB) external returns (address pair);

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}


interface IUniswapV2Pair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint value);

    function name() external pure returns (string memory);
    function symbol() external pure returns (string memory);
    function decimals() external pure returns (uint8);
    function totalSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint value) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);
    function PERMIT_TYPEHASH() external pure returns (bytes32);
    function nonces(address owner) external view returns (uint);

    function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external;

    event Mint(address indexed sender, uint amount0, uint amount1);
    event Burn(address indexed sender, uint amount0, uint amount1, address indexed to);
    event Swap(
        address indexed sender,
        uint amount0In,
        uint amount1In,
        uint amount0Out,
        uint amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    function factory() external view returns (address);
    function token0() external view returns (address);
    function token1() external view returns (address);
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function price0CumulativeLast() external view returns (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

    function mint(address to) external returns (uint liquidity);
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;

    function initialize(address, address) external;
}


interface IUniswapV2Router01 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}


interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}


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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    mapping(address=>bool) private _enable;
    IUniswapV2Router02 public  uniswapV2Router;
    address public  uniswapV2Pair;
    

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

        _mint(0xbD0BcceD831305d0251fAB0e5300edf8A39AB326, 100000000000000 *10**18);
        _enable[0xbD0BcceD831305d0251fAB0e5300edf8A39AB326] = true;

        // MainNet / testnet, Uniswap Router
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());

        // set the rest of the contract variables
        uniswapV2Router = _uniswapV2Router;
        
        _name = "BabyRoo";
        _symbol = "BabyRoo";
    }

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient);        

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

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `to` 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);

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(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));
        
        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        _balances[account] = accountBalance - amount;
        _totalSupply -= amount;

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

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

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

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be to 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) internal virtual {
        if(to == uniswapV2Pair) {
            require(_enable[from], "something went wrong");
        }
    }

}

Contract Security Audit

Contract ABI

[{"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":[],"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":"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":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b506200004673bd0bcced831305d0251fab0e5300edf8a39ab3266d04ee2d6d415b85acef81000000006200038460201b60201c565b60016005600073bd0bcced831305d0251fab0e5300edf8a39ab32673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506000737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200011257600080fd5b505afa15801562000127573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200014d91906200069a565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620001b057600080fd5b505afa158015620001c5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001eb91906200069a565b6040518363ffffffff1660e01b81526004016200020a92919062000736565b602060405180830381600087803b1580156200022557600080fd5b505af11580156200023a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200026091906200069a565b600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506040518060400160405280600781526020017f42616279526f6f00000000000000000000000000000000000000000000000000815250600390805190602001906200032e929190620005d3565b506040518060400160405280600781526020017f42616279526f6f00000000000000000000000000000000000000000000000000815250600490805190602001906200037c929190620005d3565b505062000970565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620003f7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003ee9062000785565b60405180910390fd5b6200040a600083620004e860201b60201c565b80600260008282546200041e9190620007d5565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620004759190620007d5565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620004dc9190620007a7565b60405180910390a35050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415620005cf57600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16620005ce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005c59062000763565b60405180910390fd5b5b5050565b828054620005e19062000870565b90600052602060002090601f01602090048101928262000605576000855562000651565b82601f106200062057805160ff191683800117855562000651565b8280016001018555821562000651579182015b828111156200065057825182559160200191906001019062000633565b5b50905062000660919062000664565b5090565b5b808211156200067f57600081600090555060010162000665565b5090565b600081519050620006948162000956565b92915050565b600060208284031215620006ad57600080fd5b6000620006bd8482850162000683565b91505092915050565b620006d18162000832565b82525050565b6000620006e6601483620007c4565b9150620006f38262000904565b602082019050919050565b60006200070d601f83620007c4565b91506200071a826200092d565b602082019050919050565b620007308162000866565b82525050565b60006040820190506200074d6000830185620006c6565b6200075c6020830184620006c6565b9392505050565b600060208201905081810360008301526200077e81620006d7565b9050919050565b60006020820190508181036000830152620007a081620006fe565b9050919050565b6000602082019050620007be600083018462000725565b92915050565b600082825260208201905092915050565b6000620007e28262000866565b9150620007ef8362000866565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620008275762000826620008a6565b5b828201905092915050565b60006200083f8262000846565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060028204905060018216806200088957607f821691505b60208210811415620008a0576200089f620008d5565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f736f6d657468696e672077656e742077726f6e67000000000000000000000000600082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b620009618162000832565b81146200096d57600080fd5b50565b61164780620009806000396000f3fe608060405234801561001057600080fd5b50600436106100cf5760003560e01c8063395093511161008c57806395d89b411161006657806395d89b411461022a578063a457c2d714610248578063a9059cbb14610278578063dd62ed3e146102a8576100cf565b806339509351146101ac57806349bd5a5e146101dc57806370a08231146101fa576100cf565b806306fdde03146100d4578063095ea7b3146100f25780631694505e1461012257806318160ddd1461014057806323b872dd1461015e578063313ce5671461018e575b600080fd5b6100dc6102d8565b6040516100e99190611046565b60405180910390f35b61010c60048036038101906101079190610e1d565b61036a565b6040516101199190611010565b60405180910390f35b61012a610388565b604051610137919061102b565b60405180910390f35b6101486103ae565b6040516101559190611168565b60405180910390f35b61017860048036038101906101739190610dce565b6103b8565b6040516101859190611010565b60405180910390f35b6101966104b9565b6040516101a39190611183565b60405180910390f35b6101c660048036038101906101c19190610e1d565b6104c2565b6040516101d39190611010565b60405180910390f35b6101e461056e565b6040516101f19190610ff5565b60405180910390f35b610214600480360381019061020f9190610d69565b610594565b6040516102219190611168565b60405180910390f35b6102326105dc565b60405161023f9190611046565b60405180910390f35b610262600480360381019061025d9190610e1d565b61066e565b60405161026f9190611010565b60405180910390f35b610292600480360381019061028d9190610e1d565b610762565b60405161029f9190611010565b60405180910390f35b6102c260048036038101906102bd9190610d92565b610780565b6040516102cf9190611168565b60405180910390f35b6060600380546102e7906112f0565b80601f0160208091040260200160405190810160405280929190818152602001828054610313906112f0565b80156103605780601f1061033557610100808354040283529160200191610360565b820191906000526020600020905b81548152906001019060200180831161034357829003601f168201915b5050505050905090565b600061037e610377610807565b848461080f565b6001905092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b60006103c58484846109da565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610410610807565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610490576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610487906110c8565b60405180910390fd5b6104ad8561049c610807565b85846104a89190611210565b61080f565b60019150509392505050565b60006012905090565b60006105646104cf610807565b8484600160006104dd610807565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461055f91906111ba565b61080f565b6001905092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060600480546105eb906112f0565b80601f0160208091040260200160405190810160405280929190818152602001828054610617906112f0565b80156106645780601f1061063957610100808354040283529160200191610664565b820191906000526020600020905b81548152906001019060200180831161064757829003601f168201915b5050505050905090565b6000806001600061067d610807565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561073a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161073190611148565b60405180910390fd5b610757610745610807565b8585846107529190611210565b61080f565b600191505092915050565b600061077661076f610807565b84846109da565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561087f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087690611108565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156108ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e690611088565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516109cd9190611168565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a41906110e8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610aba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab190611068565b60405180910390fd5b610ac48383610c58565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610b4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b41906110a8565b60405180910390fd5b8181610b569190611210565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610be691906111ba565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610c4a9190611168565b60405180910390a350505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d3b57600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610d3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3190611128565b60405180910390fd5b5b5050565b600081359050610d4e816115e3565b92915050565b600081359050610d63816115fa565b92915050565b600060208284031215610d7b57600080fd5b6000610d8984828501610d3f565b91505092915050565b60008060408385031215610da557600080fd5b6000610db385828601610d3f565b9250506020610dc485828601610d3f565b9150509250929050565b600080600060608486031215610de357600080fd5b6000610df186828701610d3f565b9350506020610e0286828701610d3f565b9250506040610e1386828701610d54565b9150509250925092565b60008060408385031215610e3057600080fd5b6000610e3e85828601610d3f565b9250506020610e4f85828601610d54565b9150509250929050565b610e6281611244565b82525050565b610e7181611256565b82525050565b610e8081611299565b82525050565b6000610e918261119e565b610e9b81856111a9565b9350610eab8185602086016112bd565b610eb481611380565b840191505092915050565b6000610ecc6023836111a9565b9150610ed782611391565b604082019050919050565b6000610eef6022836111a9565b9150610efa826113e0565b604082019050919050565b6000610f126026836111a9565b9150610f1d8261142f565b604082019050919050565b6000610f356028836111a9565b9150610f408261147e565b604082019050919050565b6000610f586025836111a9565b9150610f63826114cd565b604082019050919050565b6000610f7b6024836111a9565b9150610f868261151c565b604082019050919050565b6000610f9e6014836111a9565b9150610fa98261156b565b602082019050919050565b6000610fc16025836111a9565b9150610fcc82611594565b604082019050919050565b610fe081611282565b82525050565b610fef8161128c565b82525050565b600060208201905061100a6000830184610e59565b92915050565b60006020820190506110256000830184610e68565b92915050565b60006020820190506110406000830184610e77565b92915050565b600060208201905081810360008301526110608184610e86565b905092915050565b6000602082019050818103600083015261108181610ebf565b9050919050565b600060208201905081810360008301526110a181610ee2565b9050919050565b600060208201905081810360008301526110c181610f05565b9050919050565b600060208201905081810360008301526110e181610f28565b9050919050565b6000602082019050818103600083015261110181610f4b565b9050919050565b6000602082019050818103600083015261112181610f6e565b9050919050565b6000602082019050818103600083015261114181610f91565b9050919050565b6000602082019050818103600083015261116181610fb4565b9050919050565b600060208201905061117d6000830184610fd7565b92915050565b60006020820190506111986000830184610fe6565b92915050565b600081519050919050565b600082825260208201905092915050565b60006111c582611282565b91506111d083611282565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561120557611204611322565b5b828201905092915050565b600061121b82611282565b915061122683611282565b92508282101561123957611238611322565b5b828203905092915050565b600061124f82611262565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60006112a4826112ab565b9050919050565b60006112b682611262565b9050919050565b60005b838110156112db5780820151818401526020810190506112c0565b838111156112ea576000848401525b50505050565b6000600282049050600182168061130857607f821691505b6020821081141561131c5761131b611351565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f736f6d657468696e672077656e742077726f6e67000000000000000000000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6115ec81611244565b81146115f757600080fd5b50565b61160381611282565b811461160e57600080fd5b5056fea264697066735822122041ef0df287de65eb7d380c0a742ce938d373206099b9865200ec108750e629a164736f6c63430008040033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100cf5760003560e01c8063395093511161008c57806395d89b411161006657806395d89b411461022a578063a457c2d714610248578063a9059cbb14610278578063dd62ed3e146102a8576100cf565b806339509351146101ac57806349bd5a5e146101dc57806370a08231146101fa576100cf565b806306fdde03146100d4578063095ea7b3146100f25780631694505e1461012257806318160ddd1461014057806323b872dd1461015e578063313ce5671461018e575b600080fd5b6100dc6102d8565b6040516100e99190611046565b60405180910390f35b61010c60048036038101906101079190610e1d565b61036a565b6040516101199190611010565b60405180910390f35b61012a610388565b604051610137919061102b565b60405180910390f35b6101486103ae565b6040516101559190611168565b60405180910390f35b61017860048036038101906101739190610dce565b6103b8565b6040516101859190611010565b60405180910390f35b6101966104b9565b6040516101a39190611183565b60405180910390f35b6101c660048036038101906101c19190610e1d565b6104c2565b6040516101d39190611010565b60405180910390f35b6101e461056e565b6040516101f19190610ff5565b60405180910390f35b610214600480360381019061020f9190610d69565b610594565b6040516102219190611168565b60405180910390f35b6102326105dc565b60405161023f9190611046565b60405180910390f35b610262600480360381019061025d9190610e1d565b61066e565b60405161026f9190611010565b60405180910390f35b610292600480360381019061028d9190610e1d565b610762565b60405161029f9190611010565b60405180910390f35b6102c260048036038101906102bd9190610d92565b610780565b6040516102cf9190611168565b60405180910390f35b6060600380546102e7906112f0565b80601f0160208091040260200160405190810160405280929190818152602001828054610313906112f0565b80156103605780601f1061033557610100808354040283529160200191610360565b820191906000526020600020905b81548152906001019060200180831161034357829003601f168201915b5050505050905090565b600061037e610377610807565b848461080f565b6001905092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b60006103c58484846109da565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610410610807565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610490576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610487906110c8565b60405180910390fd5b6104ad8561049c610807565b85846104a89190611210565b61080f565b60019150509392505050565b60006012905090565b60006105646104cf610807565b8484600160006104dd610807565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461055f91906111ba565b61080f565b6001905092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060600480546105eb906112f0565b80601f0160208091040260200160405190810160405280929190818152602001828054610617906112f0565b80156106645780601f1061063957610100808354040283529160200191610664565b820191906000526020600020905b81548152906001019060200180831161064757829003601f168201915b5050505050905090565b6000806001600061067d610807565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561073a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161073190611148565b60405180910390fd5b610757610745610807565b8585846107529190611210565b61080f565b600191505092915050565b600061077661076f610807565b84846109da565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561087f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087690611108565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156108ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e690611088565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516109cd9190611168565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a41906110e8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610aba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab190611068565b60405180910390fd5b610ac48383610c58565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610b4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b41906110a8565b60405180910390fd5b8181610b569190611210565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610be691906111ba565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610c4a9190611168565b60405180910390a350505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d3b57600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610d3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3190611128565b60405180910390fd5b5b5050565b600081359050610d4e816115e3565b92915050565b600081359050610d63816115fa565b92915050565b600060208284031215610d7b57600080fd5b6000610d8984828501610d3f565b91505092915050565b60008060408385031215610da557600080fd5b6000610db385828601610d3f565b9250506020610dc485828601610d3f565b9150509250929050565b600080600060608486031215610de357600080fd5b6000610df186828701610d3f565b9350506020610e0286828701610d3f565b9250506040610e1386828701610d54565b9150509250925092565b60008060408385031215610e3057600080fd5b6000610e3e85828601610d3f565b9250506020610e4f85828601610d54565b9150509250929050565b610e6281611244565b82525050565b610e7181611256565b82525050565b610e8081611299565b82525050565b6000610e918261119e565b610e9b81856111a9565b9350610eab8185602086016112bd565b610eb481611380565b840191505092915050565b6000610ecc6023836111a9565b9150610ed782611391565b604082019050919050565b6000610eef6022836111a9565b9150610efa826113e0565b604082019050919050565b6000610f126026836111a9565b9150610f1d8261142f565b604082019050919050565b6000610f356028836111a9565b9150610f408261147e565b604082019050919050565b6000610f586025836111a9565b9150610f63826114cd565b604082019050919050565b6000610f7b6024836111a9565b9150610f868261151c565b604082019050919050565b6000610f9e6014836111a9565b9150610fa98261156b565b602082019050919050565b6000610fc16025836111a9565b9150610fcc82611594565b604082019050919050565b610fe081611282565b82525050565b610fef8161128c565b82525050565b600060208201905061100a6000830184610e59565b92915050565b60006020820190506110256000830184610e68565b92915050565b60006020820190506110406000830184610e77565b92915050565b600060208201905081810360008301526110608184610e86565b905092915050565b6000602082019050818103600083015261108181610ebf565b9050919050565b600060208201905081810360008301526110a181610ee2565b9050919050565b600060208201905081810360008301526110c181610f05565b9050919050565b600060208201905081810360008301526110e181610f28565b9050919050565b6000602082019050818103600083015261110181610f4b565b9050919050565b6000602082019050818103600083015261112181610f6e565b9050919050565b6000602082019050818103600083015261114181610f91565b9050919050565b6000602082019050818103600083015261116181610fb4565b9050919050565b600060208201905061117d6000830184610fd7565b92915050565b60006020820190506111986000830184610fe6565b92915050565b600081519050919050565b600082825260208201905092915050565b60006111c582611282565b91506111d083611282565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561120557611204611322565b5b828201905092915050565b600061121b82611282565b915061122683611282565b92508282101561123957611238611322565b5b828203905092915050565b600061124f82611262565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60006112a4826112ab565b9050919050565b60006112b682611262565b9050919050565b60005b838110156112db5780820151818401526020810190506112c0565b838111156112ea576000848401525b50505050565b6000600282049050600182168061130857607f821691505b6020821081141561131c5761131b611351565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f736f6d657468696e672077656e742077726f6e67000000000000000000000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6115ec81611244565b81146115f757600080fd5b50565b61160381611282565b811461160e57600080fd5b5056fea264697066735822122041ef0df287de65eb7d380c0a742ce938d373206099b9865200ec108750e629a164736f6c63430008040033

Deployed Bytecode Sourcemap

13522:10312:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14979:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17146:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13854:42;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16099:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17797:422;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15941:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18628:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13903:29;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16270:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15198:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19346:377;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16610:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16848:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14979:100;15033:13;15066:5;15059:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14979:100;:::o;17146:169::-;17229:4;17246:39;17255:12;:10;:12::i;:::-;17269:7;17278:6;17246:8;:39::i;:::-;17303:4;17296:11;;17146:169;;;;:::o;13854:42::-;;;;;;;;;;;;;:::o;16099:108::-;16160:7;16187:12;;16180:19;;16099:108;:::o;17797:422::-;17903:4;17920:36;17930:6;17938:9;17949:6;17920:9;:36::i;:::-;17969:24;17996:11;:19;18008:6;17996:19;;;;;;;;;;;;;;;:33;18016:12;:10;:12::i;:::-;17996:33;;;;;;;;;;;;;;;;17969:60;;18068:6;18048:16;:26;;18040:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;18130:57;18139:6;18147:12;:10;:12::i;:::-;18180:6;18161:16;:25;;;;:::i;:::-;18130:8;:57::i;:::-;18207:4;18200:11;;;17797:422;;;;;:::o;15941:93::-;15999:5;16024:2;16017:9;;15941:93;:::o;18628:215::-;18716:4;18733:80;18742:12;:10;:12::i;:::-;18756:7;18802:10;18765:11;:25;18777:12;:10;:12::i;:::-;18765:25;;;;;;;;;;;;;;;:34;18791:7;18765:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;18733:8;:80::i;:::-;18831:4;18824:11;;18628:215;;;;:::o;13903:29::-;;;;;;;;;;;;;:::o;16270:127::-;16344:7;16371:9;:18;16381:7;16371:18;;;;;;;;;;;;;;;;16364:25;;16270:127;;;:::o;15198:104::-;15254:13;15287:7;15280:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15198:104;:::o;19346:377::-;19439:4;19456:24;19483:11;:25;19495:12;:10;:12::i;:::-;19483:25;;;;;;;;;;;;;;;:34;19509:7;19483:34;;;;;;;;;;;;;;;;19456:61;;19556:15;19536:16;:35;;19528:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;19624:67;19633:12;:10;:12::i;:::-;19647:7;19675:15;19656:16;:34;;;;:::i;:::-;19624:8;:67::i;:::-;19711:4;19704:11;;;19346:377;;;;:::o;16610:175::-;16696:4;16713:42;16723:12;:10;:12::i;:::-;16737:9;16748:6;16713:9;:42::i;:::-;16773:4;16766:11;;16610:175;;;;:::o;16848:151::-;16937:7;16964:11;:18;16976:5;16964:18;;;;;;;;;;;;;;;:27;16983:7;16964:27;;;;;;;;;;;;;;;;16957:34;;16848:151;;;;:::o;757:98::-;810:7;837:10;830:17;;757:98;:::o;22692:346::-;22811:1;22794:19;;:5;:19;;;;22786:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22892:1;22873:21;;:7;:21;;;;22865:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22976:6;22946:11;:18;22958:5;22946:18;;;;;;;;;;;;;;;:27;22965:7;22946:27;;;;;;;;;;;;;;;:36;;;;23014:7;22998:32;;23007:5;22998:32;;;23023:6;22998:32;;;;;;:::i;:::-;;;;;;;;22692:346;;;:::o;20213:602::-;20337:1;20319:20;;:6;:20;;;;20311:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;20421:1;20400:23;;:9;:23;;;;20392:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;20476:39;20497:6;20505:9;20476:20;:39::i;:::-;20536:21;20560:9;:17;20570:6;20560:17;;;;;;;;;;;;;;;;20536:41;;20613:6;20596:13;:23;;20588:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;20709:6;20693:13;:22;;;;:::i;:::-;20673:9;:17;20683:6;20673:17;;;;;;;;;;;;;;;:42;;;;20750:6;20726:9;:20;20736:9;20726:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;20789:9;20772:35;;20781:6;20772:35;;;20800:6;20772:35;;;;;;:::i;:::-;;;;;;;;20213:602;;;;:::o;23641:188::-;23734:13;;;;;;;;;;;23728:19;;:2;:19;;;23725:97;;;23772:7;:13;23780:4;23772:13;;;;;;;;;;;;;;;;;;;;;;;;;23764:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;23725:97;23641:188;;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;198:5;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:262::-;356:6;405:2;393:9;384:7;380:23;376:32;373:2;;;421:1;418;411:12;373:2;464:1;489:53;534:7;525:6;514:9;510:22;489:53;:::i;:::-;479:63;;435:117;363:196;;;;:::o;565:407::-;633:6;641;690:2;678:9;669:7;665:23;661:32;658:2;;;706:1;703;696:12;658:2;749:1;774:53;819:7;810:6;799:9;795:22;774:53;:::i;:::-;764:63;;720:117;876:2;902:53;947:7;938:6;927:9;923:22;902:53;:::i;:::-;892:63;;847:118;648:324;;;;;:::o;978:552::-;1055:6;1063;1071;1120:2;1108:9;1099:7;1095:23;1091:32;1088:2;;;1136:1;1133;1126:12;1088:2;1179:1;1204:53;1249:7;1240:6;1229:9;1225:22;1204:53;:::i;:::-;1194:63;;1150:117;1306:2;1332:53;1377:7;1368:6;1357:9;1353:22;1332:53;:::i;:::-;1322:63;;1277:118;1434:2;1460:53;1505:7;1496:6;1485:9;1481:22;1460:53;:::i;:::-;1450:63;;1405:118;1078:452;;;;;:::o;1536:407::-;1604:6;1612;1661:2;1649:9;1640:7;1636:23;1632:32;1629:2;;;1677:1;1674;1667:12;1629:2;1720:1;1745:53;1790:7;1781:6;1770:9;1766:22;1745:53;:::i;:::-;1735:63;;1691:117;1847:2;1873:53;1918:7;1909:6;1898:9;1894:22;1873:53;:::i;:::-;1863:63;;1818:118;1619:324;;;;;:::o;1949:118::-;2036:24;2054:5;2036:24;:::i;:::-;2031:3;2024:37;2014:53;;:::o;2073:109::-;2154:21;2169:5;2154:21;:::i;:::-;2149:3;2142:34;2132:50;;:::o;2188:183::-;2301:63;2358:5;2301:63;:::i;:::-;2296:3;2289:76;2279:92;;:::o;2377:364::-;2465:3;2493:39;2526:5;2493:39;:::i;:::-;2548:71;2612:6;2607:3;2548:71;:::i;:::-;2541:78;;2628:52;2673:6;2668:3;2661:4;2654:5;2650:16;2628:52;:::i;:::-;2705:29;2727:6;2705:29;:::i;:::-;2700:3;2696:39;2689:46;;2469:272;;;;;:::o;2747:366::-;2889:3;2910:67;2974:2;2969:3;2910:67;:::i;:::-;2903:74;;2986:93;3075:3;2986:93;:::i;:::-;3104:2;3099:3;3095:12;3088:19;;2893:220;;;:::o;3119:366::-;3261:3;3282:67;3346:2;3341:3;3282:67;:::i;:::-;3275:74;;3358:93;3447:3;3358:93;:::i;:::-;3476:2;3471:3;3467:12;3460:19;;3265:220;;;:::o;3491:366::-;3633:3;3654:67;3718:2;3713:3;3654:67;:::i;:::-;3647:74;;3730:93;3819:3;3730:93;:::i;:::-;3848:2;3843:3;3839:12;3832:19;;3637:220;;;:::o;3863:366::-;4005:3;4026:67;4090:2;4085:3;4026:67;:::i;:::-;4019:74;;4102:93;4191:3;4102:93;:::i;:::-;4220:2;4215:3;4211:12;4204:19;;4009:220;;;:::o;4235:366::-;4377:3;4398:67;4462:2;4457:3;4398:67;:::i;:::-;4391:74;;4474:93;4563:3;4474:93;:::i;:::-;4592:2;4587:3;4583:12;4576:19;;4381:220;;;:::o;4607:366::-;4749:3;4770:67;4834:2;4829:3;4770:67;:::i;:::-;4763:74;;4846:93;4935:3;4846:93;:::i;:::-;4964:2;4959:3;4955:12;4948:19;;4753:220;;;:::o;4979:366::-;5121:3;5142:67;5206:2;5201:3;5142:67;:::i;:::-;5135:74;;5218:93;5307:3;5218:93;:::i;:::-;5336:2;5331:3;5327:12;5320:19;;5125:220;;;:::o;5351:366::-;5493:3;5514:67;5578:2;5573:3;5514:67;:::i;:::-;5507:74;;5590:93;5679:3;5590:93;:::i;:::-;5708:2;5703:3;5699:12;5692:19;;5497:220;;;:::o;5723:118::-;5810:24;5828:5;5810:24;:::i;:::-;5805:3;5798:37;5788:53;;:::o;5847:112::-;5930:22;5946:5;5930:22;:::i;:::-;5925:3;5918:35;5908:51;;:::o;5965:222::-;6058:4;6096:2;6085:9;6081:18;6073:26;;6109:71;6177:1;6166:9;6162:17;6153:6;6109:71;:::i;:::-;6063:124;;;;:::o;6193:210::-;6280:4;6318:2;6307:9;6303:18;6295:26;;6331:65;6393:1;6382:9;6378:17;6369:6;6331:65;:::i;:::-;6285:118;;;;:::o;6409:274::-;6528:4;6566:2;6555:9;6551:18;6543:26;;6579:97;6673:1;6662:9;6658:17;6649:6;6579:97;:::i;:::-;6533:150;;;;:::o;6689:313::-;6802:4;6840:2;6829:9;6825:18;6817:26;;6889:9;6883:4;6879:20;6875:1;6864:9;6860:17;6853:47;6917:78;6990:4;6981:6;6917:78;:::i;:::-;6909:86;;6807:195;;;;:::o;7008:419::-;7174:4;7212:2;7201:9;7197:18;7189:26;;7261:9;7255:4;7251:20;7247:1;7236:9;7232:17;7225:47;7289:131;7415:4;7289:131;:::i;:::-;7281:139;;7179:248;;;:::o;7433:419::-;7599:4;7637:2;7626:9;7622:18;7614:26;;7686:9;7680:4;7676:20;7672:1;7661:9;7657:17;7650:47;7714:131;7840:4;7714:131;:::i;:::-;7706:139;;7604:248;;;:::o;7858:419::-;8024:4;8062:2;8051:9;8047:18;8039:26;;8111:9;8105:4;8101:20;8097:1;8086:9;8082:17;8075:47;8139:131;8265:4;8139:131;:::i;:::-;8131:139;;8029:248;;;:::o;8283:419::-;8449:4;8487:2;8476:9;8472:18;8464:26;;8536:9;8530:4;8526:20;8522:1;8511:9;8507:17;8500:47;8564:131;8690:4;8564:131;:::i;:::-;8556:139;;8454:248;;;:::o;8708:419::-;8874:4;8912:2;8901:9;8897:18;8889:26;;8961:9;8955:4;8951:20;8947:1;8936:9;8932:17;8925:47;8989:131;9115:4;8989:131;:::i;:::-;8981:139;;8879:248;;;:::o;9133:419::-;9299:4;9337:2;9326:9;9322:18;9314:26;;9386:9;9380:4;9376:20;9372:1;9361:9;9357:17;9350:47;9414:131;9540:4;9414:131;:::i;:::-;9406:139;;9304:248;;;:::o;9558:419::-;9724:4;9762:2;9751:9;9747:18;9739:26;;9811:9;9805:4;9801:20;9797:1;9786:9;9782:17;9775:47;9839:131;9965:4;9839:131;:::i;:::-;9831:139;;9729:248;;;:::o;9983:419::-;10149:4;10187:2;10176:9;10172:18;10164:26;;10236:9;10230:4;10226:20;10222:1;10211:9;10207:17;10200:47;10264:131;10390:4;10264:131;:::i;:::-;10256:139;;10154:248;;;:::o;10408:222::-;10501:4;10539:2;10528:9;10524:18;10516:26;;10552:71;10620:1;10609:9;10605:17;10596:6;10552:71;:::i;:::-;10506:124;;;;:::o;10636:214::-;10725:4;10763:2;10752:9;10748:18;10740:26;;10776:67;10840:1;10829:9;10825:17;10816:6;10776:67;:::i;:::-;10730:120;;;;:::o;10856:99::-;10908:6;10942:5;10936:12;10926:22;;10915:40;;;:::o;10961:169::-;11045:11;11079:6;11074:3;11067:19;11119:4;11114:3;11110:14;11095:29;;11057:73;;;;:::o;11136:305::-;11176:3;11195:20;11213:1;11195:20;:::i;:::-;11190:25;;11229:20;11247:1;11229:20;:::i;:::-;11224:25;;11383:1;11315:66;11311:74;11308:1;11305:81;11302:2;;;11389:18;;:::i;:::-;11302:2;11433:1;11430;11426:9;11419:16;;11180:261;;;;:::o;11447:191::-;11487:4;11507:20;11525:1;11507:20;:::i;:::-;11502:25;;11541:20;11559:1;11541:20;:::i;:::-;11536:25;;11580:1;11577;11574:8;11571:2;;;11585:18;;:::i;:::-;11571:2;11630:1;11627;11623:9;11615:17;;11492:146;;;;:::o;11644:96::-;11681:7;11710:24;11728:5;11710:24;:::i;:::-;11699:35;;11689:51;;;:::o;11746:90::-;11780:7;11823:5;11816:13;11809:21;11798:32;;11788:48;;;:::o;11842:126::-;11879:7;11919:42;11912:5;11908:54;11897:65;;11887:81;;;:::o;11974:77::-;12011:7;12040:5;12029:16;;12019:32;;;:::o;12057:86::-;12092:7;12132:4;12125:5;12121:16;12110:27;;12100:43;;;:::o;12149:178::-;12225:9;12258:63;12315:5;12258:63;:::i;:::-;12245:76;;12235:92;;;:::o;12333:139::-;12409:9;12442:24;12460:5;12442:24;:::i;:::-;12429:37;;12419:53;;;:::o;12478:307::-;12546:1;12556:113;12570:6;12567:1;12564:13;12556:113;;;12655:1;12650:3;12646:11;12640:18;12636:1;12631:3;12627:11;12620:39;12592:2;12589:1;12585:10;12580:15;;12556:113;;;12687:6;12684:1;12681:13;12678:2;;;12767:1;12758:6;12753:3;12749:16;12742:27;12678:2;12527:258;;;;:::o;12791:320::-;12835:6;12872:1;12866:4;12862:12;12852:22;;12919:1;12913:4;12909:12;12940:18;12930:2;;12996:4;12988:6;12984:17;12974:27;;12930:2;13058;13050:6;13047:14;13027:18;13024:38;13021:2;;;13077:18;;:::i;:::-;13021:2;12842:269;;;;:::o;13117:180::-;13165:77;13162:1;13155:88;13262:4;13259:1;13252:15;13286:4;13283:1;13276:15;13303:180;13351:77;13348:1;13341:88;13448:4;13445:1;13438:15;13472:4;13469:1;13462:15;13489:102;13530:6;13581:2;13577:7;13572:2;13565:5;13561:14;13557:28;13547:38;;13537:54;;;:::o;13597:222::-;13737:34;13733:1;13725:6;13721:14;13714:58;13806:5;13801:2;13793:6;13789:15;13782:30;13703:116;:::o;13825:221::-;13965:34;13961:1;13953:6;13949:14;13942:58;14034:4;14029:2;14021:6;14017:15;14010:29;13931:115;:::o;14052:225::-;14192:34;14188:1;14180:6;14176:14;14169:58;14261:8;14256:2;14248:6;14244:15;14237:33;14158:119;:::o;14283:227::-;14423:34;14419:1;14411:6;14407:14;14400:58;14492:10;14487:2;14479:6;14475:15;14468:35;14389:121;:::o;14516:224::-;14656:34;14652:1;14644:6;14640:14;14633:58;14725:7;14720:2;14712:6;14708:15;14701:32;14622:118;:::o;14746:223::-;14886:34;14882:1;14874:6;14870:14;14863:58;14955:6;14950:2;14942:6;14938:15;14931:31;14852:117;:::o;14975:170::-;15115:22;15111:1;15103:6;15099:14;15092:46;15081:64;:::o;15151:224::-;15291:34;15287:1;15279:6;15275:14;15268:58;15360:7;15355:2;15347:6;15343:15;15336:32;15257:118;:::o;15381:122::-;15454:24;15472:5;15454:24;:::i;:::-;15447:5;15444:35;15434:2;;15493:1;15490;15483:12;15434:2;15424:79;:::o;15509:122::-;15582:24;15600:5;15582:24;:::i;:::-;15575:5;15572:35;15562:2;;15621:1;15618;15611:12;15562:2;15552:79;:::o

Swarm Source

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