ETH Price: $2,627.90 (+7.33%)
Gas: 2 Gwei

Token

Busted Bean Club ($BEAN)
 

Overview

Max Total Supply

1,000,000 $BEAN

Holders

18

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
lookmyenssaysthe.eth
Balance
9,378.001326772082339079 $BEAN

Value
$0.00
0x912cfc600324dfebcc5e68dc1a214ee0c0e5e1e4
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:
BustedBean

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : BustedBean.sol
/**

/$$$$$$$  /$$$$$$$$  /$$$$$$  /$$   /$$
| $$__  $$| $$_____/ /$$__  $$| $$$ | $$
| $$  \ $$| $$      | $$  \ $$| $$$$| $$
| $$$$$$$ | $$$$$   | $$$$$$$$| $$ $$ $$
| $$__  $$| $$__/   | $$__  $$| $$  $$$$
| $$  \ $$| $$      | $$  | $$| $$\  $$$
| $$$$$$$/| $$$$$$$$| $$  | $$| $$ \  $$
|_______/ |________/|__/  |__/|__/  \__/                         

Website: https://bustedbean.club
Twitter: https://twitter.com/bustedbean

SPDX-License-Identifier: MIT

*/

pragma solidity >=0.8.8;

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

    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint256 amountADesired,
        uint256 amountBDesired,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    )
        external
        returns (
            uint256 amountA,
            uint256 amountB,
            uint256 liquidity
        );

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

    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountA, uint256 amountB);

    function removeLiquidityETH(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountToken, uint256 amountETH);

    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountA, uint256 amountB);

    function removeLiquidityETHWithPermit(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountToken, uint256 amountETH);

    function swapExactTokensForTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapTokensForExactTokens(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactETHForTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function swapTokensForExactETH(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactTokensForETH(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapETHForExactTokens(
        uint256 amountOut,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function quote(
        uint256 amountA,
        uint256 reserveA,
        uint256 reserveB
    ) external pure returns (uint256 amountB);

    function getAmountOut(
        uint256 amountIn,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountOut);

    function getAmountIn(
        uint256 amountOut,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountIn);

    function getAmountsOut(uint256 amountIn, address[] calldata path) external view returns (uint256[] memory amounts);

    function getAmountsIn(uint256 amountOut, address[] calldata path) external view returns (uint256[] memory amounts);
}

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountETH);

    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;

    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable;

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

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

    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(uint256) external view returns (address pair);

    function allPairsLength() external view returns (uint256);

    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, uint256 value);
    event Transfer(address indexed from, address indexed to, uint256 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 (uint256);

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

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

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

    function transfer(address to, uint256 value) external returns (bool);

    function transferFrom(
        address from,
        address to,
        uint256 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 (uint256);

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    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 (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

    function mint(address to) external returns (uint256 liquidity);

    function burn(address to) external returns (uint256 amount0, uint256 amount1);

    function swap(
        uint256 amount0Out,
        uint256 amount1Out,
        address to,
        bytes calldata data
    ) external;

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

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

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

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * 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 `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);
}

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

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

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `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;
        }
        _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;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

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

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, 'ERC20: burn amount exceeds balance');
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

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

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

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

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

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

abstract contract Ownable is Context {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), 'Ownable: new owner is the zero address');
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

contract BustedBean is ERC20, Ownable {
    using SafeMath for uint256;

    //Contract functional variables
    uint256 private constant TOTAL_SUPPLY = 1_000_000 * 1e18;
    uint256 public _maxTransactionAmount;
    mapping(address => bool) public _isExcludedFromLimit;
    uint256 public _swapTokensAtAmount;
    uint256 public _maxWallet;
    bool private _swapping;

    // Anti-bot
    mapping(address => uint256) private _lastTransferTimestamp; // to hold last Transfers temporarily during launch
    bool public _isTransferDelay = false;

    //Fees
    address public marketingWallet;
    address public devWallet;

    uint256 public buyTotalFees;
    uint256 public buyMarketingFee;
    uint256 public buyLiquidityFee;
    uint256 public buyDevFee;

    uint256 public sellTotalFees;
    uint256 public sellMarketingFee;
    uint256 public sellLiquidityFee;
    uint256 public sellDevFee;

    uint256 public tokensForMarketing;
    uint256 public tokensForLiquidity;
    uint256 public tokensForDev;
    mapping(address => bool) private _isExcludedFromFees;

    //Uniswap
    IUniswapV2Router02 public router;
    address public pair;
    address public constant deadAddress = address(0xdead);

    constructor() ERC20('Busted Bean Club', '$BEAN') {
        setupSwapRouter(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);

        uint256 _buyMarketingFee = 3;
        uint256 _buyLiquidityFee = 0;
        uint256 _buyDevFee = 2;
        uint256 _sellMarketingFee = 3;
        uint256 _sellLiquidityFee = 0;
        uint256 _sellDevFee = 2;

        buyMarketingFee = _buyMarketingFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyDevFee = _buyDevFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;

        sellMarketingFee = _sellMarketingFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellDevFee = _sellDevFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;

        _maxTransactionAmount = (TOTAL_SUPPLY * 3) / 100;
        _maxWallet = (TOTAL_SUPPLY * 3) / 100;
        _swapTokensAtAmount = (TOTAL_SUPPLY * 1) / 100;

        marketingWallet = owner();
        // set as marketing wallet
        devWallet = owner();
        // set as dev wallet

        // exclude from paying fees or having max transaction amount
        setIsExcludeFromFees(owner(), true);
        setIsExcludeFromFees(address(this), true);
        setIsExcludeFromFees(address(0xdead), true);
        setIsExcludeFromFees(address(marketingWallet), true);

        setIsExcludeFromLimit(owner(), true);
        setIsExcludeFromLimit(address(this), true);
        setIsExcludeFromLimit(address(0xdead), true);
        setIsExcludeFromLimit(address(marketingWallet), true);

        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(msg.sender, TOTAL_SUPPLY);
    }

    function setupSwapRouter(address routerAddress) private {
        require(routerAddress != address(0), 'Invalid router address');
        router = IUniswapV2Router02(routerAddress);
        pair = IUniswapV2Factory(router.factory()).getPair(address(this), router.WETH());
        if (pair == address(0)) {
            pair = IUniswapV2Factory(router.factory()).createPair(address(this), router.WETH());
        }
        setIsExcludeFromLimit(routerAddress, true);
        setIsExcludeFromLimit(address(pair), true);
    }

    receive() external payable {}

    function removeLimits() external onlyOwner {
        _maxTransactionAmount = TOTAL_SUPPLY;
        _maxWallet = TOTAL_SUPPLY;
        _swapTokensAtAmount = TOTAL_SUPPLY;
    }

    function disableTransferDelay() external onlyOwner {
        _isTransferDelay = false;
    }

    // change the minimum amount of tokens to sell from fees
    function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns (bool) {
        require(
            newAmount >= ((totalSupply() * 1) / 10000) / 1e18,
            'Swap amount cannot be lower than 0.01% total supply.'
        );
        require(
            newAmount <= ((totalSupply() * 5) / 1000) / 1e18,
            'Swap amount cannot be higher than 0.5% total supply.'
        );
        _swapTokensAtAmount = newAmount * 1e18;
        return true;
    }

    function updateMaxTxnAmount(uint256 newAmount) external onlyOwner {
        _maxTransactionAmount = newAmount * 1e18;
    }

    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        _maxWallet = newNum * 1e18;
    }

    function setIsExcludeFromLimit(address updAds, bool isEx) public onlyOwner {
        _isExcludedFromLimit[updAds] = isEx;
    }

    function setIsExcludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;
    }

    function setIsExcludedFromFees(address account) public view returns (bool) {
        return _isExcludedFromFees[account];
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), 'ERC20: transfer from the zero address');
        require(to != address(0), 'ERC20: transfer to the zero address');

        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }

        if (_swapping) {
            super._transfer(from, to, amount);
            return;
        }

        if (!_isExcludedFromLimit[from] && !_isExcludedFromLimit[to]) {
            // When buy
            if (from == pair) {
                require(amount <= _maxTransactionAmount, 'Buy transfer amount exceeds the maxTransactionAmount.');
                require(amount + balanceOf(to) <= _maxWallet, 'Max wallet exceeded');
                // Delay on buy only
                if (_isTransferDelay) {
                    require(
                        _lastTransferTimestamp[tx.origin] < block.number,
                        '_transfer:: Transfer Delay enabled.  Only one purchase per block allowed.'
                    );
                    _lastTransferTimestamp[tx.origin] = block.number;
                }
            }
            // When sell
            else if (to == pair) {
                require(amount <= _maxTransactionAmount, 'Sell transfer amount exceeds the maxTransactionAmount.');
            }
            // Transfer
            else {
                require(amount + balanceOf(to) <= _maxWallet, 'Max wallet exceeded');
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= _swapTokensAtAmount;

        if (
            canSwap &&
            to == pair && //on sell
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapBack();
        }

        bool takeFee = true;

        // if any account belongs to _isExcludedFromFee account then remove the fee
        if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (to == pair && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
                tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
                tokensForDev += (fees * sellDevFee) / sellTotalFees;
                tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees;
            }
            // on buy
            else if (from == pair && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForDev += (fees * buyDevFee) / buyTotalFees;
                tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees;
            }

            if (fees > 0) {
                super._transfer(from, address(this), fees);
            }

            amount -= fees;
        }

        super._transfer(from, to, amount);
    }

    function swapTokensForEth(uint256 tokenAmount) private {
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = router.WETH();

        _approve(address(this), address(router), tokenAmount);

        // make the swap
        router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
    }

    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(router), tokenAmount);

        // add the liquidity
        router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            devWallet,
            block.timestamp
        );
    }

    function swapBack() private lockTheSwap {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForLiquidity + tokensForMarketing + tokensForDev;
        bool success;

        if (contractBalance == 0 || totalTokensToSwap == 0) {
            return;
        }

        // Halve the amount of liquidity tokens
        uint256 liquidityTokens = (contractBalance * tokensForLiquidity) / totalTokensToSwap / 2;
        uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens);

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

        uint256 ethBalance = address(this).balance.sub(initialETHBalance);

        uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div(totalTokensToSwap);
        uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);

        uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev;

        tokensForLiquidity = 0;
        tokensForMarketing = 0;
        tokensForDev = 0;

        (success, ) = address(devWallet).call{value: ethForDev}('');

        if (liquidityTokens > 0 && ethForLiquidity > 0) {
            addLiquidity(liquidityTokens, ethForLiquidity);
        }

        (success, ) = address(marketingWallet).call{value: address(this).balance}('');
    }

    modifier lockTheSwap() {
        _swapping = true;
        _;
        _swapping = false;
    }
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedFromLimit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_isTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"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":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[],"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":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"setIsExcludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"setIsExcludeFromLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"setIsExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526000600c60006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b506040518060400160405280601081526020017f427573746564204265616e20436c7562000000000000000000000000000000008152506040518060400160405280600581526020017f244245414e0000000000000000000000000000000000000000000000000000008152508160039080519060200190620000b192919062000d5b565b508060049080519060200190620000ca92919062000d5b565b505050620000ed620000e1620003f160201b60201c565b620003f960201b60201c565b62000112737a250d5630b4cf539739df2c5dacb4c659f2488d620004bf60201b60201c565b600060039050600080600290506000600390506000806002905085600f819055508460108190555083601181905550601154601054600f5462000156919062000e44565b62000162919062000e44565b600e8190555082601381905550816014819055508060158190555060155460145460135462000192919062000e44565b6200019e919062000e44565b6012819055506064600369d3c21bcecceda1000000620001bf919062000ea1565b620001cb919062000f31565b6006819055506064600369d3c21bcecceda1000000620001ec919062000ea1565b620001f8919062000f31565b6009819055506064600169d3c21bcecceda100000062000219919062000ea1565b62000225919062000f31565b6008819055506200023b62000a4760201b60201c565b600c60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200028b62000a4760201b60201c565b600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620002ed620002df62000a4760201b60201c565b600162000a7160201b60201c565b6200030030600162000a7160201b60201c565b6200031561dead600162000a7160201b60201c565b6200034a600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600162000a7160201b60201c565b6200036c6200035e62000a4760201b60201c565b600162000adc60201b60201c565b6200037f30600162000adc60201b60201c565b6200039461dead600162000adc60201b60201c565b620003c9600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600162000adc60201b60201c565b620003e53369d3c21bcecceda100000062000b4760201b60201c565b5050505050506200123d565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141562000532576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005299062000fca565b60405180910390fd5b80601a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015620005dc57600080fd5b505afa158015620005f1573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000617919062001056565b73ffffffffffffffffffffffffffffffffffffffff1663e6a4390530601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200069c57600080fd5b505afa158015620006b1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620006d7919062001056565b6040518363ffffffff1660e01b8152600401620006f692919062001099565b60206040518083038186803b1580156200070f57600080fd5b505afa15801562000724573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200074a919062001056565b601b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600073ffffffffffffffffffffffffffffffffffffffff16601b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415620009fc57601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200084b57600080fd5b505afa15801562000860573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000886919062001056565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200090b57600080fd5b505afa15801562000920573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000946919062001056565b6040518363ffffffff1660e01b81526004016200096592919062001099565b602060405180830381600087803b1580156200098057600080fd5b505af115801562000995573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620009bb919062001056565b601b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b62000a0f81600162000adc60201b60201c565b62000a44601b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600162000adc60201b60201c565b50565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b62000a8162000cc060201b60201c565b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b62000aec62000cc060201b60201c565b80600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000bba576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000bb19062001116565b60405180910390fd5b62000bce6000838362000d5160201b60201c565b806002600082825462000be2919062000e44565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000c39919062000e44565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000ca0919062001149565b60405180910390a362000cbc6000838362000d5660201b60201c565b5050565b62000cd0620003f160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000cf662000a4760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000d4f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000d4690620011b6565b60405180910390fd5b565b505050565b505050565b82805462000d699062001207565b90600052602060002090601f01602090048101928262000d8d576000855562000dd9565b82601f1062000da857805160ff191683800117855562000dd9565b8280016001018555821562000dd9579182015b8281111562000dd857825182559160200191906001019062000dbb565b5b50905062000de8919062000dec565b5090565b5b8082111562000e0757600081600090555060010162000ded565b5090565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000e518262000e0b565b915062000e5e8362000e0b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000e965762000e9562000e15565b5b828201905092915050565b600062000eae8262000e0b565b915062000ebb8362000e0b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000ef75762000ef662000e15565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000f3e8262000e0b565b915062000f4b8362000e0b565b92508262000f5e5762000f5d62000f02565b5b828204905092915050565b600082825260208201905092915050565b7f496e76616c696420726f75746572206164647265737300000000000000000000600082015250565b600062000fb260168362000f69565b915062000fbf8262000f7a565b602082019050919050565b6000602082019050818103600083015262000fe58162000fa3565b9050919050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200101e8262000ff1565b9050919050565b620010308162001011565b81146200103c57600080fd5b50565b600081519050620010508162001025565b92915050565b6000602082840312156200106f576200106e62000fec565b5b60006200107f848285016200103f565b91505092915050565b620010938162001011565b82525050565b6000604082019050620010b0600083018562001088565b620010bf602083018462001088565b9392505050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620010fe601f8362000f69565b91506200110b82620010c6565b602082019050919050565b600060208201905081810360008301526200113181620010ef565b9050919050565b620011438162000e0b565b82525050565b600060208201905062001160600083018462001138565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200119e60208362000f69565b9150620011ab8262001166565b602082019050919050565b60006020820190508181036000830152620011d1816200118f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200122057607f821691505b60208210811415620012375762001236620011d8565b5b50919050565b61390b806200124d6000396000f3fe6080604052600436106102605760003560e01c80638bb1f5e911610144578063a9059cbb116100b6578063dd62ed3e1161007a578063dd62ed3e14610915578063e884f26014610952578063f11a24d314610969578063f2fde38b14610994578063f6374342146109bd578063f887ea40146109e857610267565b8063a9059cbb1461080a578063c18bc19514610847578063cd183bbd14610870578063d257b34f146108ad578063d85ba063146108ea57610267565b806395d89b411161010857806395d89b41146106f65780639c3b4fdc146107215780639fccce321461074c578063a0d82dc514610777578063a457c2d7146107a2578063a8aa1b31146107df57610267565b80638bb1f5e91461060d5780638da5cb5b146106385780638ea5220f146106635780639145dbe21461068e57806392136913146106cb57610267565b8063313ce567116101dd578063751039fc116101a1578063751039fc1461052357806375f0a8741461053a5780637bce5a041461056557806382247ec014610590578063863587cd146105bb57806386695e8e146105e457610267565b8063313ce5671461043c57806339509351146104675780636a486a8e146104a457806370a08231146104cf578063715018a61461050c57610267565b80631f3fed8f116102245780631f3fed8f14610355578063203e727e1461038057806323b872dd146103a957806327c8f835146103e65780632fd689e31461041157610267565b806304beaeb81461026c57806306fdde0314610297578063095ea7b3146102c257806318160ddd146102ff5780631a8145bb1461032a57610267565b3661026757005b600080fd5b34801561027857600080fd5b50610281610a13565b60405161028e91906127ae565b60405180910390f35b3480156102a357600080fd5b506102ac610a19565b6040516102b99190612862565b60405180910390f35b3480156102ce57600080fd5b506102e960048036038101906102e49190612913565b610aab565b6040516102f6919061296e565b60405180910390f35b34801561030b57600080fd5b50610314610ace565b60405161032191906127ae565b60405180910390f35b34801561033657600080fd5b5061033f610ad8565b60405161034c91906127ae565b60405180910390f35b34801561036157600080fd5b5061036a610ade565b60405161037791906127ae565b60405180910390f35b34801561038c57600080fd5b506103a760048036038101906103a29190612989565b610ae4565b005b3480156103b557600080fd5b506103d060048036038101906103cb91906129b6565b610b09565b6040516103dd919061296e565b60405180910390f35b3480156103f257600080fd5b506103fb610b38565b6040516104089190612a18565b60405180910390f35b34801561041d57600080fd5b50610426610b3e565b60405161043391906127ae565b60405180910390f35b34801561044857600080fd5b50610451610b44565b60405161045e9190612a4f565b60405180910390f35b34801561047357600080fd5b5061048e60048036038101906104899190612913565b610b4d565b60405161049b919061296e565b60405180910390f35b3480156104b057600080fd5b506104b9610b84565b6040516104c691906127ae565b60405180910390f35b3480156104db57600080fd5b506104f660048036038101906104f19190612a6a565b610b8a565b60405161050391906127ae565b60405180910390f35b34801561051857600080fd5b50610521610bd2565b005b34801561052f57600080fd5b50610538610be6565b005b34801561054657600080fd5b5061054f610c23565b60405161055c9190612a18565b60405180910390f35b34801561057157600080fd5b5061057a610c49565b60405161058791906127ae565b60405180910390f35b34801561059c57600080fd5b506105a5610c4f565b6040516105b291906127ae565b60405180910390f35b3480156105c757600080fd5b506105e260048036038101906105dd9190612ac3565b610c55565b005b3480156105f057600080fd5b5061060b60048036038101906106069190612ac3565b610cb8565b005b34801561061957600080fd5b50610622610d1b565b60405161062f919061296e565b60405180910390f35b34801561064457600080fd5b5061064d610d2e565b60405161065a9190612a18565b60405180910390f35b34801561066f57600080fd5b50610678610d58565b6040516106859190612a18565b60405180910390f35b34801561069a57600080fd5b506106b560048036038101906106b09190612a6a565b610d7e565b6040516106c2919061296e565b60405180910390f35b3480156106d757600080fd5b506106e0610dd4565b6040516106ed91906127ae565b60405180910390f35b34801561070257600080fd5b5061070b610dda565b6040516107189190612862565b60405180910390f35b34801561072d57600080fd5b50610736610e6c565b60405161074391906127ae565b60405180910390f35b34801561075857600080fd5b50610761610e72565b60405161076e91906127ae565b60405180910390f35b34801561078357600080fd5b5061078c610e78565b60405161079991906127ae565b60405180910390f35b3480156107ae57600080fd5b506107c960048036038101906107c49190612913565b610e7e565b6040516107d6919061296e565b60405180910390f35b3480156107eb57600080fd5b506107f4610ef5565b6040516108019190612a18565b60405180910390f35b34801561081657600080fd5b50610831600480360381019061082c9190612913565b610f1b565b60405161083e919061296e565b60405180910390f35b34801561085357600080fd5b5061086e60048036038101906108699190612989565b610f3e565b005b34801561087c57600080fd5b5061089760048036038101906108929190612a6a565b610f63565b6040516108a4919061296e565b60405180910390f35b3480156108b957600080fd5b506108d460048036038101906108cf9190612989565b610f83565b6040516108e1919061296e565b60405180910390f35b3480156108f657600080fd5b506108ff61109c565b60405161090c91906127ae565b60405180910390f35b34801561092157600080fd5b5061093c60048036038101906109379190612b03565b6110a2565b60405161094991906127ae565b60405180910390f35b34801561095e57600080fd5b50610967611129565b005b34801561097557600080fd5b5061097e61114e565b60405161098b91906127ae565b60405180910390f35b3480156109a057600080fd5b506109bb60048036038101906109b69190612a6a565b611154565b005b3480156109c957600080fd5b506109d26111d8565b6040516109df91906127ae565b60405180910390f35b3480156109f457600080fd5b506109fd6111de565b604051610a0a9190612ba2565b60405180910390f35b60065481565b606060038054610a2890612bec565b80601f0160208091040260200160405190810160405280929190818152602001828054610a5490612bec565b8015610aa15780601f10610a7657610100808354040283529160200191610aa1565b820191906000526020600020905b815481529060010190602001808311610a8457829003601f168201915b5050505050905090565b600080610ab6611204565b9050610ac381858561120c565b600191505092915050565b6000600254905090565b60175481565b60165481565b610aec6113d7565b670de0b6b3a764000081610b009190612c4d565b60068190555050565b600080610b14611204565b9050610b21858285611455565b610b2c8585856114e1565b60019150509392505050565b61dead81565b60085481565b60006012905090565b600080610b58611204565b9050610b79818585610b6a85896110a2565b610b749190612ca7565b61120c565b600191505092915050565b60125481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610bda6113d7565b610be46000611de9565b565b610bee6113d7565b69d3c21bcecceda100000060068190555069d3c21bcecceda100000060098190555069d3c21bcecceda1000000600881905550565b600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600f5481565b60095481565b610c5d6113d7565b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b610cc06113d7565b80600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600c60009054906101000a900460ff1681565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60135481565b606060048054610de990612bec565b80601f0160208091040260200160405190810160405280929190818152602001828054610e1590612bec565b8015610e625780601f10610e3757610100808354040283529160200191610e62565b820191906000526020600020905b815481529060010190602001808311610e4557829003601f168201915b5050505050905090565b60115481565b60185481565b60155481565b600080610e89611204565b90506000610e9782866110a2565b905083811015610edc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed390612d6f565b60405180910390fd5b610ee9828686840361120c565b60019250505092915050565b601b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080610f26611204565b9050610f338185856114e1565b600191505092915050565b610f466113d7565b670de0b6b3a764000081610f5a9190612c4d565b60098190555050565b60076020528060005260406000206000915054906101000a900460ff1681565b6000610f8d6113d7565b670de0b6b3a76400006127106001610fa3610ace565b610fad9190612c4d565b610fb79190612dbe565b610fc19190612dbe565b821015611003576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffa90612e61565b60405180910390fd5b670de0b6b3a76400006103e86005611019610ace565b6110239190612c4d565b61102d9190612dbe565b6110379190612dbe565b821115611079576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107090612ef3565b60405180910390fd5b670de0b6b3a76400008261108d9190612c4d565b60088190555060019050919050565b600e5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6111316113d7565b6000600c60006101000a81548160ff021916908315150217905550565b60105481565b61115c6113d7565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c390612f85565b60405180910390fd5b6111d581611de9565b50565b60145481565b601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561127c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127390613017565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e3906130a9565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516113ca91906127ae565b60405180910390a3505050565b6113df611204565b73ffffffffffffffffffffffffffffffffffffffff166113fd610d2e565b73ffffffffffffffffffffffffffffffffffffffff1614611453576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144a90613115565b60405180910390fd5b565b600061146184846110a2565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146114db57818110156114cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c490613181565b60405180910390fd5b6114da848484840361120c565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611551576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154890613213565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b8906132a5565b60405180910390fd5b60008114156115db576115d683836000611eaf565b611de4565b600a60009054906101000a900460ff1615611600576115fb838383611eaf565b611de4565b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156116a45750600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561197757601b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561187c57600654811115611744576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173b90613337565b60405180910390fd5b60095461175083610b8a565b8261175b9190612ca7565b111561179c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611793906133a3565b60405180910390fd5b600c60009054906101000a900460ff16156118775743600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410611832576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118299061345b565b60405180910390fd5b43600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b611976565b601b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561191c57600654811115611917576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190e906134ed565b60405180910390fd5b611975565b60095461192883610b8a565b826119339190612ca7565b1115611974576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196b906133a3565b60405180910390fd5b5b5b5b600061198230610b8a565b9050600060085482101590508080156119e85750601b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b8015611a3e5750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611a945750601960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611aa257611aa1612130565b5b600060019050601960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611b495750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15611b5357600090505b60008115611dd457601b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16148015611bba57506000601254115b15611c8757611be76064611bd9601254886123e890919063ffffffff16565b6123fe90919063ffffffff16565b905060125460145482611bfa9190612c4d565b611c049190612dbe565b60176000828254611c159190612ca7565b9250508190555060125460155482611c2d9190612c4d565b611c379190612dbe565b60186000828254611c489190612ca7565b9250508190555060125460135482611c609190612c4d565b611c6a9190612dbe565b60166000828254611c7b9190612ca7565b92505081905550611db0565b601b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff16148015611ce657506000600e54115b15611daf57611d136064611d05600e54886123e890919063ffffffff16565b6123fe90919063ffffffff16565b9050600e5460105482611d269190612c4d565b611d309190612dbe565b60176000828254611d419190612ca7565b92505081905550600e5460115482611d599190612c4d565b611d639190612dbe565b60186000828254611d749190612ca7565b92505081905550600e54600f5482611d8c9190612c4d565b611d969190612dbe565b60166000828254611da79190612ca7565b925050819055505b5b6000811115611dc557611dc4873083611eaf565b5b8085611dd1919061350d565b94505b611ddf878787611eaf565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611f1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1690613213565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f86906132a5565b60405180910390fd5b611f9a838383612414565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612020576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612017906135b3565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120b39190612ca7565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161211791906127ae565b60405180910390a361212a848484612419565b50505050565b6001600a60006101000a81548160ff021916908315150217905550600061215630610b8a565b9050600060185460165460175461216d9190612ca7565b6121779190612ca7565b90506000808314806121895750600082145b15612196575050506123cb565b6000600283601754866121a99190612c4d565b6121b39190612dbe565b6121bd9190612dbe565b905060006121d4828661241e90919063ffffffff16565b905060004790506121e482612434565b60006121f9824761241e90919063ffffffff16565b9050600061222487612216601654856123e890919063ffffffff16565b6123fe90919063ffffffff16565b9050600061224f88612241601854866123e890919063ffffffff16565b6123fe90919063ffffffff16565b90506000818385612260919061350d565b61226a919061350d565b9050600060178190555060006016819055506000601881905550600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516122ca90613604565b60006040518083038185875af1925050503d8060008114612307576040519150601f19603f3d011682016040523d82523d6000602084013e61230c565b606091505b5050809850506000871180156123225750600081115b15612332576123318782612686565b5b600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161237890613604565b60006040518083038185875af1925050503d80600081146123b5576040519150601f19603f3d011682016040523d82523d6000602084013e6123ba565b606091505b505080985050505050505050505050505b6000600a60006101000a81548160ff021916908315150217905550565b600081836123f69190612c4d565b905092915050565b6000818361240c9190612dbe565b905092915050565b505050565b505050565b6000818361242c919061350d565b905092915050565b6000600267ffffffffffffffff81111561245157612450613619565b5b60405190808252806020026020018201604052801561247f5781602001602082028036833780820191505090505b509050308160008151811061249757612496613648565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561253957600080fd5b505afa15801561254d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612571919061368c565b8160018151811061258557612584613648565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506125ec30601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168461120c565b601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016126509594939291906137b2565b600060405180830381600087803b15801561266a57600080fd5b505af115801561267e573d6000803e3d6000fd5b505050505050565b6126b330601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168461120c565b601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b815260040161273c9695949392919061380c565b6060604051808303818588803b15801561275557600080fd5b505af1158015612769573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061278e9190613882565b5050505050565b6000819050919050565b6127a881612795565b82525050565b60006020820190506127c3600083018461279f565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156128035780820151818401526020810190506127e8565b83811115612812576000848401525b50505050565b6000601f19601f8301169050919050565b6000612834826127c9565b61283e81856127d4565b935061284e8185602086016127e5565b61285781612818565b840191505092915050565b6000602082019050818103600083015261287c8184612829565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006128b482612889565b9050919050565b6128c4816128a9565b81146128cf57600080fd5b50565b6000813590506128e1816128bb565b92915050565b6128f081612795565b81146128fb57600080fd5b50565b60008135905061290d816128e7565b92915050565b6000806040838503121561292a57612929612884565b5b6000612938858286016128d2565b9250506020612949858286016128fe565b9150509250929050565b60008115159050919050565b61296881612953565b82525050565b6000602082019050612983600083018461295f565b92915050565b60006020828403121561299f5761299e612884565b5b60006129ad848285016128fe565b91505092915050565b6000806000606084860312156129cf576129ce612884565b5b60006129dd868287016128d2565b93505060206129ee868287016128d2565b92505060406129ff868287016128fe565b9150509250925092565b612a12816128a9565b82525050565b6000602082019050612a2d6000830184612a09565b92915050565b600060ff82169050919050565b612a4981612a33565b82525050565b6000602082019050612a646000830184612a40565b92915050565b600060208284031215612a8057612a7f612884565b5b6000612a8e848285016128d2565b91505092915050565b612aa081612953565b8114612aab57600080fd5b50565b600081359050612abd81612a97565b92915050565b60008060408385031215612ada57612ad9612884565b5b6000612ae8858286016128d2565b9250506020612af985828601612aae565b9150509250929050565b60008060408385031215612b1a57612b19612884565b5b6000612b28858286016128d2565b9250506020612b39858286016128d2565b9150509250929050565b6000819050919050565b6000612b68612b63612b5e84612889565b612b43565b612889565b9050919050565b6000612b7a82612b4d565b9050919050565b6000612b8c82612b6f565b9050919050565b612b9c81612b81565b82525050565b6000602082019050612bb76000830184612b93565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612c0457607f821691505b60208210811415612c1857612c17612bbd565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612c5882612795565b9150612c6383612795565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612c9c57612c9b612c1e565b5b828202905092915050565b6000612cb282612795565b9150612cbd83612795565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612cf257612cf1612c1e565b5b828201905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612d596025836127d4565b9150612d6482612cfd565b604082019050919050565b60006020820190508181036000830152612d8881612d4c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612dc982612795565b9150612dd483612795565b925082612de457612de3612d8f565b5b828204905092915050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e30312520746f74616c20737570706c792e000000000000000000000000602082015250565b6000612e4b6034836127d4565b9150612e5682612def565b604082019050919050565b60006020820190508181036000830152612e7a81612e3e565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000612edd6034836127d4565b9150612ee882612e81565b604082019050919050565b60006020820190508181036000830152612f0c81612ed0565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612f6f6026836127d4565b9150612f7a82612f13565b604082019050919050565b60006020820190508181036000830152612f9e81612f62565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006130016024836127d4565b915061300c82612fa5565b604082019050919050565b6000602082019050818103600083015261303081612ff4565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006130936022836127d4565b915061309e82613037565b604082019050919050565b600060208201905081810360008301526130c281613086565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006130ff6020836127d4565b915061310a826130c9565b602082019050919050565b6000602082019050818103600083015261312e816130f2565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061316b601d836127d4565b915061317682613135565b602082019050919050565b6000602082019050818103600083015261319a8161315e565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006131fd6025836127d4565b9150613208826131a1565b604082019050919050565b6000602082019050818103600083015261322c816131f0565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061328f6023836127d4565b915061329a82613233565b604082019050919050565b600060208201905081810360008301526132be81613282565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006133216035836127d4565b915061332c826132c5565b604082019050919050565b6000602082019050818103600083015261335081613314565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b600061338d6013836127d4565b915061339882613357565b602082019050919050565b600060208201905081810360008301526133bc81613380565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b60006134456049836127d4565b9150613450826133c3565b606082019050919050565b6000602082019050818103600083015261347481613438565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006134d76036836127d4565b91506134e28261347b565b604082019050919050565b60006020820190508181036000830152613506816134ca565b9050919050565b600061351882612795565b915061352383612795565b92508282101561353657613535612c1e565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061359d6026836127d4565b91506135a882613541565b604082019050919050565b600060208201905081810360008301526135cc81613590565b9050919050565b600081905092915050565b50565b60006135ee6000836135d3565b91506135f9826135de565b600082019050919050565b600061360f826135e1565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050613686816128bb565b92915050565b6000602082840312156136a2576136a1612884565b5b60006136b084828501613677565b91505092915050565b6000819050919050565b60006136de6136d96136d4846136b9565b612b43565b612795565b9050919050565b6136ee816136c3565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613729816128a9565b82525050565b600061373b8383613720565b60208301905092915050565b6000602082019050919050565b600061375f826136f4565b61376981856136ff565b935061377483613710565b8060005b838110156137a557815161378c888261372f565b975061379783613747565b925050600181019050613778565b5085935050505092915050565b600060a0820190506137c7600083018861279f565b6137d460208301876136e5565b81810360408301526137e68186613754565b90506137f56060830185612a09565b613802608083018461279f565b9695505050505050565b600060c0820190506138216000830189612a09565b61382e602083018861279f565b61383b60408301876136e5565b61384860608301866136e5565b6138556080830185612a09565b61386260a083018461279f565b979650505050505050565b60008151905061387c816128e7565b92915050565b60008060006060848603121561389b5761389a612884565b5b60006138a98682870161386d565b93505060206138ba8682870161386d565b92505060406138cb8682870161386d565b915050925092509256fea2646970667358221220ca4c5947fbce5c623aae30eb9994eead5e7ad354abb6d82e60267ca8b75f4bd464736f6c63430008090033

Deployed Bytecode

0x6080604052600436106102605760003560e01c80638bb1f5e911610144578063a9059cbb116100b6578063dd62ed3e1161007a578063dd62ed3e14610915578063e884f26014610952578063f11a24d314610969578063f2fde38b14610994578063f6374342146109bd578063f887ea40146109e857610267565b8063a9059cbb1461080a578063c18bc19514610847578063cd183bbd14610870578063d257b34f146108ad578063d85ba063146108ea57610267565b806395d89b411161010857806395d89b41146106f65780639c3b4fdc146107215780639fccce321461074c578063a0d82dc514610777578063a457c2d7146107a2578063a8aa1b31146107df57610267565b80638bb1f5e91461060d5780638da5cb5b146106385780638ea5220f146106635780639145dbe21461068e57806392136913146106cb57610267565b8063313ce567116101dd578063751039fc116101a1578063751039fc1461052357806375f0a8741461053a5780637bce5a041461056557806382247ec014610590578063863587cd146105bb57806386695e8e146105e457610267565b8063313ce5671461043c57806339509351146104675780636a486a8e146104a457806370a08231146104cf578063715018a61461050c57610267565b80631f3fed8f116102245780631f3fed8f14610355578063203e727e1461038057806323b872dd146103a957806327c8f835146103e65780632fd689e31461041157610267565b806304beaeb81461026c57806306fdde0314610297578063095ea7b3146102c257806318160ddd146102ff5780631a8145bb1461032a57610267565b3661026757005b600080fd5b34801561027857600080fd5b50610281610a13565b60405161028e91906127ae565b60405180910390f35b3480156102a357600080fd5b506102ac610a19565b6040516102b99190612862565b60405180910390f35b3480156102ce57600080fd5b506102e960048036038101906102e49190612913565b610aab565b6040516102f6919061296e565b60405180910390f35b34801561030b57600080fd5b50610314610ace565b60405161032191906127ae565b60405180910390f35b34801561033657600080fd5b5061033f610ad8565b60405161034c91906127ae565b60405180910390f35b34801561036157600080fd5b5061036a610ade565b60405161037791906127ae565b60405180910390f35b34801561038c57600080fd5b506103a760048036038101906103a29190612989565b610ae4565b005b3480156103b557600080fd5b506103d060048036038101906103cb91906129b6565b610b09565b6040516103dd919061296e565b60405180910390f35b3480156103f257600080fd5b506103fb610b38565b6040516104089190612a18565b60405180910390f35b34801561041d57600080fd5b50610426610b3e565b60405161043391906127ae565b60405180910390f35b34801561044857600080fd5b50610451610b44565b60405161045e9190612a4f565b60405180910390f35b34801561047357600080fd5b5061048e60048036038101906104899190612913565b610b4d565b60405161049b919061296e565b60405180910390f35b3480156104b057600080fd5b506104b9610b84565b6040516104c691906127ae565b60405180910390f35b3480156104db57600080fd5b506104f660048036038101906104f19190612a6a565b610b8a565b60405161050391906127ae565b60405180910390f35b34801561051857600080fd5b50610521610bd2565b005b34801561052f57600080fd5b50610538610be6565b005b34801561054657600080fd5b5061054f610c23565b60405161055c9190612a18565b60405180910390f35b34801561057157600080fd5b5061057a610c49565b60405161058791906127ae565b60405180910390f35b34801561059c57600080fd5b506105a5610c4f565b6040516105b291906127ae565b60405180910390f35b3480156105c757600080fd5b506105e260048036038101906105dd9190612ac3565b610c55565b005b3480156105f057600080fd5b5061060b60048036038101906106069190612ac3565b610cb8565b005b34801561061957600080fd5b50610622610d1b565b60405161062f919061296e565b60405180910390f35b34801561064457600080fd5b5061064d610d2e565b60405161065a9190612a18565b60405180910390f35b34801561066f57600080fd5b50610678610d58565b6040516106859190612a18565b60405180910390f35b34801561069a57600080fd5b506106b560048036038101906106b09190612a6a565b610d7e565b6040516106c2919061296e565b60405180910390f35b3480156106d757600080fd5b506106e0610dd4565b6040516106ed91906127ae565b60405180910390f35b34801561070257600080fd5b5061070b610dda565b6040516107189190612862565b60405180910390f35b34801561072d57600080fd5b50610736610e6c565b60405161074391906127ae565b60405180910390f35b34801561075857600080fd5b50610761610e72565b60405161076e91906127ae565b60405180910390f35b34801561078357600080fd5b5061078c610e78565b60405161079991906127ae565b60405180910390f35b3480156107ae57600080fd5b506107c960048036038101906107c49190612913565b610e7e565b6040516107d6919061296e565b60405180910390f35b3480156107eb57600080fd5b506107f4610ef5565b6040516108019190612a18565b60405180910390f35b34801561081657600080fd5b50610831600480360381019061082c9190612913565b610f1b565b60405161083e919061296e565b60405180910390f35b34801561085357600080fd5b5061086e60048036038101906108699190612989565b610f3e565b005b34801561087c57600080fd5b5061089760048036038101906108929190612a6a565b610f63565b6040516108a4919061296e565b60405180910390f35b3480156108b957600080fd5b506108d460048036038101906108cf9190612989565b610f83565b6040516108e1919061296e565b60405180910390f35b3480156108f657600080fd5b506108ff61109c565b60405161090c91906127ae565b60405180910390f35b34801561092157600080fd5b5061093c60048036038101906109379190612b03565b6110a2565b60405161094991906127ae565b60405180910390f35b34801561095e57600080fd5b50610967611129565b005b34801561097557600080fd5b5061097e61114e565b60405161098b91906127ae565b60405180910390f35b3480156109a057600080fd5b506109bb60048036038101906109b69190612a6a565b611154565b005b3480156109c957600080fd5b506109d26111d8565b6040516109df91906127ae565b60405180910390f35b3480156109f457600080fd5b506109fd6111de565b604051610a0a9190612ba2565b60405180910390f35b60065481565b606060038054610a2890612bec565b80601f0160208091040260200160405190810160405280929190818152602001828054610a5490612bec565b8015610aa15780601f10610a7657610100808354040283529160200191610aa1565b820191906000526020600020905b815481529060010190602001808311610a8457829003601f168201915b5050505050905090565b600080610ab6611204565b9050610ac381858561120c565b600191505092915050565b6000600254905090565b60175481565b60165481565b610aec6113d7565b670de0b6b3a764000081610b009190612c4d565b60068190555050565b600080610b14611204565b9050610b21858285611455565b610b2c8585856114e1565b60019150509392505050565b61dead81565b60085481565b60006012905090565b600080610b58611204565b9050610b79818585610b6a85896110a2565b610b749190612ca7565b61120c565b600191505092915050565b60125481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610bda6113d7565b610be46000611de9565b565b610bee6113d7565b69d3c21bcecceda100000060068190555069d3c21bcecceda100000060098190555069d3c21bcecceda1000000600881905550565b600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600f5481565b60095481565b610c5d6113d7565b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b610cc06113d7565b80600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600c60009054906101000a900460ff1681565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60135481565b606060048054610de990612bec565b80601f0160208091040260200160405190810160405280929190818152602001828054610e1590612bec565b8015610e625780601f10610e3757610100808354040283529160200191610e62565b820191906000526020600020905b815481529060010190602001808311610e4557829003601f168201915b5050505050905090565b60115481565b60185481565b60155481565b600080610e89611204565b90506000610e9782866110a2565b905083811015610edc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed390612d6f565b60405180910390fd5b610ee9828686840361120c565b60019250505092915050565b601b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080610f26611204565b9050610f338185856114e1565b600191505092915050565b610f466113d7565b670de0b6b3a764000081610f5a9190612c4d565b60098190555050565b60076020528060005260406000206000915054906101000a900460ff1681565b6000610f8d6113d7565b670de0b6b3a76400006127106001610fa3610ace565b610fad9190612c4d565b610fb79190612dbe565b610fc19190612dbe565b821015611003576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffa90612e61565b60405180910390fd5b670de0b6b3a76400006103e86005611019610ace565b6110239190612c4d565b61102d9190612dbe565b6110379190612dbe565b821115611079576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107090612ef3565b60405180910390fd5b670de0b6b3a76400008261108d9190612c4d565b60088190555060019050919050565b600e5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6111316113d7565b6000600c60006101000a81548160ff021916908315150217905550565b60105481565b61115c6113d7565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c390612f85565b60405180910390fd5b6111d581611de9565b50565b60145481565b601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561127c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127390613017565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e3906130a9565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516113ca91906127ae565b60405180910390a3505050565b6113df611204565b73ffffffffffffffffffffffffffffffffffffffff166113fd610d2e565b73ffffffffffffffffffffffffffffffffffffffff1614611453576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144a90613115565b60405180910390fd5b565b600061146184846110a2565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146114db57818110156114cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c490613181565b60405180910390fd5b6114da848484840361120c565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611551576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154890613213565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b8906132a5565b60405180910390fd5b60008114156115db576115d683836000611eaf565b611de4565b600a60009054906101000a900460ff1615611600576115fb838383611eaf565b611de4565b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156116a45750600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561197757601b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561187c57600654811115611744576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173b90613337565b60405180910390fd5b60095461175083610b8a565b8261175b9190612ca7565b111561179c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611793906133a3565b60405180910390fd5b600c60009054906101000a900460ff16156118775743600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410611832576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118299061345b565b60405180910390fd5b43600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b611976565b601b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561191c57600654811115611917576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190e906134ed565b60405180910390fd5b611975565b60095461192883610b8a565b826119339190612ca7565b1115611974576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196b906133a3565b60405180910390fd5b5b5b5b600061198230610b8a565b9050600060085482101590508080156119e85750601b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b8015611a3e5750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611a945750601960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611aa257611aa1612130565b5b600060019050601960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611b495750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15611b5357600090505b60008115611dd457601b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16148015611bba57506000601254115b15611c8757611be76064611bd9601254886123e890919063ffffffff16565b6123fe90919063ffffffff16565b905060125460145482611bfa9190612c4d565b611c049190612dbe565b60176000828254611c159190612ca7565b9250508190555060125460155482611c2d9190612c4d565b611c379190612dbe565b60186000828254611c489190612ca7565b9250508190555060125460135482611c609190612c4d565b611c6a9190612dbe565b60166000828254611c7b9190612ca7565b92505081905550611db0565b601b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff16148015611ce657506000600e54115b15611daf57611d136064611d05600e54886123e890919063ffffffff16565b6123fe90919063ffffffff16565b9050600e5460105482611d269190612c4d565b611d309190612dbe565b60176000828254611d419190612ca7565b92505081905550600e5460115482611d599190612c4d565b611d639190612dbe565b60186000828254611d749190612ca7565b92505081905550600e54600f5482611d8c9190612c4d565b611d969190612dbe565b60166000828254611da79190612ca7565b925050819055505b5b6000811115611dc557611dc4873083611eaf565b5b8085611dd1919061350d565b94505b611ddf878787611eaf565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611f1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1690613213565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f86906132a5565b60405180910390fd5b611f9a838383612414565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612020576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612017906135b3565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120b39190612ca7565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161211791906127ae565b60405180910390a361212a848484612419565b50505050565b6001600a60006101000a81548160ff021916908315150217905550600061215630610b8a565b9050600060185460165460175461216d9190612ca7565b6121779190612ca7565b90506000808314806121895750600082145b15612196575050506123cb565b6000600283601754866121a99190612c4d565b6121b39190612dbe565b6121bd9190612dbe565b905060006121d4828661241e90919063ffffffff16565b905060004790506121e482612434565b60006121f9824761241e90919063ffffffff16565b9050600061222487612216601654856123e890919063ffffffff16565b6123fe90919063ffffffff16565b9050600061224f88612241601854866123e890919063ffffffff16565b6123fe90919063ffffffff16565b90506000818385612260919061350d565b61226a919061350d565b9050600060178190555060006016819055506000601881905550600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516122ca90613604565b60006040518083038185875af1925050503d8060008114612307576040519150601f19603f3d011682016040523d82523d6000602084013e61230c565b606091505b5050809850506000871180156123225750600081115b15612332576123318782612686565b5b600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161237890613604565b60006040518083038185875af1925050503d80600081146123b5576040519150601f19603f3d011682016040523d82523d6000602084013e6123ba565b606091505b505080985050505050505050505050505b6000600a60006101000a81548160ff021916908315150217905550565b600081836123f69190612c4d565b905092915050565b6000818361240c9190612dbe565b905092915050565b505050565b505050565b6000818361242c919061350d565b905092915050565b6000600267ffffffffffffffff81111561245157612450613619565b5b60405190808252806020026020018201604052801561247f5781602001602082028036833780820191505090505b509050308160008151811061249757612496613648565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561253957600080fd5b505afa15801561254d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612571919061368c565b8160018151811061258557612584613648565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506125ec30601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168461120c565b601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016126509594939291906137b2565b600060405180830381600087803b15801561266a57600080fd5b505af115801561267e573d6000803e3d6000fd5b505050505050565b6126b330601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168461120c565b601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b815260040161273c9695949392919061380c565b6060604051808303818588803b15801561275557600080fd5b505af1158015612769573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061278e9190613882565b5050505050565b6000819050919050565b6127a881612795565b82525050565b60006020820190506127c3600083018461279f565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156128035780820151818401526020810190506127e8565b83811115612812576000848401525b50505050565b6000601f19601f8301169050919050565b6000612834826127c9565b61283e81856127d4565b935061284e8185602086016127e5565b61285781612818565b840191505092915050565b6000602082019050818103600083015261287c8184612829565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006128b482612889565b9050919050565b6128c4816128a9565b81146128cf57600080fd5b50565b6000813590506128e1816128bb565b92915050565b6128f081612795565b81146128fb57600080fd5b50565b60008135905061290d816128e7565b92915050565b6000806040838503121561292a57612929612884565b5b6000612938858286016128d2565b9250506020612949858286016128fe565b9150509250929050565b60008115159050919050565b61296881612953565b82525050565b6000602082019050612983600083018461295f565b92915050565b60006020828403121561299f5761299e612884565b5b60006129ad848285016128fe565b91505092915050565b6000806000606084860312156129cf576129ce612884565b5b60006129dd868287016128d2565b93505060206129ee868287016128d2565b92505060406129ff868287016128fe565b9150509250925092565b612a12816128a9565b82525050565b6000602082019050612a2d6000830184612a09565b92915050565b600060ff82169050919050565b612a4981612a33565b82525050565b6000602082019050612a646000830184612a40565b92915050565b600060208284031215612a8057612a7f612884565b5b6000612a8e848285016128d2565b91505092915050565b612aa081612953565b8114612aab57600080fd5b50565b600081359050612abd81612a97565b92915050565b60008060408385031215612ada57612ad9612884565b5b6000612ae8858286016128d2565b9250506020612af985828601612aae565b9150509250929050565b60008060408385031215612b1a57612b19612884565b5b6000612b28858286016128d2565b9250506020612b39858286016128d2565b9150509250929050565b6000819050919050565b6000612b68612b63612b5e84612889565b612b43565b612889565b9050919050565b6000612b7a82612b4d565b9050919050565b6000612b8c82612b6f565b9050919050565b612b9c81612b81565b82525050565b6000602082019050612bb76000830184612b93565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612c0457607f821691505b60208210811415612c1857612c17612bbd565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612c5882612795565b9150612c6383612795565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612c9c57612c9b612c1e565b5b828202905092915050565b6000612cb282612795565b9150612cbd83612795565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612cf257612cf1612c1e565b5b828201905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612d596025836127d4565b9150612d6482612cfd565b604082019050919050565b60006020820190508181036000830152612d8881612d4c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612dc982612795565b9150612dd483612795565b925082612de457612de3612d8f565b5b828204905092915050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e30312520746f74616c20737570706c792e000000000000000000000000602082015250565b6000612e4b6034836127d4565b9150612e5682612def565b604082019050919050565b60006020820190508181036000830152612e7a81612e3e565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000612edd6034836127d4565b9150612ee882612e81565b604082019050919050565b60006020820190508181036000830152612f0c81612ed0565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612f6f6026836127d4565b9150612f7a82612f13565b604082019050919050565b60006020820190508181036000830152612f9e81612f62565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006130016024836127d4565b915061300c82612fa5565b604082019050919050565b6000602082019050818103600083015261303081612ff4565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006130936022836127d4565b915061309e82613037565b604082019050919050565b600060208201905081810360008301526130c281613086565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006130ff6020836127d4565b915061310a826130c9565b602082019050919050565b6000602082019050818103600083015261312e816130f2565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061316b601d836127d4565b915061317682613135565b602082019050919050565b6000602082019050818103600083015261319a8161315e565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006131fd6025836127d4565b9150613208826131a1565b604082019050919050565b6000602082019050818103600083015261322c816131f0565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061328f6023836127d4565b915061329a82613233565b604082019050919050565b600060208201905081810360008301526132be81613282565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006133216035836127d4565b915061332c826132c5565b604082019050919050565b6000602082019050818103600083015261335081613314565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b600061338d6013836127d4565b915061339882613357565b602082019050919050565b600060208201905081810360008301526133bc81613380565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b60006134456049836127d4565b9150613450826133c3565b606082019050919050565b6000602082019050818103600083015261347481613438565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006134d76036836127d4565b91506134e28261347b565b604082019050919050565b60006020820190508181036000830152613506816134ca565b9050919050565b600061351882612795565b915061352383612795565b92508282101561353657613535612c1e565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061359d6026836127d4565b91506135a882613541565b604082019050919050565b600060208201905081810360008301526135cc81613590565b9050919050565b600081905092915050565b50565b60006135ee6000836135d3565b91506135f9826135de565b600082019050919050565b600061360f826135e1565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050613686816128bb565b92915050565b6000602082840312156136a2576136a1612884565b5b60006136b084828501613677565b91505092915050565b6000819050919050565b60006136de6136d96136d4846136b9565b612b43565b612795565b9050919050565b6136ee816136c3565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613729816128a9565b82525050565b600061373b8383613720565b60208301905092915050565b6000602082019050919050565b600061375f826136f4565b61376981856136ff565b935061377483613710565b8060005b838110156137a557815161378c888261372f565b975061379783613747565b925050600181019050613778565b5085935050505092915050565b600060a0820190506137c7600083018861279f565b6137d460208301876136e5565b81810360408301526137e68186613754565b90506137f56060830185612a09565b613802608083018461279f565b9695505050505050565b600060c0820190506138216000830189612a09565b61382e602083018861279f565b61383b60408301876136e5565b61384860608301866136e5565b6138556080830185612a09565b61386260a083018461279f565b979650505050505050565b60008151905061387c816128e7565b92915050565b60008060006060848603121561389b5761389a612884565b5b60006138a98682870161386d565b93505060206138ba8682870161386d565b92505060406138cb8682870161386d565b915050925092509256fea2646970667358221220ca4c5947fbce5c623aae30eb9994eead5e7ad354abb6d82e60267ca8b75f4bd464736f6c63430008090033

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.