ETH Price: $2,305.13 (-4.76%)

Contract

0x26a97532AE8b091d14311C193b7D2e0fB0eAd94c
 

Overview

ETH Balance

0.44808748 ETH

Eth Value

$1,032.90 (@ $2,305.13/ETH)

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve205629702024-08-19 13:27:5927 days ago1724074079IN
0x26a97532...fB0eAd94c
0 ETH0.000057562.31169868
Approve205629592024-08-19 13:25:4727 days ago1724073947IN
0x26a97532...fB0eAd94c
0 ETH0.000126092.6723993
Approve205628182024-08-19 12:57:2327 days ago1724072243IN
0x26a97532...fB0eAd94c
0 ETH0.000162413.4420208
Transfer205596522024-08-19 2:20:1127 days ago1724034011IN
0x26a97532...fB0eAd94c
0 ETH0.00004881.03882162
Approve205563972024-08-18 15:25:4728 days ago1723994747IN
0x26a97532...fB0eAd94c
0 ETH0.00007021.48590427
Approve205563812024-08-18 15:22:3528 days ago1723994555IN
0x26a97532...fB0eAd94c
0 ETH0.000066311.41183482
Approve205563582024-08-18 15:17:4728 days ago1723994267IN
0x26a97532...fB0eAd94c
0 ETH0.000072151.52731681
Approve205563342024-08-18 15:12:5928 days ago1723993979IN
0x26a97532...fB0eAd94c
0 ETH0.000075641.6031443
Approve205562912024-08-18 15:04:2328 days ago1723993463IN
0x26a97532...fB0eAd94c
0 ETH0.000060161.27502665
Approve205560992024-08-18 14:25:5928 days ago1723991159IN
0x26a97532...fB0eAd94c
0 ETH0.000152143.22444637
Set Market Maker...205560372024-08-18 14:13:2328 days ago1723990403IN
0x26a97532...fB0eAd94c
0 ETH0.000055761.15222416
Approve205554842024-08-18 12:22:4728 days ago1723983767IN
0x26a97532...fB0eAd94c
0 ETH0.00005341.13040005
Set Market Maker...205554722024-08-18 12:20:2328 days ago1723983623IN
0x26a97532...fB0eAd94c
0 ETH0.000056941.176649
Set Market Maker...205554622024-08-18 12:18:2328 days ago1723983503IN
0x26a97532...fB0eAd94c
0 ETH0.000034461.20961767
Approve205554552024-08-18 12:16:5928 days ago1723983419IN
0x26a97532...fB0eAd94c
0 ETH0.000054171.14669998
Transfer205553892024-08-18 12:03:4728 days ago1723982627IN
0x26a97532...fB0eAd94c
0 ETH0.000051131.08842024
Approve205553792024-08-18 12:01:4728 days ago1723982507IN
0x26a97532...fB0eAd94c
0 ETH0.000087591.85402104
Transfer205553662024-08-18 11:59:1128 days ago1723982351IN
0x26a97532...fB0eAd94c
0 ETH0.000051451.09505385
Set Market Maker...205553002024-08-18 11:45:5928 days ago1723981559IN
0x26a97532...fB0eAd94c
0 ETH0.000027670.97152924
Approve205552752024-08-18 11:40:5928 days ago1723981259IN
0x26a97532...fB0eAd94c
0 ETH0.000034971.29719673
Approve205552722024-08-18 11:40:2328 days ago1723981223IN
0x26a97532...fB0eAd94c
0 ETH0.000033161.22989069
Set Market Maker...205552672024-08-18 11:39:2328 days ago1723981163IN
0x26a97532...fB0eAd94c
0 ETH0.000046450.95983654
Approve205552622024-08-18 11:38:2328 days ago1723981103IN
0x26a97532...fB0eAd94c
0 ETH0.000032571.3051454
Approve205552542024-08-18 11:36:4728 days ago1723981007IN
0x26a97532...fB0eAd94c
0 ETH0.000031411.26166008
Set Market Maker...205552472024-08-18 11:35:2328 days ago1723980923IN
0x26a97532...fB0eAd94c
0 ETH0.00002740.96171764
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Block From To
205500302024-08-17 18:08:1129 days ago1723918091
0x26a97532...fB0eAd94c
0.44808748 ETH
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
BabyBTC

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-17
*/

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

    /**
     * @dev Leaves the contract without owner. It will not be BabyBTC 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 BabyBTC zero address"
        );
        _transferOwnership(newOwner);
    }

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

// 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 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 BabyBTC 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 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 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 BabyBTC integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

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

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

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

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

// 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 BabyBTC 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("BabyBTC", "BabyBTC") {

        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 OpeaonTradtoring() 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 BabyBTC address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(tradingEnabled || _isExcludedFromEnableTrader[from] || _isExcludedFromEnableTrader[to], "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":"OpeaonTradtoring","outputs":[],"stateMutability":"nonpayable","type":"function"},{"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":"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"}]

60a06040523480156200001157600080fd5b506040518060400160405280600781526020017f42616279425443000000000000000000000000000000000000000000000000008152506040518060400160405280600781526020017f426162794254430000000000000000000000000000000000000000000000000081525081600490816200008f9190620009d3565b508060059081620000a19190620009d3565b505050620000c4620000b86200031960201b60201c565b6200032160201b60201c565b60006a52b7d2dcc80cd2e40000009050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff168152505062000151306080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff620003e760201b60201c565b6000601181905550600060128190555060006013819055506013546012546011546200017e919062000ae9565b6200018a919062000ae9565b6010819055506010546017819055506000600d819055506000600e819055506000600f81905550600f54600e54600d54620001c6919062000ae9565b620001d2919062000ae9565b600c81905550600160186000620001ee620005b860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601860003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016018600061dead73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200031262000305620005b860201b60201c565b82620005e260201b60201c565b5062000d05565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000459576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004509062000bab565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620004cb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004c29062000c43565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051620005ab919062000c76565b60405180910390a3505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000654576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200064b9062000ce3565b60405180910390fd5b62000668600083836200074f60201b60201c565b80600260008282546200067c919062000ae9565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200072f919062000c76565b60405180910390a36200074b600083836200075460201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620007db57607f821691505b602082108103620007f157620007f062000793565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200085b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200081c565b6200086786836200081c565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620008b4620008ae620008a8846200087f565b62000889565b6200087f565b9050919050565b6000819050919050565b620008d08362000893565b620008e8620008df82620008bb565b84845462000829565b825550505050565b600090565b620008ff620008f0565b6200090c818484620008c5565b505050565b5b81811015620009345762000928600082620008f5565b60018101905062000912565b5050565b601f82111562000983576200094d81620007f7565b62000958846200080c565b8101602085101562000968578190505b6200098062000977856200080c565b83018262000911565b50505b505050565b600082821c905092915050565b6000620009a86000198460080262000988565b1980831691505092915050565b6000620009c3838362000995565b9150826002028217905092915050565b620009de8262000759565b67ffffffffffffffff811115620009fa57620009f962000764565b5b62000a068254620007c2565b62000a1382828562000938565b600060209050601f83116001811462000a4b576000841562000a36578287015190505b62000a428582620009b5565b86555062000ab2565b601f19841662000a5b86620007f7565b60005b8281101562000a855784890151825560018201915060208501945060208101905062000a5e565b8683101562000aa5578489015162000aa1601f89168262000995565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000af6826200087f565b915062000b03836200087f565b925082820190508082111562000b1e5762000b1d62000aba565b5b92915050565b600082825260208201905092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600062000b9360248362000b24565b915062000ba08262000b35565b604082019050919050565b6000602082019050818103600083015262000bc68162000b84565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600062000c2b60228362000b24565b915062000c388262000bcd565b604082019050919050565b6000602082019050818103600083015262000c5e8162000c1c565b9050919050565b62000c70816200087f565b82525050565b600060208201905062000c8d600083018462000c65565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000ccb601f8362000b24565b915062000cd88262000c93565b602082019050919050565b6000602082019050818103600083015262000cfe8162000cbc565b9050919050565b608051612f4b62000d446000396000818161078401528181611d7701528181611e5801528181611e7f01528181611f1b0152611f420152612f4b6000f3fe6080604052600436106101bb5760003560e01c806375f0a874116100ec578063c04a54141161008a578063d85ba06311610064578063d85ba06314610611578063dd62ed3e1461063c578063e2f4560514610679578063f2fde38b146106a4576101c2565b8063c04a5414146105a4578063d447748f146105cf578063d4698016146105e6576101c2565b806393ec52de116100c657806393ec52de146104d457806395d89b41146104ff578063a457c2d71461052a578063a9059cbb14610567576101c2565b806375f0a874146104555780638da5cb5b146104805780639335bda3146104ab576101c2565b806339509351116101595780636a486a8e116101335780636a486a8e146103ab5780636ddd1713146103d657806370a0823114610401578063715018a61461043e576101c2565b8063395093511461031857806349bd5a5e146103555780634ada218b14610380576101c2565b806318160ddd1161019557806318160ddd1461025a57806323b872dd1461028557806327c8f835146102c2578063313ce567146102ed576101c2565b806306fdde03146101c7578063095ea7b3146101f25780631694505e1461022f576101c2565b366101c257005b600080fd5b3480156101d357600080fd5b506101dc6106cd565b6040516101e991906120a1565b60405180910390f35b3480156101fe57600080fd5b506102196004803603810190610214919061215c565b61075f565b60405161022691906121b7565b60405180910390f35b34801561023b57600080fd5b50610244610782565b6040516102519190612231565b60405180910390f35b34801561026657600080fd5b5061026f6107a6565b60405161027c919061225b565b60405180910390f35b34801561029157600080fd5b506102ac60048036038101906102a79190612276565b6107b0565b6040516102b991906121b7565b60405180910390f35b3480156102ce57600080fd5b506102d76107df565b6040516102e491906122d8565b60405180910390f35b3480156102f957600080fd5b506103026107e5565b60405161030f919061230f565b60405180910390f35b34801561032457600080fd5b5061033f600480360381019061033a919061215c565b6107ee565b60405161034c91906121b7565b60405180910390f35b34801561036157600080fd5b5061036a610825565b60405161037791906122d8565b60405180910390f35b34801561038c57600080fd5b5061039561084b565b6040516103a291906121b7565b60405180910390f35b3480156103b757600080fd5b506103c061085e565b6040516103cd919061225b565b60405180910390f35b3480156103e257600080fd5b506103eb610864565b6040516103f891906121b7565b60405180910390f35b34801561040d57600080fd5b506104286004803603810190610423919061232a565b610877565b604051610435919061225b565b60405180910390f35b34801561044a57600080fd5b506104536108bf565b005b34801561046157600080fd5b5061046a6108d3565b60405161047791906122d8565b60405180910390f35b34801561048c57600080fd5b506104956108f9565b6040516104a291906122d8565b60405180910390f35b3480156104b757600080fd5b506104d260048036038101906104cd9190612383565b610923565b005b3480156104e057600080fd5b506104e9610939565b6040516104f6919061225b565b60405180910390f35b34801561050b57600080fd5b5061051461093f565b60405161052191906120a1565b60405180910390f35b34801561053657600080fd5b50610551600480360381019061054c919061215c565b6109d1565b60405161055e91906121b7565b60405180910390f35b34801561057357600080fd5b5061058e6004803603810190610589919061215c565b610a48565b60405161059b91906121b7565b60405180910390f35b3480156105b057600080fd5b506105b9610a6b565b6040516105c691906122d8565b60405180910390f35b3480156105db57600080fd5b506105e4610a91565b005b3480156105f257600080fd5b506105fb610b21565b60405161060891906122d8565b60405180910390f35b34801561061d57600080fd5b50610626610b47565b604051610633919061225b565b60405180910390f35b34801561064857600080fd5b50610663600480360381019061065e91906123c3565b610b4d565b604051610670919061225b565b60405180910390f35b34801561068557600080fd5b5061068e610bd4565b60405161069b919061225b565b60405180910390f35b3480156106b057600080fd5b506106cb60048036038101906106c6919061232a565b610bda565b005b6060600480546106dc90612432565b80601f016020809104026020016040519081016040528092919081815260200182805461070890612432565b80156107555780601f1061072a57610100808354040283529160200191610755565b820191906000526020600020905b81548152906001019060200180831161073857829003601f168201915b5050505050905090565b60008061076a610c5d565b9050610777818585610c65565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b6000806107bb610c5d565b90506107c8858285610e2e565b6107d3858585610eba565b60019150509392505050565b61dead81565b60006012905090565b6000806107f9610c5d565b905061081a81858561080b8589610b4d565b6108159190612492565b610c65565b600191505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a60149054906101000a900460ff1681565b60105481565b600a60159054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108c761158f565b6108d1600061160d565b565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61092b61158f565b61093582826116d3565b5050565b60035481565b60606005805461094e90612432565b80601f016020809104026020016040519081016040528092919081815260200182805461097a90612432565b80156109c75780601f1061099c576101008083540402835291602001916109c7565b820191906000526020600020905b8154815290600101906020018083116109aa57829003601f168201915b5050505050905090565b6000806109dc610c5d565b905060006109ea8286610b4d565b905083811015610a2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2690612538565b60405180910390fd5b610a3c8286868403610c65565b60019250505092915050565b600080610a53610c5d565b9050610a60818585610eba565b600191505092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610a9961158f565b600a60149054906101000a900460ff1615610ae9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae0906125a4565b60405180910390fd5b6001600a60146101000a81548160ff0219169083151502179055506001600a60156101000a81548160ff021916908315150217905550565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600b5481565b610be261158f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4890612636565b60405180910390fd5b610c5a8161160d565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ccb906126c8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3a9061275a565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e21919061225b565b60405180910390a3505050565b6000610e3a8484610b4d565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610eb45781811015610ea6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9d906127c6565b60405180910390fd5b610eb38484848403610c65565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2090612858565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8f906128ea565b60405180910390fd5b600a60149054906101000a900460ff1680610ffc5750601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806110505750601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61108f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108690612956565b60405180910390fd5b600081036110a8576110a383836000611774565b61158a565b60006110b330610877565b90506000600b5482101590508080156110d85750600a60159054906101000a900460ff165b80156110f15750600a60169054906101000a900460ff16155b80156111465750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b801561119c5750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156111f25750601860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611236576001600a60166101000a81548160ff02191690831515021790555061121a6119ea565b6000600a60166101000a81548160ff0219169083151502179055505b6000600a60169054906101000a900460ff16159050601860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806112ec5750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156112f657600090505b6000811561157157601960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561135957506000601054115b156114275761138761271061137960105488611c8c90919063ffffffff16565b611ca290919063ffffffff16565b90506010546013548261139a9190612976565b6113a491906129e7565b601660008282546113b59190612492565b92505081905550601054601154826113cd9190612976565b6113d791906129e7565b601460008282546113e89190612492565b92505081905550601054601254826114009190612976565b61140a91906129e7565b6015600082825461141b9190612492565b9250508190555061154d565b601960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561148257506000600c54115b1561154c576114b06127106114a2600c5488611c8c90919063ffffffff16565b611ca290919063ffffffff16565b9050600c54600f54826114c39190612976565b6114cd91906129e7565b601660008282546114de9190612492565b92505081905550600c54600d54826114f69190612976565b61150091906129e7565b601460008282546115119190612492565b92505081905550600c54600e54826115299190612976565b61153391906129e7565b601560008282546115449190612492565b925050819055505b5b600081111561156257611561873083611774565b5b808561156e9190612a18565b94505b61157c878787611774565b601754601081905550505050505b505050565b611597610c5d565b73ffffffffffffffffffffffffffffffffffffffff166115b56108f9565b73ffffffffffffffffffffffffffffffffffffffff161461160b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160290612a98565b60405180910390fd5b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036117e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117da90612b2a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611852576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611849906128ea565b60405180910390fd5b61185d838383611cb8565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156118e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118da90612bbc565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516119d1919061225b565b60405180910390a36119e4848484611cbd565b50505050565b60006119f530610877565b90506000601554601454601654611a0c9190612492565b611a169190612492565b905060008060028360165486611a2c9190612976565b611a3691906129e7565b611a4091906129e7565b90506000611a578286611cc290919063ffffffff16565b90506000479050611a6782611cd8565b6000611a7c8247611cc290919063ffffffff16565b90506000611aa787611a9960145485611c8c90919063ffffffff16565b611ca290919063ffffffff16565b90506000611ad288611ac460155486611c8c90919063ffffffff16565b611ca290919063ffffffff16565b90506000818385611ae39190612a18565b611aed9190612a18565b9050600060168190555060006014819055506000601581905550600087118015611b175750600081115b15611b6457611b268782611f15565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601654604051611b5b93929190612bdc565b60405180910390a15b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051611baa90612c44565b60006040518083038185875af1925050503d8060008114611be7576040519150601f19603f3d011682016040523d82523d6000602084013e611bec565b606091505b505080985050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051611c3890612c44565b60006040518083038185875af1925050503d8060008114611c75576040519150601f19603f3d011682016040523d82523d6000602084013e611c7a565b606091505b50508098505050505050505050505050565b60008183611c9a9190612976565b905092915050565b60008183611cb091906129e7565b905092915050565b505050565b505050565b60008183611cd09190612a18565b905092915050565b6000600267ffffffffffffffff811115611cf557611cf4612c59565b5b604051908082528060200260200182016040528015611d235781602001602082028036833780820191505090505b5090503081600081518110611d3b57611d3a612c88565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611de0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e049190612ccc565b81600181518110611e1857611e17612c88565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611e7d307f000000000000000000000000000000000000000000000000000000000000000084610c65565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401611edf959493929190612df2565b600060405180830381600087803b158015611ef957600080fd5b505af1158015611f0d573d6000803e3d6000fd5b505050505050565b611f40307f000000000000000000000000000000000000000000000000000000000000000084610c65565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b8152600401611fc796959493929190612e4c565b60606040518083038185885af1158015611fe5573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061200a9190612ec2565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561204b578082015181840152602081019050612030565b60008484015250505050565b6000601f19601f8301169050919050565b600061207382612011565b61207d818561201c565b935061208d81856020860161202d565b61209681612057565b840191505092915050565b600060208201905081810360008301526120bb8184612068565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006120f3826120c8565b9050919050565b612103816120e8565b811461210e57600080fd5b50565b600081359050612120816120fa565b92915050565b6000819050919050565b61213981612126565b811461214457600080fd5b50565b60008135905061215681612130565b92915050565b60008060408385031215612173576121726120c3565b5b600061218185828601612111565b925050602061219285828601612147565b9150509250929050565b60008115159050919050565b6121b18161219c565b82525050565b60006020820190506121cc60008301846121a8565b92915050565b6000819050919050565b60006121f76121f26121ed846120c8565b6121d2565b6120c8565b9050919050565b6000612209826121dc565b9050919050565b600061221b826121fe565b9050919050565b61222b81612210565b82525050565b60006020820190506122466000830184612222565b92915050565b61225581612126565b82525050565b6000602082019050612270600083018461224c565b92915050565b60008060006060848603121561228f5761228e6120c3565b5b600061229d86828701612111565b93505060206122ae86828701612111565b92505060406122bf86828701612147565b9150509250925092565b6122d2816120e8565b82525050565b60006020820190506122ed60008301846122c9565b92915050565b600060ff82169050919050565b612309816122f3565b82525050565b60006020820190506123246000830184612300565b92915050565b6000602082840312156123405761233f6120c3565b5b600061234e84828501612111565b91505092915050565b6123608161219c565b811461236b57600080fd5b50565b60008135905061237d81612357565b92915050565b6000806040838503121561239a576123996120c3565b5b60006123a885828601612111565b92505060206123b98582860161236e565b9150509250929050565b600080604083850312156123da576123d96120c3565b5b60006123e885828601612111565b92505060206123f985828601612111565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061244a57607f821691505b60208210810361245d5761245c612403565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061249d82612126565b91506124a883612126565b92508282019050808211156124c0576124bf612463565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061252260258361201c565b915061252d826124c6565b604082019050919050565b6000602082019050818103600083015261255181612515565b9050919050565b7f54726164696e6720616c7265616479206163746976652e000000000000000000600082015250565b600061258e60178361201c565b915061259982612558565b602082019050919050565b600060208201905081810360008301526125bd81612581565b9050919050565b7f4f776e61626c653a206e6577206f776e6572206973207468652042616279425460008201527f43207a65726f2061646472657373000000000000000000000000000000000000602082015250565b6000612620602e8361201c565b915061262b826125c4565b604082019050919050565b6000602082019050818103600083015261264f81612613565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006126b260248361201c565b91506126bd82612656565b604082019050919050565b600060208201905081810360008301526126e1816126a5565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061274460228361201c565b915061274f826126e8565b604082019050919050565b6000602082019050818103600083015261277381612737565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006127b0601d8361201c565b91506127bb8261277a565b602082019050919050565b600060208201905081810360008301526127df816127a3565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20426160008201527f6279425443206164647265737300000000000000000000000000000000000000602082015250565b6000612842602d8361201c565b915061284d826127e6565b604082019050919050565b6000602082019050818103600083015261287181612835565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006128d460238361201c565b91506128df82612878565b604082019050919050565b60006020820190508181036000830152612903816128c7565b9050919050565b7f54726164696e67206e6f742079657420656e61626c6564210000000000000000600082015250565b600061294060188361201c565b915061294b8261290a565b602082019050919050565b6000602082019050818103600083015261296f81612933565b9050919050565b600061298182612126565b915061298c83612126565b925082820261299a81612126565b915082820484148315176129b1576129b0612463565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006129f282612126565b91506129fd83612126565b925082612a0d57612a0c6129b8565b5b828204905092915050565b6000612a2382612126565b9150612a2e83612126565b9250828203905081811115612a4657612a45612463565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612a8260208361201c565b9150612a8d82612a4c565b602082019050919050565b60006020820190508181036000830152612ab181612a75565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612b1460258361201c565b9150612b1f82612ab8565b604082019050919050565b60006020820190508181036000830152612b4381612b07565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612ba660268361201c565b9150612bb182612b4a565b604082019050919050565b60006020820190508181036000830152612bd581612b99565b9050919050565b6000606082019050612bf1600083018661224c565b612bfe602083018561224c565b612c0b604083018461224c565b949350505050565b600081905092915050565b50565b6000612c2e600083612c13565b9150612c3982612c1e565b600082019050919050565b6000612c4f82612c21565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050612cc6816120fa565b92915050565b600060208284031215612ce257612ce16120c3565b5b6000612cf084828501612cb7565b91505092915050565b6000819050919050565b6000612d1e612d19612d1484612cf9565b6121d2565b612126565b9050919050565b612d2e81612d03565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612d69816120e8565b82525050565b6000612d7b8383612d60565b60208301905092915050565b6000602082019050919050565b6000612d9f82612d34565b612da98185612d3f565b9350612db483612d50565b8060005b83811015612de5578151612dcc8882612d6f565b9750612dd783612d87565b925050600181019050612db8565b5085935050505092915050565b600060a082019050612e07600083018861224c565b612e146020830187612d25565b8181036040830152612e268186612d94565b9050612e3560608301856122c9565b612e42608083018461224c565b9695505050505050565b600060c082019050612e6160008301896122c9565b612e6e602083018861224c565b612e7b6040830187612d25565b612e886060830186612d25565b612e9560808301856122c9565b612ea260a083018461224c565b979650505050505050565b600081519050612ebc81612130565b92915050565b600080600060608486031215612edb57612eda6120c3565b5b6000612ee986828701612ead565b9350506020612efa86828701612ead565b9250506040612f0b86828701612ead565b915050925092509256fea26469706673582212201385349b1216ee27a71759dd3fe980eae0d1f6c044dd0f5edf5d980a40cdb97664736f6c63430008110033

Deployed Bytecode

0x6080604052600436106101bb5760003560e01c806375f0a874116100ec578063c04a54141161008a578063d85ba06311610064578063d85ba06314610611578063dd62ed3e1461063c578063e2f4560514610679578063f2fde38b146106a4576101c2565b8063c04a5414146105a4578063d447748f146105cf578063d4698016146105e6576101c2565b806393ec52de116100c657806393ec52de146104d457806395d89b41146104ff578063a457c2d71461052a578063a9059cbb14610567576101c2565b806375f0a874146104555780638da5cb5b146104805780639335bda3146104ab576101c2565b806339509351116101595780636a486a8e116101335780636a486a8e146103ab5780636ddd1713146103d657806370a0823114610401578063715018a61461043e576101c2565b8063395093511461031857806349bd5a5e146103555780634ada218b14610380576101c2565b806318160ddd1161019557806318160ddd1461025a57806323b872dd1461028557806327c8f835146102c2578063313ce567146102ed576101c2565b806306fdde03146101c7578063095ea7b3146101f25780631694505e1461022f576101c2565b366101c257005b600080fd5b3480156101d357600080fd5b506101dc6106cd565b6040516101e991906120a1565b60405180910390f35b3480156101fe57600080fd5b506102196004803603810190610214919061215c565b61075f565b60405161022691906121b7565b60405180910390f35b34801561023b57600080fd5b50610244610782565b6040516102519190612231565b60405180910390f35b34801561026657600080fd5b5061026f6107a6565b60405161027c919061225b565b60405180910390f35b34801561029157600080fd5b506102ac60048036038101906102a79190612276565b6107b0565b6040516102b991906121b7565b60405180910390f35b3480156102ce57600080fd5b506102d76107df565b6040516102e491906122d8565b60405180910390f35b3480156102f957600080fd5b506103026107e5565b60405161030f919061230f565b60405180910390f35b34801561032457600080fd5b5061033f600480360381019061033a919061215c565b6107ee565b60405161034c91906121b7565b60405180910390f35b34801561036157600080fd5b5061036a610825565b60405161037791906122d8565b60405180910390f35b34801561038c57600080fd5b5061039561084b565b6040516103a291906121b7565b60405180910390f35b3480156103b757600080fd5b506103c061085e565b6040516103cd919061225b565b60405180910390f35b3480156103e257600080fd5b506103eb610864565b6040516103f891906121b7565b60405180910390f35b34801561040d57600080fd5b506104286004803603810190610423919061232a565b610877565b604051610435919061225b565b60405180910390f35b34801561044a57600080fd5b506104536108bf565b005b34801561046157600080fd5b5061046a6108d3565b60405161047791906122d8565b60405180910390f35b34801561048c57600080fd5b506104956108f9565b6040516104a291906122d8565b60405180910390f35b3480156104b757600080fd5b506104d260048036038101906104cd9190612383565b610923565b005b3480156104e057600080fd5b506104e9610939565b6040516104f6919061225b565b60405180910390f35b34801561050b57600080fd5b5061051461093f565b60405161052191906120a1565b60405180910390f35b34801561053657600080fd5b50610551600480360381019061054c919061215c565b6109d1565b60405161055e91906121b7565b60405180910390f35b34801561057357600080fd5b5061058e6004803603810190610589919061215c565b610a48565b60405161059b91906121b7565b60405180910390f35b3480156105b057600080fd5b506105b9610a6b565b6040516105c691906122d8565b60405180910390f35b3480156105db57600080fd5b506105e4610a91565b005b3480156105f257600080fd5b506105fb610b21565b60405161060891906122d8565b60405180910390f35b34801561061d57600080fd5b50610626610b47565b604051610633919061225b565b60405180910390f35b34801561064857600080fd5b50610663600480360381019061065e91906123c3565b610b4d565b604051610670919061225b565b60405180910390f35b34801561068557600080fd5b5061068e610bd4565b60405161069b919061225b565b60405180910390f35b3480156106b057600080fd5b506106cb60048036038101906106c6919061232a565b610bda565b005b6060600480546106dc90612432565b80601f016020809104026020016040519081016040528092919081815260200182805461070890612432565b80156107555780601f1061072a57610100808354040283529160200191610755565b820191906000526020600020905b81548152906001019060200180831161073857829003601f168201915b5050505050905090565b60008061076a610c5d565b9050610777818585610c65565b600191505092915050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b6000806107bb610c5d565b90506107c8858285610e2e565b6107d3858585610eba565b60019150509392505050565b61dead81565b60006012905090565b6000806107f9610c5d565b905061081a81858561080b8589610b4d565b6108159190612492565b610c65565b600191505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a60149054906101000a900460ff1681565b60105481565b600a60159054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108c761158f565b6108d1600061160d565b565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61092b61158f565b61093582826116d3565b5050565b60035481565b60606005805461094e90612432565b80601f016020809104026020016040519081016040528092919081815260200182805461097a90612432565b80156109c75780601f1061099c576101008083540402835291602001916109c7565b820191906000526020600020905b8154815290600101906020018083116109aa57829003601f168201915b5050505050905090565b6000806109dc610c5d565b905060006109ea8286610b4d565b905083811015610a2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2690612538565b60405180910390fd5b610a3c8286868403610c65565b60019250505092915050565b600080610a53610c5d565b9050610a60818585610eba565b600191505092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610a9961158f565b600a60149054906101000a900460ff1615610ae9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae0906125a4565b60405180910390fd5b6001600a60146101000a81548160ff0219169083151502179055506001600a60156101000a81548160ff021916908315150217905550565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600b5481565b610be261158f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4890612636565b60405180910390fd5b610c5a8161160d565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ccb906126c8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3a9061275a565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e21919061225b565b60405180910390a3505050565b6000610e3a8484610b4d565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610eb45781811015610ea6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9d906127c6565b60405180910390fd5b610eb38484848403610c65565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2090612858565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8f906128ea565b60405180910390fd5b600a60149054906101000a900460ff1680610ffc5750601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806110505750601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61108f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108690612956565b60405180910390fd5b600081036110a8576110a383836000611774565b61158a565b60006110b330610877565b90506000600b5482101590508080156110d85750600a60159054906101000a900460ff165b80156110f15750600a60169054906101000a900460ff16155b80156111465750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b801561119c5750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156111f25750601860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611236576001600a60166101000a81548160ff02191690831515021790555061121a6119ea565b6000600a60166101000a81548160ff0219169083151502179055505b6000600a60169054906101000a900460ff16159050601860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806112ec5750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156112f657600090505b6000811561157157601960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561135957506000601054115b156114275761138761271061137960105488611c8c90919063ffffffff16565b611ca290919063ffffffff16565b90506010546013548261139a9190612976565b6113a491906129e7565b601660008282546113b59190612492565b92505081905550601054601154826113cd9190612976565b6113d791906129e7565b601460008282546113e89190612492565b92505081905550601054601254826114009190612976565b61140a91906129e7565b6015600082825461141b9190612492565b9250508190555061154d565b601960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561148257506000600c54115b1561154c576114b06127106114a2600c5488611c8c90919063ffffffff16565b611ca290919063ffffffff16565b9050600c54600f54826114c39190612976565b6114cd91906129e7565b601660008282546114de9190612492565b92505081905550600c54600d54826114f69190612976565b61150091906129e7565b601460008282546115119190612492565b92505081905550600c54600e54826115299190612976565b61153391906129e7565b601560008282546115449190612492565b925050819055505b5b600081111561156257611561873083611774565b5b808561156e9190612a18565b94505b61157c878787611774565b601754601081905550505050505b505050565b611597610c5d565b73ffffffffffffffffffffffffffffffffffffffff166115b56108f9565b73ffffffffffffffffffffffffffffffffffffffff161461160b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160290612a98565b60405180910390fd5b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036117e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117da90612b2a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611852576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611849906128ea565b60405180910390fd5b61185d838383611cb8565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156118e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118da90612bbc565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516119d1919061225b565b60405180910390a36119e4848484611cbd565b50505050565b60006119f530610877565b90506000601554601454601654611a0c9190612492565b611a169190612492565b905060008060028360165486611a2c9190612976565b611a3691906129e7565b611a4091906129e7565b90506000611a578286611cc290919063ffffffff16565b90506000479050611a6782611cd8565b6000611a7c8247611cc290919063ffffffff16565b90506000611aa787611a9960145485611c8c90919063ffffffff16565b611ca290919063ffffffff16565b90506000611ad288611ac460155486611c8c90919063ffffffff16565b611ca290919063ffffffff16565b90506000818385611ae39190612a18565b611aed9190612a18565b9050600060168190555060006014819055506000601581905550600087118015611b175750600081115b15611b6457611b268782611f15565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601654604051611b5b93929190612bdc565b60405180910390a15b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051611baa90612c44565b60006040518083038185875af1925050503d8060008114611be7576040519150601f19603f3d011682016040523d82523d6000602084013e611bec565b606091505b505080985050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051611c3890612c44565b60006040518083038185875af1925050503d8060008114611c75576040519150601f19603f3d011682016040523d82523d6000602084013e611c7a565b606091505b50508098505050505050505050505050565b60008183611c9a9190612976565b905092915050565b60008183611cb091906129e7565b905092915050565b505050565b505050565b60008183611cd09190612a18565b905092915050565b6000600267ffffffffffffffff811115611cf557611cf4612c59565b5b604051908082528060200260200182016040528015611d235781602001602082028036833780820191505090505b5090503081600081518110611d3b57611d3a612c88565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611de0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e049190612ccc565b81600181518110611e1857611e17612c88565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611e7d307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610c65565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401611edf959493929190612df2565b600060405180830381600087803b158015611ef957600080fd5b505af1158015611f0d573d6000803e3d6000fd5b505050505050565b611f40307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610c65565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b8152600401611fc796959493929190612e4c565b60606040518083038185885af1158015611fe5573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061200a9190612ec2565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561204b578082015181840152602081019050612030565b60008484015250505050565b6000601f19601f8301169050919050565b600061207382612011565b61207d818561201c565b935061208d81856020860161202d565b61209681612057565b840191505092915050565b600060208201905081810360008301526120bb8184612068565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006120f3826120c8565b9050919050565b612103816120e8565b811461210e57600080fd5b50565b600081359050612120816120fa565b92915050565b6000819050919050565b61213981612126565b811461214457600080fd5b50565b60008135905061215681612130565b92915050565b60008060408385031215612173576121726120c3565b5b600061218185828601612111565b925050602061219285828601612147565b9150509250929050565b60008115159050919050565b6121b18161219c565b82525050565b60006020820190506121cc60008301846121a8565b92915050565b6000819050919050565b60006121f76121f26121ed846120c8565b6121d2565b6120c8565b9050919050565b6000612209826121dc565b9050919050565b600061221b826121fe565b9050919050565b61222b81612210565b82525050565b60006020820190506122466000830184612222565b92915050565b61225581612126565b82525050565b6000602082019050612270600083018461224c565b92915050565b60008060006060848603121561228f5761228e6120c3565b5b600061229d86828701612111565b93505060206122ae86828701612111565b92505060406122bf86828701612147565b9150509250925092565b6122d2816120e8565b82525050565b60006020820190506122ed60008301846122c9565b92915050565b600060ff82169050919050565b612309816122f3565b82525050565b60006020820190506123246000830184612300565b92915050565b6000602082840312156123405761233f6120c3565b5b600061234e84828501612111565b91505092915050565b6123608161219c565b811461236b57600080fd5b50565b60008135905061237d81612357565b92915050565b6000806040838503121561239a576123996120c3565b5b60006123a885828601612111565b92505060206123b98582860161236e565b9150509250929050565b600080604083850312156123da576123d96120c3565b5b60006123e885828601612111565b92505060206123f985828601612111565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061244a57607f821691505b60208210810361245d5761245c612403565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061249d82612126565b91506124a883612126565b92508282019050808211156124c0576124bf612463565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061252260258361201c565b915061252d826124c6565b604082019050919050565b6000602082019050818103600083015261255181612515565b9050919050565b7f54726164696e6720616c7265616479206163746976652e000000000000000000600082015250565b600061258e60178361201c565b915061259982612558565b602082019050919050565b600060208201905081810360008301526125bd81612581565b9050919050565b7f4f776e61626c653a206e6577206f776e6572206973207468652042616279425460008201527f43207a65726f2061646472657373000000000000000000000000000000000000602082015250565b6000612620602e8361201c565b915061262b826125c4565b604082019050919050565b6000602082019050818103600083015261264f81612613565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006126b260248361201c565b91506126bd82612656565b604082019050919050565b600060208201905081810360008301526126e1816126a5565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061274460228361201c565b915061274f826126e8565b604082019050919050565b6000602082019050818103600083015261277381612737565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006127b0601d8361201c565b91506127bb8261277a565b602082019050919050565b600060208201905081810360008301526127df816127a3565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20426160008201527f6279425443206164647265737300000000000000000000000000000000000000602082015250565b6000612842602d8361201c565b915061284d826127e6565b604082019050919050565b6000602082019050818103600083015261287181612835565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006128d460238361201c565b91506128df82612878565b604082019050919050565b60006020820190508181036000830152612903816128c7565b9050919050565b7f54726164696e67206e6f742079657420656e61626c6564210000000000000000600082015250565b600061294060188361201c565b915061294b8261290a565b602082019050919050565b6000602082019050818103600083015261296f81612933565b9050919050565b600061298182612126565b915061298c83612126565b925082820261299a81612126565b915082820484148315176129b1576129b0612463565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006129f282612126565b91506129fd83612126565b925082612a0d57612a0c6129b8565b5b828204905092915050565b6000612a2382612126565b9150612a2e83612126565b9250828203905081811115612a4657612a45612463565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612a8260208361201c565b9150612a8d82612a4c565b602082019050919050565b60006020820190508181036000830152612ab181612a75565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612b1460258361201c565b9150612b1f82612ab8565b604082019050919050565b60006020820190508181036000830152612b4381612b07565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612ba660268361201c565b9150612bb182612b4a565b604082019050919050565b60006020820190508181036000830152612bd581612b99565b9050919050565b6000606082019050612bf1600083018661224c565b612bfe602083018561224c565b612c0b604083018461224c565b949350505050565b600081905092915050565b50565b6000612c2e600083612c13565b9150612c3982612c1e565b600082019050919050565b6000612c4f82612c21565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050612cc6816120fa565b92915050565b600060208284031215612ce257612ce16120c3565b5b6000612cf084828501612cb7565b91505092915050565b6000819050919050565b6000612d1e612d19612d1484612cf9565b6121d2565b612126565b9050919050565b612d2e81612d03565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612d69816120e8565b82525050565b6000612d7b8383612d60565b60208301905092915050565b6000602082019050919050565b6000612d9f82612d34565b612da98185612d3f565b9350612db483612d50565b8060005b83811015612de5578151612dcc8882612d6f565b9750612dd783612d87565b925050600181019050612db8565b5085935050505092915050565b600060a082019050612e07600083018861224c565b612e146020830187612d25565b8181036040830152612e268186612d94565b9050612e3560608301856122c9565b612e42608083018461224c565b9695505050505050565b600060c082019050612e6160008301896122c9565b612e6e602083018861224c565b612e7b6040830187612d25565b612e886060830186612d25565b612e9560808301856122c9565b612ea260a083018461224c565b979650505050505050565b600081519050612ebc81612130565b92915050565b600080600060608486031215612edb57612eda6120c3565b5b6000612ee986828701612ead565b9350506020612efa86828701612ead565b9250506040612f0b86828701612ead565b915050925092509256fea26469706673582212201385349b1216ee27a71759dd3fe980eae0d1f6c044dd0f5edf5d980a40cdb97664736f6c63430008110033

Deployed Bytecode Sourcemap

28358:8219:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8218:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10407:248;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28435:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9347:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10663:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28643:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9189:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10966:270;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28493:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28705:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28996:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28738:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9518:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1547:103;;;;;;;;;;;;;:::i;:::-;;28530:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;898:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31297:131;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7757:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8437:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11244:511;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9901:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28567:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31110:176;;;;;;;;;;;;;:::i;:::-;;28606:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28841:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10198:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28799:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1805:246;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8218:100;8272:13;8305:5;8298:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8218:100;:::o;10407:248::-;10532:4;10554:13;10570:12;:10;:12::i;:::-;10554:28;;10593:32;10602:5;10609:7;10618:6;10593:8;:32::i;:::-;10643:4;10636:11;;;10407:248;;;;:::o;28435:51::-;;;:::o;9347:108::-;9408:7;9435:12;;9428:19;;9347:108;:::o;10663:295::-;10794:4;10811:15;10829:12;:10;:12::i;:::-;10811:30;;10852:38;10868:4;10874:7;10883:6;10852:15;:38::i;:::-;10901:27;10911:4;10917:2;10921:6;10901:9;:27::i;:::-;10946:4;10939:11;;;10663:295;;;;;:::o;28643:53::-;28689:6;28643:53;:::o;9189:93::-;9247:5;9272:2;9265:9;;9189:93;:::o;10966:270::-;11081:4;11103:13;11119:12;:10;:12::i;:::-;11103:28;;11142:64;11151:5;11158:7;11195:10;11167:25;11177:5;11184:7;11167:9;:25::i;:::-;:38;;;;:::i;:::-;11142:8;:64::i;:::-;11224:4;11217:11;;;10966:270;;;;:::o;28493:28::-;;;;;;;;;;;;;:::o;28705:26::-;;;;;;;;;;;;;:::o;28996:28::-;;;;:::o;28738:23::-;;;;;;;;;;;;;:::o;9518:177::-;9637:7;9669:9;:18;9679:7;9669:18;;;;;;;;;;;;;;;;9662:25;;9518:177;;;:::o;1547:103::-;784:13;:11;:13::i;:::-;1612:30:::1;1639:1;1612:18;:30::i;:::-;1547:103::o:0;28530:30::-;;;;;;;;;;;;;:::o;898:87::-;944:7;971:6;;;;;;;;;;;964:13;;898:87;:::o;31297:131::-;784:13;:11;:13::i;:::-;31379:41:::1;31408:4;31414:5;31379:28;:41::i;:::-;31297:131:::0;;:::o;7757:26::-;;;;:::o;8437:104::-;8493:13;8526:7;8519:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8437:104;:::o;11244:511::-;11370:4;11392:13;11408:12;:10;:12::i;:::-;11392:28;;11431:24;11458:25;11468:5;11475:7;11458:9;:25::i;:::-;11431:52;;11536:15;11516:16;:35;;11494:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;11652:60;11661:5;11668:7;11696:15;11677:16;:34;11652:8;:60::i;:::-;11743:4;11736:11;;;;11244:511;;;;:::o;9901:234::-;10016:4;10038:13;10054:12;:10;:12::i;:::-;10038:28;;10077;10087:5;10094:2;10098:6;10077:9;:28::i;:::-;10123:4;10116:11;;;9901:234;;;;:::o;28567:32::-;;;;;;;;;;;;;:::o;31110:176::-;784:13;:11;:13::i;:::-;31175:14:::1;;;;;;;;;;;31174:15;31166:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;31245:4;31228:14;;:21;;;;;;;;;;;;;;;;;;31274:4;31260:11;;:18;;;;;;;;;;;;;;;;;;31110:176::o:0;28606:30::-;;;;;;;;;;;;;:::o;28841:27::-;;;;:::o;10198:201::-;10332:7;10364:11;:18;10376:5;10364:18;;;;;;;;;;;;;;;:27;10383:7;10364:27;;;;;;;;;;;;;;;;10357:34;;10198:201;;;;:::o;28799:33::-;;;;:::o;1805:246::-;784:13;:11;:13::i;:::-;1928:1:::1;1908:22;;:8;:22;;::::0;1886:118:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2015:28;2034:8;2015:18;:28::i;:::-;1805:246:::0;:::o;181:98::-;234:7;261:10;254:17;;181:98;:::o;13887:380::-;14040:1;14023:19;;:5;:19;;;14015:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14121:1;14102:21;;:7;:21;;;14094:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14205:6;14175:11;:18;14187:5;14175:18;;;;;;;;;;;;;;;:27;14194:7;14175:27;;;;;;;;;;;;;;;:36;;;;14243:7;14227:32;;14236:5;14227:32;;;14252:6;14227:32;;;;;;:::i;:::-;;;;;;;;13887:380;;;:::o;14275:502::-;14410:24;14437:25;14447:5;14454:7;14437:9;:25::i;:::-;14410:52;;14497:17;14477:16;:37;14473:297;;14577:6;14557:16;:26;;14531:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;14692:51;14701:5;14708:7;14736:6;14717:16;:25;14692:8;:51::i;:::-;14473:297;14399:378;14275:502;;;:::o;31625:2441::-;31773:1;31757:18;;:4;:18;;;31749:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;31858:1;31844:16;;:2;:16;;;31836:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;31919:14;;;;;;;;;;;:51;;;;31937:27;:33;31965:4;31937:33;;;;;;;;;;;;;;;;;;;;;;;;;31919:51;:86;;;;31974:27;:31;32002:2;31974:31;;;;;;;;;;;;;;;;;;;;;;;;;31919:86;31911:123;;;;;;;;;;;;:::i;:::-;;;;;;;;;32059:1;32049:6;:11;32045:93;;32077:28;32093:4;32099:2;32103:1;32077:15;:28::i;:::-;32120:7;;32045:93;32152:28;32183:24;32201:4;32183:9;:24::i;:::-;32152:55;;32220:12;32259:18;;32235:20;:42;;32220:57;;32308:7;:35;;;;;32332:11;;;;;;;;;;;32308:35;:48;;;;;32347:9;;;;;;;;;;;32346:10;32308:48;:73;;;;;32358:17;:23;32376:4;32358:23;;;;;;;;;;;;;;;;;;;;;;;;;32308:73;:124;;;;;32399:27;:33;32427:4;32399:33;;;;;;;;;;;;;;;;;;;;;;;;;32398:34;32308:124;:173;;;;;32450:27;:31;32478:2;32450:31;;;;;;;;;;;;;;;;;;;;;;;;;32449:32;32308:173;32290:308;;;32520:4;32508:9;;:16;;;;;;;;;;;;;;;;;;32541:11;:9;:11::i;:::-;32581:5;32569:9;;:17;;;;;;;;;;;;;;;;;;32290:308;32610:12;32626:9;;;;;;;;;;;32625:10;32610:25;;32652:27;:33;32680:4;32652:33;;;;;;;;;;;;;;;;;;;;;;;;;:68;;;;32689:27;:31;32717:2;32689:31;;;;;;;;;;;;;;;;;;;;;;;;;32652:68;32648:116;;;32747:5;32737:15;;32648:116;32776:12;32809:7;32805:1169;;;32861:17;:21;32879:2;32861:21;;;;;;;;;;;;;;;;;;;;;;;;;:42;;;;;32902:1;32886:13;;:17;32861:42;32857:968;;;32931:36;32961:5;32931:25;32942:13;;32931:6;:10;;:25;;;;:::i;:::-;:29;;:36;;;;:::i;:::-;32924:43;;33080:13;;33038:17;;33031:4;:24;;;;:::i;:::-;33030:63;;;;:::i;:::-;32986:19;;:107;;;;;;;:::i;:::-;;;;;;;;33206:13;;33164:17;;33157:4;:24;;;;:::i;:::-;33156:63;;;;:::i;:::-;33112:19;;:107;;;;;;;:::i;:::-;;;;;;;;33336:13;;33292:19;;33285:4;:26;;;;:::i;:::-;33284:65;;;;:::i;:::-;33238:21;;:111;;;;;;;:::i;:::-;;;;;;;;32857:968;;;33411:17;:23;33429:4;33411:23;;;;;;;;;;;;;;;;;;;;;;;;;:43;;;;;33453:1;33438:12;;:16;33411:43;33407:418;;;33482:35;33511:5;33482:24;33493:12;;33482:6;:10;;:24;;;;:::i;:::-;:28;;:35;;;;:::i;:::-;33475:42;;33587:12;;33567:16;;33560:4;:23;;;;:::i;:::-;33559:40;;;;:::i;:::-;33536:19;;:63;;;;;;;:::i;:::-;;;;;;;;33669:12;;33649:16;;33642:4;:23;;;;:::i;:::-;33641:40;;;;:::i;:::-;33618:19;;:63;;;;;;;:::i;:::-;;;;;;;;33797:12;;33754:18;;33747:4;:25;;;;:::i;:::-;33746:63;;;;:::i;:::-;33700:21;;:109;;;;;;;:::i;:::-;;;;;;;;33407:418;32857:968;33852:1;33845:4;:8;33841:91;;;33874:42;33890:4;33904;33911;33874:15;:42::i;:::-;33841:91;33958:4;33948:14;;;;;:::i;:::-;;;32805:1169;33986:33;34002:4;34008:2;34012:6;33986:15;:33::i;:::-;34046:12;;34030:13;:28;;;;31738:2328;;;;31625:2441;;;;:::o;1063:132::-;1138:12;:10;:12::i;:::-;1127:23;;:7;:5;:7::i;:::-;:23;;;1119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1063:132::o;2211:191::-;2285:16;2304:6;;;;;;;;;;;2285:25;;2330:8;2321:6;;:17;;;;;;;;;;;;;;;;;;2385:8;2354:40;;2375:8;2354:40;;;;;;;;;;;;2274:128;2211:191;:::o;31438:179::-;31548:5;31522:17;:23;31540:4;31522:23;;;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;31603:5;31569:40;;31597:4;31569:40;;;;;;;;;;;;31438:179;;:::o;11763:877::-;11910:1;11894:18;;:4;:18;;;11886:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11987:1;11973:16;;:2;:16;;;11965:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;12042:38;12063:4;12069:2;12073:6;12042:20;:38::i;:::-;12093:19;12115:9;:15;12125:4;12115:15;;;;;;;;;;;;;;;;12093:37;;12178:6;12163:11;:21;;12141:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;12318:6;12304:11;:20;12286:9;:15;12296:4;12286:15;;;;;;;;;;;;;;;:38;;;;12521:6;12504:9;:13;12514:2;12504:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;12571:2;12556:26;;12565:4;12556:26;;;12575:6;12556:26;;;;;;:::i;:::-;;;;;;;;12595:37;12615:4;12621:2;12625:6;12595:19;:37::i;:::-;11875:765;11763:877;;;:::o;34965:1607::-;35006:23;35032:24;35050:4;35032:9;:24::i;:::-;35006:50;;35067:25;35165:21;;35130:19;;35095;;:54;;;;:::i;:::-;:91;;;;:::i;:::-;35067:119;;35197:12;35224:23;35338:1;35305:17;35269:19;;35251:15;:37;;;;:::i;:::-;35250:72;;;;:::i;:::-;:89;;;;:::i;:::-;35224:115;;35350:26;35379:36;35399:15;35379;:19;;:36;;;;:::i;:::-;35350:65;;35428:25;35456:21;35428:49;;35490:37;35508:18;35490:17;:37::i;:::-;35540:18;35561:44;35587:17;35561:21;:25;;:44;;;;:::i;:::-;35540:65;;35618:23;35644:82;35698:17;35644:35;35659:19;;35644:10;:14;;:35;;;;:::i;:::-;:39;;:82;;;;:::i;:::-;35618:108;;35739:25;35767:84;35823:17;35767:37;35782:21;;35767:10;:14;;:37;;;;:::i;:::-;:41;;:84;;;;:::i;:::-;35739:112;;35864:23;35947:17;35916:15;35890:10;:41;;;;:::i;:::-;:74;;;;:::i;:::-;35864:100;;35999:1;35977:19;:23;;;;36033:1;36011:19;:23;;;;36069:1;36045:21;:25;;;;36105:1;36087:15;:19;:42;;;;;36128:1;36110:15;:19;36087:42;36083:280;;;36146:47;36160:15;36177;36146:13;:47::i;:::-;36213:138;36246:18;36283:15;36317:19;;36213:138;;;;;;;;:::i;:::-;;;;;;;;36083:280;36397:17;;;;;;;;;;;36389:31;;36428:17;36389:61;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36375:75;;;;;36485:15;;;;;;;;;;;36477:29;;36528:21;36477:87;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36463:101;;;;;34995:1577;;;;;;;;;;34965:1607::o;18404:98::-;18462:7;18493:1;18489;:5;;;;:::i;:::-;18482:12;;18404:98;;;;:::o;18811:::-;18869:7;18900:1;18896;:5;;;;:::i;:::-;18889:12;;18811:98;;;;:::o;14785:125::-;;;;:::o;14918:124::-;;;;:::o;18047:98::-;18105:7;18136:1;18132;:5;;;;:::i;:::-;18125:12;;18047:98;;;;:::o;34074:503::-;34142:21;34180:1;34166:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34142:40;;34211:4;34193;34198:1;34193:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;34237:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;34227:4;34232:1;34227:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;34272:62;34289:4;34304:15;34322:11;34272:8;:62::i;:::-;34373:15;:66;;;34454:11;34480:1;34496:4;34523;34543:15;34373:196;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34131:446;34074:503;:::o;34585:372::-;34668:62;34685:4;34700:15;34718:11;34668:8;:62::i;:::-;34743:15;:31;;;34782:9;34815:4;34835:11;34861:1;34877;34893:15;;;;;;;;;;;34923;34743:206;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;34585: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:180::-;8293:77;8290:1;8283:88;8390:4;8387:1;8380:15;8414:4;8411:1;8404:15;8431:191;8471:3;8490:20;8508:1;8490:20;:::i;:::-;8485:25;;8524:20;8542:1;8524:20;:::i;:::-;8519:25;;8567:1;8564;8560:9;8553:16;;8588:3;8585:1;8582:10;8579:36;;;8595:18;;:::i;:::-;8579:36;8431:191;;;;:::o;8628:224::-;8768:34;8764:1;8756:6;8752:14;8745:58;8837:7;8832:2;8824:6;8820:15;8813:32;8628:224;:::o;8858:366::-;9000:3;9021:67;9085:2;9080:3;9021:67;:::i;:::-;9014:74;;9097:93;9186:3;9097:93;:::i;:::-;9215:2;9210:3;9206:12;9199:19;;8858:366;;;:::o;9230:419::-;9396:4;9434:2;9423:9;9419:18;9411:26;;9483:9;9477:4;9473:20;9469:1;9458:9;9454:17;9447:47;9511:131;9637:4;9511:131;:::i;:::-;9503:139;;9230:419;;;:::o;9655:173::-;9795:25;9791:1;9783:6;9779:14;9772:49;9655:173;:::o;9834:366::-;9976:3;9997:67;10061:2;10056:3;9997:67;:::i;:::-;9990:74;;10073:93;10162:3;10073:93;:::i;:::-;10191:2;10186:3;10182:12;10175:19;;9834:366;;;:::o;10206:419::-;10372:4;10410:2;10399:9;10395:18;10387:26;;10459:9;10453:4;10449:20;10445:1;10434:9;10430:17;10423:47;10487:131;10613:4;10487:131;:::i;:::-;10479:139;;10206:419;;;:::o;10631:233::-;10771:34;10767:1;10759:6;10755:14;10748:58;10840:16;10835:2;10827:6;10823:15;10816:41;10631:233;:::o;10870:366::-;11012:3;11033:67;11097:2;11092:3;11033:67;:::i;:::-;11026:74;;11109:93;11198:3;11109:93;:::i;:::-;11227:2;11222:3;11218:12;11211:19;;10870:366;;;:::o;11242:419::-;11408:4;11446:2;11435:9;11431:18;11423:26;;11495:9;11489:4;11485:20;11481:1;11470:9;11466:17;11459:47;11523:131;11649:4;11523:131;:::i;:::-;11515:139;;11242:419;;;:::o;11667:223::-;11807:34;11803:1;11795:6;11791:14;11784:58;11876:6;11871:2;11863:6;11859:15;11852:31;11667:223;:::o;11896:366::-;12038:3;12059:67;12123:2;12118:3;12059:67;:::i;:::-;12052:74;;12135:93;12224:3;12135:93;:::i;:::-;12253:2;12248:3;12244:12;12237:19;;11896:366;;;:::o;12268:419::-;12434:4;12472:2;12461:9;12457:18;12449:26;;12521:9;12515:4;12511:20;12507:1;12496:9;12492:17;12485:47;12549:131;12675:4;12549:131;:::i;:::-;12541:139;;12268:419;;;:::o;12693:221::-;12833:34;12829:1;12821:6;12817:14;12810:58;12902:4;12897:2;12889:6;12885:15;12878:29;12693:221;:::o;12920:366::-;13062:3;13083:67;13147:2;13142:3;13083:67;:::i;:::-;13076:74;;13159:93;13248:3;13159:93;:::i;:::-;13277:2;13272:3;13268:12;13261:19;;12920:366;;;:::o;13292:419::-;13458:4;13496:2;13485:9;13481:18;13473:26;;13545:9;13539:4;13535:20;13531:1;13520:9;13516:17;13509:47;13573:131;13699:4;13573:131;:::i;:::-;13565:139;;13292:419;;;:::o;13717:179::-;13857:31;13853:1;13845:6;13841:14;13834:55;13717:179;:::o;13902:366::-;14044:3;14065:67;14129:2;14124:3;14065:67;:::i;:::-;14058:74;;14141:93;14230:3;14141:93;:::i;:::-;14259:2;14254:3;14250:12;14243:19;;13902:366;;;:::o;14274:419::-;14440:4;14478:2;14467:9;14463:18;14455:26;;14527:9;14521:4;14517:20;14513:1;14502:9;14498:17;14491:47;14555:131;14681:4;14555:131;:::i;:::-;14547:139;;14274:419;;;:::o;14699:232::-;14839:34;14835:1;14827:6;14823:14;14816:58;14908:15;14903:2;14895:6;14891:15;14884:40;14699:232;:::o;14937:366::-;15079:3;15100:67;15164:2;15159:3;15100:67;:::i;:::-;15093:74;;15176:93;15265:3;15176:93;:::i;:::-;15294:2;15289:3;15285:12;15278:19;;14937:366;;;:::o;15309:419::-;15475:4;15513:2;15502:9;15498:18;15490:26;;15562:9;15556:4;15552:20;15548:1;15537:9;15533:17;15526:47;15590:131;15716:4;15590:131;:::i;:::-;15582:139;;15309:419;;;:::o;15734:222::-;15874:34;15870:1;15862:6;15858:14;15851:58;15943:5;15938:2;15930:6;15926:15;15919:30;15734:222;:::o;15962:366::-;16104:3;16125:67;16189:2;16184:3;16125:67;:::i;:::-;16118:74;;16201:93;16290:3;16201:93;:::i;:::-;16319:2;16314:3;16310:12;16303:19;;15962:366;;;:::o;16334:419::-;16500:4;16538:2;16527:9;16523:18;16515:26;;16587:9;16581:4;16577:20;16573:1;16562:9;16558:17;16551:47;16615:131;16741:4;16615:131;:::i;:::-;16607:139;;16334:419;;;:::o;16759:174::-;16899:26;16895:1;16887:6;16883:14;16876:50;16759:174;:::o;16939:366::-;17081:3;17102:67;17166:2;17161:3;17102:67;:::i;:::-;17095:74;;17178:93;17267:3;17178:93;:::i;:::-;17296:2;17291:3;17287:12;17280:19;;16939:366;;;:::o;17311:419::-;17477:4;17515:2;17504:9;17500:18;17492:26;;17564:9;17558:4;17554:20;17550:1;17539:9;17535:17;17528:47;17592:131;17718:4;17592:131;:::i;:::-;17584:139;;17311:419;;;:::o;17736:410::-;17776:7;17799:20;17817:1;17799:20;:::i;:::-;17794:25;;17833:20;17851:1;17833:20;:::i;:::-;17828:25;;17888:1;17885;17881:9;17910:30;17928:11;17910:30;:::i;:::-;17899:41;;18089:1;18080:7;18076:15;18073:1;18070:22;18050:1;18043:9;18023:83;18000:139;;18119:18;;:::i;:::-;18000:139;17784:362;17736:410;;;;:::o;18152:180::-;18200:77;18197:1;18190:88;18297:4;18294:1;18287:15;18321:4;18318:1;18311:15;18338:185;18378:1;18395:20;18413:1;18395:20;:::i;:::-;18390:25;;18429:20;18447:1;18429:20;:::i;:::-;18424:25;;18468:1;18458:35;;18473:18;;:::i;:::-;18458:35;18515:1;18512;18508:9;18503:14;;18338:185;;;;:::o;18529:194::-;18569:4;18589:20;18607:1;18589:20;:::i;:::-;18584:25;;18623:20;18641:1;18623:20;:::i;:::-;18618:25;;18667:1;18664;18660:9;18652:17;;18691:1;18685:4;18682:11;18679:37;;;18696:18;;:::i;:::-;18679:37;18529:194;;;;:::o;18729:182::-;18869:34;18865:1;18857:6;18853:14;18846:58;18729:182;:::o;18917:366::-;19059:3;19080:67;19144:2;19139:3;19080:67;:::i;:::-;19073:74;;19156:93;19245:3;19156:93;:::i;:::-;19274:2;19269:3;19265:12;19258:19;;18917:366;;;:::o;19289:419::-;19455:4;19493:2;19482:9;19478:18;19470:26;;19542:9;19536:4;19532:20;19528:1;19517:9;19513:17;19506:47;19570:131;19696:4;19570:131;:::i;:::-;19562:139;;19289:419;;;:::o;19714:224::-;19854:34;19850:1;19842:6;19838:14;19831:58;19923:7;19918:2;19910:6;19906:15;19899:32;19714:224;:::o;19944:366::-;20086:3;20107:67;20171:2;20166:3;20107:67;:::i;:::-;20100:74;;20183:93;20272:3;20183:93;:::i;:::-;20301:2;20296:3;20292:12;20285:19;;19944:366;;;:::o;20316:419::-;20482:4;20520:2;20509:9;20505:18;20497:26;;20569:9;20563:4;20559:20;20555:1;20544:9;20540:17;20533:47;20597:131;20723:4;20597:131;:::i;:::-;20589:139;;20316:419;;;:::o;20741:225::-;20881:34;20877:1;20869:6;20865:14;20858:58;20950:8;20945:2;20937:6;20933:15;20926:33;20741:225;:::o;20972:366::-;21114:3;21135:67;21199:2;21194:3;21135:67;:::i;:::-;21128:74;;21211:93;21300:3;21211:93;:::i;:::-;21329:2;21324:3;21320:12;21313:19;;20972:366;;;:::o;21344:419::-;21510:4;21548:2;21537:9;21533:18;21525:26;;21597:9;21591:4;21587:20;21583:1;21572:9;21568:17;21561:47;21625:131;21751:4;21625:131;:::i;:::-;21617:139;;21344:419;;;:::o;21769:442::-;21918:4;21956:2;21945:9;21941:18;21933:26;;21969:71;22037:1;22026:9;22022:17;22013:6;21969:71;:::i;:::-;22050:72;22118:2;22107:9;22103:18;22094:6;22050:72;:::i;:::-;22132;22200:2;22189:9;22185:18;22176:6;22132:72;:::i;:::-;21769:442;;;;;;:::o;22217:147::-;22318:11;22355:3;22340:18;;22217:147;;;;:::o;22370:114::-;;:::o;22490:398::-;22649:3;22670:83;22751:1;22746:3;22670:83;:::i;:::-;22663:90;;22762:93;22851:3;22762:93;:::i;:::-;22880:1;22875:3;22871:11;22864:18;;22490:398;;;:::o;22894:379::-;23078:3;23100:147;23243:3;23100:147;:::i;:::-;23093:154;;23264:3;23257:10;;22894:379;;;:::o;23279:180::-;23327:77;23324:1;23317:88;23424:4;23421:1;23414:15;23448:4;23445:1;23438:15;23465:180;23513:77;23510:1;23503:88;23610:4;23607:1;23600:15;23634:4;23631:1;23624:15;23651:143;23708:5;23739:6;23733:13;23724:22;;23755:33;23782:5;23755:33;:::i;:::-;23651:143;;;;:::o;23800:351::-;23870:6;23919:2;23907:9;23898:7;23894:23;23890:32;23887:119;;;23925:79;;:::i;:::-;23887:119;24045:1;24070:64;24126:7;24117:6;24106:9;24102:22;24070:64;:::i;:::-;24060:74;;24016:128;23800:351;;;;:::o;24157:85::-;24202:7;24231:5;24220:16;;24157:85;;;:::o;24248:158::-;24306:9;24339:61;24357:42;24366:32;24392:5;24366:32;:::i;:::-;24357:42;:::i;:::-;24339:61;:::i;:::-;24326:74;;24248:158;;;:::o;24412:147::-;24507:45;24546:5;24507:45;:::i;:::-;24502:3;24495:58;24412:147;;:::o;24565:114::-;24632:6;24666:5;24660:12;24650:22;;24565:114;;;:::o;24685:184::-;24784:11;24818:6;24813:3;24806:19;24858:4;24853:3;24849:14;24834:29;;24685:184;;;;:::o;24875:132::-;24942:4;24965:3;24957:11;;24995:4;24990:3;24986:14;24978:22;;24875:132;;;:::o;25013:108::-;25090:24;25108:5;25090:24;:::i;:::-;25085:3;25078:37;25013:108;;:::o;25127:179::-;25196:10;25217:46;25259:3;25251:6;25217:46;:::i;:::-;25295:4;25290:3;25286:14;25272:28;;25127:179;;;;:::o;25312:113::-;25382:4;25414;25409:3;25405:14;25397:22;;25312:113;;;:::o;25461:732::-;25580:3;25609:54;25657:5;25609:54;:::i;:::-;25679:86;25758:6;25753:3;25679:86;:::i;:::-;25672:93;;25789:56;25839:5;25789:56;:::i;:::-;25868:7;25899:1;25884:284;25909:6;25906:1;25903:13;25884:284;;;25985:6;25979:13;26012:63;26071:3;26056:13;26012:63;:::i;:::-;26005:70;;26098:60;26151:6;26098:60;:::i;:::-;26088:70;;25944:224;25931:1;25928;25924:9;25919:14;;25884:284;;;25888:14;26184:3;26177:10;;25585:608;;;25461:732;;;;:::o;26199:831::-;26462:4;26500:3;26489:9;26485:19;26477:27;;26514:71;26582:1;26571:9;26567:17;26558:6;26514:71;:::i;:::-;26595:80;26671:2;26660:9;26656:18;26647:6;26595:80;:::i;:::-;26722:9;26716:4;26712:20;26707:2;26696:9;26692:18;26685:48;26750:108;26853:4;26844:6;26750:108;:::i;:::-;26742:116;;26868:72;26936:2;26925:9;26921:18;26912:6;26868:72;:::i;:::-;26950:73;27018:3;27007:9;27003:19;26994:6;26950:73;:::i;:::-;26199:831;;;;;;;;:::o;27036:807::-;27285:4;27323:3;27312:9;27308:19;27300:27;;27337:71;27405:1;27394:9;27390:17;27381:6;27337:71;:::i;:::-;27418:72;27486:2;27475:9;27471:18;27462:6;27418:72;:::i;:::-;27500:80;27576:2;27565:9;27561:18;27552:6;27500:80;:::i;:::-;27590;27666:2;27655:9;27651:18;27642:6;27590:80;:::i;:::-;27680:73;27748:3;27737:9;27733:19;27724:6;27680:73;:::i;:::-;27763;27831:3;27820:9;27816:19;27807:6;27763:73;:::i;:::-;27036:807;;;;;;;;;:::o;27849:143::-;27906:5;27937:6;27931:13;27922:22;;27953:33;27980:5;27953:33;:::i;:::-;27849:143;;;;:::o;27998:663::-;28086:6;28094;28102;28151:2;28139:9;28130:7;28126:23;28122:32;28119:119;;;28157:79;;:::i;:::-;28119:119;28277:1;28302:64;28358:7;28349:6;28338:9;28334:22;28302:64;:::i;:::-;28292:74;;28248:128;28415:2;28441:64;28497:7;28488:6;28477:9;28473:22;28441:64;:::i;:::-;28431:74;;28386:129;28554:2;28580:64;28636:7;28627:6;28616:9;28612:22;28580:64;:::i;:::-;28570:74;;28525:129;27998:663;;;;;:::o

Swarm Source

ipfs://1385349b1216ee27a71759dd3fe980eae0d1f6c044dd0f5edf5d980a40cdb976

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  ]
[ 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.