ETH Price: $3,316.79 (-4.43%)

Contract

0x48660519AF97beb86a22d9750642561fbc6028a1
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve209752552024-10-16 2:51:5971 days ago1729047119IN
0x48660519...fbc6028a1
0 ETH0.0008041417.02040649
Approve209277282024-10-09 11:27:1178 days ago1728473231IN
0x48660519...fbc6028a1
0 ETH0.0009281219.64445525
Approve205267132024-08-14 11:56:47134 days ago1723636607IN
0x48660519...fbc6028a1
0 ETH0.000069811.47772695
Approve205249172024-08-14 5:56:11134 days ago1723614971IN
0x48660519...fbc6028a1
0 ETH0.000216954.59197535
Approve205182222024-08-13 7:30:11135 days ago1723534211IN
0x48660519...fbc6028a1
0 ETH0.000079941.69427275
Approve205064512024-08-11 16:05:59137 days ago1723392359IN
0x48660519...fbc6028a1
0 ETH0.000077321.63662195
Approve205037892024-08-11 7:09:47137 days ago1723360187IN
0x48660519...fbc6028a1
0 ETH0.000046740.99474028
Approve205037822024-08-11 7:08:23137 days ago1723360103IN
0x48660519...fbc6028a1
0 ETH0.00005231.11294564
Approve205037712024-08-11 7:06:11137 days ago1723359971IN
0x48660519...fbc6028a1
0 ETH0.000056571.203854
Approve205033372024-08-11 5:38:59137 days ago1723354739IN
0x48660519...fbc6028a1
0 ETH0.000057851.23184678
Approve205033292024-08-11 5:37:23137 days ago1723354643IN
0x48660519...fbc6028a1
0 ETH0.000051081.08707283
Approve205033232024-08-11 5:36:11137 days ago1723354571IN
0x48660519...fbc6028a1
0 ETH0.000050151.06723517
Approve205033152024-08-11 5:34:35137 days ago1723354475IN
0x48660519...fbc6028a1
0 ETH0.000039640.843593
Approve205003712024-08-10 19:41:35138 days ago1723318895IN
0x48660519...fbc6028a1
0 ETH0.000085151.80460439
Set Market Maker...205002482024-08-10 19:16:59138 days ago1723317419IN
0x48660519...fbc6028a1
0 ETH0.000067911.4045524
Set Market Maker...205000532024-08-10 18:37:59138 days ago1723315079IN
0x48660519...fbc6028a1
0 ETH0.000083341.72378829
Approve205000022024-08-10 18:27:47138 days ago1723314467IN
0x48660519...fbc6028a1
0 ETH0.00009011.9174219
Approve204999812024-08-10 18:23:35138 days ago1723314215IN
0x48660519...fbc6028a1
0 ETH0.000083041.76704932
Approve204999702024-08-10 18:21:23138 days ago1723314083IN
0x48660519...fbc6028a1
0 ETH0.000087141.85576287
Set Market Maker...204999332024-08-10 18:13:59138 days ago1723313639IN
0x48660519...fbc6028a1
0 ETH0.000073491.52049596
Approve204999272024-08-10 18:12:47138 days ago1723313567IN
0x48660519...fbc6028a1
0 ETH0.000073211.55787193
Approve204998992024-08-10 18:07:11138 days ago1723313231IN
0x48660519...fbc6028a1
0 ETH0.000055021.17157
Approve204998842024-08-10 18:04:11138 days ago1723313051IN
0x48660519...fbc6028a1
0 ETH0.00005131.09201363
Approve204998762024-08-10 18:02:35138 days ago1723312955IN
0x48660519...fbc6028a1
0 ETH0.000052581.11923297
Approve204997662024-08-10 17:40:35138 days ago1723311635IN
0x48660519...fbc6028a1
0 ETH0.000049281.04316708
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
babyfuku

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-08-09
*/

// SPDX-License-Identifier: MIT

pragma solidity 0.8.17;
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

// pragma solidity ^0.8.0;


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

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





abstract contract Ownable is Context {
    address private _owner;

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

   
    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:babyfuku caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling any functionality that is only available to the owner.
     */
    function 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 babyfuku new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

// pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
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 babyfuku the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);
}

// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

// pragma solidity ^0.8.0;

// import "../IERC20.sol";

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

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

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

// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

// pragma solidity ^0.8.0;

// import "./IERC20.sol";
// import "./extensions/IERC20Metadata.sol";
// import "../../utils/Context.sol";

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

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

    uint256 private _totalSupply;

    uint256 public _maxlSupply;

    string private _name;
    string private _symbol;

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

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual 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 default value returned by this function, unless
     * it's overridden.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual 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];
    }

    function approve(address spender, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

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

    function increaseAllowance(address spender, uint256 addedValue)
        public
        virtual
        returns (bool)
    {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    function decreaseAllowance(address spender, uint256 subtractedValue)
        public
        virtual
        returns (bool)
    {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(
            currentAllowance >= subtractedValue,
            "ERC20: decreased allowance babyfuku below zero"
        );
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

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

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

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

    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 babyfuku amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

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

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

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

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

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

// pragma solidity ^0.8.0;

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

// pragma solidity >=0.5.0;

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

// pragma solidity >=0.6.2;

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

// pragma solidity >=0.6.2;

// import './IUniswapV2Router01.sol';

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

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

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public uniswapV2Pair;

    address public marketingWallet;
    address public developmentWallet;
    address public liquidityWallet;
    address public constant deadAddress = address(0xdead);

    bool public tradingEnabled;
    bool public swapEnabled;
    bool private _swapping;

    uint256 public swapTokensAtAmount;

    uint256 public buyTotalFees;
    uint256 private _buyMarketingFee;
    uint256 private _buyDevelopmentFee;
    uint256 private _buyLiquidityFee;

    uint256 public sellTotalFees;
    uint256 private _sellMarketingFee;
    uint256 private _sellDevelopmentFee;
    uint256 private _sellLiquidityFee;

    uint256 private _tokensForMarketing;
    uint256 private _tokensForDevelopment;
    uint256 private _tokensForLiquidity;  uint256 private _previousFee;

    mapping (address => bool) private _isExcludedFromEnableTrader;
    mapping(address => bool) private _marketMakerPairs;
    

    event ExcludeFromLimits(address indexed account, bool isExcluded);

    event ExcludeFromFees(address indexed account, bool isExcluded);

    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);

    event marketingWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    event developmentWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    event liquidityWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );


    constructor() ERC20("BABYFUKU ", "BABYFUKU") {

        uint256 totalSupply = 100000000 * (10 ** 18);

        uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        _approve(address(this), address(uniswapV2Router), type(uint256).max);

        _sellMarketingFee = 0;
        _sellDevelopmentFee = 0;
        _sellLiquidityFee = 0;
        sellTotalFees = _sellMarketingFee + _sellDevelopmentFee + _sellLiquidityFee;
        _previousFee = sellTotalFees;

        _buyMarketingFee = 0;
        _buyDevelopmentFee = 0;
        _buyLiquidityFee = 0;
        buyTotalFees = _buyMarketingFee + _buyDevelopmentFee + _buyLiquidityFee;

        _isExcludedFromEnableTrader[owner()] = true;
        _isExcludedFromEnableTrader[address(this)] = true;
        _isExcludedFromEnableTrader[deadAddress] = true;

        _mint(owner(), totalSupply); 
    }

    receive() external payable {}

    function oppenntrradinngs() public onlyOwner {
        require(!tradingEnabled, "Trading already active.");
        tradingEnabled = true;
        swapEnabled = true;
    }



   function setMarketMakerPair(address pair, bool value) public onlyOwner {
        _setAutomatedMarketMakerPair(pair, value);
    }


    function _setAutomatedMarketMakerPair(address pair, bool value) internal {
        _marketMakerPairs[pair] = value;
        emit SetAutomatedMarketMakerPair(pair, value);
    }

    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");
        require(tradingEnabled || _isExcludedFromEnableTrader[from] || _isExcludedFromEnableTrader[to], "babyfuku Trading not yet enabled!");
        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }


        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if (
            canSwap &&
            swapEnabled &&!_swapping&&_marketMakerPairs[from] &&
            !_isExcludedFromEnableTrader[from] &&
            !_isExcludedFromEnableTrader[to]
        ) {
            _swapping = true;

            _swapBack();

            _swapping = false;
        }

        bool takeFee = !_swapping;

        if (_isExcludedFromEnableTrader[from] || _isExcludedFromEnableTrader[to]) {
            takeFee = false;
        }

        uint256 fees = 0;

        if (takeFee) {
            // on sell
            if (_marketMakerPairs[to] && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(10000);
                _tokensForLiquidity +=
                    (fees * _sellLiquidityFee) /
                    sellTotalFees;
                _tokensForMarketing +=
                    (fees * _sellMarketingFee) /
                    sellTotalFees;
                _tokensForDevelopment +=
                    (fees * _sellDevelopmentFee) /
                    sellTotalFees;
            }
            // on buy
            else if (_marketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(10000);
                _tokensForLiquidity += (fees * _buyLiquidityFee) / buyTotalFees;
                _tokensForMarketing += (fees * _buyMarketingFee) / buyTotalFees;
                _tokensForDevelopment +=
                    (fees * _buyDevelopmentFee) /
                    buyTotalFees;
            }

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

            amount -= fees;
        }

        super._transfer(from, to, amount);
        sellTotalFees = _previousFee;
    }

    function _swapTokensForETH(uint256 tokenAmount) internal {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

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

        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }

    function _addLiquidity(uint256 tokenAmount, uint256 ethAmount) internal {
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0,
            0,
            liquidityWallet,
            block.timestamp
        );
    }

    function _swapBack() internal {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = _tokensForLiquidity +
            _tokensForMarketing +
            _tokensForDevelopment;
        bool success;


        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 ethForDevelopment = ethBalance.mul(_tokensForDevelopment).div(
            totalTokensToSwap
        );

        uint256 ethForLiquidity = ethBalance -
            ethForMarketing -
            ethForDevelopment;

        _tokensForLiquidity = 0;
        _tokensForMarketing = 0;
        _tokensForDevelopment = 0;

        if (liquidityTokens > 0 && ethForLiquidity > 0) {
            _addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(
                amountToSwapForETH,
                ethForLiquidity,
                _tokensForLiquidity
            );
        }

        (success, ) = address(developmentWallet).call{value: ethForDevelopment}("");

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

}

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":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromLimits","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":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"developmentWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"liquidityWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[],"name":"_maxlSupply","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":"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":"developmentWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"liquidityWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"oppenntrradinngs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a06040523480156200001157600080fd5b506040518060400160405280600981526020017f4241425946554b552000000000000000000000000000000000000000000000008152506040518060400160405280600881526020017f4241425946554b5500000000000000000000000000000000000000000000000081525081600490816200008f9190620009d3565b508060059081620000a19190620009d3565b505050620000c4620000b86200031960201b60201c565b6200032160201b60201c565b60006a52b7d2dcc80cd2e40000009050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff168152505062000151306080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff620003e760201b60201c565b6000601181905550600060128190555060006013819055506013546012546011546200017e919062000ae9565b6200018a919062000ae9565b6010819055506010546017819055506000600d819055506000600e819055506000600f81905550600f54600e54600d54620001c6919062000ae9565b620001d2919062000ae9565b600c81905550600160186000620001ee620005b860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601860003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016018600061dead73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200031262000305620005b860201b60201c565b82620005e260201b60201c565b5062000d05565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000459576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004509062000bab565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620004cb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004c29062000c43565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051620005ab919062000c76565b60405180910390a3505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000654576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200064b9062000ce3565b60405180910390fd5b62000668600083836200074f60201b60201c565b80600260008282546200067c919062000ae9565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200072f919062000c76565b60405180910390a36200074b600083836200075460201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620007db57607f821691505b602082108103620007f157620007f062000793565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200085b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200081c565b6200086786836200081c565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620008b4620008ae620008a8846200087f565b62000889565b6200087f565b9050919050565b6000819050919050565b620008d08362000893565b620008e8620008df82620008bb565b84845462000829565b825550505050565b600090565b620008ff620008f0565b6200090c818484620008c5565b505050565b5b81811015620009345762000928600082620008f5565b60018101905062000912565b5050565b601f82111562000983576200094d81620007f7565b62000958846200080c565b8101602085101562000968578190505b6200098062000977856200080c565b83018262000911565b50505b505050565b600082821c905092915050565b6000620009a86000198460080262000988565b1980831691505092915050565b6000620009c3838362000995565b9150826002028217905092915050565b620009de8262000759565b67ffffffffffffffff811115620009fa57620009f962000764565b5b62000a068254620007c2565b62000a1382828562000938565b600060209050601f83116001811462000a4b576000841562000a36578287015190505b62000a428582620009b5565b86555062000ab2565b601f19841662000a5b86620007f7565b60005b8281101562000a855784890151825560018201915060208501945060208101905062000a5e565b8683101562000aa5578489015162000aa1601f89168262000995565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000af6826200087f565b915062000b03836200087f565b925082820190508082111562000b1e5762000b1d62000aba565b5b92915050565b600082825260208201905092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600062000b9360248362000b24565b915062000ba08262000b35565b604082019050919050565b6000602082019050818103600083015262000bc68162000b84565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600062000c2b60228362000b24565b915062000c388262000bcd565b604082019050919050565b6000602082019050818103600083015262000c5e8162000c1c565b9050919050565b62000c70816200087f565b82525050565b600060208201905062000c8d600083018462000c65565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000ccb601f8362000b24565b915062000cd88262000c93565b602082019050919050565b6000602082019050818103600083015262000cfe8162000cbc565b9050919050565b608051612f0562000d446000396000818161078401528181611d7701528181611e5801528181611e7f01528181611f1b0152611f420152612f056000f3fe6080604052600436106101bb5760003560e01c8063715018a6116100ec578063a9059cbb1161008a578063d85ba06311610064578063d85ba06314610611578063dd62ed3e1461063c578063e2f4560514610679578063f2fde38b146106a4576101c2565b8063a9059cbb1461057e578063c04a5414146105bb578063d4698016146105e6576101c2565b80639335bda3116100c65780639335bda3146104c257806393ec52de146104eb57806395d89b4114610516578063a457c2d714610541576101c2565b8063715018a61461045557806375f0a8741461046c5780638da5cb5b14610497576101c2565b8063313ce567116101595780634ada218b116101335780634ada218b146103975780636a486a8e146103c25780636ddd1713146103ed57806370a0823114610418576101c2565b8063313ce56714610304578063395093511461032f57806349bd5a5e1461036c576101c2565b806318160ddd1161019557806318160ddd1461025a57806323b872dd1461028557806327c8f835146102c2578063284069d8146102ed576101c2565b806306fdde03146101c7578063095ea7b3146101f25780631694505e1461022f576101c2565b366101c257005b600080fd5b3480156101d357600080fd5b506101dc6106cd565b6040516101e991906120a1565b60405180910390f35b3480156101fe57600080fd5b506102196004803603810190610214919061215c565b61075f565b60405161022691906121b7565b60405180910390f35b34801561023b57600080fd5b50610244610782565b6040516102519190612231565b60405180910390f35b34801561026657600080fd5b5061026f6107a6565b60405161027c919061225b565b60405180910390f35b34801561029157600080fd5b506102ac60048036038101906102a79190612276565b6107b0565b6040516102b991906121b7565b60405180910390f35b3480156102ce57600080fd5b506102d76107df565b6040516102e491906122d8565b60405180910390f35b3480156102f957600080fd5b506103026107e5565b005b34801561031057600080fd5b50610319610875565b604051610326919061230f565b60405180910390f35b34801561033b57600080fd5b506103566004803603810190610351919061215c565b61087e565b60405161036391906121b7565b60405180910390f35b34801561037857600080fd5b506103816108b5565b60405161038e91906122d8565b60405180910390f35b3480156103a357600080fd5b506103ac6108db565b6040516103b991906121b7565b60405180910390f35b3480156103ce57600080fd5b506103d76108ee565b6040516103e4919061225b565b60405180910390f35b3480156103f957600080fd5b506104026108f4565b60405161040f91906121b7565b60405180910390f35b34801561042457600080fd5b5061043f600480360381019061043a919061232a565b610907565b60405161044c919061225b565b60405180910390f35b34801561046157600080fd5b5061046a61094f565b005b34801561047857600080fd5b50610481610963565b60405161048e91906122d8565b60405180910390f35b3480156104a357600080fd5b506104ac610989565b6040516104b991906122d8565b60405180910390f35b3480156104ce57600080fd5b506104e960048036038101906104e49190612383565b6109b3565b005b3480156104f757600080fd5b506105006109c9565b60405161050d919061225b565b60405180910390f35b34801561052257600080fd5b5061052b6109cf565b60405161053891906120a1565b60405180910390f35b34801561054d57600080fd5b506105686004803603810190610563919061215c565b610a61565b60405161057591906121b7565b60405180910390f35b34801561058a57600080fd5b506105a560048036038101906105a0919061215c565b610ad8565b6040516105b291906121b7565b60405180910390f35b3480156105c757600080fd5b506105d0610afb565b6040516105dd91906122d8565b60405180910390f35b3480156105f257600080fd5b506105fb610b21565b60405161060891906122d8565b60405180910390f35b34801561061d57600080fd5b50610626610b47565b604051610633919061225b565b60405180910390f35b34801561064857600080fd5b50610663600480360381019061065e91906123c3565b610b4d565b604051610670919061225b565b60405180910390f35b34801561068557600080fd5b5061068e610bd4565b60405161069b919061225b565b60405180910390f35b3480156106b057600080fd5b506106cb60048036038101906106c6919061232a565b610bda565b005b6060600480546106dc90612432565b80601f016020809104026020016040519081016040528092919081815260200182805461070890612432565b80156107555780601f1061072a57610100808354040283529160200191610755565b820191906000526020600020905b81548152906001019060200180831161073857829003601f168201915b5050505050905090565b60008061076a610c5d565b9050610777818585610c65565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b6000806107bb610c5d565b90506107c8858285610e2e565b6107d3858585610eba565b60019150509392505050565b61dead81565b6107ed61158f565b600a60149054906101000a900460ff161561083d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610834906124af565b60405180910390fd5b6001600a60146101000a81548160ff0219169083151502179055506001600a60156101000a81548160ff021916908315150217905550565b60006012905090565b600080610889610c5d565b90506108aa81858561089b8589610b4d565b6108a591906124fe565b610c65565b600191505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a60149054906101000a900460ff1681565b60105481565b600a60159054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61095761158f565b610961600061160d565b565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6109bb61158f565b6109c582826116d3565b5050565b60035481565b6060600580546109de90612432565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0a90612432565b8015610a575780601f10610a2c57610100808354040283529160200191610a57565b820191906000526020600020905b815481529060010190602001808311610a3a57829003601f168201915b5050505050905090565b600080610a6c610c5d565b90506000610a7a8286610b4d565b905083811015610abf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab6906125a4565b60405180910390fd5b610acc8286868403610c65565b60019250505092915050565b600080610ae3610c5d565b9050610af0818585610eba565b600191505092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600b5481565b610be261158f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4890612636565b60405180910390fd5b610c5a8161160d565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ccb906126c8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3a9061275a565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e21919061225b565b60405180910390a3505050565b6000610e3a8484610b4d565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610eb45781811015610ea6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9d906127c6565b60405180910390fd5b610eb38484848403610c65565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2090612858565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8f906128ea565b60405180910390fd5b600a60149054906101000a900460ff1680610ffc5750601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806110505750601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61108f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110869061297c565b60405180910390fd5b600081036110a8576110a383836000611774565b61158a565b60006110b330610907565b90506000600b5482101590508080156110d85750600a60159054906101000a900460ff165b80156110f15750600a60169054906101000a900460ff16155b80156111465750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b801561119c5750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156111f25750601860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611236576001600a60166101000a81548160ff02191690831515021790555061121a6119ea565b6000600a60166101000a81548160ff0219169083151502179055505b6000600a60169054906101000a900460ff16159050601860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806112ec5750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156112f657600090505b6000811561157157601960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561135957506000601054115b156114275761138761271061137960105488611c8c90919063ffffffff16565b611ca290919063ffffffff16565b90506010546013548261139a919061299c565b6113a49190612a0d565b601660008282546113b591906124fe565b92505081905550601054601154826113cd919061299c565b6113d79190612a0d565b601460008282546113e891906124fe565b9250508190555060105460125482611400919061299c565b61140a9190612a0d565b6015600082825461141b91906124fe565b9250508190555061154d565b601960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561148257506000600c54115b1561154c576114b06127106114a2600c5488611c8c90919063ffffffff16565b611ca290919063ffffffff16565b9050600c54600f54826114c3919061299c565b6114cd9190612a0d565b601660008282546114de91906124fe565b92505081905550600c54600d54826114f6919061299c565b6115009190612a0d565b6014600082825461151191906124fe565b92505081905550600c54600e5482611529919061299c565b6115339190612a0d565b6015600082825461154491906124fe565b925050819055505b5b600081111561156257611561873083611774565b5b808561156e9190612a3e565b94505b61157c878787611774565b601754601081905550505050505b505050565b611597610c5d565b73ffffffffffffffffffffffffffffffffffffffff166115b5610989565b73ffffffffffffffffffffffffffffffffffffffff161461160b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160290612ae4565b60405180910390fd5b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036117e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117da90612858565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611852576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611849906128ea565b60405180910390fd5b61185d838383611cb8565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156118e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118da90612b76565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516119d1919061225b565b60405180910390a36119e4848484611cbd565b50505050565b60006119f530610907565b90506000601554601454601654611a0c91906124fe565b611a1691906124fe565b905060008060028360165486611a2c919061299c565b611a369190612a0d565b611a409190612a0d565b90506000611a578286611cc290919063ffffffff16565b90506000479050611a6782611cd8565b6000611a7c8247611cc290919063ffffffff16565b90506000611aa787611a9960145485611c8c90919063ffffffff16565b611ca290919063ffffffff16565b90506000611ad288611ac460155486611c8c90919063ffffffff16565b611ca290919063ffffffff16565b90506000818385611ae39190612a3e565b611aed9190612a3e565b9050600060168190555060006014819055506000601581905550600087118015611b175750600081115b15611b6457611b268782611f15565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601654604051611b5b93929190612b96565b60405180910390a15b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051611baa90612bfe565b60006040518083038185875af1925050503d8060008114611be7576040519150601f19603f3d011682016040523d82523d6000602084013e611bec565b606091505b505080985050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051611c3890612bfe565b60006040518083038185875af1925050503d8060008114611c75576040519150601f19603f3d011682016040523d82523d6000602084013e611c7a565b606091505b50508098505050505050505050505050565b60008183611c9a919061299c565b905092915050565b60008183611cb09190612a0d565b905092915050565b505050565b505050565b60008183611cd09190612a3e565b905092915050565b6000600267ffffffffffffffff811115611cf557611cf4612c13565b5b604051908082528060200260200182016040528015611d235781602001602082028036833780820191505090505b5090503081600081518110611d3b57611d3a612c42565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611de0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e049190612c86565b81600181518110611e1857611e17612c42565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611e7d307f000000000000000000000000000000000000000000000000000000000000000084610c65565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401611edf959493929190612dac565b600060405180830381600087803b158015611ef957600080fd5b505af1158015611f0d573d6000803e3d6000fd5b505050505050565b611f40307f000000000000000000000000000000000000000000000000000000000000000084610c65565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b8152600401611fc796959493929190612e06565b60606040518083038185885af1158015611fe5573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061200a9190612e7c565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561204b578082015181840152602081019050612030565b60008484015250505050565b6000601f19601f8301169050919050565b600061207382612011565b61207d818561201c565b935061208d81856020860161202d565b61209681612057565b840191505092915050565b600060208201905081810360008301526120bb8184612068565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006120f3826120c8565b9050919050565b612103816120e8565b811461210e57600080fd5b50565b600081359050612120816120fa565b92915050565b6000819050919050565b61213981612126565b811461214457600080fd5b50565b60008135905061215681612130565b92915050565b60008060408385031215612173576121726120c3565b5b600061218185828601612111565b925050602061219285828601612147565b9150509250929050565b60008115159050919050565b6121b18161219c565b82525050565b60006020820190506121cc60008301846121a8565b92915050565b6000819050919050565b60006121f76121f26121ed846120c8565b6121d2565b6120c8565b9050919050565b6000612209826121dc565b9050919050565b600061221b826121fe565b9050919050565b61222b81612210565b82525050565b60006020820190506122466000830184612222565b92915050565b61225581612126565b82525050565b6000602082019050612270600083018461224c565b92915050565b60008060006060848603121561228f5761228e6120c3565b5b600061229d86828701612111565b93505060206122ae86828701612111565b92505060406122bf86828701612147565b9150509250925092565b6122d2816120e8565b82525050565b60006020820190506122ed60008301846122c9565b92915050565b600060ff82169050919050565b612309816122f3565b82525050565b60006020820190506123246000830184612300565b92915050565b6000602082840312156123405761233f6120c3565b5b600061234e84828501612111565b91505092915050565b6123608161219c565b811461236b57600080fd5b50565b60008135905061237d81612357565b92915050565b6000806040838503121561239a576123996120c3565b5b60006123a885828601612111565b92505060206123b98582860161236e565b9150509250929050565b600080604083850312156123da576123d96120c3565b5b60006123e885828601612111565b92505060206123f985828601612111565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061244a57607f821691505b60208210810361245d5761245c612403565b5b50919050565b7f54726164696e6720616c7265616479206163746976652e000000000000000000600082015250565b600061249960178361201c565b91506124a482612463565b602082019050919050565b600060208201905081810360008301526124c88161248c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061250982612126565b915061251483612126565b925082820190508082111561252c5761252b6124cf565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e636520626162796660008201527f756b752062656c6f77207a65726f000000000000000000000000000000000000602082015250565b600061258e602e8361201c565b915061259982612532565b604082019050919050565b600060208201905081810360008301526125bd81612581565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061262060268361201c565b915061262b826125c4565b604082019050919050565b6000602082019050818103600083015261264f81612613565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006126b260248361201c565b91506126bd82612656565b604082019050919050565b600060208201905081810360008301526126e1816126a5565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061274460228361201c565b915061274f826126e8565b604082019050919050565b6000602082019050818103600083015261277381612737565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006127b0601d8361201c565b91506127bb8261277a565b602082019050919050565b600060208201905081810360008301526127df816127a3565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061284260258361201c565b915061284d826127e6565b604082019050919050565b6000602082019050818103600083015261287181612835565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006128d460238361201c565b91506128df82612878565b604082019050919050565b60006020820190508181036000830152612903816128c7565b9050919050565b7f6261627966756b752054726164696e67206e6f742079657420656e61626c656460008201527f2100000000000000000000000000000000000000000000000000000000000000602082015250565b600061296660218361201c565b91506129718261290a565b604082019050919050565b6000602082019050818103600083015261299581612959565b9050919050565b60006129a782612126565b91506129b283612126565b92508282026129c081612126565b915082820484148315176129d7576129d66124cf565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612a1882612126565b9150612a2383612126565b925082612a3357612a326129de565b5b828204905092915050565b6000612a4982612126565b9150612a5483612126565b9250828203905081811115612a6c57612a6b6124cf565b5b92915050565b7f4f776e61626c653a6261627966756b752063616c6c6572206973206e6f74207460008201527f6865206f776e6572000000000000000000000000000000000000000000000000602082015250565b6000612ace60288361201c565b9150612ad982612a72565b604082019050919050565b60006020820190508181036000830152612afd81612ac1565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612b6060268361201c565b9150612b6b82612b04565b604082019050919050565b60006020820190508181036000830152612b8f81612b53565b9050919050565b6000606082019050612bab600083018661224c565b612bb8602083018561224c565b612bc5604083018461224c565b949350505050565b600081905092915050565b50565b6000612be8600083612bcd565b9150612bf382612bd8565b600082019050919050565b6000612c0982612bdb565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050612c80816120fa565b92915050565b600060208284031215612c9c57612c9b6120c3565b5b6000612caa84828501612c71565b91505092915050565b6000819050919050565b6000612cd8612cd3612cce84612cb3565b6121d2565b612126565b9050919050565b612ce881612cbd565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612d23816120e8565b82525050565b6000612d358383612d1a565b60208301905092915050565b6000602082019050919050565b6000612d5982612cee565b612d638185612cf9565b9350612d6e83612d0a565b8060005b83811015612d9f578151612d868882612d29565b9750612d9183612d41565b925050600181019050612d72565b5085935050505092915050565b600060a082019050612dc1600083018861224c565b612dce6020830187612cdf565b8181036040830152612de08186612d4e565b9050612def60608301856122c9565b612dfc608083018461224c565b9695505050505050565b600060c082019050612e1b60008301896122c9565b612e28602083018861224c565b612e356040830187612cdf565b612e426060830186612cdf565b612e4f60808301856122c9565b612e5c60a083018461224c565b979650505050505050565b600081519050612e7681612130565b92915050565b600080600060608486031215612e9557612e946120c3565b5b6000612ea386828701612e67565b9350506020612eb486828701612e67565b9250506040612ec586828701612e67565b915050925092509256fea2646970667358221220d3ff59d2ce6573cf576383b57657307ea01a662d5a7977b15bc20acbc571e91a64736f6c63430008110033

Deployed Bytecode

0x6080604052600436106101bb5760003560e01c8063715018a6116100ec578063a9059cbb1161008a578063d85ba06311610064578063d85ba06314610611578063dd62ed3e1461063c578063e2f4560514610679578063f2fde38b146106a4576101c2565b8063a9059cbb1461057e578063c04a5414146105bb578063d4698016146105e6576101c2565b80639335bda3116100c65780639335bda3146104c257806393ec52de146104eb57806395d89b4114610516578063a457c2d714610541576101c2565b8063715018a61461045557806375f0a8741461046c5780638da5cb5b14610497576101c2565b8063313ce567116101595780634ada218b116101335780634ada218b146103975780636a486a8e146103c25780636ddd1713146103ed57806370a0823114610418576101c2565b8063313ce56714610304578063395093511461032f57806349bd5a5e1461036c576101c2565b806318160ddd1161019557806318160ddd1461025a57806323b872dd1461028557806327c8f835146102c2578063284069d8146102ed576101c2565b806306fdde03146101c7578063095ea7b3146101f25780631694505e1461022f576101c2565b366101c257005b600080fd5b3480156101d357600080fd5b506101dc6106cd565b6040516101e991906120a1565b60405180910390f35b3480156101fe57600080fd5b506102196004803603810190610214919061215c565b61075f565b60405161022691906121b7565b60405180910390f35b34801561023b57600080fd5b50610244610782565b6040516102519190612231565b60405180910390f35b34801561026657600080fd5b5061026f6107a6565b60405161027c919061225b565b60405180910390f35b34801561029157600080fd5b506102ac60048036038101906102a79190612276565b6107b0565b6040516102b991906121b7565b60405180910390f35b3480156102ce57600080fd5b506102d76107df565b6040516102e491906122d8565b60405180910390f35b3480156102f957600080fd5b506103026107e5565b005b34801561031057600080fd5b50610319610875565b604051610326919061230f565b60405180910390f35b34801561033b57600080fd5b506103566004803603810190610351919061215c565b61087e565b60405161036391906121b7565b60405180910390f35b34801561037857600080fd5b506103816108b5565b60405161038e91906122d8565b60405180910390f35b3480156103a357600080fd5b506103ac6108db565b6040516103b991906121b7565b60405180910390f35b3480156103ce57600080fd5b506103d76108ee565b6040516103e4919061225b565b60405180910390f35b3480156103f957600080fd5b506104026108f4565b60405161040f91906121b7565b60405180910390f35b34801561042457600080fd5b5061043f600480360381019061043a919061232a565b610907565b60405161044c919061225b565b60405180910390f35b34801561046157600080fd5b5061046a61094f565b005b34801561047857600080fd5b50610481610963565b60405161048e91906122d8565b60405180910390f35b3480156104a357600080fd5b506104ac610989565b6040516104b991906122d8565b60405180910390f35b3480156104ce57600080fd5b506104e960048036038101906104e49190612383565b6109b3565b005b3480156104f757600080fd5b506105006109c9565b60405161050d919061225b565b60405180910390f35b34801561052257600080fd5b5061052b6109cf565b60405161053891906120a1565b60405180910390f35b34801561054d57600080fd5b506105686004803603810190610563919061215c565b610a61565b60405161057591906121b7565b60405180910390f35b34801561058a57600080fd5b506105a560048036038101906105a0919061215c565b610ad8565b6040516105b291906121b7565b60405180910390f35b3480156105c757600080fd5b506105d0610afb565b6040516105dd91906122d8565b60405180910390f35b3480156105f257600080fd5b506105fb610b21565b60405161060891906122d8565b60405180910390f35b34801561061d57600080fd5b50610626610b47565b604051610633919061225b565b60405180910390f35b34801561064857600080fd5b50610663600480360381019061065e91906123c3565b610b4d565b604051610670919061225b565b60405180910390f35b34801561068557600080fd5b5061068e610bd4565b60405161069b919061225b565b60405180910390f35b3480156106b057600080fd5b506106cb60048036038101906106c6919061232a565b610bda565b005b6060600480546106dc90612432565b80601f016020809104026020016040519081016040528092919081815260200182805461070890612432565b80156107555780601f1061072a57610100808354040283529160200191610755565b820191906000526020600020905b81548152906001019060200180831161073857829003601f168201915b5050505050905090565b60008061076a610c5d565b9050610777818585610c65565b600191505092915050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b6000806107bb610c5d565b90506107c8858285610e2e565b6107d3858585610eba565b60019150509392505050565b61dead81565b6107ed61158f565b600a60149054906101000a900460ff161561083d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610834906124af565b60405180910390fd5b6001600a60146101000a81548160ff0219169083151502179055506001600a60156101000a81548160ff021916908315150217905550565b60006012905090565b600080610889610c5d565b90506108aa81858561089b8589610b4d565b6108a591906124fe565b610c65565b600191505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a60149054906101000a900460ff1681565b60105481565b600a60159054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61095761158f565b610961600061160d565b565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6109bb61158f565b6109c582826116d3565b5050565b60035481565b6060600580546109de90612432565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0a90612432565b8015610a575780601f10610a2c57610100808354040283529160200191610a57565b820191906000526020600020905b815481529060010190602001808311610a3a57829003601f168201915b5050505050905090565b600080610a6c610c5d565b90506000610a7a8286610b4d565b905083811015610abf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab6906125a4565b60405180910390fd5b610acc8286868403610c65565b60019250505092915050565b600080610ae3610c5d565b9050610af0818585610eba565b600191505092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600b5481565b610be261158f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4890612636565b60405180910390fd5b610c5a8161160d565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ccb906126c8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3a9061275a565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e21919061225b565b60405180910390a3505050565b6000610e3a8484610b4d565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610eb45781811015610ea6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9d906127c6565b60405180910390fd5b610eb38484848403610c65565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2090612858565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8f906128ea565b60405180910390fd5b600a60149054906101000a900460ff1680610ffc5750601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806110505750601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61108f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110869061297c565b60405180910390fd5b600081036110a8576110a383836000611774565b61158a565b60006110b330610907565b90506000600b5482101590508080156110d85750600a60159054906101000a900460ff165b80156110f15750600a60169054906101000a900460ff16155b80156111465750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b801561119c5750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156111f25750601860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611236576001600a60166101000a81548160ff02191690831515021790555061121a6119ea565b6000600a60166101000a81548160ff0219169083151502179055505b6000600a60169054906101000a900460ff16159050601860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806112ec5750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156112f657600090505b6000811561157157601960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561135957506000601054115b156114275761138761271061137960105488611c8c90919063ffffffff16565b611ca290919063ffffffff16565b90506010546013548261139a919061299c565b6113a49190612a0d565b601660008282546113b591906124fe565b92505081905550601054601154826113cd919061299c565b6113d79190612a0d565b601460008282546113e891906124fe565b9250508190555060105460125482611400919061299c565b61140a9190612a0d565b6015600082825461141b91906124fe565b9250508190555061154d565b601960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561148257506000600c54115b1561154c576114b06127106114a2600c5488611c8c90919063ffffffff16565b611ca290919063ffffffff16565b9050600c54600f54826114c3919061299c565b6114cd9190612a0d565b601660008282546114de91906124fe565b92505081905550600c54600d54826114f6919061299c565b6115009190612a0d565b6014600082825461151191906124fe565b92505081905550600c54600e5482611529919061299c565b6115339190612a0d565b6015600082825461154491906124fe565b925050819055505b5b600081111561156257611561873083611774565b5b808561156e9190612a3e565b94505b61157c878787611774565b601754601081905550505050505b505050565b611597610c5d565b73ffffffffffffffffffffffffffffffffffffffff166115b5610989565b73ffffffffffffffffffffffffffffffffffffffff161461160b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160290612ae4565b60405180910390fd5b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036117e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117da90612858565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611852576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611849906128ea565b60405180910390fd5b61185d838383611cb8565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156118e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118da90612b76565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516119d1919061225b565b60405180910390a36119e4848484611cbd565b50505050565b60006119f530610907565b90506000601554601454601654611a0c91906124fe565b611a1691906124fe565b905060008060028360165486611a2c919061299c565b611a369190612a0d565b611a409190612a0d565b90506000611a578286611cc290919063ffffffff16565b90506000479050611a6782611cd8565b6000611a7c8247611cc290919063ffffffff16565b90506000611aa787611a9960145485611c8c90919063ffffffff16565b611ca290919063ffffffff16565b90506000611ad288611ac460155486611c8c90919063ffffffff16565b611ca290919063ffffffff16565b90506000818385611ae39190612a3e565b611aed9190612a3e565b9050600060168190555060006014819055506000601581905550600087118015611b175750600081115b15611b6457611b268782611f15565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601654604051611b5b93929190612b96565b60405180910390a15b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051611baa90612bfe565b60006040518083038185875af1925050503d8060008114611be7576040519150601f19603f3d011682016040523d82523d6000602084013e611bec565b606091505b505080985050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051611c3890612bfe565b60006040518083038185875af1925050503d8060008114611c75576040519150601f19603f3d011682016040523d82523d6000602084013e611c7a565b606091505b50508098505050505050505050505050565b60008183611c9a919061299c565b905092915050565b60008183611cb09190612a0d565b905092915050565b505050565b505050565b60008183611cd09190612a3e565b905092915050565b6000600267ffffffffffffffff811115611cf557611cf4612c13565b5b604051908082528060200260200182016040528015611d235781602001602082028036833780820191505090505b5090503081600081518110611d3b57611d3a612c42565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611de0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e049190612c86565b81600181518110611e1857611e17612c42565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611e7d307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610c65565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401611edf959493929190612dac565b600060405180830381600087803b158015611ef957600080fd5b505af1158015611f0d573d6000803e3d6000fd5b505050505050565b611f40307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610c65565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b8152600401611fc796959493929190612e06565b60606040518083038185885af1158015611fe5573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061200a9190612e7c565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561204b578082015181840152602081019050612030565b60008484015250505050565b6000601f19601f8301169050919050565b600061207382612011565b61207d818561201c565b935061208d81856020860161202d565b61209681612057565b840191505092915050565b600060208201905081810360008301526120bb8184612068565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006120f3826120c8565b9050919050565b612103816120e8565b811461210e57600080fd5b50565b600081359050612120816120fa565b92915050565b6000819050919050565b61213981612126565b811461214457600080fd5b50565b60008135905061215681612130565b92915050565b60008060408385031215612173576121726120c3565b5b600061218185828601612111565b925050602061219285828601612147565b9150509250929050565b60008115159050919050565b6121b18161219c565b82525050565b60006020820190506121cc60008301846121a8565b92915050565b6000819050919050565b60006121f76121f26121ed846120c8565b6121d2565b6120c8565b9050919050565b6000612209826121dc565b9050919050565b600061221b826121fe565b9050919050565b61222b81612210565b82525050565b60006020820190506122466000830184612222565b92915050565b61225581612126565b82525050565b6000602082019050612270600083018461224c565b92915050565b60008060006060848603121561228f5761228e6120c3565b5b600061229d86828701612111565b93505060206122ae86828701612111565b92505060406122bf86828701612147565b9150509250925092565b6122d2816120e8565b82525050565b60006020820190506122ed60008301846122c9565b92915050565b600060ff82169050919050565b612309816122f3565b82525050565b60006020820190506123246000830184612300565b92915050565b6000602082840312156123405761233f6120c3565b5b600061234e84828501612111565b91505092915050565b6123608161219c565b811461236b57600080fd5b50565b60008135905061237d81612357565b92915050565b6000806040838503121561239a576123996120c3565b5b60006123a885828601612111565b92505060206123b98582860161236e565b9150509250929050565b600080604083850312156123da576123d96120c3565b5b60006123e885828601612111565b92505060206123f985828601612111565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061244a57607f821691505b60208210810361245d5761245c612403565b5b50919050565b7f54726164696e6720616c7265616479206163746976652e000000000000000000600082015250565b600061249960178361201c565b91506124a482612463565b602082019050919050565b600060208201905081810360008301526124c88161248c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061250982612126565b915061251483612126565b925082820190508082111561252c5761252b6124cf565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e636520626162796660008201527f756b752062656c6f77207a65726f000000000000000000000000000000000000602082015250565b600061258e602e8361201c565b915061259982612532565b604082019050919050565b600060208201905081810360008301526125bd81612581565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061262060268361201c565b915061262b826125c4565b604082019050919050565b6000602082019050818103600083015261264f81612613565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006126b260248361201c565b91506126bd82612656565b604082019050919050565b600060208201905081810360008301526126e1816126a5565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061274460228361201c565b915061274f826126e8565b604082019050919050565b6000602082019050818103600083015261277381612737565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006127b0601d8361201c565b91506127bb8261277a565b602082019050919050565b600060208201905081810360008301526127df816127a3565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061284260258361201c565b915061284d826127e6565b604082019050919050565b6000602082019050818103600083015261287181612835565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006128d460238361201c565b91506128df82612878565b604082019050919050565b60006020820190508181036000830152612903816128c7565b9050919050565b7f6261627966756b752054726164696e67206e6f742079657420656e61626c656460008201527f2100000000000000000000000000000000000000000000000000000000000000602082015250565b600061296660218361201c565b91506129718261290a565b604082019050919050565b6000602082019050818103600083015261299581612959565b9050919050565b60006129a782612126565b91506129b283612126565b92508282026129c081612126565b915082820484148315176129d7576129d66124cf565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612a1882612126565b9150612a2383612126565b925082612a3357612a326129de565b5b828204905092915050565b6000612a4982612126565b9150612a5483612126565b9250828203905081811115612a6c57612a6b6124cf565b5b92915050565b7f4f776e61626c653a6261627966756b752063616c6c6572206973206e6f74207460008201527f6865206f776e6572000000000000000000000000000000000000000000000000602082015250565b6000612ace60288361201c565b9150612ad982612a72565b604082019050919050565b60006020820190508181036000830152612afd81612ac1565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612b6060268361201c565b9150612b6b82612b04565b604082019050919050565b60006020820190508181036000830152612b8f81612b53565b9050919050565b6000606082019050612bab600083018661224c565b612bb8602083018561224c565b612bc5604083018461224c565b949350505050565b600081905092915050565b50565b6000612be8600083612bcd565b9150612bf382612bd8565b600082019050919050565b6000612c0982612bdb565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050612c80816120fa565b92915050565b600060208284031215612c9c57612c9b6120c3565b5b6000612caa84828501612c71565b91505092915050565b6000819050919050565b6000612cd8612cd3612cce84612cb3565b6121d2565b612126565b9050919050565b612ce881612cbd565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612d23816120e8565b82525050565b6000612d358383612d1a565b60208301905092915050565b6000602082019050919050565b6000612d5982612cee565b612d638185612cf9565b9350612d6e83612d0a565b8060005b83811015612d9f578151612d868882612d29565b9750612d9183612d41565b925050600181019050612d72565b5085935050505092915050565b600060a082019050612dc1600083018861224c565b612dce6020830187612cdf565b8181036040830152612de08186612d4e565b9050612def60608301856122c9565b612dfc608083018461224c565b9695505050505050565b600060c082019050612e1b60008301896122c9565b612e28602083018861224c565b612e356040830187612cdf565b612e426060830186612cdf565b612e4f60808301856122c9565b612e5c60a083018461224c565b979650505050505050565b600081519050612e7681612130565b92915050565b600080600060608486031215612e9557612e946120c3565b5b6000612ea386828701612e67565b9350506020612eb486828701612e67565b9250506040612ec586828701612e67565b915050925092509256fea2646970667358221220d3ff59d2ce6573cf576383b57657307ea01a662d5a7977b15bc20acbc571e91a64736f6c63430008110033

Deployed Bytecode Sourcemap

28379:8224:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8226:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10415:242;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28457:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9355:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10665:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28665:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31135:176;;;;;;;;;;;;;:::i;:::-;;9197:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10968:270;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28515:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28727:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29018:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28760:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9526:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1553:103;;;;;;;;;;;;;:::i;:::-;;28552:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;904:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31322:131;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7765:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8445:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11246:514;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9909:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28589:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28628:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28863:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10206:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28821:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1811:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8226:100;8280:13;8313:5;8306:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8226:100;:::o;10415:242::-;10534:4;10556:13;10572:12;:10;:12::i;:::-;10556:28;;10595:32;10604:5;10611:7;10620:6;10595:8;:32::i;:::-;10645:4;10638:11;;;10415:242;;;;:::o;28457:51::-;;;:::o;9355:108::-;9416:7;9443:12;;9436:19;;9355:108;:::o;10665:295::-;10796:4;10813:15;10831:12;:10;:12::i;:::-;10813:30;;10854:38;10870:4;10876:7;10885:6;10854:15;:38::i;:::-;10903:27;10913:4;10919:2;10923:6;10903:9;:27::i;:::-;10948:4;10941:11;;;10665:295;;;;;:::o;28665:53::-;28711:6;28665:53;:::o;31135:176::-;790:13;:11;:13::i;:::-;31200:14:::1;;;;;;;;;;;31199:15;31191:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;31270:4;31253:14;;:21;;;;;;;;;;;;;;;;;;31299:4;31285:11;;:18;;;;;;;;;;;;;;;;;;31135:176::o:0;9197:93::-;9255:5;9280:2;9273:9;;9197:93;:::o;10968:270::-;11083:4;11105:13;11121:12;:10;:12::i;:::-;11105:28;;11144:64;11153:5;11160:7;11197:10;11169:25;11179:5;11186:7;11169:9;:25::i;:::-;:38;;;;:::i;:::-;11144:8;:64::i;:::-;11226:4;11219:11;;;10968:270;;;;:::o;28515:28::-;;;;;;;;;;;;;:::o;28727:26::-;;;;;;;;;;;;;:::o;29018:28::-;;;;:::o;28760:23::-;;;;;;;;;;;;;:::o;9526:177::-;9645:7;9677:9;:18;9687:7;9677:18;;;;;;;;;;;;;;;;9670:25;;9526:177;;;:::o;1553:103::-;790:13;:11;:13::i;:::-;1618:30:::1;1645:1;1618:18;:30::i;:::-;1553:103::o:0;28552:30::-;;;;;;;;;;;;;:::o;904:87::-;950:7;977:6;;;;;;;;;;;970:13;;904:87;:::o;31322:131::-;790:13;:11;:13::i;:::-;31404:41:::1;31433:4;31439:5;31404:28;:41::i;:::-;31322:131:::0;;:::o;7765:26::-;;;;:::o;8445:104::-;8501:13;8534:7;8527:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8445:104;:::o;11246:514::-;11366:4;11388:13;11404:12;:10;:12::i;:::-;11388:28;;11427:24;11454:25;11464:5;11471:7;11454:9;:25::i;:::-;11427:52;;11532:15;11512:16;:35;;11490:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;11657:60;11666:5;11673:7;11701:15;11682:16;:34;11657:8;:60::i;:::-;11748:4;11741:11;;;;11246:514;;;;:::o;9909:234::-;10024:4;10046:13;10062:12;:10;:12::i;:::-;10046:28;;10085;10095:5;10102:2;10106:6;10085:9;:28::i;:::-;10131:4;10124:11;;;9909:234;;;;:::o;28589:32::-;;;;;;;;;;;;;:::o;28628:30::-;;;;;;;;;;;;;:::o;28863:27::-;;;;:::o;10206:201::-;10340:7;10372:11;:18;10384:5;10372:18;;;;;;;;;;;;;;;:27;10391:7;10372:27;;;;;;;;;;;;;;;;10365:34;;10206:201;;;;:::o;28821:33::-;;;;:::o;1811:238::-;790:13;:11;:13::i;:::-;1934:1:::1;1914:22;;:8;:22;;::::0;1892:110:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2013:28;2032:8;2013:18;:28::i;:::-;1811:238:::0;:::o;181:98::-;234:7;261:10;254:17;;181:98;:::o;13901:380::-;14054:1;14037:19;;:5;:19;;;14029:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14135:1;14116:21;;:7;:21;;;14108:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14219:6;14189:11;:18;14201:5;14189:18;;;;;;;;;;;;;;;:27;14208:7;14189:27;;;;;;;;;;;;;;;:36;;;;14257:7;14241:32;;14250:5;14241:32;;;14266:6;14241:32;;;;;;:::i;:::-;;;;;;;;13901:380;;;:::o;14289:502::-;14424:24;14451:25;14461:5;14468:7;14451:9;:25::i;:::-;14424:52;;14511:17;14491:16;:37;14487:297;;14591:6;14571:16;:26;;14545:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;14706:51;14715:5;14722:7;14750:6;14731:16;:25;14706:8;:51::i;:::-;14487:297;14413:378;14289:502;;;:::o;31650:2442::-;31798:1;31782:18;;:4;:18;;;31774:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;31875:1;31861:16;;:2;:16;;;31853:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;31936:14;;;;;;;;;;;:51;;;;31954:27;:33;31982:4;31954:33;;;;;;;;;;;;;;;;;;;;;;;;;31936:51;:86;;;;31991:27;:31;32019:2;31991:31;;;;;;;;;;;;;;;;;;;;;;;;;31936:86;31928:132;;;;;;;;;;;;:::i;:::-;;;;;;;;;32085:1;32075:6;:11;32071:93;;32103:28;32119:4;32125:2;32129:1;32103:15;:28::i;:::-;32146:7;;32071:93;32178:28;32209:24;32227:4;32209:9;:24::i;:::-;32178:55;;32246:12;32285:18;;32261:20;:42;;32246:57;;32334:7;:35;;;;;32358:11;;;;;;;;;;;32334:35;:48;;;;;32373:9;;;;;;;;;;;32372:10;32334:48;:73;;;;;32384:17;:23;32402:4;32384:23;;;;;;;;;;;;;;;;;;;;;;;;;32334:73;:124;;;;;32425:27;:33;32453:4;32425:33;;;;;;;;;;;;;;;;;;;;;;;;;32424:34;32334:124;:173;;;;;32476:27;:31;32504:2;32476:31;;;;;;;;;;;;;;;;;;;;;;;;;32475:32;32334:173;32316:308;;;32546:4;32534:9;;:16;;;;;;;;;;;;;;;;;;32567:11;:9;:11::i;:::-;32607:5;32595:9;;:17;;;;;;;;;;;;;;;;;;32316:308;32636:12;32652:9;;;;;;;;;;;32651:10;32636:25;;32678:27;:33;32706:4;32678:33;;;;;;;;;;;;;;;;;;;;;;;;;:68;;;;32715:27;:31;32743:2;32715:31;;;;;;;;;;;;;;;;;;;;;;;;;32678:68;32674:116;;;32773:5;32763:15;;32674:116;32802:12;32835:7;32831:1169;;;32887:17;:21;32905:2;32887:21;;;;;;;;;;;;;;;;;;;;;;;;;:42;;;;;32928:1;32912:13;;:17;32887:42;32883:968;;;32957:36;32987:5;32957:25;32968:13;;32957:6;:10;;:25;;;;:::i;:::-;:29;;:36;;;;:::i;:::-;32950:43;;33106:13;;33064:17;;33057:4;:24;;;;:::i;:::-;33056:63;;;;:::i;:::-;33012:19;;:107;;;;;;;:::i;:::-;;;;;;;;33232:13;;33190:17;;33183:4;:24;;;;:::i;:::-;33182:63;;;;:::i;:::-;33138:19;;:107;;;;;;;:::i;:::-;;;;;;;;33362:13;;33318:19;;33311:4;:26;;;;:::i;:::-;33310:65;;;;:::i;:::-;33264:21;;:111;;;;;;;:::i;:::-;;;;;;;;32883:968;;;33437:17;:23;33455:4;33437:23;;;;;;;;;;;;;;;;;;;;;;;;;:43;;;;;33479:1;33464:12;;:16;33437:43;33433:418;;;33508:35;33537:5;33508:24;33519:12;;33508:6;:10;;:24;;;;:::i;:::-;:28;;:35;;;;:::i;:::-;33501:42;;33613:12;;33593:16;;33586:4;:23;;;;:::i;:::-;33585:40;;;;:::i;:::-;33562:19;;:63;;;;;;;:::i;:::-;;;;;;;;33695:12;;33675:16;;33668:4;:23;;;;:::i;:::-;33667:40;;;;:::i;:::-;33644:19;;:63;;;;;;;:::i;:::-;;;;;;;;33823:12;;33780:18;;33773:4;:25;;;;:::i;:::-;33772:63;;;;:::i;:::-;33726:21;;:109;;;;;;;:::i;:::-;;;;;;;;33433:418;32883:968;33878:1;33871:4;:8;33867:91;;;33900:42;33916:4;33930;33937;33900:15;:42::i;:::-;33867:91;33984:4;33974:14;;;;;:::i;:::-;;;32831:1169;34012:33;34028:4;34034:2;34038:6;34012:15;:33::i;:::-;34072:12;;34056:13;:28;;;;31763:2329;;;;31650:2442;;;;:::o;1069:140::-;1144:12;:10;:12::i;:::-;1133:23;;:7;:5;:7::i;:::-;:23;;;1125:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;1069:140::o;2218:191::-;2292:16;2311:6;;;;;;;;;;;2292:25;;2337:8;2328:6;;:17;;;;;;;;;;;;;;;;;;2392:8;2361:40;;2382:8;2361:40;;;;;;;;;;;;2281:128;2218:191;:::o;31463:179::-;31573:5;31547:17;:23;31565:4;31547:23;;;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;31628:5;31594:40;;31622:4;31594:40;;;;;;;;;;;;31463:179;;:::o;11768:877::-;11915:1;11899:18;;:4;:18;;;11891:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11992:1;11978:16;;:2;:16;;;11970:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;12047:38;12068:4;12074:2;12078:6;12047:20;:38::i;:::-;12098:19;12120:9;:15;12130:4;12120:15;;;;;;;;;;;;;;;;12098:37;;12183:6;12168:11;:21;;12146:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;12323:6;12309:11;:20;12291:9;:15;12301:4;12291:15;;;;;;;;;;;;;;;:38;;;;12526:6;12509:9;:13;12519:2;12509:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;12576:2;12561:26;;12570:4;12561:26;;;12580:6;12561:26;;;;;;:::i;:::-;;;;;;;;12600:37;12620:4;12626:2;12630:6;12600:19;:37::i;:::-;11880:765;11768:877;;;:::o;34991:1607::-;35032:23;35058:24;35076:4;35058:9;:24::i;:::-;35032:50;;35093:25;35191:21;;35156:19;;35121;;:54;;;;:::i;:::-;:91;;;;:::i;:::-;35093:119;;35223:12;35250:23;35364:1;35331:17;35295:19;;35277:15;:37;;;;:::i;:::-;35276:72;;;;:::i;:::-;:89;;;;:::i;:::-;35250:115;;35376:26;35405:36;35425:15;35405;:19;;:36;;;;:::i;:::-;35376:65;;35454:25;35482:21;35454:49;;35516:37;35534:18;35516:17;:37::i;:::-;35566:18;35587:44;35613:17;35587:21;:25;;:44;;;;:::i;:::-;35566:65;;35644:23;35670:82;35724:17;35670:35;35685:19;;35670:10;:14;;:35;;;;:::i;:::-;:39;;:82;;;;:::i;:::-;35644:108;;35765:25;35793:84;35849:17;35793:37;35808:21;;35793:10;:14;;:37;;;;:::i;:::-;:41;;:84;;;;:::i;:::-;35765:112;;35890:23;35973:17;35942:15;35916:10;:41;;;;:::i;:::-;:74;;;;:::i;:::-;35890:100;;36025:1;36003:19;:23;;;;36059:1;36037:19;:23;;;;36095:1;36071:21;:25;;;;36131:1;36113:15;:19;:42;;;;;36154:1;36136:15;:19;36113:42;36109:280;;;36172:47;36186:15;36203;36172:13;:47::i;:::-;36239:138;36272:18;36309:15;36343:19;;36239:138;;;;;;;;:::i;:::-;;;;;;;;36109:280;36423:17;;;;;;;;;;;36415:31;;36454:17;36415:61;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36401:75;;;;;36511:15;;;;;;;;;;;36503:29;;36554:21;36503:87;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36489:101;;;;;35021:1577;;;;;;;;;;34991:1607::o;18418:98::-;18476:7;18507:1;18503;:5;;;;:::i;:::-;18496:12;;18418:98;;;;:::o;18817:::-;18875:7;18906:1;18902;:5;;;;:::i;:::-;18895:12;;18817:98;;;;:::o;14799:125::-;;;;:::o;14932:124::-;;;;:::o;18061:98::-;18119:7;18150:1;18146;:5;;;;:::i;:::-;18139:12;;18061:98;;;;:::o;34100:503::-;34168:21;34206:1;34192:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34168:40;;34237:4;34219;34224:1;34219:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;34263:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;34253:4;34258:1;34253:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;34298:62;34315:4;34330:15;34348:11;34298:8;:62::i;:::-;34399:15;:66;;;34480:11;34506:1;34522:4;34549;34569:15;34399:196;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34157:446;34100:503;:::o;34611:372::-;34694:62;34711:4;34726:15;34744:11;34694:8;:62::i;:::-;34769:15;:31;;;34808:9;34841:4;34861:11;34887:1;34903;34919:15;;;;;;;;;;;34949;34769:206;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;34611:372;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:60::-;3474:3;3495:5;3488:12;;3446:60;;;:::o;3512:142::-;3562:9;3595:53;3613:34;3622:24;3640:5;3622:24;:::i;:::-;3613:34;:::i;:::-;3595:53;:::i;:::-;3582:66;;3512:142;;;:::o;3660:126::-;3710:9;3743:37;3774:5;3743:37;:::i;:::-;3730:50;;3660:126;;;:::o;3792:153::-;3869:9;3902:37;3933:5;3902:37;:::i;:::-;3889:50;;3792:153;;;:::o;3951:185::-;4065:64;4123:5;4065:64;:::i;:::-;4060:3;4053:77;3951:185;;:::o;4142:276::-;4262:4;4300:2;4289:9;4285:18;4277:26;;4313:98;4408:1;4397:9;4393:17;4384:6;4313:98;:::i;:::-;4142:276;;;;:::o;4424:118::-;4511:24;4529:5;4511:24;:::i;:::-;4506:3;4499:37;4424:118;;:::o;4548:222::-;4641:4;4679:2;4668:9;4664:18;4656:26;;4692:71;4760:1;4749:9;4745:17;4736:6;4692:71;:::i;:::-;4548:222;;;;:::o;4776:619::-;4853:6;4861;4869;4918:2;4906:9;4897:7;4893:23;4889:32;4886:119;;;4924:79;;:::i;:::-;4886:119;5044:1;5069:53;5114:7;5105:6;5094:9;5090:22;5069:53;:::i;:::-;5059:63;;5015:117;5171:2;5197:53;5242:7;5233:6;5222:9;5218:22;5197:53;:::i;:::-;5187:63;;5142:118;5299:2;5325:53;5370:7;5361:6;5350:9;5346:22;5325:53;:::i;:::-;5315:63;;5270:118;4776:619;;;;;:::o;5401:118::-;5488:24;5506:5;5488:24;:::i;:::-;5483:3;5476:37;5401:118;;:::o;5525:222::-;5618:4;5656:2;5645:9;5641:18;5633:26;;5669:71;5737:1;5726:9;5722:17;5713:6;5669:71;:::i;:::-;5525:222;;;;:::o;5753:86::-;5788:7;5828:4;5821:5;5817:16;5806:27;;5753:86;;;:::o;5845:112::-;5928:22;5944:5;5928:22;:::i;:::-;5923:3;5916:35;5845:112;;:::o;5963:214::-;6052:4;6090:2;6079:9;6075:18;6067:26;;6103:67;6167:1;6156:9;6152:17;6143:6;6103:67;:::i;:::-;5963:214;;;;:::o;6183:329::-;6242:6;6291:2;6279:9;6270:7;6266:23;6262:32;6259:119;;;6297:79;;:::i;:::-;6259:119;6417:1;6442:53;6487:7;6478:6;6467:9;6463:22;6442:53;:::i;:::-;6432:63;;6388:117;6183:329;;;;:::o;6518:116::-;6588:21;6603:5;6588:21;:::i;:::-;6581:5;6578:32;6568:60;;6624:1;6621;6614:12;6568:60;6518:116;:::o;6640:133::-;6683:5;6721:6;6708:20;6699:29;;6737:30;6761:5;6737:30;:::i;:::-;6640:133;;;;:::o;6779:468::-;6844:6;6852;6901:2;6889:9;6880:7;6876:23;6872:32;6869:119;;;6907:79;;:::i;:::-;6869:119;7027:1;7052:53;7097:7;7088:6;7077:9;7073:22;7052:53;:::i;:::-;7042:63;;6998:117;7154:2;7180:50;7222:7;7213:6;7202:9;7198:22;7180:50;:::i;:::-;7170:60;;7125:115;6779:468;;;;;:::o;7253:474::-;7321:6;7329;7378:2;7366:9;7357:7;7353:23;7349:32;7346:119;;;7384:79;;:::i;:::-;7346:119;7504:1;7529:53;7574:7;7565:6;7554:9;7550:22;7529:53;:::i;:::-;7519:63;;7475:117;7631:2;7657:53;7702:7;7693:6;7682:9;7678:22;7657:53;:::i;:::-;7647:63;;7602:118;7253:474;;;;;:::o;7733:180::-;7781:77;7778:1;7771:88;7878:4;7875:1;7868:15;7902:4;7899:1;7892:15;7919:320;7963:6;8000:1;7994:4;7990:12;7980:22;;8047:1;8041:4;8037:12;8068:18;8058:81;;8124:4;8116:6;8112:17;8102:27;;8058:81;8186:2;8178:6;8175:14;8155:18;8152:38;8149:84;;8205:18;;:::i;:::-;8149:84;7970:269;7919:320;;;:::o;8245:173::-;8385:25;8381:1;8373:6;8369:14;8362:49;8245:173;:::o;8424:366::-;8566:3;8587:67;8651:2;8646:3;8587:67;:::i;:::-;8580:74;;8663:93;8752:3;8663:93;:::i;:::-;8781:2;8776:3;8772:12;8765:19;;8424:366;;;:::o;8796:419::-;8962:4;9000:2;8989:9;8985:18;8977:26;;9049:9;9043:4;9039:20;9035:1;9024:9;9020:17;9013:47;9077:131;9203:4;9077:131;:::i;:::-;9069:139;;8796:419;;;:::o;9221:180::-;9269:77;9266:1;9259:88;9366:4;9363:1;9356:15;9390:4;9387:1;9380:15;9407:191;9447:3;9466:20;9484:1;9466:20;:::i;:::-;9461:25;;9500:20;9518:1;9500:20;:::i;:::-;9495:25;;9543:1;9540;9536:9;9529:16;;9564:3;9561:1;9558:10;9555:36;;;9571:18;;:::i;:::-;9555:36;9407:191;;;;:::o;9604:233::-;9744:34;9740:1;9732:6;9728:14;9721:58;9813:16;9808:2;9800:6;9796:15;9789:41;9604:233;:::o;9843:366::-;9985:3;10006:67;10070:2;10065:3;10006:67;:::i;:::-;9999:74;;10082:93;10171:3;10082:93;:::i;:::-;10200:2;10195:3;10191:12;10184:19;;9843:366;;;:::o;10215:419::-;10381:4;10419:2;10408:9;10404:18;10396:26;;10468:9;10462:4;10458:20;10454:1;10443:9;10439:17;10432:47;10496:131;10622:4;10496:131;:::i;:::-;10488:139;;10215:419;;;:::o;10640:225::-;10780:34;10776:1;10768:6;10764:14;10757:58;10849:8;10844:2;10836:6;10832:15;10825:33;10640:225;:::o;10871:366::-;11013:3;11034:67;11098:2;11093:3;11034:67;:::i;:::-;11027:74;;11110:93;11199:3;11110:93;:::i;:::-;11228:2;11223:3;11219:12;11212:19;;10871:366;;;:::o;11243:419::-;11409:4;11447:2;11436:9;11432:18;11424:26;;11496:9;11490:4;11486:20;11482:1;11471:9;11467:17;11460:47;11524:131;11650:4;11524:131;:::i;:::-;11516:139;;11243:419;;;:::o;11668:223::-;11808:34;11804:1;11796:6;11792:14;11785:58;11877:6;11872:2;11864:6;11860:15;11853:31;11668:223;:::o;11897:366::-;12039:3;12060:67;12124:2;12119:3;12060:67;:::i;:::-;12053:74;;12136:93;12225:3;12136:93;:::i;:::-;12254:2;12249:3;12245:12;12238:19;;11897:366;;;:::o;12269:419::-;12435:4;12473:2;12462:9;12458:18;12450:26;;12522:9;12516:4;12512:20;12508:1;12497:9;12493:17;12486:47;12550:131;12676:4;12550:131;:::i;:::-;12542:139;;12269:419;;;:::o;12694:221::-;12834:34;12830:1;12822:6;12818:14;12811:58;12903:4;12898:2;12890:6;12886:15;12879:29;12694:221;:::o;12921:366::-;13063:3;13084:67;13148:2;13143:3;13084:67;:::i;:::-;13077:74;;13160:93;13249:3;13160:93;:::i;:::-;13278:2;13273:3;13269:12;13262:19;;12921:366;;;:::o;13293:419::-;13459:4;13497:2;13486:9;13482:18;13474:26;;13546:9;13540:4;13536:20;13532:1;13521:9;13517:17;13510:47;13574:131;13700:4;13574:131;:::i;:::-;13566:139;;13293:419;;;:::o;13718:179::-;13858:31;13854:1;13846:6;13842:14;13835:55;13718:179;:::o;13903:366::-;14045:3;14066:67;14130:2;14125:3;14066:67;:::i;:::-;14059:74;;14142:93;14231:3;14142:93;:::i;:::-;14260:2;14255:3;14251:12;14244:19;;13903:366;;;:::o;14275:419::-;14441:4;14479:2;14468:9;14464:18;14456:26;;14528:9;14522:4;14518:20;14514:1;14503:9;14499:17;14492:47;14556:131;14682:4;14556:131;:::i;:::-;14548:139;;14275:419;;;:::o;14700:224::-;14840:34;14836:1;14828:6;14824:14;14817:58;14909:7;14904:2;14896:6;14892:15;14885:32;14700:224;:::o;14930:366::-;15072:3;15093:67;15157:2;15152:3;15093:67;:::i;:::-;15086:74;;15169:93;15258:3;15169:93;:::i;:::-;15287:2;15282:3;15278:12;15271:19;;14930:366;;;:::o;15302:419::-;15468:4;15506:2;15495:9;15491:18;15483:26;;15555:9;15549:4;15545:20;15541:1;15530:9;15526:17;15519:47;15583:131;15709:4;15583:131;:::i;:::-;15575:139;;15302:419;;;:::o;15727:222::-;15867:34;15863:1;15855:6;15851:14;15844:58;15936:5;15931:2;15923:6;15919:15;15912:30;15727:222;:::o;15955:366::-;16097:3;16118:67;16182:2;16177:3;16118:67;:::i;:::-;16111:74;;16194:93;16283:3;16194:93;:::i;:::-;16312:2;16307:3;16303:12;16296:19;;15955:366;;;:::o;16327:419::-;16493:4;16531:2;16520:9;16516:18;16508:26;;16580:9;16574:4;16570:20;16566:1;16555:9;16551:17;16544:47;16608:131;16734:4;16608:131;:::i;:::-;16600:139;;16327:419;;;:::o;16752:220::-;16892:34;16888:1;16880:6;16876:14;16869:58;16961:3;16956:2;16948:6;16944:15;16937:28;16752:220;:::o;16978:366::-;17120:3;17141:67;17205:2;17200:3;17141:67;:::i;:::-;17134:74;;17217:93;17306:3;17217:93;:::i;:::-;17335:2;17330:3;17326:12;17319:19;;16978:366;;;:::o;17350:419::-;17516:4;17554:2;17543:9;17539:18;17531:26;;17603:9;17597:4;17593:20;17589:1;17578:9;17574:17;17567:47;17631:131;17757:4;17631:131;:::i;:::-;17623:139;;17350:419;;;:::o;17775:410::-;17815:7;17838:20;17856:1;17838:20;:::i;:::-;17833:25;;17872:20;17890:1;17872:20;:::i;:::-;17867:25;;17927:1;17924;17920:9;17949:30;17967:11;17949:30;:::i;:::-;17938:41;;18128:1;18119:7;18115:15;18112:1;18109:22;18089:1;18082:9;18062:83;18039:139;;18158:18;;:::i;:::-;18039:139;17823:362;17775:410;;;;:::o;18191:180::-;18239:77;18236:1;18229:88;18336:4;18333:1;18326:15;18360:4;18357:1;18350:15;18377:185;18417:1;18434:20;18452:1;18434:20;:::i;:::-;18429:25;;18468:20;18486:1;18468:20;:::i;:::-;18463:25;;18507:1;18497:35;;18512:18;;:::i;:::-;18497:35;18554:1;18551;18547:9;18542:14;;18377:185;;;;:::o;18568:194::-;18608:4;18628:20;18646:1;18628:20;:::i;:::-;18623:25;;18662:20;18680:1;18662:20;:::i;:::-;18657:25;;18706:1;18703;18699:9;18691:17;;18730:1;18724:4;18721:11;18718:37;;;18735:18;;:::i;:::-;18718:37;18568:194;;;;:::o;18768:227::-;18908:34;18904:1;18896:6;18892:14;18885:58;18977:10;18972:2;18964:6;18960:15;18953:35;18768:227;:::o;19001:366::-;19143:3;19164:67;19228:2;19223:3;19164:67;:::i;:::-;19157:74;;19240:93;19329:3;19240:93;:::i;:::-;19358:2;19353:3;19349:12;19342:19;;19001:366;;;:::o;19373:419::-;19539:4;19577:2;19566:9;19562:18;19554:26;;19626:9;19620:4;19616:20;19612:1;19601:9;19597:17;19590:47;19654:131;19780:4;19654:131;:::i;:::-;19646:139;;19373:419;;;:::o;19798:225::-;19938:34;19934:1;19926:6;19922:14;19915:58;20007:8;20002:2;19994:6;19990:15;19983:33;19798:225;:::o;20029:366::-;20171:3;20192:67;20256:2;20251:3;20192:67;:::i;:::-;20185:74;;20268:93;20357:3;20268:93;:::i;:::-;20386:2;20381:3;20377:12;20370:19;;20029:366;;;:::o;20401:419::-;20567:4;20605:2;20594:9;20590:18;20582:26;;20654:9;20648:4;20644:20;20640:1;20629:9;20625:17;20618:47;20682:131;20808:4;20682:131;:::i;:::-;20674:139;;20401:419;;;:::o;20826:442::-;20975:4;21013:2;21002:9;20998:18;20990:26;;21026:71;21094:1;21083:9;21079:17;21070:6;21026:71;:::i;:::-;21107:72;21175:2;21164:9;21160:18;21151:6;21107:72;:::i;:::-;21189;21257:2;21246:9;21242:18;21233:6;21189:72;:::i;:::-;20826:442;;;;;;:::o;21274:147::-;21375:11;21412:3;21397:18;;21274:147;;;;:::o;21427:114::-;;:::o;21547:398::-;21706:3;21727:83;21808:1;21803:3;21727:83;:::i;:::-;21720:90;;21819:93;21908:3;21819:93;:::i;:::-;21937:1;21932:3;21928:11;21921:18;;21547:398;;;:::o;21951:379::-;22135:3;22157:147;22300:3;22157:147;:::i;:::-;22150:154;;22321:3;22314:10;;21951:379;;;:::o;22336:180::-;22384:77;22381:1;22374:88;22481:4;22478:1;22471:15;22505:4;22502:1;22495:15;22522:180;22570:77;22567:1;22560:88;22667:4;22664:1;22657:15;22691:4;22688:1;22681:15;22708:143;22765:5;22796:6;22790:13;22781:22;;22812:33;22839:5;22812:33;:::i;:::-;22708:143;;;;:::o;22857:351::-;22927:6;22976:2;22964:9;22955:7;22951:23;22947:32;22944:119;;;22982:79;;:::i;:::-;22944:119;23102:1;23127:64;23183:7;23174:6;23163:9;23159:22;23127:64;:::i;:::-;23117:74;;23073:128;22857:351;;;;:::o;23214:85::-;23259:7;23288:5;23277:16;;23214:85;;;:::o;23305:158::-;23363:9;23396:61;23414:42;23423:32;23449:5;23423:32;:::i;:::-;23414:42;:::i;:::-;23396:61;:::i;:::-;23383:74;;23305:158;;;:::o;23469:147::-;23564:45;23603:5;23564:45;:::i;:::-;23559:3;23552:58;23469:147;;:::o;23622:114::-;23689:6;23723:5;23717:12;23707:22;;23622:114;;;:::o;23742:184::-;23841:11;23875:6;23870:3;23863:19;23915:4;23910:3;23906:14;23891:29;;23742:184;;;;:::o;23932:132::-;23999:4;24022:3;24014:11;;24052:4;24047:3;24043:14;24035:22;;23932:132;;;:::o;24070:108::-;24147:24;24165:5;24147:24;:::i;:::-;24142:3;24135:37;24070:108;;:::o;24184:179::-;24253:10;24274:46;24316:3;24308:6;24274:46;:::i;:::-;24352:4;24347:3;24343:14;24329:28;;24184:179;;;;:::o;24369:113::-;24439:4;24471;24466:3;24462:14;24454:22;;24369:113;;;:::o;24518:732::-;24637:3;24666:54;24714:5;24666:54;:::i;:::-;24736:86;24815:6;24810:3;24736:86;:::i;:::-;24729:93;;24846:56;24896:5;24846:56;:::i;:::-;24925:7;24956:1;24941:284;24966:6;24963:1;24960:13;24941:284;;;25042:6;25036:13;25069:63;25128:3;25113:13;25069:63;:::i;:::-;25062:70;;25155:60;25208:6;25155:60;:::i;:::-;25145:70;;25001:224;24988:1;24985;24981:9;24976:14;;24941:284;;;24945:14;25241:3;25234:10;;24642:608;;;24518:732;;;;:::o;25256:831::-;25519:4;25557:3;25546:9;25542:19;25534:27;;25571:71;25639:1;25628:9;25624:17;25615:6;25571:71;:::i;:::-;25652:80;25728:2;25717:9;25713:18;25704:6;25652:80;:::i;:::-;25779:9;25773:4;25769:20;25764:2;25753:9;25749:18;25742:48;25807:108;25910:4;25901:6;25807:108;:::i;:::-;25799:116;;25925:72;25993:2;25982:9;25978:18;25969:6;25925:72;:::i;:::-;26007:73;26075:3;26064:9;26060:19;26051:6;26007:73;:::i;:::-;25256:831;;;;;;;;:::o;26093:807::-;26342:4;26380:3;26369:9;26365:19;26357:27;;26394:71;26462:1;26451:9;26447:17;26438:6;26394:71;:::i;:::-;26475:72;26543:2;26532:9;26528:18;26519:6;26475:72;:::i;:::-;26557:80;26633:2;26622:9;26618:18;26609:6;26557:80;:::i;:::-;26647;26723:2;26712:9;26708:18;26699:6;26647:80;:::i;:::-;26737:73;26805:3;26794:9;26790:19;26781:6;26737:73;:::i;:::-;26820;26888:3;26877:9;26873:19;26864:6;26820:73;:::i;:::-;26093:807;;;;;;;;;:::o;26906:143::-;26963:5;26994:6;26988:13;26979:22;;27010:33;27037:5;27010:33;:::i;:::-;26906:143;;;;:::o;27055:663::-;27143:6;27151;27159;27208:2;27196:9;27187:7;27183:23;27179:32;27176:119;;;27214:79;;:::i;:::-;27176:119;27334:1;27359:64;27415:7;27406:6;27395:9;27391:22;27359:64;:::i;:::-;27349:74;;27305:128;27472:2;27498:64;27554:7;27545:6;27534:9;27530:22;27498:64;:::i;:::-;27488:74;;27443:129;27611:2;27637:64;27693:7;27684:6;27673:9;27669:22;27637:64;:::i;:::-;27627:74;;27582:129;27055:663;;;;;:::o

Swarm Source

ipfs://d3ff59d2ce6573cf576383b57657307ea01a662d5a7977b15bc20acbc571e91a

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.