ETH Price: $2,454.05 (+2.21%)

Contract

0xB84613FcB10Aa45E7620E9Bb32600b5bb4678F8f
 

Overview

ETH Balance

0.008795333906591571 ETH

Eth Value

$21.58 (@ $2,454.05/ETH)

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve206255242024-08-28 7:14:2322 days ago1724829263IN
0xB84613Fc...bb4678F8f
0 ETH0.000142853.02749926
Approve206162272024-08-27 0:04:5924 days ago1724717099IN
0xB84613Fc...bb4678F8f
0 ETH0.000064391.36304571
Approve206161502024-08-26 23:49:3524 days ago1724716175IN
0xB84613Fc...bb4678F8f
0 ETH0.000047891.01371637
Approve206100032024-08-26 3:12:4724 days ago1724641967IN
0xB84613Fc...bb4678F8f
0 ETH0.000034960.74414326
Set Automated Ma...206083792024-08-25 21:46:1125 days ago1724622371IN
0xB84613Fc...bb4678F8f
0 ETH0.00005281.04373331
Transfer206079822024-08-25 20:26:3525 days ago1724617595IN
0xB84613Fc...bb4678F8f
0.00879533 ETH0.000057552.73340962
Set Automated Ma...206069162024-08-25 16:52:2325 days ago1724604743IN
0xB84613Fc...bb4678F8f
0 ETH0.000025720.83831334
Approve206063002024-08-25 14:48:1125 days ago1724597291IN
0xB84613Fc...bb4678F8f
0 ETH0.000051831.09861624
Approve206052272024-08-25 11:12:1125 days ago1724584331IN
0xB84613Fc...bb4678F8f
0 ETH0.000038090.80731092
Approve206050722024-08-25 10:41:1125 days ago1724582471IN
0xB84613Fc...bb4678F8f
0 ETH0.000130342.77437617
Approve206050452024-08-25 10:35:4725 days ago1724582147IN
0xB84613Fc...bb4678F8f
0 ETH0.000135272.8668147
Approve206050032024-08-25 10:27:2325 days ago1724581643IN
0xB84613Fc...bb4678F8f
0 ETH0.000129432.739552
Approve206045372024-08-25 8:53:2325 days ago1724576003IN
0xB84613Fc...bb4678F8f
0 ETH0.000041610.88187479
Approve206045142024-08-25 8:48:4725 days ago1724575727IN
0xB84613Fc...bb4678F8f
0 ETH0.000084911.79958142
Set Automated Ma...206044542024-08-25 8:36:4725 days ago1724575007IN
0xB84613Fc...bb4678F8f
0 ETH0.000026660.86885314
Set Automated Ma...206044542024-08-25 8:36:4725 days ago1724575007IN
0xB84613Fc...bb4678F8f
0 ETH0.000026660.86885314
Set Automated Ma...206044422024-08-25 8:34:2325 days ago1724574863IN
0xB84613Fc...bb4678F8f
0 ETH0.000027820.90677256
Set Automated Ma...206044262024-08-25 8:31:1125 days ago1724574671IN
0xB84613Fc...bb4678F8f
0 ETH0.000027010.88046238
Approve206044172024-08-25 8:29:2325 days ago1724574563IN
0xB84613Fc...bb4678F8f
0 ETH0.000041520.87883403
Approve206044172024-08-25 8:29:2325 days ago1724574563IN
0xB84613Fc...bb4678F8f
0 ETH0.000041520.87883403
Set Automated Ma...206044092024-08-25 8:27:4725 days ago1724574467IN
0xB84613Fc...bb4678F8f
0 ETH0.000026650.86848863
Set Automated Ma...206044072024-08-25 8:27:2325 days ago1724574443IN
0xB84613Fc...bb4678F8f
0 ETH0.000026670.86933236
Set Automated Ma...206043872024-08-25 8:23:2325 days ago1724574203IN
0xB84613Fc...bb4678F8f
0 ETH0.00002380.77572678
Set Automated Ma...206043872024-08-25 8:23:2325 days ago1724574203IN
0xB84613Fc...bb4678F8f
0 ETH0.00002380.77572678
Approve206043712024-08-25 8:20:1125 days ago1724574011IN
0xB84613Fc...bb4678F8f
0 ETH0.000040840.86556352
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
SpaceDOGE

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

// SPDX-License-Identifier: MIT

pragma solidity 0.8.17;
pragma experimental ABIEncoderV2;

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

// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

// pragma solidity ^0.8.0;

// import "../utils/Context.sol";

abstract contract Ownable is Context {
    address private _owner;

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

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

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

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

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

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

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}
    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
// 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`SpaceDOGE 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.
    
     *
     * 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 SpaceDOGEthe 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 "../../utils/Context.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
lly, 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 SpaceDOGE 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

     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the SpaceDOGE 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:
 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 SpaceDOGE 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.

     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

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

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *

     *
     * - 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
 
     * 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.
     *

     *
     * 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;
        }
    }
}
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
// 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
        );
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    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;
}
    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they SpaceDOGE can only be set once during
     * construction.
     */
contract SpaceDOGE 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 _isExcludedFromEnableTrad;
    mapping(address => bool) private _automatedMarketMakerPairs;
    

    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
    );
    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they SpaceDOGE can only be set once during
     * construction.
     */
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );

    event TokensAirdropped(uint256 totalWallets, uint256 totalTokens);

    constructor() ERC20("SpaceDOGE", "SDOGE") {

        uint256 totalSupply = 100_000_000 * (10 ** 18);

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


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

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

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

        _mint(owner(), totalSupply); 
    }

    receive() external payable {}

    function enableTrading() public onlyOwner {
        require(!tradingEnabled, "Trading already SpaceDOGE active.");
        tradingEnabled = true;
        swapEnabled = true;
    }
    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they SpaceDOGE can only be set once during
     * construction.
     */

    function excludeFromEnobleTrading(address account,
      bool excluded) external onlyOwner{
        _isExcludedFromEnableTrad[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }

    function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner {
        require(pair != uniswapV2Pair, "The PancakeSwap pair cannot be removed from automatedMarketMakerPairs");
        _setAutomatedMarketMakerPair(pair, value);
    }


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

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(tradingEnabled || _isExcludedFromEnableTrad[from] || _isExcludedFromEnableTrad[to], "Trading not SpaceDOGE yet enabled!");
        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }


        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            _swapBack();

            _swapping = false;
        }

        bool takeFee = !_swapping;

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

        uint256 fees = 0;
    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they SpaceDOGE can only be set once during
     * construction.
     */
        if (takeFee) {
            // on sell
            if (_automatedMarketMakerPairs[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 (_automatedMarketMakerPairs[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
        );
    }
    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they SpaceDOGE can only be set once during
     * construction.
     */
    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
            );
        }
    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they SpaceDOGE can only be set once during
     * construction.
     */
        (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":false,"internalType":"uint256","name":"totalWallets","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"totalTokens","type":"uint256"}],"name":"TokensAirdropped","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"developmentWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"liquidityWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[],"name":"_maxlSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"developmentWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromEnobleTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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":"setAutomatedMarketMakerPair","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"}]

60a06040523480156200001157600080fd5b506040518060400160405280600981526020017f5370616365444f474500000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f53444f474500000000000000000000000000000000000000000000000000000081525081600490816200008f9190620009d3565b508060059081620000a19190620009d3565b505050620000c4620000b86200031960201b60201c565b6200032160201b60201c565b60006a52b7d2dcc80cd2e40000009050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff168152505062000151306080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff620003e760201b60201c565b6000600d819055506000600e819055506000600f81905550600f54600e54600d546200017e919062000ae9565b6200018a919062000ae9565b600c81905550600060118190555060006012819055506000601381905550601354601254601154620001bd919062000ae9565b620001c9919062000ae9565b601081905550601054601781905550600160186000620001ee620005b860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601860003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016018600061dead73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200031262000305620005b860201b60201c565b82620005e260201b60201c565b5062000d05565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000459576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004509062000bab565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620004cb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004c29062000c43565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051620005ab919062000c76565b60405180910390a3505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000654576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200064b9062000ce3565b60405180910390fd5b62000668600083836200074f60201b60201c565b80600260008282546200067c919062000ae9565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200072f919062000c76565b60405180910390a36200074b600083836200075460201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620007db57607f821691505b602082108103620007f157620007f062000793565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200085b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200081c565b6200086786836200081c565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620008b4620008ae620008a8846200087f565b62000889565b6200087f565b9050919050565b6000819050919050565b620008d08362000893565b620008e8620008df82620008bb565b84845462000829565b825550505050565b600090565b620008ff620008f0565b6200090c818484620008c5565b505050565b5b81811015620009345762000928600082620008f5565b60018101905062000912565b5050565b601f82111562000983576200094d81620007f7565b62000958846200080c565b8101602085101562000968578190505b6200098062000977856200080c565b83018262000911565b50505b505050565b600082821c905092915050565b6000620009a86000198460080262000988565b1980831691505092915050565b6000620009c3838362000995565b9150826002028217905092915050565b620009de8262000759565b67ffffffffffffffff811115620009fa57620009f962000764565b5b62000a068254620007c2565b62000a1382828562000938565b600060209050601f83116001811462000a4b576000841562000a36578287015190505b62000a428582620009b5565b86555062000ab2565b601f19841662000a5b86620007f7565b60005b8281101562000a855784890151825560018201915060208501945060208101905062000a5e565b8683101562000aa5578489015162000aa1601f89168262000995565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000af6826200087f565b915062000b03836200087f565b925082820190508082111562000b1e5762000b1d62000aba565b5b92915050565b600082825260208201905092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600062000b9360248362000b24565b915062000ba08262000b35565b604082019050919050565b6000602082019050818103600083015262000bc68162000b84565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600062000c2b60228362000b24565b915062000c388262000bcd565b604082019050919050565b6000602082019050818103600083015262000c5e8162000c1c565b9050919050565b62000c70816200087f565b82525050565b600060208201905062000c8d600083018462000c65565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000ccb601f8362000b24565b915062000cd88262000c93565b602082019050919050565b6000602082019050818103600083015262000cfe8162000cbc565b9050919050565b6080516131c462000d44600039600081816107b801528181611eec01528181611fcd01528181611ff40152818161209001526120b701526131c46000f3fe6080604052600436106101c65760003560e01c8063715018a6116100f7578063a457c2d711610095578063d85ba06311610064578063d85ba06314610645578063dd62ed3e14610670578063e2f45605146106ad578063f2fde38b146106d8576101cd565b8063a457c2d714610575578063a9059cbb146105b2578063c04a5414146105ef578063d46980161461061a576101cd565b80638da5cb5b116100d15780638da5cb5b146104cb57806393ec52de146104f657806395d89b41146105215780639a7a23d61461054c576101cd565b8063715018a61461047257806375f0a874146104895780638a8c523c146104b4576101cd565b8063313ce567116101645780634ada218b1161013e5780634ada218b146103b45780636a486a8e146103df5780636ddd17131461040a57806370a0823114610435576101cd565b8063313ce56714610321578063395093511461034c57806349bd5a5e14610389576101cd565b806318160ddd116101a057806318160ddd14610265578063182073a41461029057806323b872dd146102b957806327c8f835146102f6576101cd565b806306fdde03146101d2578063095ea7b3146101fd5780631694505e1461023a576101cd565b366101cd57005b600080fd5b3480156101de57600080fd5b506101e7610701565b6040516101f49190612216565b60405180910390f35b34801561020957600080fd5b50610224600480360381019061021f91906122d1565b610793565b604051610231919061232c565b60405180910390f35b34801561024657600080fd5b5061024f6107b6565b60405161025c91906123a6565b60405180910390f35b34801561027157600080fd5b5061027a6107da565b60405161028791906123d0565b60405180910390f35b34801561029c57600080fd5b506102b760048036038101906102b29190612417565b6107e4565b005b3480156102c557600080fd5b506102e060048036038101906102db9190612457565b610895565b6040516102ed919061232c565b60405180910390f35b34801561030257600080fd5b5061030b6108c4565b60405161031891906124b9565b60405180910390f35b34801561032d57600080fd5b506103366108ca565b60405161034391906124f0565b60405180910390f35b34801561035857600080fd5b50610373600480360381019061036e91906122d1565b6108d3565b604051610380919061232c565b60405180910390f35b34801561039557600080fd5b5061039e61090a565b6040516103ab91906124b9565b60405180910390f35b3480156103c057600080fd5b506103c9610930565b6040516103d6919061232c565b60405180910390f35b3480156103eb57600080fd5b506103f4610943565b60405161040191906123d0565b60405180910390f35b34801561041657600080fd5b5061041f610949565b60405161042c919061232c565b60405180910390f35b34801561044157600080fd5b5061045c6004803603810190610457919061250b565b61095c565b60405161046991906123d0565b60405180910390f35b34801561047e57600080fd5b506104876109a4565b005b34801561049557600080fd5b5061049e6109b8565b6040516104ab91906124b9565b60405180910390f35b3480156104c057600080fd5b506104c96109de565b005b3480156104d757600080fd5b506104e0610a6e565b6040516104ed91906124b9565b60405180910390f35b34801561050257600080fd5b5061050b610a98565b60405161051891906123d0565b60405180910390f35b34801561052d57600080fd5b50610536610a9e565b6040516105439190612216565b60405180910390f35b34801561055857600080fd5b50610573600480360381019061056e9190612417565b610b30565b005b34801561058157600080fd5b5061059c600480360381019061059791906122d1565b610bd6565b6040516105a9919061232c565b60405180910390f35b3480156105be57600080fd5b506105d960048036038101906105d491906122d1565b610c4d565b6040516105e6919061232c565b60405180910390f35b3480156105fb57600080fd5b50610604610c70565b60405161061191906124b9565b60405180910390f35b34801561062657600080fd5b5061062f610c96565b60405161063c91906124b9565b60405180910390f35b34801561065157600080fd5b5061065a610cbc565b60405161066791906123d0565b60405180910390f35b34801561067c57600080fd5b5061069760048036038101906106929190612538565b610cc2565b6040516106a491906123d0565b60405180910390f35b3480156106b957600080fd5b506106c2610d49565b6040516106cf91906123d0565b60405180910390f35b3480156106e457600080fd5b506106ff60048036038101906106fa919061250b565b610d4f565b005b606060048054610710906125a7565b80601f016020809104026020016040519081016040528092919081815260200182805461073c906125a7565b80156107895780601f1061075e57610100808354040283529160200191610789565b820191906000526020600020905b81548152906001019060200180831161076c57829003601f168201915b5050505050905090565b60008061079e610dd2565b90506107ab818585610dda565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b6107ec610fa3565b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051610889919061232c565b60405180910390a25050565b6000806108a0610dd2565b90506108ad858285611021565b6108b88585856110ad565b60019150509392505050565b61dead81565b60006012905090565b6000806108de610dd2565b90506108ff8185856108f08589610cc2565b6108fa9190612607565b610dda565b600191505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a60149054906101000a900460ff1681565b60105481565b600a60159054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6109ac610fa3565b6109b66000611782565b565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6109e6610fa3565b600a60149054906101000a900460ff1615610a36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2d906126ad565b60405180910390fd5b6001600a60146101000a81548160ff0219169083151502179055506001600a60156101000a81548160ff021916908315150217905550565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60035481565b606060058054610aad906125a7565b80601f0160208091040260200160405190810160405280929190818152602001828054610ad9906125a7565b8015610b265780601f10610afb57610100808354040283529160200191610b26565b820191906000526020600020905b815481529060010190602001808311610b0957829003601f168201915b5050505050905090565b610b38610fa3565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbf90612765565b60405180910390fd5b610bd28282611848565b5050565b600080610be1610dd2565b90506000610bef8286610cc2565b905083811015610c34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2b906127f7565b60405180910390fd5b610c418286868403610dda565b60019250505092915050565b600080610c58610dd2565b9050610c658185856110ad565b600191505092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600b5481565b610d57610fa3565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610dc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbd90612889565b60405180910390fd5b610dcf81611782565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e409061291b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610eb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eaf906129ad565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f9691906123d0565b60405180910390a3505050565b610fab610dd2565b73ffffffffffffffffffffffffffffffffffffffff16610fc9610a6e565b73ffffffffffffffffffffffffffffffffffffffff161461101f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101690612a19565b60405180910390fd5b565b600061102d8484610cc2565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146110a75781811015611099576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109090612a85565b60405180910390fd5b6110a68484848403610dda565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361111c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111390612b17565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361118b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118290612ba9565b60405180910390fd5b600a60149054906101000a900460ff16806111ef5750601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806112435750601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611282576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127990612c3b565b60405180910390fd5b6000810361129b57611296838360006118e9565b61177d565b60006112a63061095c565b90506000600b5482101590508080156112cb5750600a60159054906101000a900460ff165b80156112e45750600a60169054906101000a900460ff16155b80156113395750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b801561138f5750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156113e55750601860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611429576001600a60166101000a81548160ff02191690831515021790555061140d611b5f565b6000600a60166101000a81548160ff0219169083151502179055505b6000600a60169054906101000a900460ff16159050601860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806114df5750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156114e957600090505b6000811561176457601960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561154c57506000601054115b1561161a5761157a61271061156c60105488611e0190919063ffffffff16565b611e1790919063ffffffff16565b90506010546013548261158d9190612c5b565b6115979190612ccc565b601660008282546115a89190612607565b92505081905550601054601154826115c09190612c5b565b6115ca9190612ccc565b601460008282546115db9190612607565b92505081905550601054601254826115f39190612c5b565b6115fd9190612ccc565b6015600082825461160e9190612607565b92505081905550611740565b601960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561167557506000600c54115b1561173f576116a3612710611695600c5488611e0190919063ffffffff16565b611e1790919063ffffffff16565b9050600c54600f54826116b69190612c5b565b6116c09190612ccc565b601660008282546116d19190612607565b92505081905550600c54600d54826116e99190612c5b565b6116f39190612ccc565b601460008282546117049190612607565b92505081905550600c54600e548261171c9190612c5b565b6117269190612ccc565b601560008282546117379190612607565b925050819055505b5b6000811115611755576117548730836118e9565b5b80856117619190612cfd565b94505b61176f8787876118e9565b601754601081905550505050505b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611958576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194f90612da3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119be90612ba9565b60405180910390fd5b6119d2838383611e2d565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611a58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4f90612e35565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611b4691906123d0565b60405180910390a3611b59848484611e32565b50505050565b6000611b6a3061095c565b90506000601554601454601654611b819190612607565b611b8b9190612607565b905060008060028360165486611ba19190612c5b565b611bab9190612ccc565b611bb59190612ccc565b90506000611bcc8286611e3790919063ffffffff16565b90506000479050611bdc82611e4d565b6000611bf18247611e3790919063ffffffff16565b90506000611c1c87611c0e60145485611e0190919063ffffffff16565b611e1790919063ffffffff16565b90506000611c4788611c3960155486611e0190919063ffffffff16565b611e1790919063ffffffff16565b90506000818385611c589190612cfd565b611c629190612cfd565b9050600060168190555060006014819055506000601581905550600087118015611c8c5750600081115b15611cd957611c9b878261208a565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601654604051611cd093929190612e55565b60405180910390a15b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051611d1f90612ebd565b60006040518083038185875af1925050503d8060008114611d5c576040519150601f19603f3d011682016040523d82523d6000602084013e611d61565b606091505b505080985050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051611dad90612ebd565b60006040518083038185875af1925050503d8060008114611dea576040519150601f19603f3d011682016040523d82523d6000602084013e611def565b606091505b50508098505050505050505050505050565b60008183611e0f9190612c5b565b905092915050565b60008183611e259190612ccc565b905092915050565b505050565b505050565b60008183611e459190612cfd565b905092915050565b6000600267ffffffffffffffff811115611e6a57611e69612ed2565b5b604051908082528060200260200182016040528015611e985781602001602082028036833780820191505090505b5090503081600081518110611eb057611eaf612f01565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611f55573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f799190612f45565b81600181518110611f8d57611f8c612f01565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611ff2307f000000000000000000000000000000000000000000000000000000000000000084610dda565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161205495949392919061306b565b600060405180830381600087803b15801561206e57600080fd5b505af1158015612082573d6000803e3d6000fd5b505050505050565b6120b5307f000000000000000000000000000000000000000000000000000000000000000084610dda565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b815260040161213c969594939291906130c5565b60606040518083038185885af115801561215a573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061217f919061313b565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156121c05780820151818401526020810190506121a5565b60008484015250505050565b6000601f19601f8301169050919050565b60006121e882612186565b6121f28185612191565b93506122028185602086016121a2565b61220b816121cc565b840191505092915050565b6000602082019050818103600083015261223081846121dd565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006122688261223d565b9050919050565b6122788161225d565b811461228357600080fd5b50565b6000813590506122958161226f565b92915050565b6000819050919050565b6122ae8161229b565b81146122b957600080fd5b50565b6000813590506122cb816122a5565b92915050565b600080604083850312156122e8576122e7612238565b5b60006122f685828601612286565b9250506020612307858286016122bc565b9150509250929050565b60008115159050919050565b61232681612311565b82525050565b6000602082019050612341600083018461231d565b92915050565b6000819050919050565b600061236c6123676123628461223d565b612347565b61223d565b9050919050565b600061237e82612351565b9050919050565b600061239082612373565b9050919050565b6123a081612385565b82525050565b60006020820190506123bb6000830184612397565b92915050565b6123ca8161229b565b82525050565b60006020820190506123e560008301846123c1565b92915050565b6123f481612311565b81146123ff57600080fd5b50565b600081359050612411816123eb565b92915050565b6000806040838503121561242e5761242d612238565b5b600061243c85828601612286565b925050602061244d85828601612402565b9150509250929050565b6000806000606084860312156124705761246f612238565b5b600061247e86828701612286565b935050602061248f86828701612286565b92505060406124a0868287016122bc565b9150509250925092565b6124b38161225d565b82525050565b60006020820190506124ce60008301846124aa565b92915050565b600060ff82169050919050565b6124ea816124d4565b82525050565b600060208201905061250560008301846124e1565b92915050565b60006020828403121561252157612520612238565b5b600061252f84828501612286565b91505092915050565b6000806040838503121561254f5761254e612238565b5b600061255d85828601612286565b925050602061256e85828601612286565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806125bf57607f821691505b6020821081036125d2576125d1612578565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006126128261229b565b915061261d8361229b565b9250828201905080821115612635576126346125d8565b5b92915050565b7f54726164696e6720616c7265616479205370616365444f47452061637469766560008201527f2e00000000000000000000000000000000000000000000000000000000000000602082015250565b6000612697602183612191565b91506126a28261263b565b604082019050919050565b600060208201905081810360008301526126c68161268a565b9050919050565b7f5468652050616e63616b655377617020706169722063616e6e6f74206265207260008201527f656d6f7665642066726f6d206175746f6d617465644d61726b65744d616b657260208201527f5061697273000000000000000000000000000000000000000000000000000000604082015250565b600061274f604583612191565b915061275a826126cd565b606082019050919050565b6000602082019050818103600083015261277e81612742565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006127e1602583612191565b91506127ec82612785565b604082019050919050565b60006020820190508181036000830152612810816127d4565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612873602683612191565b915061287e82612817565b604082019050919050565b600060208201905081810360008301526128a281612866565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612905602483612191565b9150612910826128a9565b604082019050919050565b60006020820190508181036000830152612934816128f8565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612997602283612191565b91506129a28261293b565b604082019050919050565b600060208201905081810360008301526129c68161298a565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612a03602083612191565b9150612a0e826129cd565b602082019050919050565b60006020820190508181036000830152612a32816129f6565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612a6f601d83612191565b9150612a7a82612a39565b602082019050919050565b60006020820190508181036000830152612a9e81612a62565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612b01602583612191565b9150612b0c82612aa5565b604082019050919050565b60006020820190508181036000830152612b3081612af4565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612b93602383612191565b9150612b9e82612b37565b604082019050919050565b60006020820190508181036000830152612bc281612b86565b9050919050565b7f54726164696e67206e6f74205370616365444f47452079657420656e61626c6560008201527f6421000000000000000000000000000000000000000000000000000000000000602082015250565b6000612c25602283612191565b9150612c3082612bc9565b604082019050919050565b60006020820190508181036000830152612c5481612c18565b9050919050565b6000612c668261229b565b9150612c718361229b565b9250828202612c7f8161229b565b91508282048414831517612c9657612c956125d8565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612cd78261229b565b9150612ce28361229b565b925082612cf257612cf1612c9d565b5b828204905092915050565b6000612d088261229b565b9150612d138361229b565b9250828203905081811115612d2b57612d2a6125d8565b5b92915050565b7f45524332303a207472616e73666572205370616365444f47452066726f6d207460008201527f6865207a65726f20616464726573730000000000000000000000000000000000602082015250565b6000612d8d602f83612191565b9150612d9882612d31565b604082019050919050565b60006020820190508181036000830152612dbc81612d80565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612e1f602683612191565b9150612e2a82612dc3565b604082019050919050565b60006020820190508181036000830152612e4e81612e12565b9050919050565b6000606082019050612e6a60008301866123c1565b612e7760208301856123c1565b612e8460408301846123c1565b949350505050565b600081905092915050565b50565b6000612ea7600083612e8c565b9150612eb282612e97565b600082019050919050565b6000612ec882612e9a565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050612f3f8161226f565b92915050565b600060208284031215612f5b57612f5a612238565b5b6000612f6984828501612f30565b91505092915050565b6000819050919050565b6000612f97612f92612f8d84612f72565b612347565b61229b565b9050919050565b612fa781612f7c565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612fe28161225d565b82525050565b6000612ff48383612fd9565b60208301905092915050565b6000602082019050919050565b600061301882612fad565b6130228185612fb8565b935061302d83612fc9565b8060005b8381101561305e5781516130458882612fe8565b975061305083613000565b925050600181019050613031565b5085935050505092915050565b600060a08201905061308060008301886123c1565b61308d6020830187612f9e565b818103604083015261309f818661300d565b90506130ae60608301856124aa565b6130bb60808301846123c1565b9695505050505050565b600060c0820190506130da60008301896124aa565b6130e760208301886123c1565b6130f46040830187612f9e565b6131016060830186612f9e565b61310e60808301856124aa565b61311b60a08301846123c1565b979650505050505050565b600081519050613135816122a5565b92915050565b60008060006060848603121561315457613153612238565b5b600061316286828701613126565b935050602061317386828701613126565b925050604061318486828701613126565b915050925092509256fea26469706673582212207f369a6646e9b63275b7f68b8b3f4bdeec9e1aea234f0cd7d696f3c27fbfb2b064736f6c63430008110033

Deployed Bytecode

0x6080604052600436106101c65760003560e01c8063715018a6116100f7578063a457c2d711610095578063d85ba06311610064578063d85ba06314610645578063dd62ed3e14610670578063e2f45605146106ad578063f2fde38b146106d8576101cd565b8063a457c2d714610575578063a9059cbb146105b2578063c04a5414146105ef578063d46980161461061a576101cd565b80638da5cb5b116100d15780638da5cb5b146104cb57806393ec52de146104f657806395d89b41146105215780639a7a23d61461054c576101cd565b8063715018a61461047257806375f0a874146104895780638a8c523c146104b4576101cd565b8063313ce567116101645780634ada218b1161013e5780634ada218b146103b45780636a486a8e146103df5780636ddd17131461040a57806370a0823114610435576101cd565b8063313ce56714610321578063395093511461034c57806349bd5a5e14610389576101cd565b806318160ddd116101a057806318160ddd14610265578063182073a41461029057806323b872dd146102b957806327c8f835146102f6576101cd565b806306fdde03146101d2578063095ea7b3146101fd5780631694505e1461023a576101cd565b366101cd57005b600080fd5b3480156101de57600080fd5b506101e7610701565b6040516101f49190612216565b60405180910390f35b34801561020957600080fd5b50610224600480360381019061021f91906122d1565b610793565b604051610231919061232c565b60405180910390f35b34801561024657600080fd5b5061024f6107b6565b60405161025c91906123a6565b60405180910390f35b34801561027157600080fd5b5061027a6107da565b60405161028791906123d0565b60405180910390f35b34801561029c57600080fd5b506102b760048036038101906102b29190612417565b6107e4565b005b3480156102c557600080fd5b506102e060048036038101906102db9190612457565b610895565b6040516102ed919061232c565b60405180910390f35b34801561030257600080fd5b5061030b6108c4565b60405161031891906124b9565b60405180910390f35b34801561032d57600080fd5b506103366108ca565b60405161034391906124f0565b60405180910390f35b34801561035857600080fd5b50610373600480360381019061036e91906122d1565b6108d3565b604051610380919061232c565b60405180910390f35b34801561039557600080fd5b5061039e61090a565b6040516103ab91906124b9565b60405180910390f35b3480156103c057600080fd5b506103c9610930565b6040516103d6919061232c565b60405180910390f35b3480156103eb57600080fd5b506103f4610943565b60405161040191906123d0565b60405180910390f35b34801561041657600080fd5b5061041f610949565b60405161042c919061232c565b60405180910390f35b34801561044157600080fd5b5061045c6004803603810190610457919061250b565b61095c565b60405161046991906123d0565b60405180910390f35b34801561047e57600080fd5b506104876109a4565b005b34801561049557600080fd5b5061049e6109b8565b6040516104ab91906124b9565b60405180910390f35b3480156104c057600080fd5b506104c96109de565b005b3480156104d757600080fd5b506104e0610a6e565b6040516104ed91906124b9565b60405180910390f35b34801561050257600080fd5b5061050b610a98565b60405161051891906123d0565b60405180910390f35b34801561052d57600080fd5b50610536610a9e565b6040516105439190612216565b60405180910390f35b34801561055857600080fd5b50610573600480360381019061056e9190612417565b610b30565b005b34801561058157600080fd5b5061059c600480360381019061059791906122d1565b610bd6565b6040516105a9919061232c565b60405180910390f35b3480156105be57600080fd5b506105d960048036038101906105d491906122d1565b610c4d565b6040516105e6919061232c565b60405180910390f35b3480156105fb57600080fd5b50610604610c70565b60405161061191906124b9565b60405180910390f35b34801561062657600080fd5b5061062f610c96565b60405161063c91906124b9565b60405180910390f35b34801561065157600080fd5b5061065a610cbc565b60405161066791906123d0565b60405180910390f35b34801561067c57600080fd5b5061069760048036038101906106929190612538565b610cc2565b6040516106a491906123d0565b60405180910390f35b3480156106b957600080fd5b506106c2610d49565b6040516106cf91906123d0565b60405180910390f35b3480156106e457600080fd5b506106ff60048036038101906106fa919061250b565b610d4f565b005b606060048054610710906125a7565b80601f016020809104026020016040519081016040528092919081815260200182805461073c906125a7565b80156107895780601f1061075e57610100808354040283529160200191610789565b820191906000526020600020905b81548152906001019060200180831161076c57829003601f168201915b5050505050905090565b60008061079e610dd2565b90506107ab818585610dda565b600191505092915050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b6107ec610fa3565b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051610889919061232c565b60405180910390a25050565b6000806108a0610dd2565b90506108ad858285611021565b6108b88585856110ad565b60019150509392505050565b61dead81565b60006012905090565b6000806108de610dd2565b90506108ff8185856108f08589610cc2565b6108fa9190612607565b610dda565b600191505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a60149054906101000a900460ff1681565b60105481565b600a60159054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6109ac610fa3565b6109b66000611782565b565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6109e6610fa3565b600a60149054906101000a900460ff1615610a36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2d906126ad565b60405180910390fd5b6001600a60146101000a81548160ff0219169083151502179055506001600a60156101000a81548160ff021916908315150217905550565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60035481565b606060058054610aad906125a7565b80601f0160208091040260200160405190810160405280929190818152602001828054610ad9906125a7565b8015610b265780601f10610afb57610100808354040283529160200191610b26565b820191906000526020600020905b815481529060010190602001808311610b0957829003601f168201915b5050505050905090565b610b38610fa3565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbf90612765565b60405180910390fd5b610bd28282611848565b5050565b600080610be1610dd2565b90506000610bef8286610cc2565b905083811015610c34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2b906127f7565b60405180910390fd5b610c418286868403610dda565b60019250505092915050565b600080610c58610dd2565b9050610c658185856110ad565b600191505092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600b5481565b610d57610fa3565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610dc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbd90612889565b60405180910390fd5b610dcf81611782565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e409061291b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610eb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eaf906129ad565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f9691906123d0565b60405180910390a3505050565b610fab610dd2565b73ffffffffffffffffffffffffffffffffffffffff16610fc9610a6e565b73ffffffffffffffffffffffffffffffffffffffff161461101f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101690612a19565b60405180910390fd5b565b600061102d8484610cc2565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146110a75781811015611099576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109090612a85565b60405180910390fd5b6110a68484848403610dda565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361111c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111390612b17565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361118b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118290612ba9565b60405180910390fd5b600a60149054906101000a900460ff16806111ef5750601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806112435750601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611282576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127990612c3b565b60405180910390fd5b6000810361129b57611296838360006118e9565b61177d565b60006112a63061095c565b90506000600b5482101590508080156112cb5750600a60159054906101000a900460ff165b80156112e45750600a60169054906101000a900460ff16155b80156113395750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b801561138f5750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156113e55750601860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611429576001600a60166101000a81548160ff02191690831515021790555061140d611b5f565b6000600a60166101000a81548160ff0219169083151502179055505b6000600a60169054906101000a900460ff16159050601860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806114df5750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156114e957600090505b6000811561176457601960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561154c57506000601054115b1561161a5761157a61271061156c60105488611e0190919063ffffffff16565b611e1790919063ffffffff16565b90506010546013548261158d9190612c5b565b6115979190612ccc565b601660008282546115a89190612607565b92505081905550601054601154826115c09190612c5b565b6115ca9190612ccc565b601460008282546115db9190612607565b92505081905550601054601254826115f39190612c5b565b6115fd9190612ccc565b6015600082825461160e9190612607565b92505081905550611740565b601960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561167557506000600c54115b1561173f576116a3612710611695600c5488611e0190919063ffffffff16565b611e1790919063ffffffff16565b9050600c54600f54826116b69190612c5b565b6116c09190612ccc565b601660008282546116d19190612607565b92505081905550600c54600d54826116e99190612c5b565b6116f39190612ccc565b601460008282546117049190612607565b92505081905550600c54600e548261171c9190612c5b565b6117269190612ccc565b601560008282546117379190612607565b925050819055505b5b6000811115611755576117548730836118e9565b5b80856117619190612cfd565b94505b61176f8787876118e9565b601754601081905550505050505b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611958576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194f90612da3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119be90612ba9565b60405180910390fd5b6119d2838383611e2d565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611a58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4f90612e35565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611b4691906123d0565b60405180910390a3611b59848484611e32565b50505050565b6000611b6a3061095c565b90506000601554601454601654611b819190612607565b611b8b9190612607565b905060008060028360165486611ba19190612c5b565b611bab9190612ccc565b611bb59190612ccc565b90506000611bcc8286611e3790919063ffffffff16565b90506000479050611bdc82611e4d565b6000611bf18247611e3790919063ffffffff16565b90506000611c1c87611c0e60145485611e0190919063ffffffff16565b611e1790919063ffffffff16565b90506000611c4788611c3960155486611e0190919063ffffffff16565b611e1790919063ffffffff16565b90506000818385611c589190612cfd565b611c629190612cfd565b9050600060168190555060006014819055506000601581905550600087118015611c8c5750600081115b15611cd957611c9b878261208a565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601654604051611cd093929190612e55565b60405180910390a15b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051611d1f90612ebd565b60006040518083038185875af1925050503d8060008114611d5c576040519150601f19603f3d011682016040523d82523d6000602084013e611d61565b606091505b505080985050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051611dad90612ebd565b60006040518083038185875af1925050503d8060008114611dea576040519150601f19603f3d011682016040523d82523d6000602084013e611def565b606091505b50508098505050505050505050505050565b60008183611e0f9190612c5b565b905092915050565b60008183611e259190612ccc565b905092915050565b505050565b505050565b60008183611e459190612cfd565b905092915050565b6000600267ffffffffffffffff811115611e6a57611e69612ed2565b5b604051908082528060200260200182016040528015611e985781602001602082028036833780820191505090505b5090503081600081518110611eb057611eaf612f01565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611f55573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f799190612f45565b81600181518110611f8d57611f8c612f01565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611ff2307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610dda565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161205495949392919061306b565b600060405180830381600087803b15801561206e57600080fd5b505af1158015612082573d6000803e3d6000fd5b505050505050565b6120b5307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610dda565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b815260040161213c969594939291906130c5565b60606040518083038185885af115801561215a573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061217f919061313b565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156121c05780820151818401526020810190506121a5565b60008484015250505050565b6000601f19601f8301169050919050565b60006121e882612186565b6121f28185612191565b93506122028185602086016121a2565b61220b816121cc565b840191505092915050565b6000602082019050818103600083015261223081846121dd565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006122688261223d565b9050919050565b6122788161225d565b811461228357600080fd5b50565b6000813590506122958161226f565b92915050565b6000819050919050565b6122ae8161229b565b81146122b957600080fd5b50565b6000813590506122cb816122a5565b92915050565b600080604083850312156122e8576122e7612238565b5b60006122f685828601612286565b9250506020612307858286016122bc565b9150509250929050565b60008115159050919050565b61232681612311565b82525050565b6000602082019050612341600083018461231d565b92915050565b6000819050919050565b600061236c6123676123628461223d565b612347565b61223d565b9050919050565b600061237e82612351565b9050919050565b600061239082612373565b9050919050565b6123a081612385565b82525050565b60006020820190506123bb6000830184612397565b92915050565b6123ca8161229b565b82525050565b60006020820190506123e560008301846123c1565b92915050565b6123f481612311565b81146123ff57600080fd5b50565b600081359050612411816123eb565b92915050565b6000806040838503121561242e5761242d612238565b5b600061243c85828601612286565b925050602061244d85828601612402565b9150509250929050565b6000806000606084860312156124705761246f612238565b5b600061247e86828701612286565b935050602061248f86828701612286565b92505060406124a0868287016122bc565b9150509250925092565b6124b38161225d565b82525050565b60006020820190506124ce60008301846124aa565b92915050565b600060ff82169050919050565b6124ea816124d4565b82525050565b600060208201905061250560008301846124e1565b92915050565b60006020828403121561252157612520612238565b5b600061252f84828501612286565b91505092915050565b6000806040838503121561254f5761254e612238565b5b600061255d85828601612286565b925050602061256e85828601612286565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806125bf57607f821691505b6020821081036125d2576125d1612578565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006126128261229b565b915061261d8361229b565b9250828201905080821115612635576126346125d8565b5b92915050565b7f54726164696e6720616c7265616479205370616365444f47452061637469766560008201527f2e00000000000000000000000000000000000000000000000000000000000000602082015250565b6000612697602183612191565b91506126a28261263b565b604082019050919050565b600060208201905081810360008301526126c68161268a565b9050919050565b7f5468652050616e63616b655377617020706169722063616e6e6f74206265207260008201527f656d6f7665642066726f6d206175746f6d617465644d61726b65744d616b657260208201527f5061697273000000000000000000000000000000000000000000000000000000604082015250565b600061274f604583612191565b915061275a826126cd565b606082019050919050565b6000602082019050818103600083015261277e81612742565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006127e1602583612191565b91506127ec82612785565b604082019050919050565b60006020820190508181036000830152612810816127d4565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612873602683612191565b915061287e82612817565b604082019050919050565b600060208201905081810360008301526128a281612866565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612905602483612191565b9150612910826128a9565b604082019050919050565b60006020820190508181036000830152612934816128f8565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612997602283612191565b91506129a28261293b565b604082019050919050565b600060208201905081810360008301526129c68161298a565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612a03602083612191565b9150612a0e826129cd565b602082019050919050565b60006020820190508181036000830152612a32816129f6565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612a6f601d83612191565b9150612a7a82612a39565b602082019050919050565b60006020820190508181036000830152612a9e81612a62565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612b01602583612191565b9150612b0c82612aa5565b604082019050919050565b60006020820190508181036000830152612b3081612af4565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612b93602383612191565b9150612b9e82612b37565b604082019050919050565b60006020820190508181036000830152612bc281612b86565b9050919050565b7f54726164696e67206e6f74205370616365444f47452079657420656e61626c6560008201527f6421000000000000000000000000000000000000000000000000000000000000602082015250565b6000612c25602283612191565b9150612c3082612bc9565b604082019050919050565b60006020820190508181036000830152612c5481612c18565b9050919050565b6000612c668261229b565b9150612c718361229b565b9250828202612c7f8161229b565b91508282048414831517612c9657612c956125d8565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612cd78261229b565b9150612ce28361229b565b925082612cf257612cf1612c9d565b5b828204905092915050565b6000612d088261229b565b9150612d138361229b565b9250828203905081811115612d2b57612d2a6125d8565b5b92915050565b7f45524332303a207472616e73666572205370616365444f47452066726f6d207460008201527f6865207a65726f20616464726573730000000000000000000000000000000000602082015250565b6000612d8d602f83612191565b9150612d9882612d31565b604082019050919050565b60006020820190508181036000830152612dbc81612d80565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612e1f602683612191565b9150612e2a82612dc3565b604082019050919050565b60006020820190508181036000830152612e4e81612e12565b9050919050565b6000606082019050612e6a60008301866123c1565b612e7760208301856123c1565b612e8460408301846123c1565b949350505050565b600081905092915050565b50565b6000612ea7600083612e8c565b9150612eb282612e97565b600082019050919050565b6000612ec882612e9a565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050612f3f8161226f565b92915050565b600060208284031215612f5b57612f5a612238565b5b6000612f6984828501612f30565b91505092915050565b6000819050919050565b6000612f97612f92612f8d84612f72565b612347565b61229b565b9050919050565b612fa781612f7c565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612fe28161225d565b82525050565b6000612ff48383612fd9565b60208301905092915050565b6000602082019050919050565b600061301882612fad565b6130228185612fb8565b935061302d83612fc9565b8060005b8381101561305e5781516130458882612fe8565b975061305083613000565b925050600181019050613031565b5085935050505092915050565b600060a08201905061308060008301886123c1565b61308d6020830187612f9e565b818103604083015261309f818661300d565b90506130ae60608301856124aa565b6130bb60808301846123c1565b9695505050505050565b600060c0820190506130da60008301896124aa565b6130e760208301886123c1565b6130f46040830187612f9e565b6131016060830186612f9e565b61310e60808301856124aa565b61311b60a08301846123c1565b979650505050505050565b600081519050613135816122a5565b92915050565b60008060006060848603121561315457613153612238565b5b600061316286828701613126565b935050602061317386828701613126565b925050604061318486828701613126565b915050925092509256fea26469706673582212207f369a6646e9b63275b7f68b8b3f4bdeec9e1aea234f0cd7d696f3c27fbfb2b064736f6c63430008110033

Deployed Bytecode Sourcemap

27286:9624:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7745:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9660:242;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27365:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8621:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30698:205;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9910:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27573:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8463:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10213:270;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27423:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27635:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27923:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27665:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8792:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1828:103;;;;;;;;;;;;;:::i;:::-;;27460:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30315:183;;;;;;;;;;;;;:::i;:::-;;1177:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7274:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7964:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30911:254;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10491:505;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9154:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27497:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27536:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27768:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9451:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27726:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2086:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7745:100;7799:13;7832:5;7825:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7745:100;:::o;9660:242::-;9779:4;9801:13;9817:12;:10;:12::i;:::-;9801:28;;9840:32;9849:5;9856:7;9865:6;9840:8;:32::i;:::-;9890:4;9883:11;;;9660:242;;;;:::o;27365:51::-;;;:::o;8621:108::-;8682:7;8709:12;;8702:19;;8621:108;:::o;30698:205::-;1063:13;:11;:13::i;:::-;30837:8:::1;30800:25;:34;30826:7;30800:34;;;;;;;;;;;;;;;;:45;;;;;;;;;;;;;;;;;;30877:7;30861:34;;;30886:8;30861:34;;;;;;:::i;:::-;;;;;;;;30698:205:::0;;:::o;9910:295::-;10041:4;10058:15;10076:12;:10;:12::i;:::-;10058:30;;10099:38;10115:4;10121:7;10130:6;10099:15;:38::i;:::-;10148:27;10158:4;10164:2;10168:6;10148:9;:27::i;:::-;10193:4;10186:11;;;9910:295;;;;;:::o;27573:53::-;27619:6;27573:53;:::o;8463:93::-;8521:5;8546:2;8539:9;;8463:93;:::o;10213:270::-;10328:4;10350:13;10366:12;:10;:12::i;:::-;10350:28;;10389:64;10398:5;10405:7;10442:10;10414:25;10424:5;10431:7;10414:9;:25::i;:::-;:38;;;;:::i;:::-;10389:8;:64::i;:::-;10471:4;10464:11;;;10213:270;;;;:::o;27423:28::-;;;;;;;;;;;;;:::o;27635:26::-;;;;;;;;;;;;;:::o;27923:28::-;;;;:::o;27665:23::-;;;;;;;;;;;;;:::o;8792:177::-;8911:7;8943:9;:18;8953:7;8943:18;;;;;;;;;;;;;;;;8936:25;;8792:177;;;:::o;1828:103::-;1063:13;:11;:13::i;:::-;1893:30:::1;1920:1;1893:18;:30::i;:::-;1828:103::o:0;27460:30::-;;;;;;;;;;;;;:::o;30315:183::-;1063:13;:11;:13::i;:::-;30377:14:::1;;;;;;;;;;;30376:15;30368:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;30457:4;30440:14;;:21;;;;;;;;;;;;;;;;;;30486:4;30472:11;;:18;;;;;;;;;;;;;;;;;;30315:183::o:0;1177:87::-;1223:7;1250:6;;;;;;;;;;;1243:13;;1177:87;:::o;7274:26::-;;;;:::o;7964:104::-;8020:13;8053:7;8046:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7964:104;:::o;30911:254::-;1063:13;:11;:13::i;:::-;31018::::1;;;;;;;;;;;31010:21;;:4;:21;;::::0;31002:103:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;31116:41;31145:4;31151:5;31116:28;:41::i;:::-;30911:254:::0;;:::o;10491:505::-;10611:4;10633:13;10649:12;:10;:12::i;:::-;10633:28;;10672:24;10699:25;10709:5;10716:7;10699:9;:25::i;:::-;10672:52;;10777:15;10757:16;:35;;10735:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;10893:60;10902:5;10909:7;10937:15;10918:16;:34;10893:8;:60::i;:::-;10984:4;10977:11;;;;10491:505;;;;:::o;9154:234::-;9269:4;9291:13;9307:12;:10;:12::i;:::-;9291:28;;9330;9340:5;9347:2;9351:6;9330:9;:28::i;:::-;9376:4;9369:11;;;9154:234;;;;:::o;27497:32::-;;;;;;;;;;;;;:::o;27536:30::-;;;;;;;;;;;;;:::o;27768:27::-;;;;:::o;9451:201::-;9585:7;9617:11;:18;9629:5;9617:18;;;;;;;;;;;;;;;:27;9636:7;9617:27;;;;;;;;;;;;;;;;9610:34;;9451:201;;;;:::o;27726:33::-;;;;:::o;2086:238::-;1063:13;:11;:13::i;:::-;2209:1:::1;2189:22;;:8;:22;;::::0;2167:110:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2288:28;2307:8;2288:18;:28::i;:::-;2086:238:::0;:::o;218:98::-;271:7;298:10;291:17;;218:98;:::o;13140:380::-;13293:1;13276:19;;:5;:19;;;13268:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13374:1;13355:21;;:7;:21;;;13347:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13458:6;13428:11;:18;13440:5;13428:18;;;;;;;;;;;;;;;:27;13447:7;13428:27;;;;;;;;;;;;;;;:36;;;;13496:7;13480:32;;13489:5;13480:32;;;13505:6;13480:32;;;;;;:::i;:::-;;;;;;;;13140:380;;;:::o;1342:132::-;1417:12;:10;:12::i;:::-;1406:23;;:7;:5;:7::i;:::-;:23;;;1398:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1342:132::o;13528:498::-;13659:24;13686:25;13696:5;13703:7;13686:9;:25::i;:::-;13659:52;;13746:17;13726:16;:37;13722:297;;13826:6;13806:16;:26;;13780:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;13941:51;13950:5;13957:7;13985:6;13966:16;:25;13941:8;:51::i;:::-;13722:297;13648:378;13528:498;;;:::o;31371:2648::-;31519:1;31503:18;;:4;:18;;;31495:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;31596:1;31582:16;;:2;:16;;;31574:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;31657:14;;;;;;;;;;;:49;;;;31675:25;:31;31701:4;31675:31;;;;;;;;;;;;;;;;;;;;;;;;;31657:49;:82;;;;31710:25;:29;31736:2;31710:29;;;;;;;;;;;;;;;;;;;;;;;;;31657:82;31649:129;;;;;;;;;;;;:::i;:::-;;;;;;;;;31803:1;31793:6;:11;31789:93;;31821:28;31837:4;31843:2;31847:1;31821:15;:28::i;:::-;31864:7;;31789:93;31896:28;31927:24;31945:4;31927:9;:24::i;:::-;31896:55;;31964:12;32003:18;;31979:20;:42;;31964:57;;32052:7;:35;;;;;32076:11;;;;;;;;;;;32052:35;:48;;;;;32091:9;;;;;;;;;;;32090:10;32052:48;:82;;;;;32102:26;:32;32129:4;32102:32;;;;;;;;;;;;;;;;;;;;;;;;;32052:82;:131;;;;;32152:25;:31;32178:4;32152:31;;;;;;;;;;;;;;;;;;;;;;;;;32151:32;32052:131;:178;;;;;32201:25;:29;32227:2;32201:29;;;;;;;;;;;;;;;;;;;;;;;;;32200:30;32052:178;32034:313;;;32269:4;32257:9;;:16;;;;;;;;;;;;;;;;;;32290:11;:9;:11::i;:::-;32330:5;32318:9;;:17;;;;;;;;;;;;;;;;;;32034:313;32359:12;32375:9;;;;;;;;;;;32374:10;32359:25;;32401;:31;32427:4;32401:31;;;;;;;;;;;;;;;;;;;;;;;;;:64;;;;32436:25;:29;32462:2;32436:29;;;;;;;;;;;;;;;;;;;;;;;;;32401:64;32397:112;;;32492:5;32482:15;;32397:112;32521:12;32744:7;32740:1187;;;32796:26;:30;32823:2;32796:30;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;32846:1;32830:13;;:17;32796:51;32792:986;;;32875:36;32905:5;32875:25;32886:13;;32875:6;:10;;:25;;;;:::i;:::-;:29;;:36;;;;:::i;:::-;32868:43;;33024:13;;32982:17;;32975:4;:24;;;;:::i;:::-;32974:63;;;;:::i;:::-;32930:19;;:107;;;;;;;:::i;:::-;;;;;;;;33150:13;;33108:17;;33101:4;:24;;;;:::i;:::-;33100:63;;;;:::i;:::-;33056:19;;:107;;;;;;;:::i;:::-;;;;;;;;33280:13;;33236:19;;33229:4;:26;;;;:::i;:::-;33228:65;;;;:::i;:::-;33182:21;;:111;;;;;;;:::i;:::-;;;;;;;;32792:986;;;33355:26;:32;33382:4;33355:32;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;;33406:1;33391:12;;:16;33355:52;33351:427;;;33435:35;33464:5;33435:24;33446:12;;33435:6;:10;;:24;;;;:::i;:::-;:28;;:35;;;;:::i;:::-;33428:42;;33540:12;;33520:16;;33513:4;:23;;;;:::i;:::-;33512:40;;;;:::i;:::-;33489:19;;:63;;;;;;;:::i;:::-;;;;;;;;33622:12;;33602:16;;33595:4;:23;;;;:::i;:::-;33594:40;;;;:::i;:::-;33571:19;;:63;;;;;;;:::i;:::-;;;;;;;;33750:12;;33707:18;;33700:4;:25;;;;:::i;:::-;33699:63;;;;:::i;:::-;33653:21;;:109;;;;;;;:::i;:::-;;;;;;;;33351:427;32792:986;33805:1;33798:4;:8;33794:91;;;33827:42;33843:4;33857;33864;33827:15;:42::i;:::-;33794:91;33911:4;33901:14;;;;;:::i;:::-;;;32740:1187;33939:33;33955:4;33961:2;33965:6;33939:15;:33::i;:::-;33999:12;;33983:13;:28;;;;31484:2535;;;;31371:2648;;;;:::o;2484:191::-;2558:16;2577:6;;;;;;;;;;;2558:25;;2603:8;2594:6;;:17;;;;;;;;;;;;;;;;;;2658:8;2627:40;;2648:8;2627:40;;;;;;;;;;;;2547:128;2484:191;:::o;31175:188::-;31294:5;31259:26;:32;31286:4;31259:32;;;;;;;;;;;;;;;;:40;;;;;;;;;;;;;;;;;;31349:5;31315:40;;31343:4;31315:40;;;;;;;;;;;;31175:188;;:::o;11004:879::-;11143:1;11127:18;;:4;:18;;;11119:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;11230:1;11216:16;;:2;:16;;;11208:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;11285:38;11306:4;11312:2;11316:6;11285:20;:38::i;:::-;11336:19;11358:9;:15;11368:4;11358:15;;;;;;;;;;;;;;;;11336:37;;11421:6;11406:11;:21;;11384:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;11561:6;11547:11;:20;11529:9;:15;11539:4;11529:15;;;;;;;;;;;;;;;:38;;;;11764:6;11747:9;:13;11757:2;11747:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;11814:2;11799:26;;11808:4;11799:26;;;11818:6;11799:26;;;;;;:::i;:::-;;;;;;;;11838:37;11858:4;11864:2;11868:6;11838:19;:37::i;:::-;11108:775;11004:879;;;:::o;35108:1797::-;35149:23;35175:24;35193:4;35175:9;:24::i;:::-;35149:50;;35210:25;35308:21;;35273:19;;35238;;:54;;;;:::i;:::-;:91;;;;:::i;:::-;35210:119;;35340:12;35367:23;35481:1;35448:17;35412:19;;35394:15;:37;;;;:::i;:::-;35393:72;;;;:::i;:::-;:89;;;;:::i;:::-;35367:115;;35493:26;35522:36;35542:15;35522;:19;;:36;;;;:::i;:::-;35493:65;;35571:25;35599:21;35571:49;;35633:37;35651:18;35633:17;:37::i;:::-;35683:18;35704:44;35730:17;35704:21;:25;;:44;;;;:::i;:::-;35683:65;;35761:23;35787:82;35841:17;35787:35;35802:19;;35787:10;:14;;:35;;;;:::i;:::-;:39;;:82;;;;:::i;:::-;35761:108;;35882:25;35910:84;35966:17;35910:37;35925:21;;35910:10;:14;;:37;;;;:::i;:::-;:41;;:84;;;;:::i;:::-;35882:112;;36007:23;36090:17;36059:15;36033:10;:41;;;;:::i;:::-;:74;;;;:::i;:::-;36007:100;;36142:1;36120:19;:23;;;;36176:1;36154:19;:23;;;;36212:1;36188:21;:25;;;;36248:1;36230:15;:19;:42;;;;;36271:1;36253:15;:19;36230:42;36226:280;;;36289:47;36303:15;36320;36289:13;:47::i;:::-;36356:138;36389:18;36426:15;36460:19;;36356:138;;;;;;;;:::i;:::-;;;;;;;;36226:280;36730:17;;;;;;;;;;;36722:31;;36761:17;36722:61;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36708:75;;;;;36818:15;;;;;;;;;;;36810:29;;36861:21;36810:87;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36796:101;;;;;35138:1767;;;;;;;;;;35108:1797::o;17617:98::-;17675:7;17706:1;17702;:5;;;;:::i;:::-;17695:12;;17617:98;;;;:::o;17940:::-;17998:7;18029:1;18025;:5;;;;:::i;:::-;18018:12;;17940:98;;;;:::o;14034:125::-;;;;:::o;14167:124::-;;;;:::o;17260:98::-;17318:7;17349:1;17345;:5;;;;:::i;:::-;17338:12;;17260:98;;;;:::o;34027:503::-;34095:21;34133:1;34119:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34095:40;;34164:4;34146;34151:1;34146:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;34190:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;34180:4;34185:1;34180:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;34225:62;34242:4;34257:15;34275:11;34225:8;:62::i;:::-;34326:15;:66;;;34407:11;34433:1;34449:4;34476;34496:15;34326:196;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34084:446;34027:503;:::o;34538:372::-;34621:62;34638:4;34653:15;34671:11;34621:8;:62::i;:::-;34696:15;:31;;;34735:9;34768:4;34788:11;34814:1;34830;34846:15;;;;;;;;;;;34876;34696:206;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;34538: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:116::-;4846:21;4861:5;4846:21;:::i;:::-;4839:5;4836:32;4826:60;;4882:1;4879;4872:12;4826:60;4776:116;:::o;4898:133::-;4941:5;4979:6;4966:20;4957:29;;4995:30;5019:5;4995:30;:::i;:::-;4898:133;;;;:::o;5037:468::-;5102:6;5110;5159:2;5147:9;5138:7;5134:23;5130:32;5127:119;;;5165:79;;:::i;:::-;5127:119;5285:1;5310:53;5355:7;5346:6;5335:9;5331:22;5310:53;:::i;:::-;5300:63;;5256:117;5412:2;5438:50;5480:7;5471:6;5460:9;5456:22;5438:50;:::i;:::-;5428:60;;5383:115;5037:468;;;;;:::o;5511:619::-;5588:6;5596;5604;5653:2;5641:9;5632:7;5628:23;5624:32;5621:119;;;5659:79;;:::i;:::-;5621:119;5779:1;5804:53;5849:7;5840:6;5829:9;5825:22;5804:53;:::i;:::-;5794:63;;5750:117;5906:2;5932:53;5977:7;5968:6;5957:9;5953:22;5932:53;:::i;:::-;5922:63;;5877:118;6034:2;6060:53;6105:7;6096:6;6085:9;6081:22;6060:53;:::i;:::-;6050:63;;6005:118;5511:619;;;;;:::o;6136:118::-;6223:24;6241:5;6223:24;:::i;:::-;6218:3;6211:37;6136:118;;:::o;6260:222::-;6353:4;6391:2;6380:9;6376:18;6368:26;;6404:71;6472:1;6461:9;6457:17;6448:6;6404:71;:::i;:::-;6260:222;;;;:::o;6488:86::-;6523:7;6563:4;6556:5;6552:16;6541:27;;6488:86;;;:::o;6580:112::-;6663:22;6679:5;6663:22;:::i;:::-;6658:3;6651:35;6580:112;;:::o;6698:214::-;6787:4;6825:2;6814:9;6810:18;6802:26;;6838:67;6902:1;6891:9;6887:17;6878:6;6838:67;:::i;:::-;6698:214;;;;:::o;6918:329::-;6977:6;7026:2;7014:9;7005:7;7001:23;6997:32;6994:119;;;7032:79;;:::i;:::-;6994:119;7152:1;7177:53;7222:7;7213:6;7202:9;7198:22;7177:53;:::i;:::-;7167:63;;7123:117;6918:329;;;;:::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:220::-;8768:34;8764:1;8756:6;8752:14;8745:58;8837:3;8832:2;8824:6;8820:15;8813:28;8628:220;:::o;8854:366::-;8996:3;9017:67;9081:2;9076:3;9017:67;:::i;:::-;9010:74;;9093:93;9182:3;9093:93;:::i;:::-;9211:2;9206:3;9202:12;9195:19;;8854:366;;;:::o;9226:419::-;9392:4;9430:2;9419:9;9415:18;9407:26;;9479:9;9473:4;9469:20;9465:1;9454:9;9450:17;9443:47;9507:131;9633:4;9507:131;:::i;:::-;9499:139;;9226:419;;;:::o;9651:293::-;9791:34;9787:1;9779:6;9775:14;9768:58;9860:34;9855:2;9847:6;9843:15;9836:59;9929:7;9924:2;9916:6;9912:15;9905:32;9651:293;:::o;9950:366::-;10092:3;10113:67;10177:2;10172:3;10113:67;:::i;:::-;10106:74;;10189:93;10278:3;10189:93;:::i;:::-;10307:2;10302:3;10298:12;10291:19;;9950:366;;;:::o;10322:419::-;10488:4;10526:2;10515:9;10511:18;10503:26;;10575:9;10569:4;10565:20;10561:1;10550:9;10546:17;10539:47;10603:131;10729:4;10603:131;:::i;:::-;10595:139;;10322:419;;;:::o;10747:224::-;10887:34;10883:1;10875:6;10871:14;10864:58;10956:7;10951:2;10943:6;10939:15;10932:32;10747:224;:::o;10977:366::-;11119:3;11140:67;11204:2;11199:3;11140:67;:::i;:::-;11133:74;;11216:93;11305:3;11216:93;:::i;:::-;11334:2;11329:3;11325:12;11318:19;;10977:366;;;:::o;11349:419::-;11515:4;11553:2;11542:9;11538:18;11530:26;;11602:9;11596:4;11592:20;11588:1;11577:9;11573:17;11566:47;11630:131;11756:4;11630:131;:::i;:::-;11622:139;;11349:419;;;:::o;11774:225::-;11914:34;11910:1;11902:6;11898:14;11891:58;11983:8;11978:2;11970:6;11966:15;11959:33;11774:225;:::o;12005:366::-;12147:3;12168:67;12232:2;12227:3;12168:67;:::i;:::-;12161:74;;12244:93;12333:3;12244:93;:::i;:::-;12362:2;12357:3;12353:12;12346:19;;12005:366;;;:::o;12377:419::-;12543:4;12581:2;12570:9;12566:18;12558:26;;12630:9;12624:4;12620:20;12616:1;12605:9;12601:17;12594:47;12658:131;12784:4;12658:131;:::i;:::-;12650:139;;12377:419;;;:::o;12802:223::-;12942:34;12938:1;12930:6;12926:14;12919:58;13011:6;13006:2;12998:6;12994:15;12987:31;12802:223;:::o;13031:366::-;13173:3;13194:67;13258:2;13253:3;13194:67;:::i;:::-;13187:74;;13270:93;13359:3;13270:93;:::i;:::-;13388:2;13383:3;13379:12;13372:19;;13031:366;;;:::o;13403:419::-;13569:4;13607:2;13596:9;13592:18;13584:26;;13656:9;13650:4;13646:20;13642:1;13631:9;13627:17;13620:47;13684:131;13810:4;13684:131;:::i;:::-;13676:139;;13403:419;;;:::o;13828:221::-;13968:34;13964:1;13956:6;13952:14;13945:58;14037:4;14032:2;14024:6;14020:15;14013:29;13828:221;:::o;14055:366::-;14197:3;14218:67;14282:2;14277:3;14218:67;:::i;:::-;14211:74;;14294:93;14383:3;14294:93;:::i;:::-;14412:2;14407:3;14403:12;14396:19;;14055:366;;;:::o;14427:419::-;14593:4;14631:2;14620:9;14616:18;14608:26;;14680:9;14674:4;14670:20;14666:1;14655:9;14651:17;14644:47;14708:131;14834:4;14708:131;:::i;:::-;14700:139;;14427:419;;;:::o;14852:182::-;14992:34;14988:1;14980:6;14976:14;14969:58;14852:182;:::o;15040:366::-;15182:3;15203:67;15267:2;15262:3;15203:67;:::i;:::-;15196:74;;15279:93;15368:3;15279:93;:::i;:::-;15397:2;15392:3;15388:12;15381:19;;15040:366;;;:::o;15412:419::-;15578:4;15616:2;15605:9;15601:18;15593:26;;15665:9;15659:4;15655:20;15651:1;15640:9;15636:17;15629:47;15693:131;15819:4;15693:131;:::i;:::-;15685:139;;15412:419;;;:::o;15837:179::-;15977:31;15973:1;15965:6;15961:14;15954:55;15837:179;:::o;16022:366::-;16164:3;16185:67;16249:2;16244:3;16185:67;:::i;:::-;16178:74;;16261:93;16350:3;16261:93;:::i;:::-;16379:2;16374:3;16370:12;16363:19;;16022:366;;;:::o;16394:419::-;16560:4;16598:2;16587:9;16583:18;16575:26;;16647:9;16641:4;16637:20;16633:1;16622:9;16618:17;16611:47;16675:131;16801:4;16675:131;:::i;:::-;16667:139;;16394:419;;;:::o;16819:224::-;16959:34;16955:1;16947:6;16943:14;16936:58;17028:7;17023:2;17015:6;17011:15;17004:32;16819:224;:::o;17049:366::-;17191:3;17212:67;17276:2;17271:3;17212:67;:::i;:::-;17205:74;;17288:93;17377:3;17288:93;:::i;:::-;17406:2;17401:3;17397:12;17390:19;;17049:366;;;:::o;17421:419::-;17587:4;17625:2;17614:9;17610:18;17602:26;;17674:9;17668:4;17664:20;17660:1;17649:9;17645:17;17638:47;17702:131;17828:4;17702:131;:::i;:::-;17694:139;;17421:419;;;:::o;17846:222::-;17986:34;17982:1;17974:6;17970:14;17963:58;18055:5;18050:2;18042:6;18038:15;18031:30;17846:222;:::o;18074:366::-;18216:3;18237:67;18301:2;18296:3;18237:67;:::i;:::-;18230:74;;18313:93;18402:3;18313:93;:::i;:::-;18431:2;18426:3;18422:12;18415:19;;18074:366;;;:::o;18446:419::-;18612:4;18650:2;18639:9;18635:18;18627:26;;18699:9;18693:4;18689:20;18685:1;18674:9;18670:17;18663:47;18727:131;18853:4;18727:131;:::i;:::-;18719:139;;18446:419;;;:::o;18871:221::-;19011:34;19007:1;18999:6;18995:14;18988:58;19080:4;19075:2;19067:6;19063:15;19056:29;18871:221;:::o;19098:366::-;19240:3;19261:67;19325:2;19320:3;19261:67;:::i;:::-;19254:74;;19337:93;19426:3;19337:93;:::i;:::-;19455:2;19450:3;19446:12;19439:19;;19098:366;;;:::o;19470:419::-;19636:4;19674:2;19663:9;19659:18;19651:26;;19723:9;19717:4;19713:20;19709:1;19698:9;19694:17;19687:47;19751:131;19877:4;19751:131;:::i;:::-;19743:139;;19470:419;;;:::o;19895:410::-;19935:7;19958:20;19976:1;19958:20;:::i;:::-;19953:25;;19992:20;20010:1;19992:20;:::i;:::-;19987:25;;20047:1;20044;20040:9;20069:30;20087:11;20069:30;:::i;:::-;20058:41;;20248:1;20239:7;20235:15;20232:1;20229:22;20209:1;20202:9;20182:83;20159:139;;20278:18;;:::i;:::-;20159:139;19943:362;19895:410;;;;:::o;20311:180::-;20359:77;20356:1;20349:88;20456:4;20453:1;20446:15;20480:4;20477:1;20470:15;20497:185;20537:1;20554:20;20572:1;20554:20;:::i;:::-;20549:25;;20588:20;20606:1;20588:20;:::i;:::-;20583:25;;20627:1;20617:35;;20632:18;;:::i;:::-;20617:35;20674:1;20671;20667:9;20662:14;;20497:185;;;;:::o;20688:194::-;20728:4;20748:20;20766:1;20748:20;:::i;:::-;20743:25;;20782:20;20800:1;20782:20;:::i;:::-;20777:25;;20826:1;20823;20819:9;20811:17;;20850:1;20844:4;20841:11;20838:37;;;20855:18;;:::i;:::-;20838:37;20688:194;;;;:::o;20888:234::-;21028:34;21024:1;21016:6;21012:14;21005:58;21097:17;21092:2;21084:6;21080:15;21073:42;20888:234;:::o;21128:366::-;21270:3;21291:67;21355:2;21350:3;21291:67;:::i;:::-;21284:74;;21367:93;21456:3;21367:93;:::i;:::-;21485:2;21480:3;21476:12;21469:19;;21128:366;;;:::o;21500:419::-;21666:4;21704:2;21693:9;21689:18;21681:26;;21753:9;21747:4;21743:20;21739:1;21728:9;21724:17;21717:47;21781:131;21907:4;21781:131;:::i;:::-;21773:139;;21500:419;;;:::o;21925:225::-;22065:34;22061:1;22053:6;22049:14;22042:58;22134:8;22129:2;22121:6;22117:15;22110:33;21925:225;:::o;22156:366::-;22298:3;22319:67;22383:2;22378:3;22319:67;:::i;:::-;22312:74;;22395:93;22484:3;22395:93;:::i;:::-;22513:2;22508:3;22504:12;22497:19;;22156:366;;;:::o;22528:419::-;22694:4;22732:2;22721:9;22717:18;22709:26;;22781:9;22775:4;22771:20;22767:1;22756:9;22752:17;22745:47;22809:131;22935:4;22809:131;:::i;:::-;22801:139;;22528:419;;;:::o;22953:442::-;23102:4;23140:2;23129:9;23125:18;23117:26;;23153:71;23221:1;23210:9;23206:17;23197:6;23153:71;:::i;:::-;23234:72;23302:2;23291:9;23287:18;23278:6;23234:72;:::i;:::-;23316;23384:2;23373:9;23369:18;23360:6;23316:72;:::i;:::-;22953:442;;;;;;:::o;23401:147::-;23502:11;23539:3;23524:18;;23401:147;;;;:::o;23554:114::-;;:::o;23674:398::-;23833:3;23854:83;23935:1;23930:3;23854:83;:::i;:::-;23847:90;;23946:93;24035:3;23946:93;:::i;:::-;24064:1;24059:3;24055:11;24048:18;;23674:398;;;:::o;24078:379::-;24262:3;24284:147;24427:3;24284:147;:::i;:::-;24277:154;;24448:3;24441:10;;24078:379;;;:::o;24463:180::-;24511:77;24508:1;24501:88;24608:4;24605:1;24598:15;24632:4;24629:1;24622:15;24649:180;24697:77;24694:1;24687:88;24794:4;24791:1;24784:15;24818:4;24815:1;24808:15;24835:143;24892:5;24923:6;24917:13;24908:22;;24939:33;24966:5;24939:33;:::i;:::-;24835:143;;;;:::o;24984:351::-;25054:6;25103:2;25091:9;25082:7;25078:23;25074:32;25071:119;;;25109:79;;:::i;:::-;25071:119;25229:1;25254:64;25310:7;25301:6;25290:9;25286:22;25254:64;:::i;:::-;25244:74;;25200:128;24984:351;;;;:::o;25341:85::-;25386:7;25415:5;25404:16;;25341:85;;;:::o;25432:158::-;25490:9;25523:61;25541:42;25550:32;25576:5;25550:32;:::i;:::-;25541:42;:::i;:::-;25523:61;:::i;:::-;25510:74;;25432:158;;;:::o;25596:147::-;25691:45;25730:5;25691:45;:::i;:::-;25686:3;25679:58;25596:147;;:::o;25749:114::-;25816:6;25850:5;25844:12;25834:22;;25749:114;;;:::o;25869:184::-;25968:11;26002:6;25997:3;25990:19;26042:4;26037:3;26033:14;26018:29;;25869:184;;;;:::o;26059:132::-;26126:4;26149:3;26141:11;;26179:4;26174:3;26170:14;26162:22;;26059:132;;;:::o;26197:108::-;26274:24;26292:5;26274:24;:::i;:::-;26269:3;26262:37;26197:108;;:::o;26311:179::-;26380:10;26401:46;26443:3;26435:6;26401:46;:::i;:::-;26479:4;26474:3;26470:14;26456:28;;26311:179;;;;:::o;26496:113::-;26566:4;26598;26593:3;26589:14;26581:22;;26496:113;;;:::o;26645:732::-;26764:3;26793:54;26841:5;26793:54;:::i;:::-;26863:86;26942:6;26937:3;26863:86;:::i;:::-;26856:93;;26973:56;27023:5;26973:56;:::i;:::-;27052:7;27083:1;27068:284;27093:6;27090:1;27087:13;27068:284;;;27169:6;27163:13;27196:63;27255:3;27240:13;27196:63;:::i;:::-;27189:70;;27282:60;27335:6;27282:60;:::i;:::-;27272:70;;27128:224;27115:1;27112;27108:9;27103:14;;27068:284;;;27072:14;27368:3;27361:10;;26769:608;;;26645:732;;;;:::o;27383:831::-;27646:4;27684:3;27673:9;27669:19;27661:27;;27698:71;27766:1;27755:9;27751:17;27742:6;27698:71;:::i;:::-;27779:80;27855:2;27844:9;27840:18;27831:6;27779:80;:::i;:::-;27906:9;27900:4;27896:20;27891:2;27880:9;27876:18;27869:48;27934:108;28037:4;28028:6;27934:108;:::i;:::-;27926:116;;28052:72;28120:2;28109:9;28105:18;28096:6;28052:72;:::i;:::-;28134:73;28202:3;28191:9;28187:19;28178:6;28134:73;:::i;:::-;27383:831;;;;;;;;:::o;28220:807::-;28469:4;28507:3;28496:9;28492:19;28484:27;;28521:71;28589:1;28578:9;28574:17;28565:6;28521:71;:::i;:::-;28602:72;28670:2;28659:9;28655:18;28646:6;28602:72;:::i;:::-;28684:80;28760:2;28749:9;28745:18;28736:6;28684:80;:::i;:::-;28774;28850:2;28839:9;28835:18;28826:6;28774:80;:::i;:::-;28864:73;28932:3;28921:9;28917:19;28908:6;28864:73;:::i;:::-;28947;29015:3;29004:9;29000:19;28991:6;28947:73;:::i;:::-;28220:807;;;;;;;;;:::o;29033:143::-;29090:5;29121:6;29115:13;29106:22;;29137:33;29164:5;29137:33;:::i;:::-;29033:143;;;;:::o;29182:663::-;29270:6;29278;29286;29335:2;29323:9;29314:7;29310:23;29306:32;29303:119;;;29341:79;;:::i;:::-;29303:119;29461:1;29486:64;29542:7;29533:6;29522:9;29518:22;29486:64;:::i;:::-;29476:74;;29432:128;29599:2;29625:64;29681:7;29672:6;29661:9;29657:22;29625:64;:::i;:::-;29615:74;;29570:129;29738:2;29764:64;29820:7;29811:6;29800:9;29796:22;29764:64;:::i;:::-;29754:74;;29709:129;29182:663;;;;;:::o

Swarm Source

ipfs://7f369a6646e9b63275b7f68b8b3f4bdeec9e1aea234f0cd7d696f3c27fbfb2b0

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

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

Validator Index Block Amount
View All Withdrawals

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

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