ETH Price: $3,475.67 (+5.98%)
Gas: 5 Gwei

Token

PokerClub (POKER)
 

Overview

Max Total Supply

1,000,000 POKER

Holders

96

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
bearbearovich.eth
Balance
4,994.911079658503949259 POKER

Value
$0.00
0xbaa80c08cd13085cda25b3d02634d393f506b3fe
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Poker

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-10-31
*/

// SPDX-License-Identifier: MIT
pragma solidity 0.8.20;
pragma experimental ABIEncoderV2;

/**
/               WELCOME TO POKERCLUB / THE FIRST P2E POKER GAMES TOKEN
/                        WIN POKER GAMES, WIN ETH PRIZE POOL.
/                        READ OUR DOCS FOR MORE INFORMATION.
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/ Join us in the world of ETH-based poker where your skills can earn you ETH from a growing pot after every game. 
/ Here, the stakes are high, the competition is intense, and the rewards are real. 
/ Every hand you play contributes to a jackpot that increases with each round. 
/ Take your place at the table, showcase your strategic prowess, and compete for the ETH pot awaiting a champion. 
/ It's not just a game; it's an opportunity to test your skills and win tangible crypto rewards. 
/ Good luck, and let the games begin! Join us in this exciting journey of poker and potential winnings.
////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/// ETH POOL PRIZES FOR WINNERS
//// REVENUE SHARE FOR HOLDERS
///// BETTING SYSTEM FOR VIEWERS

// DOCS: https://docs.pokerclub.one/
// Telegram: https://t.me/PokerClubERC
// Twitter: https://twitter.com/PokerClubERC

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

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

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

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

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

////// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

////// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol)

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

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

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

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

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

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

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

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

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

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

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

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual { }

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual { }
}

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
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 substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns(bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

////// src/IUniswapV2Pair.sol
/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

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

function name() external pure returns(string memory);

function symbol() external pure returns(string memory);

function decimals() external pure returns(uint8);

function totalSupply() external view returns(uint256);

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

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

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

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

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

function DOMAIN_SEPARATOR() external view returns(bytes32);

function PERMIT_TYPEHASH() external pure returns(bytes32);

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

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

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

function MINIMUM_LIQUIDITY() external pure returns(uint256);

function factory() external view returns(address);

function token0() external view returns(address);

function token1() external view returns(address);

function getReserves()
external
view
returns(
    uint112 reserve0,
    uint112 reserve1,
    uint32 blockTimestampLast
);

function price0CumulativeLast() external view returns(uint256);

function price1CumulativeLast() external view returns(uint256);

function kLast() external view returns(uint256);

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

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

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

function skim(address to) external;

function sync() external;

function initialize(address, address) external;
}

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

function WETH() external pure returns(address);

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

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

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

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

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

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

        IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    address public constant deadAddress = address(0xdead);

    bool private swapping;

    address public revShareWallet;
    address public teamWallet;

    uint256 public maxTransactionAmount;
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;

    bool public limitsInEffect = true;
    bool public tradingActive = true;
    bool public swapEnabled = true;

    bool public blacklistRenounced = false;

    // Anti-bot and anti-whale mappings and variables
    mapping(address => bool) blacklisted;

    uint256 public buyTotalFees;
    uint256 public buyRevShareFee;
    uint256 public buyLiquidityFee;
    uint256 public buyTeamFee;

    uint256 public sellTotalFees;
    uint256 public sellRevShareFee;
    uint256 public sellLiquidityFee;
    uint256 public sellTeamFee;

    uint256 public tokensForRevShare;
    uint256 public tokensForLiquidity;
    uint256 public tokensForTeam;

    /******************/

    // exclude from fees and max transaction amount
    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) public _isExcludedMaxTransactionAmount;

    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount
    mapping(address => bool) public automatedMarketMakerPairs;

    bool public preMigrationPhase = true;
    mapping(address => bool) public preMigrationTransferrable;

    event UpdateUniswapV2Router(
        address indexed newAddress,
        address indexed oldAddress
    );

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

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

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

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

    constructor() ERC20("PokerClub", "POKER") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
        0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
    );

        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        uniswapV2Router = _uniswapV2Router;

        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());
        excludeFromMaxTransaction(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);

        uint256 _buyRevShareFee = 3;
        uint256 _buyLiquidityFee = 0;
        uint256 _buyTeamFee = 2;

        uint256 _sellRevShareFee = 3;
        uint256 _sellLiquidityFee = 0;
        uint256 _sellTeamFee = 2;

        uint256 totalSupply = 1_000_000 * 1e18;

        maxTransactionAmount = 30_000 * 1e18; // 1%
        maxWallet = 30_000 * 1e18; // 1% 
        swapTokensAtAmount = (totalSupply * 5) / 1000; // 0.05% 

        buyRevShareFee = _buyRevShareFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyTeamFee = _buyTeamFee;
        buyTotalFees = buyRevShareFee + buyLiquidityFee + buyTeamFee;

        sellRevShareFee = _sellRevShareFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellTeamFee = _sellTeamFee;
        sellTotalFees = sellRevShareFee + sellLiquidityFee + sellTeamFee;

        revShareWallet = address(0x08f03DeE98f92917dA6Bb0dd8554d2B30b2BC684); // set as revShare
        teamWallet = address(0x08f03DeE98f92917dA6Bb0dd8554d2B30b2BC684); // set as team

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

        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);

        preMigrationTransferrable[owner()] = true;

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

    receive() external payable { }

    // once enabled, can never be turned off
    function enableTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
        preMigrationPhase = false;
    }

    // remove limits after token is stable
    function removeLimits() external onlyOwner returns(bool) {
        limitsInEffect = false;
        return true;
    }

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

    function updateMaxTxnAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 5) / 1000) / 1e18,
            "Cannot set maxTransactionAmount lower than 0.5%"
        );
        maxTransactionAmount = newNum * (10 ** 18);
    }

    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 10) / 1000) / 1e18,
            "Cannot set maxWallet lower than 1.0%"
        );
        maxWallet = newNum * (10 ** 18);
    }

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

    // only use to disable contract sales if absolutely necessary (emergency use only)
    function updateSwapEnabled(bool enabled) external onlyOwner {
        swapEnabled = enabled;
    }

    function updateBuyFees(
        uint256 _revShareFee,
        uint256 _liquidityFee,
        uint256 _teamFee
    ) external onlyOwner {
        buyRevShareFee = _revShareFee;
        buyLiquidityFee = _liquidityFee;
        buyTeamFee = _teamFee;
        buyTotalFees = buyRevShareFee + buyLiquidityFee + buyTeamFee;
        require(buyTotalFees <= 5, "Buy fees must be <= 5.");
    }

    function updateSellFees(
        uint256 _revShareFee,
        uint256 _liquidityFee,
        uint256 _teamFee
    ) external onlyOwner {
        sellRevShareFee = _revShareFee;
        sellLiquidityFee = _liquidityFee;
        sellTeamFee = _teamFee;
        sellTotalFees = sellRevShareFee + sellLiquidityFee + sellTeamFee;
        require(sellTotalFees <= 5, "Sell fees must be <= 5.");
    }

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

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

        _setAutomatedMarketMakerPair(pair, value);
    }

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        automatedMarketMakerPairs[pair] = value;

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function updateRevShareWallet(address newRevShareWallet) external onlyOwner {
        emit revShareWalletUpdated(newRevShareWallet, revShareWallet);
        revShareWallet = newRevShareWallet;
    }

    function updateTeamWallet(address newWallet) external onlyOwner {
        emit teamWalletUpdated(newWallet, teamWallet);
        teamWallet = newWallet;
    }

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

    function isBlacklisted(address account) public view returns(bool) {
        return blacklisted[account];
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(!blacklisted[from], "Sender blacklisted");
        require(!blacklisted[to], "Receiver blacklisted");

        if (preMigrationPhase) {
            require(preMigrationTransferrable[from], "Not authorized to transfer pre-migration.");
        }

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

        if (limitsInEffect) {
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ) {
                if (!tradingActive) {
                    require(
                        _isExcludedFromFees[from] || _isExcludedFromFees[to],
                        "Trading is not active."
                    );
                }

                //when buy
                if (
                    automatedMarketMakerPairs[from] &&
                    !_isExcludedMaxTransactionAmount[to]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Buy transfer amount exceeds the maxTransactionAmount."
                    );
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
                //when sell
                else if (
                    automatedMarketMakerPairs[to] &&
                    !_isExcludedMaxTransactionAmount[from]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Sell transfer amount exceeds the maxTransactionAmount."
                    );
                } else if (!_isExcludedMaxTransactionAmount[to]) {
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if (
            canSwap &&
            swapEnabled &&
            !swapping &&
            !automatedMarketMakerPairs[from] &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapping = true;

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

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

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
                tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
                tokensForTeam += (fees * sellTeamFee) / sellTotalFees;
                tokensForRevShare += (fees * sellRevShareFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForTeam += (fees * buyTeamFee) / buyTotalFees;
                tokensForRevShare += (fees * buyRevShareFee) / buyTotalFees;
            }

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

            amount -= fees;
        }

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

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

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

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

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

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

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForLiquidity +
            tokensForRevShare +
            tokensForTeam;
        bool success;

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

        if (contractBalance > swapTokensAtAmount * 20) {
            contractBalance = swapTokensAtAmount * 20;
        }

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

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

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

        uint256 ethForRevShare = ethBalance.mul(tokensForRevShare).div(totalTokensToSwap - (tokensForLiquidity / 2));
        
        uint256 ethForTeam = ethBalance.mul(tokensForTeam).div(totalTokensToSwap - (tokensForLiquidity / 2));

        uint256 ethForLiquidity = ethBalance - ethForRevShare - ethForTeam;

        tokensForLiquidity = 0;
        tokensForRevShare = 0;
        tokensForTeam = 0;

        (success, ) = address(teamWallet).call{ value: ethForTeam } ("");

        if (liquidityTokens > 0 && ethForLiquidity > 0) {
            addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(
                amountToSwapForETH,
                ethForLiquidity,
                tokensForLiquidity
            );
        }

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

    function withdrawStuckBB() external onlyOwner {
        uint256 balance = IERC20(address(this)).balanceOf(address(this));
        IERC20(address(this)).transfer(msg.sender, balance);
        payable(msg.sender).transfer(address(this).balance);
    }

    function withdrawStuckToken(address _token, address _to) external onlyOwner {
        require(_token != address(0), "_token address cannot be 0");
        uint256 _contractBalance = IERC20(_token).balanceOf(address(this));
        IERC20(_token).transfer(_to, _contractBalance);
    }

    function withdrawStuckEth(address toAddr) external onlyOwner {
        (bool success, ) = toAddr.call{
            value: address(this).balance
        } ("");
        require(success);
    }

    // @dev team renounce blacklist commands
    function renounceBlacklist() public onlyOwner {
        blacklistRenounced = true;
    }

    function blacklist(address _addr) public onlyOwner {
        require(!blacklistRenounced, "Team has revoked blacklist rights");
        require(
            _addr != address(uniswapV2Pair) && _addr != address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D),
            "Cannot blacklist token's v2 router or v2 pool."
        );
        blacklisted[_addr] = true;
    }

    // @dev blacklist v3 pools; can unblacklist() down the road to suit project and community
    function blacklistLiquidityPool(address lpAddress) public onlyOwner {
        require(!blacklistRenounced, "Team has revoked blacklist rights");
        require(
            lpAddress != address(uniswapV2Pair) && lpAddress != address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D),
            "Cannot blacklist token's v2 router or v2 pool."
        );
        blacklisted[lpAddress] = true;
    }

    // @dev unblacklist address; not affected by blacklistRenounced incase team wants to unblacklist v3 pools down the road
    function unblacklist(address _addr) public onlyOwner {
        blacklisted[_addr] = false;
    }

    function setPreMigrationTransferable(address _addr, bool isAuthorized) public onlyOwner {
        preMigrationTransferrable[_addr] = isAuthorized;
        excludeFromFees(_addr, isAuthorized);
        excludeFromMaxTransaction(_addr, isAuthorized);
    }
}

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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"revShareWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"teamWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"lpAddress","type":"address"}],"name":"blacklistLiquidityPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"blacklistRenounced","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyRevShareFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTeamFee","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":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","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":[{"internalType":"address","name":"account","type":"address"}],"name":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"preMigrationPhase","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"preMigrationTransferrable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revShareWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellRevShareFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTeamFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"},{"internalType":"bool","name":"isAuthorized","type":"bool"}],"name":"setPreMigrationTransferable","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":"teamWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForRevShare","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForTeam","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"unblacklist","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"},{"inputs":[{"internalType":"uint256","name":"_revShareFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_teamFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newRevShareWallet","type":"address"}],"name":"updateRevShareWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_revShareFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_teamFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateTeamWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawStuckBB","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"toAddr","type":"address"}],"name":"withdrawStuckEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_to","type":"address"}],"name":"withdrawStuckToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526001600b5f6101000a81548160ff0219169083151502179055506001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff0219169083151502179055505f600b60036101000a81548160ff0219169083151502179055506001601b5f6101000a81548160ff02191690831515021790555034801562000094575f80fd5b506040518060400160405280600981526020017f506f6b6572436c756200000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f504f4b4552000000000000000000000000000000000000000000000000000000815250816003908162000112919062000d8f565b50806004908162000124919062000d8f565b505050620001476200013b6200060360201b60201c565b6200060a60201b60201c565b5f737a250d5630b4cf539739df2c5dacb4c659f2488d905062000172816001620006cd60201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001f0573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000216919062000ed8565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200027c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620002a2919062000ed8565b6040518363ffffffff1660e01b8152600401620002c192919062000f19565b6020604051808303815f875af1158015620002de573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000304919062000ed8565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200034c60a0516001620006cd60201b60201c565b6200036160a0516001620007b460201b60201c565b5f600390505f80600290505f600390505f80600290505f69d3c21bcecceda1000000905069065a4da25d3016c0000060088190555069065a4da25d3016c00000600a819055506103e8600582620003b9919062000f71565b620003c5919062000fe8565b60098190555086600e8190555085600f8190555084601081905550601054600f54600e54620003f591906200101f565b6200040191906200101f565b600d819055508360128190555082601381905550816014819055506014546013546012546200043191906200101f565b6200043d91906200101f565b6011819055507308f03dee98f92917da6bb0dd8554d2b30b2bc68460065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507308f03dee98f92917da6bb0dd8554d2b30b2bc68460075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200050d620004ff6200085260201b60201c565b60016200087a60201b60201c565b620005203060016200087a60201b60201c565b6200053561dead60016200087a60201b60201c565b62000557620005496200085260201b60201c565b6001620006cd60201b60201c565b6200056a306001620006cd60201b60201c565b6200057f61dead6001620006cd60201b60201c565b6001601c5f620005946200085260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550620005f53382620009b160201b60201c565b5050505050505050620011a8565b5f33905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620006dd6200060360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620007036200085260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200075c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200075390620010b7565b60405180910390fd5b8060195f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b80601a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6200088a6200060360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620008b06200085260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000909576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200090090620010b7565b60405180910390fd5b8060185f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620009a59190620010f3565b60405180910390a25050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000a22576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a19906200115c565b60405180910390fd5b62000a355f838362000b2160201b60201c565b8060025f82825462000a4891906200101f565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825462000a9c91906200101f565b925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000b0291906200118d565b60405180910390a362000b1d5f838362000b2660201b60201c565b5050565b505050565b505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168062000ba757607f821691505b60208210810362000bbd5762000bbc62000b62565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830262000c217fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000be4565b62000c2d868362000be4565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f62000c7762000c7162000c6b8462000c45565b62000c4e565b62000c45565b9050919050565b5f819050919050565b62000c928362000c57565b62000caa62000ca18262000c7e565b84845462000bf0565b825550505050565b5f90565b62000cc062000cb2565b62000ccd81848462000c87565b505050565b5b8181101562000cf45762000ce85f8262000cb6565b60018101905062000cd3565b5050565b601f82111562000d435762000d0d8162000bc3565b62000d188462000bd5565b8101602085101562000d28578190505b62000d4062000d378562000bd5565b83018262000cd2565b50505b505050565b5f82821c905092915050565b5f62000d655f198460080262000d48565b1980831691505092915050565b5f62000d7f838362000d54565b9150826002028217905092915050565b62000d9a8262000b2b565b67ffffffffffffffff81111562000db65762000db562000b35565b5b62000dc2825462000b8f565b62000dcf82828562000cf8565b5f60209050601f83116001811462000e05575f841562000df0578287015190505b62000dfc858262000d72565b86555062000e6b565b601f19841662000e158662000bc3565b5f5b8281101562000e3e5784890151825560018201915060208501945060208101905062000e17565b8683101562000e5e578489015162000e5a601f89168262000d54565b8355505b6001600288020188555050505b505050505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f62000ea28262000e77565b9050919050565b62000eb48162000e96565b811462000ebf575f80fd5b50565b5f8151905062000ed28162000ea9565b92915050565b5f6020828403121562000ef05762000eef62000e73565b5b5f62000eff8482850162000ec2565b91505092915050565b62000f138162000e96565b82525050565b5f60408201905062000f2e5f83018562000f08565b62000f3d602083018462000f08565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f62000f7d8262000c45565b915062000f8a8362000c45565b925082820262000f9a8162000c45565b9150828204841483151762000fb45762000fb362000f44565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f62000ff48262000c45565b9150620010018362000c45565b92508262001014576200101362000fbb565b5b828204905092915050565b5f6200102b8262000c45565b9150620010388362000c45565b925082820190508082111562001053576200105262000f44565b5b92915050565b5f82825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6200109f60208362001059565b9150620010ac8262001069565b602082019050919050565b5f6020820190508181035f830152620010d08162001091565b9050919050565b5f8115159050919050565b620010ed81620010d7565b82525050565b5f602082019050620011085f830184620010e2565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f62001144601f8362001059565b915062001151826200110e565b602082019050919050565b5f6020820190508181035f830152620011758162001136565b9050919050565b620011878162000c45565b82525050565b5f602082019050620011a25f8301846200117c565b92915050565b60805160a051615e8c620012025f395f81816112b501528181611ee401528181612aa30152612db001525f8181610fad01528181614502015281816145e1015281816146080152818161469e01526146c50152615e8c5ff3fe6080604052600436106103c6575f3560e01c80638095d564116101f1578063c17b5b8c1161010c578063e2f456051161009f578063f8b45b051161006e578063f8b45b0514610e11578063f9f92be414610e3b578063fde83a3414610e63578063fe575a8714610e8d576103cd565b8063e2f4560514610d6b578063f11a24d314610d95578063f2fde38b14610dbf578063f637434214610de7576103cd565b8063d729715f116100db578063d729715f14610cb3578063d85ba06314610cdd578063dd62ed3e14610d07578063e19b282314610d43576103cd565b8063c17b5b8c14610bfd578063c18bc19514610c25578063c8c8ebe414610c4d578063d257b34f14610c77576103cd565b8063a457c2d711610184578063b62496f511610153578063b62496f514610b47578063bbc0c74214610b83578063bc205ad314610bad578063c024666814610bd5576103cd565b8063a457c2d714610a7f578063a9059cbb14610abb578063aa0e438814610af7578063adee28ff14610b1f576103cd565b8063924de9b7116101c0578063924de9b7146109db57806395d89b4114610a035780639a7a23d614610a2d5780639c2e4ac614610a55576103cd565b80638095d5641461095d5780638a8c523c146109855780638cf3b4ce1461099b5780638da5cb5b146109b1576103cd565b806349bd5a5e116102e157806370a082311161027457806375e3661e1161024357806375e3661e146108bb578063782c4e99146108e35780637ca8448a1461090d5780637cb332bb14610935576103cd565b806370a0823114610817578063715018a614610853578063751039fc146108695780637571336a14610893576103cd565b806359927044116102b057806359927044146107835780635f189361146107ad5780636a486a8e146107c35780636ddd1713146107ed576103cd565b806349bd5a5e146106b75780634a62bb65146106e15780634e29e5231461070b5780634fbee19314610747576103cd565b80631a8145bb1161035957806327c8f8351161032857806327c8f835146105fd578063313ce5671461062757806339509351146106515780633dc599ff1461068d576103cd565b80631a8145bb14610545578063203e727e1461056f57806323b872dd1461059757806324b9f3c1146105d3576103cd565b8063156c2f3511610395578063156c2f351461049d5780631694505e146104c757806318160ddd146104f157806319eab0421461051b576103cd565b806306fdde03146103d1578063095ea7b3146103fb5780630e922ca71461043757806310d5de5314610461576103cd565b366103cd57005b5f80fd5b3480156103dc575f80fd5b506103e5610ec9565b6040516103f29190614800565b60405180910390f35b348015610406575f80fd5b50610421600480360381019061041c91906148b1565b610f59565b60405161042e9190614909565b60405180910390f35b348015610442575f80fd5b5061044b610f76565b6040516104589190614909565b60405180910390f35b34801561046c575f80fd5b5061048760048036038101906104829190614922565b610f88565b6040516104949190614909565b60405180910390f35b3480156104a8575f80fd5b506104b1610fa5565b6040516104be919061495c565b60405180910390f35b3480156104d2575f80fd5b506104db610fab565b6040516104e891906149d0565b60405180910390f35b3480156104fc575f80fd5b50610505610fcf565b604051610512919061495c565b60405180910390f35b348015610526575f80fd5b5061052f610fd8565b60405161053c919061495c565b60405180910390f35b348015610550575f80fd5b50610559610fde565b604051610566919061495c565b60405180910390f35b34801561057a575f80fd5b50610595600480360381019061059091906149e9565b610fe4565b005b3480156105a2575f80fd5b506105bd60048036038101906105b89190614a14565b6110f3565b6040516105ca9190614909565b60405180910390f35b3480156105de575f80fd5b506105e76111e5565b6040516105f4919061495c565b60405180910390f35b348015610608575f80fd5b506106116111eb565b60405161061e9190614a73565b60405180910390f35b348015610632575f80fd5b5061063b6111f1565b6040516106489190614aa7565b60405180910390f35b34801561065c575f80fd5b50610677600480360381019061067291906148b1565b6111f9565b6040516106849190614909565b60405180910390f35b348015610698575f80fd5b506106a16112a0565b6040516106ae9190614909565b60405180910390f35b3480156106c2575f80fd5b506106cb6112b3565b6040516106d89190614a73565b60405180910390f35b3480156106ec575f80fd5b506106f56112d7565b6040516107029190614909565b60405180910390f35b348015610716575f80fd5b50610731600480360381019061072c9190614922565b6112e9565b60405161073e9190614909565b60405180910390f35b348015610752575f80fd5b5061076d60048036038101906107689190614922565b611306565b60405161077a9190614909565b60405180910390f35b34801561078e575f80fd5b50610797611358565b6040516107a49190614a73565b60405180910390f35b3480156107b8575f80fd5b506107c161137d565b005b3480156107ce575f80fd5b506107d7611416565b6040516107e4919061495c565b60405180910390f35b3480156107f8575f80fd5b5061080161141c565b60405161080e9190614909565b60405180910390f35b348015610822575f80fd5b5061083d60048036038101906108389190614922565b61142f565b60405161084a919061495c565b60405180910390f35b34801561085e575f80fd5b50610867611474565b005b348015610874575f80fd5b5061087d6114fb565b60405161088a9190614909565b60405180910390f35b34801561089e575f80fd5b506108b960048036038101906108b49190614aea565b611598565b005b3480156108c6575f80fd5b506108e160048036038101906108dc9190614922565b61166c565b005b3480156108ee575f80fd5b506108f761173f565b6040516109049190614a73565b60405180910390f35b348015610918575f80fd5b50610933600480360381019061092e9190614922565b611764565b005b348015610940575f80fd5b5061095b60048036038101906109569190614922565b611855565b005b348015610968575f80fd5b50610983600480360381019061097e9190614b28565b61198f565b005b348015610990575f80fd5b50610999611a8e565b005b3480156109a6575f80fd5b506109af611b5b565b005b3480156109bc575f80fd5b506109c5611d15565b6040516109d29190614a73565b60405180910390f35b3480156109e6575f80fd5b50610a0160048036038101906109fc9190614b78565b611d3d565b005b348015610a0e575f80fd5b50610a17611dd6565b604051610a249190614800565b60405180910390f35b348015610a38575f80fd5b50610a536004803603810190610a4e9190614aea565b611e66565b005b348015610a60575f80fd5b50610a69611f7e565b604051610a76919061495c565b60405180910390f35b348015610a8a575f80fd5b50610aa56004803603810190610aa091906148b1565b611f84565b604051610ab29190614909565b60405180910390f35b348015610ac6575f80fd5b50610ae16004803603810190610adc91906148b1565b61206a565b604051610aee9190614909565b60405180910390f35b348015610b02575f80fd5b50610b1d6004803603810190610b189190614aea565b612087565b005b348015610b2a575f80fd5b50610b456004803603810190610b409190614922565b61216f565b005b348015610b52575f80fd5b50610b6d6004803603810190610b689190614922565b6122a9565b604051610b7a9190614909565b60405180910390f35b348015610b8e575f80fd5b50610b976122c6565b604051610ba49190614909565b60405180910390f35b348015610bb8575f80fd5b50610bd36004803603810190610bce9190614ba3565b6122d9565b005b348015610be0575f80fd5b50610bfb6004803603810190610bf69190614aea565b6124bf565b005b348015610c08575f80fd5b50610c236004803603810190610c1e9190614b28565b6125e1565b005b348015610c30575f80fd5b50610c4b6004803603810190610c4691906149e9565b6126e0565b005b348015610c58575f80fd5b50610c616127ef565b604051610c6e919061495c565b60405180910390f35b348015610c82575f80fd5b50610c9d6004803603810190610c9891906149e9565b6127f5565b604051610caa9190614909565b60405180910390f35b348015610cbe575f80fd5b50610cc7612947565b604051610cd4919061495c565b60405180910390f35b348015610ce8575f80fd5b50610cf161294d565b604051610cfe919061495c565b60405180910390f35b348015610d12575f80fd5b50610d2d6004803603810190610d289190614ba3565b612953565b604051610d3a919061495c565b60405180910390f35b348015610d4e575f80fd5b50610d696004803603810190610d649190614922565b6129d5565b005b348015610d76575f80fd5b50610d7f612bd4565b604051610d8c919061495c565b60405180910390f35b348015610da0575f80fd5b50610da9612bda565b604051610db6919061495c565b60405180910390f35b348015610dca575f80fd5b50610de56004803603810190610de09190614922565b612be0565b005b348015610df2575f80fd5b50610dfb612cd6565b604051610e08919061495c565b60405180910390f35b348015610e1c575f80fd5b50610e25612cdc565b604051610e32919061495c565b60405180910390f35b348015610e46575f80fd5b50610e616004803603810190610e5c9190614922565b612ce2565b005b348015610e6e575f80fd5b50610e77612ee1565b604051610e84919061495c565b60405180910390f35b348015610e98575f80fd5b50610eb36004803603810190610eae9190614922565b612ee7565b604051610ec09190614909565b60405180910390f35b606060038054610ed890614c0e565b80601f0160208091040260200160405190810160405280929190818152602001828054610f0490614c0e565b8015610f4f5780601f10610f2657610100808354040283529160200191610f4f565b820191905f5260205f20905b815481529060010190602001808311610f3257829003601f168201915b5050505050905090565b5f610f6c610f65612f39565b8484612f40565b6001905092915050565b601b5f9054906101000a900460ff1681565b6019602052805f5260405f205f915054906101000a900460ff1681565b600e5481565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f600254905090565b60125481565b60165481565b610fec612f39565b73ffffffffffffffffffffffffffffffffffffffff1661100a611d15565b73ffffffffffffffffffffffffffffffffffffffff1614611060576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105790614c88565b60405180910390fd5b670de0b6b3a76400006103e86005611076610fcf565b6110809190614cd3565b61108a9190614d41565b6110949190614d41565b8110156110d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cd90614de1565b60405180910390fd5b670de0b6b3a7640000816110ea9190614cd3565b60088190555050565b5f6110ff848484613103565b5f60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f611146612f39565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050828110156111c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bc90614e6f565b60405180910390fd5b6111d9856111d1612f39565b858403612f40565b60019150509392505050565b60155481565b61dead81565b5f6012905090565b5f611296611205612f39565b848460015f611212612f39565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546112919190614e8d565b612f40565b6001905092915050565b600b60039054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b600b5f9054906101000a900460ff1681565b601c602052805f5260405f205f915054906101000a900460ff1681565b5f60185f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611385612f39565b73ffffffffffffffffffffffffffffffffffffffff166113a3611d15565b73ffffffffffffffffffffffffffffffffffffffff16146113f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f090614c88565b60405180910390fd5b6001600b60036101000a81548160ff021916908315150217905550565b60115481565b600b60029054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61147c612f39565b73ffffffffffffffffffffffffffffffffffffffff1661149a611d15565b73ffffffffffffffffffffffffffffffffffffffff16146114f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e790614c88565b60405180910390fd5b6114f95f613d45565b565b5f611504612f39565b73ffffffffffffffffffffffffffffffffffffffff16611522611d15565b73ffffffffffffffffffffffffffffffffffffffff1614611578576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156f90614c88565b60405180910390fd5b5f600b5f6101000a81548160ff0219169083151502179055506001905090565b6115a0612f39565b73ffffffffffffffffffffffffffffffffffffffff166115be611d15565b73ffffffffffffffffffffffffffffffffffffffff1614611614576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160b90614c88565b60405180910390fd5b8060195f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b611674612f39565b73ffffffffffffffffffffffffffffffffffffffff16611692611d15565b73ffffffffffffffffffffffffffffffffffffffff16146116e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116df90614c88565b60405180910390fd5b5f600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61176c612f39565b73ffffffffffffffffffffffffffffffffffffffff1661178a611d15565b73ffffffffffffffffffffffffffffffffffffffff16146117e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d790614c88565b60405180910390fd5b5f8173ffffffffffffffffffffffffffffffffffffffff164760405161180590614eed565b5f6040518083038185875af1925050503d805f811461183f576040519150601f19603f3d011682016040523d82523d5f602084013e611844565b606091505b5050905080611851575f80fd5b5050565b61185d612f39565b73ffffffffffffffffffffffffffffffffffffffff1661187b611d15565b73ffffffffffffffffffffffffffffffffffffffff16146118d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c890614c88565b60405180910390fd5b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8aa0f85050aca99be43beb823e0457e77966b3baf697a289b03681978f96166860405160405180910390a38060075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611997612f39565b73ffffffffffffffffffffffffffffffffffffffff166119b5611d15565b73ffffffffffffffffffffffffffffffffffffffff1614611a0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0290614c88565b60405180910390fd5b82600e8190555081600f8190555080601081905550601054600f54600e54611a339190614e8d565b611a3d9190614e8d565b600d819055506005600d541115611a89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8090614f4b565b60405180910390fd5b505050565b611a96612f39565b73ffffffffffffffffffffffffffffffffffffffff16611ab4611d15565b73ffffffffffffffffffffffffffffffffffffffff1614611b0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0190614c88565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff0219169083151502179055505f601b5f6101000a81548160ff021916908315150217905550565b611b63612f39565b73ffffffffffffffffffffffffffffffffffffffff16611b81611d15565b73ffffffffffffffffffffffffffffffffffffffff1614611bd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bce90614c88565b60405180910390fd5b5f3073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401611c119190614a73565b602060405180830381865afa158015611c2c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c509190614f7d565b90503073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401611c8d929190614fa8565b6020604051808303815f875af1158015611ca9573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ccd9190614fe3565b503373ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f19350505050158015611d11573d5f803e3d5ffd5b5050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611d45612f39565b73ffffffffffffffffffffffffffffffffffffffff16611d63611d15565b73ffffffffffffffffffffffffffffffffffffffff1614611db9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db090614c88565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b606060048054611de590614c0e565b80601f0160208091040260200160405190810160405280929190818152602001828054611e1190614c0e565b8015611e5c5780601f10611e3357610100808354040283529160200191611e5c565b820191905f5260205f20905b815481529060010190602001808311611e3f57829003601f168201915b5050505050905090565b611e6e612f39565b73ffffffffffffffffffffffffffffffffffffffff16611e8c611d15565b73ffffffffffffffffffffffffffffffffffffffff1614611ee2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed990614c88565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611f70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f679061507e565b60405180910390fd5b611f7a8282613e08565b5050565b60105481565b5f8060015f611f91612f39565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508281101561204b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120429061510c565b60405180910390fd5b61205f612056612f39565b85858403612f40565b600191505092915050565b5f61207d612076612f39565b8484613103565b6001905092915050565b61208f612f39565b73ffffffffffffffffffffffffffffffffffffffff166120ad611d15565b73ffffffffffffffffffffffffffffffffffffffff1614612103576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120fa90614c88565b60405180910390fd5b80601c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555061216182826124bf565b61216b8282611598565b5050565b612177612f39565b73ffffffffffffffffffffffffffffffffffffffff16612195611d15565b73ffffffffffffffffffffffffffffffffffffffff16146121eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e290614c88565b60405180910390fd5b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fc9f2d63eee8632b33d7a7db5252eb29036e81ee4fbe29260febe0c49ffb8a7bb60405160405180910390a38060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601a602052805f5260405f205f915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b6122e1612f39565b73ffffffffffffffffffffffffffffffffffffffff166122ff611d15565b73ffffffffffffffffffffffffffffffffffffffff1614612355576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234c90614c88565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036123c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ba90615174565b60405180910390fd5b5f8273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016123fd9190614a73565b602060405180830381865afa158015612418573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061243c9190614f7d565b90508273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b8152600401612479929190614fa8565b6020604051808303815f875af1158015612495573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906124b99190614fe3565b50505050565b6124c7612f39565b73ffffffffffffffffffffffffffffffffffffffff166124e5611d15565b73ffffffffffffffffffffffffffffffffffffffff161461253b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253290614c88565b60405180910390fd5b8060185f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516125d59190614909565b60405180910390a25050565b6125e9612f39565b73ffffffffffffffffffffffffffffffffffffffff16612607611d15565b73ffffffffffffffffffffffffffffffffffffffff161461265d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265490614c88565b60405180910390fd5b8260128190555081601381905550806014819055506014546013546012546126859190614e8d565b61268f9190614e8d565b601181905550600560115411156126db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d2906151dc565b60405180910390fd5b505050565b6126e8612f39565b73ffffffffffffffffffffffffffffffffffffffff16612706611d15565b73ffffffffffffffffffffffffffffffffffffffff161461275c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275390614c88565b60405180910390fd5b670de0b6b3a76400006103e8600a612772610fcf565b61277c9190614cd3565b6127869190614d41565b6127909190614d41565b8110156127d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127c99061526a565b60405180910390fd5b670de0b6b3a7640000816127e69190614cd3565b600a8190555050565b60085481565b5f6127fe612f39565b73ffffffffffffffffffffffffffffffffffffffff1661281c611d15565b73ffffffffffffffffffffffffffffffffffffffff1614612872576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286990614c88565b60405180910390fd5b6103e8600161287f610fcf565b6128899190614cd3565b6128939190614d41565b8210156128d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128cc906152f8565b60405180910390fd5b606460056128e1610fcf565b6128eb9190614cd3565b6128f59190614d41565b821115612937576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292e90615386565b60405180910390fd5b8160098190555060019050919050565b60145481565b600d5481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6129dd612f39565b73ffffffffffffffffffffffffffffffffffffffff166129fb611d15565b73ffffffffffffffffffffffffffffffffffffffff1614612a51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4890614c88565b60405180910390fd5b600b60039054906101000a900460ff1615612aa1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a9890615414565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614158015612b3d5750737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b612b7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b73906154a2565b60405180910390fd5b6001600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b60095481565b600f5481565b612be8612f39565b73ffffffffffffffffffffffffffffffffffffffff16612c06611d15565b73ffffffffffffffffffffffffffffffffffffffff1614612c5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c5390614c88565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612cca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cc190615530565b60405180910390fd5b612cd381613d45565b50565b60135481565b600a5481565b612cea612f39565b73ffffffffffffffffffffffffffffffffffffffff16612d08611d15565b73ffffffffffffffffffffffffffffffffffffffff1614612d5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d5590614c88565b60405180910390fd5b600b60039054906101000a900460ff1615612dae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612da590615414565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614158015612e4a5750737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b612e89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e80906154a2565b60405180910390fd5b6001600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b60175481565b5f600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612fae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fa5906155be565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361301c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130139061564c565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516130f6919061495c565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613171576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613168906156da565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036131df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131d690615768565b60405180910390fd5b600c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615613269576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613260906157d0565b60405180910390fd5b600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16156132f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132ea90615838565b60405180910390fd5b601b5f9054906101000a900460ff161561339157601c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16613390576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613387906158c6565b60405180910390fd5b5b5f81036133a8576133a383835f613ea6565b613d40565b600b5f9054906101000a900460ff161561388c576133c4611d15565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156134325750613402611d15565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561346a57505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156134a4575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156134bd5750600560149054906101000a900460ff16155b1561388b57600b60019054906101000a900460ff166135b15760185f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680613571575060185f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b6135b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135a79061592e565b60405180910390fd5b5b601a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561364e575060195f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156136f557600854811115613698576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161368f906159bc565b60405180910390fd5b600a546136a48361142f565b826136af9190614e8d565b11156136f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136e790615a24565b60405180910390fd5b61388a565b601a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015613792575060195f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156137e1576008548111156137dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137d390615ab2565b60405180910390fd5b613889565b60195f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1661388857600a5461383b8361142f565b826138469190614e8d565b1115613887576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161387e90615a24565b60405180910390fd5b5b5b5b5b5b5f6138963061142f565b90505f60095482101590508080156138ba5750600b60029054906101000a900460ff165b80156138d35750600560149054906101000a900460ff16155b80156139265750601a5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015613979575060185f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b80156139cc575060185f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15613a0f576001600560146101000a81548160ff0219169083151502179055506139f461411b565b5f600560146101000a81548160ff0219169083151502179055505b5f600560149054906101000a900460ff1615905060185f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680613abe575060185f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b15613ac7575f90505b5f8115613d3057601a5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015613b2557505f601154115b15613bef57613b526064613b446011548861441c90919063ffffffff16565b61443190919063ffffffff16565b905060115460135482613b659190614cd3565b613b6f9190614d41565b60165f828254613b7f9190614e8d565b9250508190555060115460145482613b979190614cd3565b613ba19190614d41565b60175f828254613bb19190614e8d565b9250508190555060115460125482613bc99190614cd3565b613bd39190614d41565b60155f828254613be39190614e8d565b92505081905550613d0d565b601a5f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015613c4657505f600d54115b15613d0c57613c736064613c65600d548861441c90919063ffffffff16565b61443190919063ffffffff16565b9050600d54600f5482613c869190614cd3565b613c909190614d41565b60165f828254613ca09190614e8d565b92505081905550600d5460105482613cb89190614cd3565b613cc29190614d41565b60175f828254613cd29190614e8d565b92505081905550600d54600e5482613cea9190614cd3565b613cf49190614d41565b60155f828254613d049190614e8d565b925050819055505b5b5f811115613d2157613d20873083613ea6565b5b8085613d2d9190615ad0565b94505b613d3b878787613ea6565b505050505b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613f14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613f0b906156da565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613f82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613f7990615768565b60405180910390fd5b613f8d838383614446565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015614010576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161400790615b73565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825461409e9190614e8d565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051614102919061495c565b60405180910390a361411584848461444b565b50505050565b5f6141253061142f565b90505f60175460155460165461413b9190614e8d565b6141459190614e8d565b90505f8083148061415557505f82145b156141625750505061441a565b60146009546141719190614cd3565b83111561418a5760146009546141879190614cd3565b92505b5f6002836016548661419c9190614cd3565b6141a69190614d41565b6141b09190614d41565b90505f6141c6828661445090919063ffffffff16565b90505f4790506141d582614465565b5f6141e9824761445090919063ffffffff16565b90505f61422c60026016546141fe9190614d41565b886142099190615ad0565b61421e6015548561441c90919063ffffffff16565b61443190919063ffffffff16565b90505f61426f60026016546142419190614d41565b8961424c9190615ad0565b6142616017548661441c90919063ffffffff16565b61443190919063ffffffff16565b90505f81838561427f9190615ad0565b6142899190615ad0565b90505f6016819055505f6015819055505f60178190555060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516142e590614eed565b5f6040518083038185875af1925050503d805f811461431f576040519150601f19603f3d011682016040523d82523d5f602084013e614324565b606091505b5050809850505f8711801561433857505f81115b15614385576143478782614698565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561868260165460405161437c93929190615b91565b60405180910390a15b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516143ca90614eed565b5f6040518083038185875af1925050503d805f8114614404576040519150601f19603f3d011682016040523d82523d5f602084013e614409565b606091505b505080985050505050505050505050505b565b5f81836144299190614cd3565b905092915050565b5f818361443e9190614d41565b905092915050565b505050565b505050565b5f818361445d9190615ad0565b905092915050565b5f600267ffffffffffffffff81111561448157614480615bc6565b5b6040519080825280602002602001820160405280156144af5781602001602082028036833780820191505090505b50905030815f815181106144c6576144c5615bf3565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015614569573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061458d9190615c34565b816001815181106145a1576145a0615bf3565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050614606307f000000000000000000000000000000000000000000000000000000000000000084612f40565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b8152600401614667959493929190615d4f565b5f604051808303815f87803b15801561467e575f80fd5b505af1158015614690573d5f803e3d5ffd5b505050505050565b6146c3307f000000000000000000000000000000000000000000000000000000000000000084612f40565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d7198230855f8061470c611d15565b426040518863ffffffff1660e01b815260040161472e96959493929190615da7565b60606040518083038185885af115801561474a573d5f803e3d5ffd5b50505050506040513d601f19601f8201168201806040525081019061476f9190615e06565b5050505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156147ad578082015181840152602081019050614792565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6147d282614776565b6147dc8185614780565b93506147ec818560208601614790565b6147f5816147b8565b840191505092915050565b5f6020820190508181035f83015261481881846147c8565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61484d82614824565b9050919050565b61485d81614843565b8114614867575f80fd5b50565b5f8135905061487881614854565b92915050565b5f819050919050565b6148908161487e565b811461489a575f80fd5b50565b5f813590506148ab81614887565b92915050565b5f80604083850312156148c7576148c6614820565b5b5f6148d48582860161486a565b92505060206148e58582860161489d565b9150509250929050565b5f8115159050919050565b614903816148ef565b82525050565b5f60208201905061491c5f8301846148fa565b92915050565b5f6020828403121561493757614936614820565b5b5f6149448482850161486a565b91505092915050565b6149568161487e565b82525050565b5f60208201905061496f5f83018461494d565b92915050565b5f819050919050565b5f61499861499361498e84614824565b614975565b614824565b9050919050565b5f6149a98261497e565b9050919050565b5f6149ba8261499f565b9050919050565b6149ca816149b0565b82525050565b5f6020820190506149e35f8301846149c1565b92915050565b5f602082840312156149fe576149fd614820565b5b5f614a0b8482850161489d565b91505092915050565b5f805f60608486031215614a2b57614a2a614820565b5b5f614a388682870161486a565b9350506020614a498682870161486a565b9250506040614a5a8682870161489d565b9150509250925092565b614a6d81614843565b82525050565b5f602082019050614a865f830184614a64565b92915050565b5f60ff82169050919050565b614aa181614a8c565b82525050565b5f602082019050614aba5f830184614a98565b92915050565b614ac9816148ef565b8114614ad3575f80fd5b50565b5f81359050614ae481614ac0565b92915050565b5f8060408385031215614b0057614aff614820565b5b5f614b0d8582860161486a565b9250506020614b1e85828601614ad6565b9150509250929050565b5f805f60608486031215614b3f57614b3e614820565b5b5f614b4c8682870161489d565b9350506020614b5d8682870161489d565b9250506040614b6e8682870161489d565b9150509250925092565b5f60208284031215614b8d57614b8c614820565b5b5f614b9a84828501614ad6565b91505092915050565b5f8060408385031215614bb957614bb8614820565b5b5f614bc68582860161486a565b9250506020614bd78582860161486a565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680614c2557607f821691505b602082108103614c3857614c37614be1565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f614c72602083614780565b9150614c7d82614c3e565b602082019050919050565b5f6020820190508181035f830152614c9f81614c66565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f614cdd8261487e565b9150614ce88361487e565b9250828202614cf68161487e565b91508282048414831517614d0d57614d0c614ca6565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f614d4b8261487e565b9150614d568361487e565b925082614d6657614d65614d14565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e74205f8201527f6c6f776572207468616e20302e35250000000000000000000000000000000000602082015250565b5f614dcb602f83614780565b9150614dd682614d71565b604082019050919050565b5f6020820190508181035f830152614df881614dbf565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f614e59602883614780565b9150614e6482614dff565b604082019050919050565b5f6020820190508181035f830152614e8681614e4d565b9050919050565b5f614e978261487e565b9150614ea28361487e565b9250828201905080821115614eba57614eb9614ca6565b5b92915050565b5f81905092915050565b50565b5f614ed85f83614ec0565b9150614ee382614eca565b5f82019050919050565b5f614ef782614ecd565b9150819050919050565b7f4275792066656573206d757374206265203c3d20352e000000000000000000005f82015250565b5f614f35601683614780565b9150614f4082614f01565b602082019050919050565b5f6020820190508181035f830152614f6281614f29565b9050919050565b5f81519050614f7781614887565b92915050565b5f60208284031215614f9257614f91614820565b5b5f614f9f84828501614f69565b91505092915050565b5f604082019050614fbb5f830185614a64565b614fc8602083018461494d565b9392505050565b5f81519050614fdd81614ac0565b92915050565b5f60208284031215614ff857614ff7614820565b5b5f61500584828501614fcf565b91505092915050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d205f8201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b5f615068603983614780565b91506150738261500e565b604082019050919050565b5f6020820190508181035f8301526150958161505c565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6150f6602583614780565b91506151018261509c565b604082019050919050565b5f6020820190508181035f830152615123816150ea565b9050919050565b7f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000005f82015250565b5f61515e601a83614780565b91506151698261512a565b602082019050919050565b5f6020820190508181035f83015261518b81615152565b9050919050565b7f53656c6c2066656573206d757374206265203c3d20352e0000000000000000005f82015250565b5f6151c6601783614780565b91506151d182615192565b602082019050919050565b5f6020820190508181035f8301526151f3816151ba565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e205f8201527f312e302500000000000000000000000000000000000000000000000000000000602082015250565b5f615254602483614780565b915061525f826151fa565b604082019050919050565b5f6020820190508181035f83015261528181615248565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e5f8201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b5f6152e2603583614780565b91506152ed82615288565b604082019050919050565b5f6020820190508181035f83015261530f816152d6565b9050919050565b7f5377617020616d6f756e742063616e6e6f7420626520686967686572207468615f8201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b5f615370603483614780565b915061537b82615316565b604082019050919050565b5f6020820190508181035f83015261539d81615364565b9050919050565b7f5465616d20686173207265766f6b656420626c61636b6c6973742072696768745f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f6153fe602183614780565b9150615409826153a4565b604082019050919050565b5f6020820190508181035f83015261542b816153f2565b9050919050565b7f43616e6e6f7420626c61636b6c69737420746f6b656e277320763220726f75745f8201527f6572206f7220763220706f6f6c2e000000000000000000000000000000000000602082015250565b5f61548c602e83614780565b915061549782615432565b604082019050919050565b5f6020820190508181035f8301526154b981615480565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f61551a602683614780565b9150615525826154c0565b604082019050919050565b5f6020820190508181035f8301526155478161550e565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6155a8602483614780565b91506155b38261554e565b604082019050919050565b5f6020820190508181035f8301526155d58161559c565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f615636602283614780565b9150615641826155dc565b604082019050919050565b5f6020820190508181035f8301526156638161562a565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6156c4602583614780565b91506156cf8261566a565b604082019050919050565b5f6020820190508181035f8301526156f1816156b8565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f615752602383614780565b915061575d826156f8565b604082019050919050565b5f6020820190508181035f83015261577f81615746565b9050919050565b7f53656e64657220626c61636b6c697374656400000000000000000000000000005f82015250565b5f6157ba601283614780565b91506157c582615786565b602082019050919050565b5f6020820190508181035f8301526157e7816157ae565b9050919050565b7f526563656976657220626c61636b6c69737465640000000000000000000000005f82015250565b5f615822601483614780565b915061582d826157ee565b602082019050919050565b5f6020820190508181035f83015261584f81615816565b9050919050565b7f4e6f7420617574686f72697a656420746f207472616e73666572207072652d6d5f8201527f6967726174696f6e2e0000000000000000000000000000000000000000000000602082015250565b5f6158b0602983614780565b91506158bb82615856565b604082019050919050565b5f6020820190508181035f8301526158dd816158a4565b9050919050565b7f54726164696e67206973206e6f74206163746976652e000000000000000000005f82015250565b5f615918601683614780565b9150615923826158e4565b602082019050919050565b5f6020820190508181035f8301526159458161590c565b9050919050565b7f427579207472616e7366657220616d6f756e74206578636565647320746865205f8201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b5f6159a6603583614780565b91506159b18261594c565b604082019050919050565b5f6020820190508181035f8301526159d38161599a565b9050919050565b7f4d61782077616c6c6574206578636565646564000000000000000000000000005f82015250565b5f615a0e601383614780565b9150615a19826159da565b602082019050919050565b5f6020820190508181035f830152615a3b81615a02565b9050919050565b7f53656c6c207472616e7366657220616d6f756e742065786365656473207468655f8201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b5f615a9c603683614780565b9150615aa782615a42565b604082019050919050565b5f6020820190508181035f830152615ac981615a90565b9050919050565b5f615ada8261487e565b9150615ae58361487e565b9250828203905081811115615afd57615afc614ca6565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f615b5d602683614780565b9150615b6882615b03565b604082019050919050565b5f6020820190508181035f830152615b8a81615b51565b9050919050565b5f606082019050615ba45f83018661494d565b615bb1602083018561494d565b615bbe604083018461494d565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81519050615c2e81614854565b92915050565b5f60208284031215615c4957615c48614820565b5b5f615c5684828501615c20565b91505092915050565b5f819050919050565b5f615c82615c7d615c7884615c5f565b614975565b61487e565b9050919050565b615c9281615c68565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b615cca81614843565b82525050565b5f615cdb8383615cc1565b60208301905092915050565b5f602082019050919050565b5f615cfd82615c98565b615d078185615ca2565b9350615d1283615cb2565b805f5b83811015615d42578151615d298882615cd0565b9750615d3483615ce7565b925050600181019050615d15565b5085935050505092915050565b5f60a082019050615d625f83018861494d565b615d6f6020830187615c89565b8181036040830152615d818186615cf3565b9050615d906060830185614a64565b615d9d608083018461494d565b9695505050505050565b5f60c082019050615dba5f830189614a64565b615dc7602083018861494d565b615dd46040830187615c89565b615de16060830186615c89565b615dee6080830185614a64565b615dfb60a083018461494d565b979650505050505050565b5f805f60608486031215615e1d57615e1c614820565b5b5f615e2a86828701614f69565b9350506020615e3b86828701614f69565b9250506040615e4c86828701614f69565b915050925092509256fea2646970667358221220164bba516ba78d910a0f279ca5f27d1cdb98e0d75e7e23e4c1488fb3b349b68864736f6c63430008140033

Deployed Bytecode

0x6080604052600436106103c6575f3560e01c80638095d564116101f1578063c17b5b8c1161010c578063e2f456051161009f578063f8b45b051161006e578063f8b45b0514610e11578063f9f92be414610e3b578063fde83a3414610e63578063fe575a8714610e8d576103cd565b8063e2f4560514610d6b578063f11a24d314610d95578063f2fde38b14610dbf578063f637434214610de7576103cd565b8063d729715f116100db578063d729715f14610cb3578063d85ba06314610cdd578063dd62ed3e14610d07578063e19b282314610d43576103cd565b8063c17b5b8c14610bfd578063c18bc19514610c25578063c8c8ebe414610c4d578063d257b34f14610c77576103cd565b8063a457c2d711610184578063b62496f511610153578063b62496f514610b47578063bbc0c74214610b83578063bc205ad314610bad578063c024666814610bd5576103cd565b8063a457c2d714610a7f578063a9059cbb14610abb578063aa0e438814610af7578063adee28ff14610b1f576103cd565b8063924de9b7116101c0578063924de9b7146109db57806395d89b4114610a035780639a7a23d614610a2d5780639c2e4ac614610a55576103cd565b80638095d5641461095d5780638a8c523c146109855780638cf3b4ce1461099b5780638da5cb5b146109b1576103cd565b806349bd5a5e116102e157806370a082311161027457806375e3661e1161024357806375e3661e146108bb578063782c4e99146108e35780637ca8448a1461090d5780637cb332bb14610935576103cd565b806370a0823114610817578063715018a614610853578063751039fc146108695780637571336a14610893576103cd565b806359927044116102b057806359927044146107835780635f189361146107ad5780636a486a8e146107c35780636ddd1713146107ed576103cd565b806349bd5a5e146106b75780634a62bb65146106e15780634e29e5231461070b5780634fbee19314610747576103cd565b80631a8145bb1161035957806327c8f8351161032857806327c8f835146105fd578063313ce5671461062757806339509351146106515780633dc599ff1461068d576103cd565b80631a8145bb14610545578063203e727e1461056f57806323b872dd1461059757806324b9f3c1146105d3576103cd565b8063156c2f3511610395578063156c2f351461049d5780631694505e146104c757806318160ddd146104f157806319eab0421461051b576103cd565b806306fdde03146103d1578063095ea7b3146103fb5780630e922ca71461043757806310d5de5314610461576103cd565b366103cd57005b5f80fd5b3480156103dc575f80fd5b506103e5610ec9565b6040516103f29190614800565b60405180910390f35b348015610406575f80fd5b50610421600480360381019061041c91906148b1565b610f59565b60405161042e9190614909565b60405180910390f35b348015610442575f80fd5b5061044b610f76565b6040516104589190614909565b60405180910390f35b34801561046c575f80fd5b5061048760048036038101906104829190614922565b610f88565b6040516104949190614909565b60405180910390f35b3480156104a8575f80fd5b506104b1610fa5565b6040516104be919061495c565b60405180910390f35b3480156104d2575f80fd5b506104db610fab565b6040516104e891906149d0565b60405180910390f35b3480156104fc575f80fd5b50610505610fcf565b604051610512919061495c565b60405180910390f35b348015610526575f80fd5b5061052f610fd8565b60405161053c919061495c565b60405180910390f35b348015610550575f80fd5b50610559610fde565b604051610566919061495c565b60405180910390f35b34801561057a575f80fd5b50610595600480360381019061059091906149e9565b610fe4565b005b3480156105a2575f80fd5b506105bd60048036038101906105b89190614a14565b6110f3565b6040516105ca9190614909565b60405180910390f35b3480156105de575f80fd5b506105e76111e5565b6040516105f4919061495c565b60405180910390f35b348015610608575f80fd5b506106116111eb565b60405161061e9190614a73565b60405180910390f35b348015610632575f80fd5b5061063b6111f1565b6040516106489190614aa7565b60405180910390f35b34801561065c575f80fd5b50610677600480360381019061067291906148b1565b6111f9565b6040516106849190614909565b60405180910390f35b348015610698575f80fd5b506106a16112a0565b6040516106ae9190614909565b60405180910390f35b3480156106c2575f80fd5b506106cb6112b3565b6040516106d89190614a73565b60405180910390f35b3480156106ec575f80fd5b506106f56112d7565b6040516107029190614909565b60405180910390f35b348015610716575f80fd5b50610731600480360381019061072c9190614922565b6112e9565b60405161073e9190614909565b60405180910390f35b348015610752575f80fd5b5061076d60048036038101906107689190614922565b611306565b60405161077a9190614909565b60405180910390f35b34801561078e575f80fd5b50610797611358565b6040516107a49190614a73565b60405180910390f35b3480156107b8575f80fd5b506107c161137d565b005b3480156107ce575f80fd5b506107d7611416565b6040516107e4919061495c565b60405180910390f35b3480156107f8575f80fd5b5061080161141c565b60405161080e9190614909565b60405180910390f35b348015610822575f80fd5b5061083d60048036038101906108389190614922565b61142f565b60405161084a919061495c565b60405180910390f35b34801561085e575f80fd5b50610867611474565b005b348015610874575f80fd5b5061087d6114fb565b60405161088a9190614909565b60405180910390f35b34801561089e575f80fd5b506108b960048036038101906108b49190614aea565b611598565b005b3480156108c6575f80fd5b506108e160048036038101906108dc9190614922565b61166c565b005b3480156108ee575f80fd5b506108f761173f565b6040516109049190614a73565b60405180910390f35b348015610918575f80fd5b50610933600480360381019061092e9190614922565b611764565b005b348015610940575f80fd5b5061095b60048036038101906109569190614922565b611855565b005b348015610968575f80fd5b50610983600480360381019061097e9190614b28565b61198f565b005b348015610990575f80fd5b50610999611a8e565b005b3480156109a6575f80fd5b506109af611b5b565b005b3480156109bc575f80fd5b506109c5611d15565b6040516109d29190614a73565b60405180910390f35b3480156109e6575f80fd5b50610a0160048036038101906109fc9190614b78565b611d3d565b005b348015610a0e575f80fd5b50610a17611dd6565b604051610a249190614800565b60405180910390f35b348015610a38575f80fd5b50610a536004803603810190610a4e9190614aea565b611e66565b005b348015610a60575f80fd5b50610a69611f7e565b604051610a76919061495c565b60405180910390f35b348015610a8a575f80fd5b50610aa56004803603810190610aa091906148b1565b611f84565b604051610ab29190614909565b60405180910390f35b348015610ac6575f80fd5b50610ae16004803603810190610adc91906148b1565b61206a565b604051610aee9190614909565b60405180910390f35b348015610b02575f80fd5b50610b1d6004803603810190610b189190614aea565b612087565b005b348015610b2a575f80fd5b50610b456004803603810190610b409190614922565b61216f565b005b348015610b52575f80fd5b50610b6d6004803603810190610b689190614922565b6122a9565b604051610b7a9190614909565b60405180910390f35b348015610b8e575f80fd5b50610b976122c6565b604051610ba49190614909565b60405180910390f35b348015610bb8575f80fd5b50610bd36004803603810190610bce9190614ba3565b6122d9565b005b348015610be0575f80fd5b50610bfb6004803603810190610bf69190614aea565b6124bf565b005b348015610c08575f80fd5b50610c236004803603810190610c1e9190614b28565b6125e1565b005b348015610c30575f80fd5b50610c4b6004803603810190610c4691906149e9565b6126e0565b005b348015610c58575f80fd5b50610c616127ef565b604051610c6e919061495c565b60405180910390f35b348015610c82575f80fd5b50610c9d6004803603810190610c9891906149e9565b6127f5565b604051610caa9190614909565b60405180910390f35b348015610cbe575f80fd5b50610cc7612947565b604051610cd4919061495c565b60405180910390f35b348015610ce8575f80fd5b50610cf161294d565b604051610cfe919061495c565b60405180910390f35b348015610d12575f80fd5b50610d2d6004803603810190610d289190614ba3565b612953565b604051610d3a919061495c565b60405180910390f35b348015610d4e575f80fd5b50610d696004803603810190610d649190614922565b6129d5565b005b348015610d76575f80fd5b50610d7f612bd4565b604051610d8c919061495c565b60405180910390f35b348015610da0575f80fd5b50610da9612bda565b604051610db6919061495c565b60405180910390f35b348015610dca575f80fd5b50610de56004803603810190610de09190614922565b612be0565b005b348015610df2575f80fd5b50610dfb612cd6565b604051610e08919061495c565b60405180910390f35b348015610e1c575f80fd5b50610e25612cdc565b604051610e32919061495c565b60405180910390f35b348015610e46575f80fd5b50610e616004803603810190610e5c9190614922565b612ce2565b005b348015610e6e575f80fd5b50610e77612ee1565b604051610e84919061495c565b60405180910390f35b348015610e98575f80fd5b50610eb36004803603810190610eae9190614922565b612ee7565b604051610ec09190614909565b60405180910390f35b606060038054610ed890614c0e565b80601f0160208091040260200160405190810160405280929190818152602001828054610f0490614c0e565b8015610f4f5780601f10610f2657610100808354040283529160200191610f4f565b820191905f5260205f20905b815481529060010190602001808311610f3257829003601f168201915b5050505050905090565b5f610f6c610f65612f39565b8484612f40565b6001905092915050565b601b5f9054906101000a900460ff1681565b6019602052805f5260405f205f915054906101000a900460ff1681565b600e5481565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b5f600254905090565b60125481565b60165481565b610fec612f39565b73ffffffffffffffffffffffffffffffffffffffff1661100a611d15565b73ffffffffffffffffffffffffffffffffffffffff1614611060576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105790614c88565b60405180910390fd5b670de0b6b3a76400006103e86005611076610fcf565b6110809190614cd3565b61108a9190614d41565b6110949190614d41565b8110156110d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cd90614de1565b60405180910390fd5b670de0b6b3a7640000816110ea9190614cd3565b60088190555050565b5f6110ff848484613103565b5f60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f611146612f39565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050828110156111c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bc90614e6f565b60405180910390fd5b6111d9856111d1612f39565b858403612f40565b60019150509392505050565b60155481565b61dead81565b5f6012905090565b5f611296611205612f39565b848460015f611212612f39565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546112919190614e8d565b612f40565b6001905092915050565b600b60039054906101000a900460ff1681565b7f00000000000000000000000007d79a56cd00b2a1f2a5462435bc3e5a60810b9d81565b600b5f9054906101000a900460ff1681565b601c602052805f5260405f205f915054906101000a900460ff1681565b5f60185f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611385612f39565b73ffffffffffffffffffffffffffffffffffffffff166113a3611d15565b73ffffffffffffffffffffffffffffffffffffffff16146113f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f090614c88565b60405180910390fd5b6001600b60036101000a81548160ff021916908315150217905550565b60115481565b600b60029054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61147c612f39565b73ffffffffffffffffffffffffffffffffffffffff1661149a611d15565b73ffffffffffffffffffffffffffffffffffffffff16146114f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e790614c88565b60405180910390fd5b6114f95f613d45565b565b5f611504612f39565b73ffffffffffffffffffffffffffffffffffffffff16611522611d15565b73ffffffffffffffffffffffffffffffffffffffff1614611578576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156f90614c88565b60405180910390fd5b5f600b5f6101000a81548160ff0219169083151502179055506001905090565b6115a0612f39565b73ffffffffffffffffffffffffffffffffffffffff166115be611d15565b73ffffffffffffffffffffffffffffffffffffffff1614611614576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160b90614c88565b60405180910390fd5b8060195f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b611674612f39565b73ffffffffffffffffffffffffffffffffffffffff16611692611d15565b73ffffffffffffffffffffffffffffffffffffffff16146116e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116df90614c88565b60405180910390fd5b5f600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61176c612f39565b73ffffffffffffffffffffffffffffffffffffffff1661178a611d15565b73ffffffffffffffffffffffffffffffffffffffff16146117e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d790614c88565b60405180910390fd5b5f8173ffffffffffffffffffffffffffffffffffffffff164760405161180590614eed565b5f6040518083038185875af1925050503d805f811461183f576040519150601f19603f3d011682016040523d82523d5f602084013e611844565b606091505b5050905080611851575f80fd5b5050565b61185d612f39565b73ffffffffffffffffffffffffffffffffffffffff1661187b611d15565b73ffffffffffffffffffffffffffffffffffffffff16146118d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c890614c88565b60405180910390fd5b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8aa0f85050aca99be43beb823e0457e77966b3baf697a289b03681978f96166860405160405180910390a38060075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611997612f39565b73ffffffffffffffffffffffffffffffffffffffff166119b5611d15565b73ffffffffffffffffffffffffffffffffffffffff1614611a0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0290614c88565b60405180910390fd5b82600e8190555081600f8190555080601081905550601054600f54600e54611a339190614e8d565b611a3d9190614e8d565b600d819055506005600d541115611a89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8090614f4b565b60405180910390fd5b505050565b611a96612f39565b73ffffffffffffffffffffffffffffffffffffffff16611ab4611d15565b73ffffffffffffffffffffffffffffffffffffffff1614611b0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0190614c88565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff0219169083151502179055505f601b5f6101000a81548160ff021916908315150217905550565b611b63612f39565b73ffffffffffffffffffffffffffffffffffffffff16611b81611d15565b73ffffffffffffffffffffffffffffffffffffffff1614611bd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bce90614c88565b60405180910390fd5b5f3073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401611c119190614a73565b602060405180830381865afa158015611c2c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c509190614f7d565b90503073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401611c8d929190614fa8565b6020604051808303815f875af1158015611ca9573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ccd9190614fe3565b503373ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f19350505050158015611d11573d5f803e3d5ffd5b5050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611d45612f39565b73ffffffffffffffffffffffffffffffffffffffff16611d63611d15565b73ffffffffffffffffffffffffffffffffffffffff1614611db9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db090614c88565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b606060048054611de590614c0e565b80601f0160208091040260200160405190810160405280929190818152602001828054611e1190614c0e565b8015611e5c5780601f10611e3357610100808354040283529160200191611e5c565b820191905f5260205f20905b815481529060010190602001808311611e3f57829003601f168201915b5050505050905090565b611e6e612f39565b73ffffffffffffffffffffffffffffffffffffffff16611e8c611d15565b73ffffffffffffffffffffffffffffffffffffffff1614611ee2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed990614c88565b60405180910390fd5b7f00000000000000000000000007d79a56cd00b2a1f2a5462435bc3e5a60810b9d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611f70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f679061507e565b60405180910390fd5b611f7a8282613e08565b5050565b60105481565b5f8060015f611f91612f39565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508281101561204b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120429061510c565b60405180910390fd5b61205f612056612f39565b85858403612f40565b600191505092915050565b5f61207d612076612f39565b8484613103565b6001905092915050565b61208f612f39565b73ffffffffffffffffffffffffffffffffffffffff166120ad611d15565b73ffffffffffffffffffffffffffffffffffffffff1614612103576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120fa90614c88565b60405180910390fd5b80601c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555061216182826124bf565b61216b8282611598565b5050565b612177612f39565b73ffffffffffffffffffffffffffffffffffffffff16612195611d15565b73ffffffffffffffffffffffffffffffffffffffff16146121eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e290614c88565b60405180910390fd5b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fc9f2d63eee8632b33d7a7db5252eb29036e81ee4fbe29260febe0c49ffb8a7bb60405160405180910390a38060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601a602052805f5260405f205f915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b6122e1612f39565b73ffffffffffffffffffffffffffffffffffffffff166122ff611d15565b73ffffffffffffffffffffffffffffffffffffffff1614612355576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234c90614c88565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036123c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ba90615174565b60405180910390fd5b5f8273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016123fd9190614a73565b602060405180830381865afa158015612418573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061243c9190614f7d565b90508273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b8152600401612479929190614fa8565b6020604051808303815f875af1158015612495573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906124b99190614fe3565b50505050565b6124c7612f39565b73ffffffffffffffffffffffffffffffffffffffff166124e5611d15565b73ffffffffffffffffffffffffffffffffffffffff161461253b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253290614c88565b60405180910390fd5b8060185f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516125d59190614909565b60405180910390a25050565b6125e9612f39565b73ffffffffffffffffffffffffffffffffffffffff16612607611d15565b73ffffffffffffffffffffffffffffffffffffffff161461265d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265490614c88565b60405180910390fd5b8260128190555081601381905550806014819055506014546013546012546126859190614e8d565b61268f9190614e8d565b601181905550600560115411156126db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d2906151dc565b60405180910390fd5b505050565b6126e8612f39565b73ffffffffffffffffffffffffffffffffffffffff16612706611d15565b73ffffffffffffffffffffffffffffffffffffffff161461275c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275390614c88565b60405180910390fd5b670de0b6b3a76400006103e8600a612772610fcf565b61277c9190614cd3565b6127869190614d41565b6127909190614d41565b8110156127d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127c99061526a565b60405180910390fd5b670de0b6b3a7640000816127e69190614cd3565b600a8190555050565b60085481565b5f6127fe612f39565b73ffffffffffffffffffffffffffffffffffffffff1661281c611d15565b73ffffffffffffffffffffffffffffffffffffffff1614612872576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286990614c88565b60405180910390fd5b6103e8600161287f610fcf565b6128899190614cd3565b6128939190614d41565b8210156128d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128cc906152f8565b60405180910390fd5b606460056128e1610fcf565b6128eb9190614cd3565b6128f59190614d41565b821115612937576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292e90615386565b60405180910390fd5b8160098190555060019050919050565b60145481565b600d5481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6129dd612f39565b73ffffffffffffffffffffffffffffffffffffffff166129fb611d15565b73ffffffffffffffffffffffffffffffffffffffff1614612a51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4890614c88565b60405180910390fd5b600b60039054906101000a900460ff1615612aa1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a9890615414565b60405180910390fd5b7f00000000000000000000000007d79a56cd00b2a1f2a5462435bc3e5a60810b9d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614158015612b3d5750737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b612b7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b73906154a2565b60405180910390fd5b6001600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b60095481565b600f5481565b612be8612f39565b73ffffffffffffffffffffffffffffffffffffffff16612c06611d15565b73ffffffffffffffffffffffffffffffffffffffff1614612c5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c5390614c88565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612cca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cc190615530565b60405180910390fd5b612cd381613d45565b50565b60135481565b600a5481565b612cea612f39565b73ffffffffffffffffffffffffffffffffffffffff16612d08611d15565b73ffffffffffffffffffffffffffffffffffffffff1614612d5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d5590614c88565b60405180910390fd5b600b60039054906101000a900460ff1615612dae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612da590615414565b60405180910390fd5b7f00000000000000000000000007d79a56cd00b2a1f2a5462435bc3e5a60810b9d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614158015612e4a5750737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b612e89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e80906154a2565b60405180910390fd5b6001600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b60175481565b5f600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612fae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fa5906155be565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361301c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130139061564c565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516130f6919061495c565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613171576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613168906156da565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036131df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131d690615768565b60405180910390fd5b600c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615613269576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613260906157d0565b60405180910390fd5b600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16156132f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132ea90615838565b60405180910390fd5b601b5f9054906101000a900460ff161561339157601c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16613390576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613387906158c6565b60405180910390fd5b5b5f81036133a8576133a383835f613ea6565b613d40565b600b5f9054906101000a900460ff161561388c576133c4611d15565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156134325750613402611d15565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561346a57505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156134a4575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156134bd5750600560149054906101000a900460ff16155b1561388b57600b60019054906101000a900460ff166135b15760185f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680613571575060185f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b6135b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135a79061592e565b60405180910390fd5b5b601a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561364e575060195f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156136f557600854811115613698576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161368f906159bc565b60405180910390fd5b600a546136a48361142f565b826136af9190614e8d565b11156136f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136e790615a24565b60405180910390fd5b61388a565b601a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015613792575060195f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156137e1576008548111156137dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137d390615ab2565b60405180910390fd5b613889565b60195f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1661388857600a5461383b8361142f565b826138469190614e8d565b1115613887576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161387e90615a24565b60405180910390fd5b5b5b5b5b5b5f6138963061142f565b90505f60095482101590508080156138ba5750600b60029054906101000a900460ff165b80156138d35750600560149054906101000a900460ff16155b80156139265750601a5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015613979575060185f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b80156139cc575060185f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15613a0f576001600560146101000a81548160ff0219169083151502179055506139f461411b565b5f600560146101000a81548160ff0219169083151502179055505b5f600560149054906101000a900460ff1615905060185f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680613abe575060185f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b15613ac7575f90505b5f8115613d3057601a5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015613b2557505f601154115b15613bef57613b526064613b446011548861441c90919063ffffffff16565b61443190919063ffffffff16565b905060115460135482613b659190614cd3565b613b6f9190614d41565b60165f828254613b7f9190614e8d565b9250508190555060115460145482613b979190614cd3565b613ba19190614d41565b60175f828254613bb19190614e8d565b9250508190555060115460125482613bc99190614cd3565b613bd39190614d41565b60155f828254613be39190614e8d565b92505081905550613d0d565b601a5f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015613c4657505f600d54115b15613d0c57613c736064613c65600d548861441c90919063ffffffff16565b61443190919063ffffffff16565b9050600d54600f5482613c869190614cd3565b613c909190614d41565b60165f828254613ca09190614e8d565b92505081905550600d5460105482613cb89190614cd3565b613cc29190614d41565b60175f828254613cd29190614e8d565b92505081905550600d54600e5482613cea9190614cd3565b613cf49190614d41565b60155f828254613d049190614e8d565b925050819055505b5b5f811115613d2157613d20873083613ea6565b5b8085613d2d9190615ad0565b94505b613d3b878787613ea6565b505050505b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613f14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613f0b906156da565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613f82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613f7990615768565b60405180910390fd5b613f8d838383614446565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015614010576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161400790615b73565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825461409e9190614e8d565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051614102919061495c565b60405180910390a361411584848461444b565b50505050565b5f6141253061142f565b90505f60175460155460165461413b9190614e8d565b6141459190614e8d565b90505f8083148061415557505f82145b156141625750505061441a565b60146009546141719190614cd3565b83111561418a5760146009546141879190614cd3565b92505b5f6002836016548661419c9190614cd3565b6141a69190614d41565b6141b09190614d41565b90505f6141c6828661445090919063ffffffff16565b90505f4790506141d582614465565b5f6141e9824761445090919063ffffffff16565b90505f61422c60026016546141fe9190614d41565b886142099190615ad0565b61421e6015548561441c90919063ffffffff16565b61443190919063ffffffff16565b90505f61426f60026016546142419190614d41565b8961424c9190615ad0565b6142616017548661441c90919063ffffffff16565b61443190919063ffffffff16565b90505f81838561427f9190615ad0565b6142899190615ad0565b90505f6016819055505f6015819055505f60178190555060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516142e590614eed565b5f6040518083038185875af1925050503d805f811461431f576040519150601f19603f3d011682016040523d82523d5f602084013e614324565b606091505b5050809850505f8711801561433857505f81115b15614385576143478782614698565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561868260165460405161437c93929190615b91565b60405180910390a15b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516143ca90614eed565b5f6040518083038185875af1925050503d805f8114614404576040519150601f19603f3d011682016040523d82523d5f602084013e614409565b606091505b505080985050505050505050505050505b565b5f81836144299190614cd3565b905092915050565b5f818361443e9190614d41565b905092915050565b505050565b505050565b5f818361445d9190615ad0565b905092915050565b5f600267ffffffffffffffff81111561448157614480615bc6565b5b6040519080825280602002602001820160405280156144af5781602001602082028036833780820191505090505b50905030815f815181106144c6576144c5615bf3565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015614569573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061458d9190615c34565b816001815181106145a1576145a0615bf3565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050614606307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612f40565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b8152600401614667959493929190615d4f565b5f604051808303815f87803b15801561467e575f80fd5b505af1158015614690573d5f803e3d5ffd5b505050505050565b6146c3307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612f40565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d7198230855f8061470c611d15565b426040518863ffffffff1660e01b815260040161472e96959493929190615da7565b60606040518083038185885af115801561474a573d5f803e3d5ffd5b50505050506040513d601f19601f8201168201806040525081019061476f9190615e06565b5050505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156147ad578082015181840152602081019050614792565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6147d282614776565b6147dc8185614780565b93506147ec818560208601614790565b6147f5816147b8565b840191505092915050565b5f6020820190508181035f83015261481881846147c8565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61484d82614824565b9050919050565b61485d81614843565b8114614867575f80fd5b50565b5f8135905061487881614854565b92915050565b5f819050919050565b6148908161487e565b811461489a575f80fd5b50565b5f813590506148ab81614887565b92915050565b5f80604083850312156148c7576148c6614820565b5b5f6148d48582860161486a565b92505060206148e58582860161489d565b9150509250929050565b5f8115159050919050565b614903816148ef565b82525050565b5f60208201905061491c5f8301846148fa565b92915050565b5f6020828403121561493757614936614820565b5b5f6149448482850161486a565b91505092915050565b6149568161487e565b82525050565b5f60208201905061496f5f83018461494d565b92915050565b5f819050919050565b5f61499861499361498e84614824565b614975565b614824565b9050919050565b5f6149a98261497e565b9050919050565b5f6149ba8261499f565b9050919050565b6149ca816149b0565b82525050565b5f6020820190506149e35f8301846149c1565b92915050565b5f602082840312156149fe576149fd614820565b5b5f614a0b8482850161489d565b91505092915050565b5f805f60608486031215614a2b57614a2a614820565b5b5f614a388682870161486a565b9350506020614a498682870161486a565b9250506040614a5a8682870161489d565b9150509250925092565b614a6d81614843565b82525050565b5f602082019050614a865f830184614a64565b92915050565b5f60ff82169050919050565b614aa181614a8c565b82525050565b5f602082019050614aba5f830184614a98565b92915050565b614ac9816148ef565b8114614ad3575f80fd5b50565b5f81359050614ae481614ac0565b92915050565b5f8060408385031215614b0057614aff614820565b5b5f614b0d8582860161486a565b9250506020614b1e85828601614ad6565b9150509250929050565b5f805f60608486031215614b3f57614b3e614820565b5b5f614b4c8682870161489d565b9350506020614b5d8682870161489d565b9250506040614b6e8682870161489d565b9150509250925092565b5f60208284031215614b8d57614b8c614820565b5b5f614b9a84828501614ad6565b91505092915050565b5f8060408385031215614bb957614bb8614820565b5b5f614bc68582860161486a565b9250506020614bd78582860161486a565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680614c2557607f821691505b602082108103614c3857614c37614be1565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f614c72602083614780565b9150614c7d82614c3e565b602082019050919050565b5f6020820190508181035f830152614c9f81614c66565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f614cdd8261487e565b9150614ce88361487e565b9250828202614cf68161487e565b91508282048414831517614d0d57614d0c614ca6565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f614d4b8261487e565b9150614d568361487e565b925082614d6657614d65614d14565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e74205f8201527f6c6f776572207468616e20302e35250000000000000000000000000000000000602082015250565b5f614dcb602f83614780565b9150614dd682614d71565b604082019050919050565b5f6020820190508181035f830152614df881614dbf565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f614e59602883614780565b9150614e6482614dff565b604082019050919050565b5f6020820190508181035f830152614e8681614e4d565b9050919050565b5f614e978261487e565b9150614ea28361487e565b9250828201905080821115614eba57614eb9614ca6565b5b92915050565b5f81905092915050565b50565b5f614ed85f83614ec0565b9150614ee382614eca565b5f82019050919050565b5f614ef782614ecd565b9150819050919050565b7f4275792066656573206d757374206265203c3d20352e000000000000000000005f82015250565b5f614f35601683614780565b9150614f4082614f01565b602082019050919050565b5f6020820190508181035f830152614f6281614f29565b9050919050565b5f81519050614f7781614887565b92915050565b5f60208284031215614f9257614f91614820565b5b5f614f9f84828501614f69565b91505092915050565b5f604082019050614fbb5f830185614a64565b614fc8602083018461494d565b9392505050565b5f81519050614fdd81614ac0565b92915050565b5f60208284031215614ff857614ff7614820565b5b5f61500584828501614fcf565b91505092915050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d205f8201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b5f615068603983614780565b91506150738261500e565b604082019050919050565b5f6020820190508181035f8301526150958161505c565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6150f6602583614780565b91506151018261509c565b604082019050919050565b5f6020820190508181035f830152615123816150ea565b9050919050565b7f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000005f82015250565b5f61515e601a83614780565b91506151698261512a565b602082019050919050565b5f6020820190508181035f83015261518b81615152565b9050919050565b7f53656c6c2066656573206d757374206265203c3d20352e0000000000000000005f82015250565b5f6151c6601783614780565b91506151d182615192565b602082019050919050565b5f6020820190508181035f8301526151f3816151ba565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e205f8201527f312e302500000000000000000000000000000000000000000000000000000000602082015250565b5f615254602483614780565b915061525f826151fa565b604082019050919050565b5f6020820190508181035f83015261528181615248565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e5f8201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b5f6152e2603583614780565b91506152ed82615288565b604082019050919050565b5f6020820190508181035f83015261530f816152d6565b9050919050565b7f5377617020616d6f756e742063616e6e6f7420626520686967686572207468615f8201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b5f615370603483614780565b915061537b82615316565b604082019050919050565b5f6020820190508181035f83015261539d81615364565b9050919050565b7f5465616d20686173207265766f6b656420626c61636b6c6973742072696768745f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f6153fe602183614780565b9150615409826153a4565b604082019050919050565b5f6020820190508181035f83015261542b816153f2565b9050919050565b7f43616e6e6f7420626c61636b6c69737420746f6b656e277320763220726f75745f8201527f6572206f7220763220706f6f6c2e000000000000000000000000000000000000602082015250565b5f61548c602e83614780565b915061549782615432565b604082019050919050565b5f6020820190508181035f8301526154b981615480565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f61551a602683614780565b9150615525826154c0565b604082019050919050565b5f6020820190508181035f8301526155478161550e565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6155a8602483614780565b91506155b38261554e565b604082019050919050565b5f6020820190508181035f8301526155d58161559c565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f615636602283614780565b9150615641826155dc565b604082019050919050565b5f6020820190508181035f8301526156638161562a565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6156c4602583614780565b91506156cf8261566a565b604082019050919050565b5f6020820190508181035f8301526156f1816156b8565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f615752602383614780565b915061575d826156f8565b604082019050919050565b5f6020820190508181035f83015261577f81615746565b9050919050565b7f53656e64657220626c61636b6c697374656400000000000000000000000000005f82015250565b5f6157ba601283614780565b91506157c582615786565b602082019050919050565b5f6020820190508181035f8301526157e7816157ae565b9050919050565b7f526563656976657220626c61636b6c69737465640000000000000000000000005f82015250565b5f615822601483614780565b915061582d826157ee565b602082019050919050565b5f6020820190508181035f83015261584f81615816565b9050919050565b7f4e6f7420617574686f72697a656420746f207472616e73666572207072652d6d5f8201527f6967726174696f6e2e0000000000000000000000000000000000000000000000602082015250565b5f6158b0602983614780565b91506158bb82615856565b604082019050919050565b5f6020820190508181035f8301526158dd816158a4565b9050919050565b7f54726164696e67206973206e6f74206163746976652e000000000000000000005f82015250565b5f615918601683614780565b9150615923826158e4565b602082019050919050565b5f6020820190508181035f8301526159458161590c565b9050919050565b7f427579207472616e7366657220616d6f756e74206578636565647320746865205f8201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b5f6159a6603583614780565b91506159b18261594c565b604082019050919050565b5f6020820190508181035f8301526159d38161599a565b9050919050565b7f4d61782077616c6c6574206578636565646564000000000000000000000000005f82015250565b5f615a0e601383614780565b9150615a19826159da565b602082019050919050565b5f6020820190508181035f830152615a3b81615a02565b9050919050565b7f53656c6c207472616e7366657220616d6f756e742065786365656473207468655f8201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b5f615a9c603683614780565b9150615aa782615a42565b604082019050919050565b5f6020820190508181035f830152615ac981615a90565b9050919050565b5f615ada8261487e565b9150615ae58361487e565b9250828203905081811115615afd57615afc614ca6565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f615b5d602683614780565b9150615b6882615b03565b604082019050919050565b5f6020820190508181035f830152615b8a81615b51565b9050919050565b5f606082019050615ba45f83018661494d565b615bb1602083018561494d565b615bbe604083018461494d565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81519050615c2e81614854565b92915050565b5f60208284031215615c4957615c48614820565b5b5f615c5684828501615c20565b91505092915050565b5f819050919050565b5f615c82615c7d615c7884615c5f565b614975565b61487e565b9050919050565b615c9281615c68565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b615cca81614843565b82525050565b5f615cdb8383615cc1565b60208301905092915050565b5f602082019050919050565b5f615cfd82615c98565b615d078185615ca2565b9350615d1283615cb2565b805f5b83811015615d42578151615d298882615cd0565b9750615d3483615ce7565b925050600181019050615d15565b5085935050505092915050565b5f60a082019050615d625f83018861494d565b615d6f6020830187615c89565b8181036040830152615d818186615cf3565b9050615d906060830185614a64565b615d9d608083018461494d565b9695505050505050565b5f60c082019050615dba5f830189614a64565b615dc7602083018861494d565b615dd46040830187615c89565b615de16060830186615c89565b615dee6080830185614a64565b615dfb60a083018461494d565b979650505050505050565b5f805f60608486031215615e1d57615e1c614820565b5b5f615e2a86828701614f69565b9350506020615e3b86828701614f69565b9250506040615e4c86828701614f69565b915050925092509256fea2646970667358221220164bba516ba78d910a0f279ca5f27d1cdb98e0d75e7e23e4c1488fb3b349b68864736f6c63430008140033

Deployed Bytecode Sourcemap

30751:17939:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9452:99;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11612:168;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32304:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32017:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31509:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30830:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10569:107;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31651:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31800:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36248:277;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12262:491;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31761:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30933:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10412:92;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13162:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31328:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30888;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31210:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32347:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39047:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31061:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47214:90;;;;;;;;;;;;;:::i;:::-;;31616:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31289:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10739:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3174:103;;;;;;;;;;;;;:::i;:::-;;35569:120;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36800:159;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48323:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31025:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46964:196;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38878:161;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37163:395;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35369:148;;;;;;;;;;;;;:::i;:::-;;46407:253;;;;;;;;;;;;;:::i;:::-;;2524:86;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37055:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9670:103;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38169:296;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31582:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13879:412;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11078:174;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48429:258;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38669:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32238:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31250:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46668:288;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37979:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37566:405;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36533:259;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31095:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35759:481;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31726:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31475:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11315:150;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47788:402;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31137:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31545:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3432:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31688:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31177:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47312:373;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31840:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39180:112;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9452:99;9505:13;9538:5;9531:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9452:99;:::o;11612:168::-;11694:4;11711:39;11720:12;:10;:12::i;:::-;11734:7;11743:6;11711:8;:39::i;:::-;11768:4;11761:11;;11612:168;;;;:::o;32304:36::-;;;;;;;;;;;;;:::o;32017:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;31509:29::-;;;;:::o;30830:51::-;;;:::o;10569:107::-;10629:7;10656:12;;10649:19;;10569:107;:::o;31651:30::-;;;;:::o;31800:33::-;;;;:::o;36248:277::-;2754:12;:10;:12::i;:::-;2743:23;;:7;:5;:7::i;:::-;:23;;;2735:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36385:4:::1;36377;36372:1;36356:13;:11;:13::i;:::-;:17;;;;:::i;:::-;36355:26;;;;:::i;:::-;36354:35;;;;:::i;:::-;36344:6;:45;;36322:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;36508:8;36498:6;:19;;;;:::i;:::-;36475:20;:42;;;;36248:277:::0;:::o;12262:491::-;12401:4;12418:36;12428:6;12436:9;12447:6;12418:9;:36::i;:::-;12467:24;12494:11;:19;12506:6;12494:19;;;;;;;;;;;;;;;:33;12514:12;:10;:12::i;:::-;12494:33;;;;;;;;;;;;;;;;12467:60;;12566:6;12546:16;:26;;12538:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;12653:57;12662:6;12670:12;:10;:12::i;:::-;12703:6;12684:16;:25;12653:8;:57::i;:::-;12741:4;12734:11;;;12262:491;;;;;:::o;31761:32::-;;;;:::o;30933:53::-;30979:6;30933:53;:::o;10412:92::-;10469:5;10494:2;10487:9;;10412:92;:::o;13162:214::-;13249:4;13266:80;13275:12;:10;:12::i;:::-;13289:7;13335:10;13298:11;:25;13310:12;:10;:12::i;:::-;13298:25;;;;;;;;;;;;;;;:34;13324:7;13298:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;13266:8;:80::i;:::-;13364:4;13357:11;;13162:214;;;;:::o;31328:38::-;;;;;;;;;;;;;:::o;30888:::-;;;:::o;31210:33::-;;;;;;;;;;;;;:::o;32347:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;39047:125::-;39112:4;39136:19;:28;39156:7;39136:28;;;;;;;;;;;;;;;;;;;;;;;;;39129:35;;39047:125;;;:::o;31061:25::-;;;;;;;;;;;;;:::o;47214:90::-;2754:12;:10;:12::i;:::-;2743:23;;:7;:5;:7::i;:::-;:23;;;2735:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47292:4:::1;47271:18;;:25;;;;;;;;;;;;;;;;;;47214:90::o:0;31616:28::-;;;;:::o;31289:30::-;;;;;;;;;;;;;:::o;10739:126::-;10812:7;10839:9;:18;10849:7;10839:18;;;;;;;;;;;;;;;;10832:25;;10739:126;;;:::o;3174:103::-;2754:12;:10;:12::i;:::-;2743:23;;:7;:5;:7::i;:::-;:23;;;2735:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3239:30:::1;3266:1;3239:18;:30::i;:::-;3174:103::o:0;35569:120::-;35620:4;2754:12;:10;:12::i;:::-;2743:23;;:7;:5;:7::i;:::-;:23;;;2735:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35654:5:::1;35637:14;;:22;;;;;;;;;;;;;;;;;;35677:4;35670:11;;35569:120:::0;:::o;36800:159::-;2754:12;:10;:12::i;:::-;2743:23;;:7;:5;:7::i;:::-;:23;;;2735:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36947:4:::1;36905:31;:39;36937:6;36905:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;36800:159:::0;;:::o;48323:98::-;2754:12;:10;:12::i;:::-;2743:23;;:7;:5;:7::i;:::-;:23;;;2735:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48408:5:::1;48387:11;:18;48399:5;48387:18;;;;;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;48323:98:::0;:::o;31025:29::-;;;;;;;;;;;;;:::o;46964:196::-;2754:12;:10;:12::i;:::-;2743:23;;:7;:5;:7::i;:::-;:23;;;2735:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47037:12:::1;47055:6;:11;;47088:21;47055:70;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47036:89;;;47144:7;47136:16;;;::::0;::::1;;47025:135;46964:196:::0;:::o;38878:161::-;2754:12;:10;:12::i;:::-;2743:23;;:7;:5;:7::i;:::-;:23;;;2735:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38987:10:::1;;;;;;;;;;;38958:40;;38976:9;38958:40;;;;;;;;;;;;39022:9;39009:10;;:22;;;;;;;;;;;;;;;;;;38878:161:::0;:::o;37163:395::-;2754:12;:10;:12::i;:::-;2743:23;;:7;:5;:7::i;:::-;:23;;;2735:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37330:12:::1;37313:14;:29;;;;37371:13;37353:15;:31;;;;37408:8;37395:10;:21;;;;37477:10;;37459:15;;37442:14;;:32;;;;:::i;:::-;:45;;;;:::i;:::-;37427:12;:60;;;;37522:1;37506:12;;:17;;37498:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;37163:395:::0;;;:::o;35369:148::-;2754:12;:10;:12::i;:::-;2743:23;;:7;:5;:7::i;:::-;:23;;;2735:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35440:4:::1;35424:13;;:20;;;;;;;;;;;;;;;;;;35469:4;35455:11;;:18;;;;;;;;;;;;;;;;;;35504:5;35484:17;;:25;;;;;;;;;;;;;;;;;;35369:148::o:0;46407:253::-;2754:12;:10;:12::i;:::-;2743:23;;:7;:5;:7::i;:::-;:23;;;2735:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46464:15:::1;46497:4;46482:31;;;46522:4;46482:46;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46464:64;;46554:4;46539:30;;;46570:10;46582:7;46539:51;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;46609:10;46601:28;;:51;46630:21;46601:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;46453:207;46407:253::o:0;2524:86::-;2569:7;2596:6;;;;;;;;;;;2589:13;;2524:86;:::o;37055:100::-;2754:12;:10;:12::i;:::-;2743:23;;:7;:5;:7::i;:::-;:23;;;2735:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37140:7:::1;37126:11;;:21;;;;;;;;;;;;;;;;;;37055:100:::0;:::o;9670:103::-;9725:13;9758:7;9751:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9670:103;:::o;38169:296::-;2754:12;:10;:12::i;:::-;2743:23;;:7;:5;:7::i;:::-;:23;;;2735:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38305:13:::1;38297:21;;:4;:21;;::::0;38275:128:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;38416:41;38445:4;38451:5;38416:28;:41::i;:::-;38169:296:::0;;:::o;31582:25::-;;;;:::o;13879:412::-;13971:4;13988:24;14015:11;:25;14027:12;:10;:12::i;:::-;14015:25;;;;;;;;;;;;;;;:34;14041:7;14015:34;;;;;;;;;;;;;;;;13988:61;;14088:15;14068:16;:35;;14060:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14181:67;14190:12;:10;:12::i;:::-;14204:7;14232:15;14213:16;:34;14181:8;:67::i;:::-;14279:4;14272:11;;;13879:412;;;;:::o;11078:174::-;11163:4;11180:42;11190:12;:10;:12::i;:::-;11204:9;11215:6;11180:9;:42::i;:::-;11240:4;11233:11;;11078:174;;;;:::o;48429:258::-;2754:12;:10;:12::i;:::-;2743:23;;:7;:5;:7::i;:::-;:23;;;2735:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48563:12:::1;48528:25;:32;48554:5;48528:32;;;;;;;;;;;;;;;;:47;;;;;;;;;;;;;;;;;;48586:36;48602:5;48609:12;48586:15;:36::i;:::-;48633:46;48659:5;48666:12;48633:25;:46::i;:::-;48429:258:::0;;:::o;38669:201::-;2754:12;:10;:12::i;:::-;2743:23;;:7;:5;:7::i;:::-;:23;;;2735:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38802:14:::1;;;;;;;;;;;38761:56;;38783:17;38761:56;;;;;;;;;;;;38845:17;38828:14;;:34;;;;;;;;;;;;;;;;;;38669:201:::0;:::o;32238:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;31250:32::-;;;;;;;;;;;;;:::o;46668:288::-;2754:12;:10;:12::i;:::-;2743:23;;:7;:5;:7::i;:::-;:23;;;2735:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46781:1:::1;46763:20;;:6;:20;;::::0;46755:59:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;46825:24;46859:6;46852:24;;;46885:4;46852:39;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46825:66;;46909:6;46902:23;;;46926:3;46931:16;46902:46;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;46744:212;46668:288:::0;;:::o;37979:182::-;2754:12;:10;:12::i;:::-;2743:23;;:7;:5;:7::i;:::-;:23;;;2735:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38095:8:::1;38064:19;:28;38084:7;38064:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;38135:7;38119:34;;;38144:8;38119:34;;;;;;:::i;:::-;;;;;;;;37979:182:::0;;:::o;37566:405::-;2754:12;:10;:12::i;:::-;2743:23;;:7;:5;:7::i;:::-;:23;;;2735:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37735:12:::1;37717:15;:30;;;;37777:13;37758:16;:32;;;;37815:8;37801:11;:22;;;;37887:11;;37868:16;;37850:15;;:34;;;;:::i;:::-;:48;;;;:::i;:::-;37834:13;:64;;;;37934:1;37917:13;;:18;;37909:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;37566:405:::0;;;:::o;36533:259::-;2754:12;:10;:12::i;:::-;2743:23;;:7;:5;:7::i;:::-;:23;;;2735:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36674:4:::1;36666;36660:2;36644:13;:11;:13::i;:::-;:18;;;;:::i;:::-;36643:27;;;;:::i;:::-;36642:36;;;;:::i;:::-;36632:6;:46;;36610:132;;;;;;;;;;;;:::i;:::-;;;;;;;;;36775:8;36765:6;:19;;;;:::i;:::-;36753:9;:31;;;;36533:259:::0;:::o;31095:35::-;;;;:::o;35759:481::-;35854:4;2754:12;:10;:12::i;:::-;2743:23;;:7;:5;:7::i;:::-;:23;;;2735:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35933:4:::1;35928:1;35912:13;:11;:13::i;:::-;:17;;;;:::i;:::-;35911:26;;;;:::i;:::-;35898:9;:39;;35876:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;36086:3;36081:1;36065:13;:11;:13::i;:::-;:17;;;;:::i;:::-;36064:25;;;;:::i;:::-;36051:9;:38;;36029:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;36201:9;36180:18;:30;;;;36228:4;36221:11;;35759:481:::0;;;:::o;31726:26::-;;;;:::o;31475:27::-;;;;:::o;11315:150::-;11403:7;11430:11;:18;11442:5;11430:18;;;;;;;;;;;;;;;:27;11449:7;11430:27;;;;;;;;;;;;;;;;11423:34;;11315:150;;;;:::o;47788:402::-;2754:12;:10;:12::i;:::-;2743:23;;:7;:5;:7::i;:::-;:23;;;2735:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47876:18:::1;;;;;;;;;;;47875:19;47867:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;47986:13;47965:35;;:9;:35;;;;:103;;;;;48025:42;48004:64;;:9;:64;;;;47965:103;47943:199;;;;;;;;;;;;:::i;:::-;;;;;;;;;48178:4;48153:11;:22;48165:9;48153:22;;;;;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;47788:402:::0;:::o;31137:33::-;;;;:::o;31545:30::-;;;;:::o;3432:201::-;2754:12;:10;:12::i;:::-;2743:23;;:7;:5;:7::i;:::-;:23;;;2735:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3541:1:::1;3521:22;;:8;:22;;::::0;3513:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3597:28;3616:8;3597:18;:28::i;:::-;3432:201:::0;:::o;31688:31::-;;;;:::o;31177:24::-;;;;:::o;47312:373::-;2754:12;:10;:12::i;:::-;2743:23;;:7;:5;:7::i;:::-;:23;;;2735:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47383:18:::1;;;;;;;;;;;47382:19;47374:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;47489:13;47472:31;;:5;:31;;;;:95;;;;;47524:42;47507:60;;:5;:60;;;;47472:95;47450:191;;;;;;;;;;;;:::i;:::-;;;;;;;;;47673:4;47652:11;:18;47664:5;47652:18;;;;;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;47312:373:::0;:::o;31840:28::-;;;;:::o;39180:112::-;39240:4;39264:11;:20;39276:7;39264:20;;;;;;;;;;;;;;;;;;;;;;;;;39257:27;;39180:112;;;:::o;1393:97::-;1445:7;1472:10;1465:17;;1393:97;:::o;17562:380::-;17715:1;17698:19;;:5;:19;;;17690:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17796:1;17777:21;;:7;:21;;;17769:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17880:6;17850:11;:18;17862:5;17850:18;;;;;;;;;;;;;;;:27;17869:7;17850:27;;;;;;;;;;;;;;;:36;;;;17918:7;17902:32;;17911:5;17902:32;;;17927:6;17902:32;;;;;;:::i;:::-;;;;;;;;17562:380;;;:::o;39300:4191::-;39448:1;39432:18;;:4;:18;;;39424:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39525:1;39511:16;;:2;:16;;;39503:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;39587:11;:17;39599:4;39587:17;;;;;;;;;;;;;;;;;;;;;;;;;39586:18;39578:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;39647:11;:15;39659:2;39647:15;;;;;;;;;;;;;;;;;;;;;;;;;39646:16;39638:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;39704:17;;;;;;;;;;;39700:135;;;39746:25;:31;39772:4;39746:31;;;;;;;;;;;;;;;;;;;;;;;;;39738:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;39700:135;39861:1;39851:6;:11;39847:93;;39879:28;39895:4;39901:2;39905:1;39879:15;:28::i;:::-;39922:7;;39847:93;39956:14;;;;;;;;;;;39952:1694;;;40017:7;:5;:7::i;:::-;40009:15;;:4;:15;;;;:49;;;;;40051:7;:5;:7::i;:::-;40045:13;;:2;:13;;;;40009:49;:86;;;;;40093:1;40079:16;;:2;:16;;;;40009:86;:128;;;;;40130:6;40116:21;;:2;:21;;;;40009:128;:158;;;;;40159:8;;;;;;;;;;;40158:9;40009:158;39987:1648;;;40207:13;;;;;;;;;;;40202:223;;40279:19;:25;40299:4;40279:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;40308:19;:23;40328:2;40308:23;;;;;;;;;;;;;;;;;;;;;;;;;40279:52;40245:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;40202:223;40499:25;:31;40525:4;40499:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;40556:31;:35;40588:2;40556:35;;;;;;;;;;;;;;;;;;;;;;;;;40555:36;40499:92;40473:1147;;;40678:20;;40668:6;:30;;40634:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;40886:9;;40869:13;40879:2;40869:9;:13::i;:::-;40860:6;:22;;;;:::i;:::-;:35;;40826:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;40473:1147;;;41064:25;:29;41090:2;41064:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;41119:31;:37;41151:4;41119:37;;;;;;;;;;;;;;;;;;;;;;;;;41118:38;41064:92;41038:582;;;41243:20;;41233:6;:30;;41199:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;41038:582;;;41400:31;:35;41432:2;41400:35;;;;;;;;;;;;;;;;;;;;;;;;;41395:225;;41520:9;;41503:13;41513:2;41503:9;:13::i;:::-;41494:6;:22;;;;:::i;:::-;:35;;41460:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;41395:225;41038:582;40473:1147;39987:1648;39952:1694;41658:28;41689:24;41707:4;41689:9;:24::i;:::-;41658:55;;41726:12;41765:18;;41741:20;:42;;41726:57;;41814:7;:35;;;;;41838:11;;;;;;;;;;;41814:35;:61;;;;;41867:8;;;;;;;;;;;41866:9;41814:61;:110;;;;;41893:25;:31;41919:4;41893:31;;;;;;;;;;;;;;;;;;;;;;;;;41892:32;41814:110;:153;;;;;41942:19;:25;41962:4;41942:25;;;;;;;;;;;;;;;;;;;;;;;;;41941:26;41814:153;:194;;;;;41985:19;:23;42005:2;41985:23;;;;;;;;;;;;;;;;;;;;;;;;;41984:24;41814:194;41796:326;;;42046:4;42035:8;;:15;;;;;;;;;;;;;;;;;;42067:10;:8;:10::i;:::-;42105:5;42094:8;;:16;;;;;;;;;;;;;;;;;;41796:326;42134:12;42150:8;;;;;;;;;;;42149:9;42134:24;;42260:19;:25;42280:4;42260:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;42289:19;:23;42309:2;42289:23;;;;;;;;;;;;;;;;;;;;;;;;;42260:52;42256:100;;;42339:5;42329:15;;42256:100;42368:12;42473:7;42469:969;;;42525:25;:29;42551:2;42525:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;42574:1;42558:13;;:17;42525:50;42521:768;;;42603:34;42633:3;42603:25;42614:13;;42603:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;42596:41;;42706:13;;42686:16;;42679:4;:23;;;;:::i;:::-;42678:41;;;;:::i;:::-;42656:18;;:63;;;;;;;:::i;:::-;;;;;;;;42778:13;;42763:11;;42756:4;:18;;;;:::i;:::-;42755:36;;;;:::i;:::-;42738:13;;:53;;;;;;;:::i;:::-;;;;;;;;42858:13;;42839:15;;42832:4;:22;;;;:::i;:::-;42831:40;;;;:::i;:::-;42810:17;;:61;;;;;;;:::i;:::-;;;;;;;;42521:768;;;42933:25;:31;42959:4;42933:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;42983:1;42968:12;;:16;42933:51;42929:360;;;43012:33;43041:3;43012:24;43023:12;;43012:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;43005:40;;43113:12;;43094:15;;43087:4;:22;;;;:::i;:::-;43086:39;;;;:::i;:::-;43064:18;;:61;;;;;;;:::i;:::-;;;;;;;;43183:12;;43169:10;;43162:4;:17;;;;:::i;:::-;43161:34;;;;:::i;:::-;43144:13;;:51;;;;;;;:::i;:::-;;;;;;;;43261:12;;43243:14;;43236:4;:21;;;;:::i;:::-;43235:38;;;;:::i;:::-;43214:17;;:59;;;;;;;:::i;:::-;;;;;;;;42929:360;42521:768;43316:1;43309:4;:8;43305:91;;;43338:42;43354:4;43368;43375;43338:15;:42::i;:::-;43305:91;43422:4;43412:14;;;;;:::i;:::-;;;42469:969;43450:33;43466:4;43472:2;43476:6;43450:15;:33::i;:::-;39413:4078;;;;39300:4191;;;;:::o;3793:191::-;3867:16;3886:6;;;;;;;;;;;3867:25;;3912:8;3903:6;;:17;;;;;;;;;;;;;;;;;;3967:8;3936:40;;3957:8;3936:40;;;;;;;;;;;;3856:128;3793:191;:::o;38473:188::-;38590:5;38556:25;:31;38582:4;38556:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;38647:5;38613:40;;38641:4;38613:40;;;;;;;;;;;;38473:188;;:::o;14781:733::-;14939:1;14921:20;;:6;:20;;;14913:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;15023:1;15002:23;;:9;:23;;;14994:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;15078:47;15099:6;15107:9;15118:6;15078:20;:47::i;:::-;15138:21;15162:9;:17;15172:6;15162:17;;;;;;;;;;;;;;;;15138:41;;15215:6;15198:13;:23;;15190:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;15336:6;15320:13;:22;15300:9;:17;15310:6;15300:17;;;;;;;;;;;;;;;:42;;;;15388:6;15364:9;:20;15374:9;15364:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;15429:9;15412:35;;15421:6;15412:35;;;15440:6;15412:35;;;;;;:::i;:::-;;;;;;;;15460:46;15480:6;15488:9;15499:6;15460:19;:46::i;:::-;14902:612;14781:733;;;:::o;44620:1779::-;44659:23;44685:24;44703:4;44685:9;:24::i;:::-;44659:50;;44720:25;44815:13;;44782:17;;44748:18;;:51;;;;:::i;:::-;:80;;;;:::i;:::-;44720:108;;44839:12;44887:1;44868:15;:20;:46;;;;44913:1;44892:17;:22;44868:46;44864:85;;;44931:7;;;;;44864:85;45004:2;44983:18;;:23;;;;:::i;:::-;44965:15;:41;44961:115;;;45062:2;45041:18;;:23;;;;:::i;:::-;45023:41;;44961:115;45137:23;45250:1;45217:17;45182:18;;45164:15;:36;;;;:::i;:::-;45163:71;;;;:::i;:::-;:88;;;;:::i;:::-;45137:114;;45262:26;45291:36;45311:15;45291;:19;;:36;;;;:::i;:::-;45262:65;;45340:25;45368:21;45340:49;;45402:36;45419:18;45402:16;:36::i;:::-;45451:18;45472:44;45498:17;45472:21;:25;;:44;;;;:::i;:::-;45451:65;;45529:22;45554:83;45634:1;45613:18;;:22;;;;:::i;:::-;45592:17;:44;;;;:::i;:::-;45554:33;45569:17;;45554:10;:14;;:33;;;;:::i;:::-;:37;;:83;;;;:::i;:::-;45529:108;;45658:18;45679:79;45755:1;45734:18;;:22;;;;:::i;:::-;45713:17;:44;;;;:::i;:::-;45679:29;45694:13;;45679:10;:14;;:29;;;;:::i;:::-;:33;;:79;;;;:::i;:::-;45658:100;;45771:23;45827:10;45810:14;45797:10;:27;;;;:::i;:::-;:40;;;;:::i;:::-;45771:66;;45871:1;45850:18;:22;;;;45903:1;45883:17;:21;;;;45931:1;45915:13;:17;;;;45967:10;;;;;;;;;;;45959:24;;45992:10;45959:50;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45945:64;;;;;46044:1;46026:15;:19;:42;;;;;46067:1;46049:15;:19;46026:42;46022:278;;;46085:46;46098:15;46115;46085:12;:46::i;:::-;46151:137;46184:18;46221:15;46255:18;;46151:137;;;;;;;;:::i;:::-;;;;;;;;46022:278;46334:14;;;;;;;;;;;46326:28;;46363:21;46326:65;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46312:79;;;;;44648:1751;;;;;;;;;;44620:1779;:::o;22689:97::-;22746:7;22777:1;22773;:5;;;;:::i;:::-;22766:12;;22689:97;;;;:::o;23087:::-;23144:7;23175:1;23171;:5;;;;:::i;:::-;23164:12;;23087:97;;;;:::o;18542:126::-;;;;:::o;19272:125::-;;;;:::o;22333:97::-;22390:7;22421:1;22417;:5;;;;:::i;:::-;22410:12;;22333:97;;;;:::o;43499:589::-;43625:21;43663:1;43649:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43625:40;;43694:4;43676;43681:1;43676:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;43720:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;43710:4;43715:1;43710:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;43755:62;43772:4;43787:15;43805:11;43755:8;:62::i;:::-;43856:15;:66;;;43937:11;43963:1;44007:4;44034;44054:15;43856:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43554:534;43499:589;:::o;44096:516::-;44244:62;44261:4;44276:15;44294:11;44244:8;:62::i;:::-;44349:15;:31;;;44389:9;44424:4;44444:11;44470:1;44513;44556:7;:5;:7::i;:::-;44578:15;44349:255;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;44096:516;;:::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:329::-;3505:6;3554:2;3542:9;3533:7;3529:23;3525:32;3522:119;;;3560:79;;:::i;:::-;3522:119;3680:1;3705:53;3750:7;3741:6;3730:9;3726:22;3705:53;:::i;:::-;3695:63;;3651:117;3446:329;;;;:::o;3781:118::-;3868:24;3886:5;3868:24;:::i;:::-;3863:3;3856:37;3781:118;;:::o;3905:222::-;3998:4;4036:2;4025:9;4021:18;4013:26;;4049:71;4117:1;4106:9;4102:17;4093:6;4049:71;:::i;:::-;3905:222;;;;:::o;4133:60::-;4161:3;4182:5;4175:12;;4133:60;;;:::o;4199:142::-;4249:9;4282:53;4300:34;4309:24;4327:5;4309:24;:::i;:::-;4300:34;:::i;:::-;4282:53;:::i;:::-;4269:66;;4199:142;;;:::o;4347:126::-;4397:9;4430:37;4461:5;4430:37;:::i;:::-;4417:50;;4347:126;;;:::o;4479:153::-;4556:9;4589:37;4620:5;4589:37;:::i;:::-;4576:50;;4479:153;;;:::o;4638:185::-;4752:64;4810:5;4752:64;:::i;:::-;4747:3;4740:77;4638:185;;:::o;4829:276::-;4949:4;4987:2;4976:9;4972:18;4964:26;;5000:98;5095:1;5084:9;5080:17;5071:6;5000:98;:::i;:::-;4829:276;;;;:::o;5111:329::-;5170:6;5219:2;5207:9;5198:7;5194:23;5190:32;5187:119;;;5225:79;;:::i;:::-;5187:119;5345:1;5370:53;5415:7;5406:6;5395:9;5391:22;5370:53;:::i;:::-;5360:63;;5316:117;5111:329;;;;:::o;5446:619::-;5523:6;5531;5539;5588:2;5576:9;5567:7;5563:23;5559:32;5556:119;;;5594:79;;:::i;:::-;5556:119;5714:1;5739:53;5784:7;5775:6;5764:9;5760:22;5739:53;:::i;:::-;5729:63;;5685:117;5841:2;5867:53;5912:7;5903:6;5892:9;5888:22;5867:53;:::i;:::-;5857:63;;5812:118;5969:2;5995:53;6040:7;6031:6;6020:9;6016:22;5995:53;:::i;:::-;5985:63;;5940:118;5446:619;;;;;:::o;6071:118::-;6158:24;6176:5;6158:24;:::i;:::-;6153:3;6146:37;6071:118;;:::o;6195:222::-;6288:4;6326:2;6315:9;6311:18;6303:26;;6339:71;6407:1;6396:9;6392:17;6383:6;6339:71;:::i;:::-;6195:222;;;;:::o;6423:86::-;6458:7;6498:4;6491:5;6487:16;6476:27;;6423:86;;;:::o;6515:112::-;6598:22;6614:5;6598:22;:::i;:::-;6593:3;6586:35;6515:112;;:::o;6633:214::-;6722:4;6760:2;6749:9;6745:18;6737:26;;6773:67;6837:1;6826:9;6822:17;6813:6;6773:67;:::i;:::-;6633:214;;;;:::o;6853:116::-;6923:21;6938:5;6923:21;:::i;:::-;6916:5;6913:32;6903:60;;6959:1;6956;6949:12;6903:60;6853:116;:::o;6975:133::-;7018:5;7056:6;7043:20;7034:29;;7072:30;7096:5;7072:30;:::i;:::-;6975:133;;;;:::o;7114:468::-;7179:6;7187;7236:2;7224:9;7215:7;7211:23;7207:32;7204:119;;;7242:79;;:::i;:::-;7204:119;7362:1;7387:53;7432:7;7423:6;7412:9;7408:22;7387:53;:::i;:::-;7377:63;;7333:117;7489:2;7515:50;7557:7;7548:6;7537:9;7533:22;7515:50;:::i;:::-;7505:60;;7460:115;7114:468;;;;;:::o;7588:619::-;7665:6;7673;7681;7730:2;7718:9;7709:7;7705:23;7701:32;7698:119;;;7736:79;;:::i;:::-;7698:119;7856:1;7881:53;7926:7;7917:6;7906:9;7902:22;7881:53;:::i;:::-;7871:63;;7827:117;7983:2;8009:53;8054:7;8045:6;8034:9;8030:22;8009:53;:::i;:::-;7999:63;;7954:118;8111:2;8137:53;8182:7;8173:6;8162:9;8158:22;8137:53;:::i;:::-;8127:63;;8082:118;7588:619;;;;;:::o;8213:323::-;8269:6;8318:2;8306:9;8297:7;8293:23;8289:32;8286:119;;;8324:79;;:::i;:::-;8286:119;8444:1;8469:50;8511:7;8502:6;8491:9;8487:22;8469:50;:::i;:::-;8459:60;;8415:114;8213:323;;;;:::o;8542:474::-;8610:6;8618;8667:2;8655:9;8646:7;8642:23;8638:32;8635:119;;;8673:79;;:::i;:::-;8635:119;8793:1;8818:53;8863:7;8854:6;8843:9;8839:22;8818:53;:::i;:::-;8808:63;;8764:117;8920:2;8946:53;8991:7;8982:6;8971:9;8967:22;8946:53;:::i;:::-;8936:63;;8891:118;8542:474;;;;;:::o;9022:180::-;9070:77;9067:1;9060:88;9167:4;9164:1;9157:15;9191:4;9188:1;9181:15;9208:320;9252:6;9289:1;9283:4;9279:12;9269:22;;9336:1;9330:4;9326:12;9357:18;9347:81;;9413:4;9405:6;9401:17;9391:27;;9347:81;9475:2;9467:6;9464:14;9444:18;9441:38;9438:84;;9494:18;;:::i;:::-;9438:84;9259:269;9208:320;;;:::o;9534:182::-;9674:34;9670:1;9662:6;9658:14;9651:58;9534:182;:::o;9722:366::-;9864:3;9885:67;9949:2;9944:3;9885:67;:::i;:::-;9878:74;;9961:93;10050:3;9961:93;:::i;:::-;10079:2;10074:3;10070:12;10063:19;;9722:366;;;:::o;10094:419::-;10260:4;10298:2;10287:9;10283:18;10275:26;;10347:9;10341:4;10337:20;10333:1;10322:9;10318:17;10311:47;10375:131;10501:4;10375:131;:::i;:::-;10367:139;;10094:419;;;:::o;10519:180::-;10567:77;10564:1;10557:88;10664:4;10661:1;10654:15;10688:4;10685:1;10678:15;10705:410;10745:7;10768:20;10786:1;10768:20;:::i;:::-;10763:25;;10802:20;10820:1;10802:20;:::i;:::-;10797:25;;10857:1;10854;10850:9;10879:30;10897:11;10879:30;:::i;:::-;10868:41;;11058:1;11049:7;11045:15;11042:1;11039:22;11019:1;11012:9;10992:83;10969:139;;11088:18;;:::i;:::-;10969:139;10753:362;10705:410;;;;:::o;11121:180::-;11169:77;11166:1;11159:88;11266:4;11263:1;11256:15;11290:4;11287:1;11280:15;11307:185;11347:1;11364:20;11382:1;11364:20;:::i;:::-;11359:25;;11398:20;11416:1;11398:20;:::i;:::-;11393:25;;11437:1;11427:35;;11442:18;;:::i;:::-;11427:35;11484:1;11481;11477:9;11472:14;;11307:185;;;;:::o;11498:234::-;11638:34;11634:1;11626:6;11622:14;11615:58;11707:17;11702:2;11694:6;11690:15;11683:42;11498:234;:::o;11738:366::-;11880:3;11901:67;11965:2;11960:3;11901:67;:::i;:::-;11894:74;;11977:93;12066:3;11977:93;:::i;:::-;12095:2;12090:3;12086:12;12079:19;;11738:366;;;:::o;12110:419::-;12276:4;12314:2;12303:9;12299:18;12291:26;;12363:9;12357:4;12353:20;12349:1;12338:9;12334:17;12327:47;12391:131;12517:4;12391:131;:::i;:::-;12383:139;;12110:419;;;:::o;12535:227::-;12675:34;12671:1;12663:6;12659:14;12652:58;12744:10;12739:2;12731:6;12727:15;12720:35;12535:227;:::o;12768:366::-;12910:3;12931:67;12995:2;12990:3;12931:67;:::i;:::-;12924:74;;13007:93;13096:3;13007:93;:::i;:::-;13125:2;13120:3;13116:12;13109:19;;12768:366;;;:::o;13140:419::-;13306:4;13344:2;13333:9;13329:18;13321:26;;13393:9;13387:4;13383:20;13379:1;13368:9;13364:17;13357:47;13421:131;13547:4;13421:131;:::i;:::-;13413:139;;13140:419;;;:::o;13565:191::-;13605:3;13624:20;13642:1;13624:20;:::i;:::-;13619:25;;13658:20;13676:1;13658:20;:::i;:::-;13653:25;;13701:1;13698;13694:9;13687:16;;13722:3;13719:1;13716:10;13713:36;;;13729:18;;:::i;:::-;13713:36;13565:191;;;;:::o;13762:147::-;13863:11;13900:3;13885:18;;13762:147;;;;:::o;13915:114::-;;:::o;14035:398::-;14194:3;14215:83;14296:1;14291:3;14215:83;:::i;:::-;14208:90;;14307:93;14396:3;14307:93;:::i;:::-;14425:1;14420:3;14416:11;14409:18;;14035:398;;;:::o;14439:379::-;14623:3;14645:147;14788:3;14645:147;:::i;:::-;14638:154;;14809:3;14802:10;;14439:379;;;:::o;14824:172::-;14964:24;14960:1;14952:6;14948:14;14941:48;14824:172;:::o;15002:366::-;15144:3;15165:67;15229:2;15224:3;15165:67;:::i;:::-;15158:74;;15241:93;15330:3;15241:93;:::i;:::-;15359:2;15354:3;15350:12;15343:19;;15002:366;;;:::o;15374:419::-;15540:4;15578:2;15567:9;15563:18;15555:26;;15627:9;15621:4;15617:20;15613:1;15602:9;15598:17;15591:47;15655:131;15781:4;15655:131;:::i;:::-;15647:139;;15374:419;;;:::o;15799:143::-;15856:5;15887:6;15881:13;15872:22;;15903:33;15930:5;15903:33;:::i;:::-;15799:143;;;;:::o;15948:351::-;16018:6;16067:2;16055:9;16046:7;16042:23;16038:32;16035:119;;;16073:79;;:::i;:::-;16035:119;16193:1;16218:64;16274:7;16265:6;16254:9;16250:22;16218:64;:::i;:::-;16208:74;;16164:128;15948:351;;;;:::o;16305:332::-;16426:4;16464:2;16453:9;16449:18;16441:26;;16477:71;16545:1;16534:9;16530:17;16521:6;16477:71;:::i;:::-;16558:72;16626:2;16615:9;16611:18;16602:6;16558:72;:::i;:::-;16305:332;;;;;:::o;16643:137::-;16697:5;16728:6;16722:13;16713:22;;16744:30;16768:5;16744:30;:::i;:::-;16643:137;;;;:::o;16786:345::-;16853:6;16902:2;16890:9;16881:7;16877:23;16873:32;16870:119;;;16908:79;;:::i;:::-;16870:119;17028:1;17053:61;17106:7;17097:6;17086:9;17082:22;17053:61;:::i;:::-;17043:71;;16999:125;16786:345;;;;:::o;17137:244::-;17277:34;17273:1;17265:6;17261:14;17254:58;17346:27;17341:2;17333:6;17329:15;17322:52;17137:244;:::o;17387:366::-;17529:3;17550:67;17614:2;17609:3;17550:67;:::i;:::-;17543:74;;17626:93;17715:3;17626:93;:::i;:::-;17744:2;17739:3;17735:12;17728:19;;17387:366;;;:::o;17759:419::-;17925:4;17963:2;17952:9;17948:18;17940:26;;18012:9;18006:4;18002:20;17998:1;17987:9;17983:17;17976:47;18040:131;18166:4;18040:131;:::i;:::-;18032:139;;17759:419;;;:::o;18184:224::-;18324:34;18320:1;18312:6;18308:14;18301:58;18393:7;18388:2;18380:6;18376:15;18369:32;18184:224;:::o;18414:366::-;18556:3;18577:67;18641:2;18636:3;18577:67;:::i;:::-;18570:74;;18653:93;18742:3;18653:93;:::i;:::-;18771:2;18766:3;18762:12;18755:19;;18414:366;;;:::o;18786:419::-;18952:4;18990:2;18979:9;18975:18;18967:26;;19039:9;19033:4;19029:20;19025:1;19014:9;19010:17;19003:47;19067:131;19193:4;19067:131;:::i;:::-;19059:139;;18786:419;;;:::o;19211:176::-;19351:28;19347:1;19339:6;19335:14;19328:52;19211:176;:::o;19393:366::-;19535:3;19556:67;19620:2;19615:3;19556:67;:::i;:::-;19549:74;;19632:93;19721:3;19632:93;:::i;:::-;19750:2;19745:3;19741:12;19734:19;;19393:366;;;:::o;19765:419::-;19931:4;19969:2;19958:9;19954:18;19946:26;;20018:9;20012:4;20008:20;20004:1;19993:9;19989:17;19982:47;20046:131;20172:4;20046:131;:::i;:::-;20038:139;;19765:419;;;:::o;20190:173::-;20330:25;20326:1;20318:6;20314:14;20307:49;20190:173;:::o;20369:366::-;20511:3;20532:67;20596:2;20591:3;20532:67;:::i;:::-;20525:74;;20608:93;20697:3;20608:93;:::i;:::-;20726:2;20721:3;20717:12;20710:19;;20369:366;;;:::o;20741:419::-;20907:4;20945:2;20934:9;20930:18;20922:26;;20994:9;20988:4;20984:20;20980:1;20969:9;20965:17;20958:47;21022:131;21148:4;21022:131;:::i;:::-;21014:139;;20741:419;;;:::o;21166:223::-;21306:34;21302:1;21294:6;21290:14;21283:58;21375:6;21370:2;21362:6;21358:15;21351:31;21166:223;:::o;21395:366::-;21537:3;21558:67;21622:2;21617:3;21558:67;:::i;:::-;21551:74;;21634:93;21723:3;21634:93;:::i;:::-;21752:2;21747:3;21743:12;21736:19;;21395:366;;;:::o;21767:419::-;21933:4;21971:2;21960:9;21956:18;21948:26;;22020:9;22014:4;22010:20;22006:1;21995:9;21991:17;21984:47;22048:131;22174:4;22048:131;:::i;:::-;22040:139;;21767:419;;;:::o;22192:240::-;22332:34;22328:1;22320:6;22316:14;22309:58;22401:23;22396:2;22388:6;22384:15;22377:48;22192:240;:::o;22438:366::-;22580:3;22601:67;22665:2;22660:3;22601:67;:::i;:::-;22594:74;;22677:93;22766:3;22677:93;:::i;:::-;22795:2;22790:3;22786:12;22779:19;;22438:366;;;:::o;22810:419::-;22976:4;23014:2;23003:9;22999:18;22991:26;;23063:9;23057:4;23053:20;23049:1;23038:9;23034:17;23027:47;23091:131;23217:4;23091:131;:::i;:::-;23083:139;;22810:419;;;:::o;23235:239::-;23375:34;23371:1;23363:6;23359:14;23352:58;23444:22;23439:2;23431:6;23427:15;23420:47;23235:239;:::o;23480:366::-;23622:3;23643:67;23707:2;23702:3;23643:67;:::i;:::-;23636:74;;23719:93;23808:3;23719:93;:::i;:::-;23837:2;23832:3;23828:12;23821:19;;23480:366;;;:::o;23852:419::-;24018:4;24056:2;24045:9;24041:18;24033:26;;24105:9;24099:4;24095:20;24091:1;24080:9;24076:17;24069:47;24133:131;24259:4;24133:131;:::i;:::-;24125:139;;23852:419;;;:::o;24277:220::-;24417:34;24413:1;24405:6;24401:14;24394:58;24486:3;24481:2;24473:6;24469:15;24462:28;24277:220;:::o;24503:366::-;24645:3;24666:67;24730:2;24725:3;24666:67;:::i;:::-;24659:74;;24742:93;24831:3;24742:93;:::i;:::-;24860:2;24855:3;24851:12;24844:19;;24503:366;;;:::o;24875:419::-;25041:4;25079:2;25068:9;25064:18;25056:26;;25128:9;25122:4;25118:20;25114:1;25103:9;25099:17;25092:47;25156:131;25282:4;25156:131;:::i;:::-;25148:139;;24875:419;;;:::o;25300:233::-;25440:34;25436:1;25428:6;25424:14;25417:58;25509:16;25504:2;25496:6;25492:15;25485:41;25300:233;:::o;25539:366::-;25681:3;25702:67;25766:2;25761:3;25702:67;:::i;:::-;25695:74;;25778:93;25867:3;25778:93;:::i;:::-;25896:2;25891:3;25887:12;25880:19;;25539:366;;;:::o;25911:419::-;26077:4;26115:2;26104:9;26100:18;26092:26;;26164:9;26158:4;26154:20;26150:1;26139:9;26135:17;26128:47;26192:131;26318:4;26192:131;:::i;:::-;26184:139;;25911:419;;;:::o;26336:225::-;26476:34;26472:1;26464:6;26460:14;26453:58;26545:8;26540:2;26532:6;26528:15;26521:33;26336:225;:::o;26567:366::-;26709:3;26730:67;26794:2;26789:3;26730:67;:::i;:::-;26723:74;;26806:93;26895:3;26806:93;:::i;:::-;26924:2;26919:3;26915:12;26908:19;;26567:366;;;:::o;26939:419::-;27105:4;27143:2;27132:9;27128:18;27120:26;;27192:9;27186:4;27182:20;27178:1;27167:9;27163:17;27156:47;27220:131;27346:4;27220:131;:::i;:::-;27212:139;;26939:419;;;:::o;27364:223::-;27504:34;27500:1;27492:6;27488:14;27481:58;27573:6;27568:2;27560:6;27556:15;27549:31;27364:223;:::o;27593:366::-;27735:3;27756:67;27820:2;27815:3;27756:67;:::i;:::-;27749:74;;27832:93;27921:3;27832:93;:::i;:::-;27950:2;27945:3;27941:12;27934:19;;27593:366;;;:::o;27965:419::-;28131:4;28169:2;28158:9;28154:18;28146:26;;28218:9;28212:4;28208:20;28204:1;28193:9;28189:17;28182:47;28246:131;28372:4;28246:131;:::i;:::-;28238:139;;27965:419;;;:::o;28390:221::-;28530:34;28526:1;28518:6;28514:14;28507:58;28599:4;28594:2;28586:6;28582:15;28575:29;28390:221;:::o;28617:366::-;28759:3;28780:67;28844:2;28839:3;28780:67;:::i;:::-;28773:74;;28856:93;28945:3;28856:93;:::i;:::-;28974:2;28969:3;28965:12;28958:19;;28617:366;;;:::o;28989:419::-;29155:4;29193:2;29182:9;29178:18;29170:26;;29242:9;29236:4;29232:20;29228:1;29217:9;29213:17;29206:47;29270:131;29396:4;29270:131;:::i;:::-;29262:139;;28989:419;;;:::o;29414:224::-;29554:34;29550:1;29542:6;29538:14;29531:58;29623:7;29618:2;29610:6;29606:15;29599:32;29414:224;:::o;29644:366::-;29786:3;29807:67;29871:2;29866:3;29807:67;:::i;:::-;29800:74;;29883:93;29972:3;29883:93;:::i;:::-;30001:2;29996:3;29992:12;29985:19;;29644:366;;;:::o;30016:419::-;30182:4;30220:2;30209:9;30205:18;30197:26;;30269:9;30263:4;30259:20;30255:1;30244:9;30240:17;30233:47;30297:131;30423:4;30297:131;:::i;:::-;30289:139;;30016:419;;;:::o;30441:222::-;30581:34;30577:1;30569:6;30565:14;30558:58;30650:5;30645:2;30637:6;30633:15;30626:30;30441:222;:::o;30669:366::-;30811:3;30832:67;30896:2;30891:3;30832:67;:::i;:::-;30825:74;;30908:93;30997:3;30908:93;:::i;:::-;31026:2;31021:3;31017:12;31010:19;;30669:366;;;:::o;31041:419::-;31207:4;31245:2;31234:9;31230:18;31222:26;;31294:9;31288:4;31284:20;31280:1;31269:9;31265:17;31258:47;31322:131;31448:4;31322:131;:::i;:::-;31314:139;;31041:419;;;:::o;31466:168::-;31606:20;31602:1;31594:6;31590:14;31583:44;31466:168;:::o;31640:366::-;31782:3;31803:67;31867:2;31862:3;31803:67;:::i;:::-;31796:74;;31879:93;31968:3;31879:93;:::i;:::-;31997:2;31992:3;31988:12;31981:19;;31640:366;;;:::o;32012:419::-;32178:4;32216:2;32205:9;32201:18;32193:26;;32265:9;32259:4;32255:20;32251:1;32240:9;32236:17;32229:47;32293:131;32419:4;32293:131;:::i;:::-;32285:139;;32012:419;;;:::o;32437:170::-;32577:22;32573:1;32565:6;32561:14;32554:46;32437:170;:::o;32613:366::-;32755:3;32776:67;32840:2;32835:3;32776:67;:::i;:::-;32769:74;;32852:93;32941:3;32852:93;:::i;:::-;32970:2;32965:3;32961:12;32954:19;;32613:366;;;:::o;32985:419::-;33151:4;33189:2;33178:9;33174:18;33166:26;;33238:9;33232:4;33228:20;33224:1;33213:9;33209:17;33202:47;33266:131;33392:4;33266:131;:::i;:::-;33258:139;;32985:419;;;:::o;33410:228::-;33550:34;33546:1;33538:6;33534:14;33527:58;33619:11;33614:2;33606:6;33602:15;33595:36;33410:228;:::o;33644:366::-;33786:3;33807:67;33871:2;33866:3;33807:67;:::i;:::-;33800:74;;33883:93;33972:3;33883:93;:::i;:::-;34001:2;33996:3;33992:12;33985:19;;33644:366;;;:::o;34016:419::-;34182:4;34220:2;34209:9;34205:18;34197:26;;34269:9;34263:4;34259:20;34255:1;34244:9;34240:17;34233:47;34297:131;34423:4;34297:131;:::i;:::-;34289:139;;34016:419;;;:::o;34441:172::-;34581:24;34577:1;34569:6;34565:14;34558:48;34441:172;:::o;34619:366::-;34761:3;34782:67;34846:2;34841:3;34782:67;:::i;:::-;34775:74;;34858:93;34947:3;34858:93;:::i;:::-;34976:2;34971:3;34967:12;34960:19;;34619:366;;;:::o;34991:419::-;35157:4;35195:2;35184:9;35180:18;35172:26;;35244:9;35238:4;35234:20;35230:1;35219:9;35215:17;35208:47;35272:131;35398:4;35272:131;:::i;:::-;35264:139;;34991:419;;;:::o;35416:240::-;35556:34;35552:1;35544:6;35540:14;35533:58;35625:23;35620:2;35612:6;35608:15;35601:48;35416:240;:::o;35662:366::-;35804:3;35825:67;35889:2;35884:3;35825:67;:::i;:::-;35818:74;;35901:93;35990:3;35901:93;:::i;:::-;36019:2;36014:3;36010:12;36003:19;;35662:366;;;:::o;36034:419::-;36200:4;36238:2;36227:9;36223:18;36215:26;;36287:9;36281:4;36277:20;36273:1;36262:9;36258:17;36251:47;36315:131;36441:4;36315:131;:::i;:::-;36307:139;;36034:419;;;:::o;36459:169::-;36599:21;36595:1;36587:6;36583:14;36576:45;36459:169;:::o;36634:366::-;36776:3;36797:67;36861:2;36856:3;36797:67;:::i;:::-;36790:74;;36873:93;36962:3;36873:93;:::i;:::-;36991:2;36986:3;36982:12;36975:19;;36634:366;;;:::o;37006:419::-;37172:4;37210:2;37199:9;37195:18;37187:26;;37259:9;37253:4;37249:20;37245:1;37234:9;37230:17;37223:47;37287:131;37413:4;37287:131;:::i;:::-;37279:139;;37006:419;;;:::o;37431:241::-;37571:34;37567:1;37559:6;37555:14;37548:58;37640:24;37635:2;37627:6;37623:15;37616:49;37431:241;:::o;37678:366::-;37820:3;37841:67;37905:2;37900:3;37841:67;:::i;:::-;37834:74;;37917:93;38006:3;37917:93;:::i;:::-;38035:2;38030:3;38026:12;38019:19;;37678:366;;;:::o;38050:419::-;38216:4;38254:2;38243:9;38239:18;38231:26;;38303:9;38297:4;38293:20;38289:1;38278:9;38274:17;38267:47;38331:131;38457:4;38331:131;:::i;:::-;38323:139;;38050:419;;;:::o;38475:194::-;38515:4;38535:20;38553:1;38535:20;:::i;:::-;38530:25;;38569:20;38587:1;38569:20;:::i;:::-;38564:25;;38613:1;38610;38606:9;38598:17;;38637:1;38631:4;38628:11;38625:37;;;38642:18;;:::i;:::-;38625:37;38475:194;;;;:::o;38675:225::-;38815:34;38811:1;38803:6;38799:14;38792:58;38884:8;38879:2;38871:6;38867:15;38860:33;38675:225;:::o;38906:366::-;39048:3;39069:67;39133:2;39128:3;39069:67;:::i;:::-;39062:74;;39145:93;39234:3;39145:93;:::i;:::-;39263:2;39258:3;39254:12;39247:19;;38906:366;;;:::o;39278:419::-;39444:4;39482:2;39471:9;39467:18;39459:26;;39531:9;39525:4;39521:20;39517:1;39506:9;39502:17;39495:47;39559:131;39685:4;39559:131;:::i;:::-;39551:139;;39278:419;;;:::o;39703:442::-;39852:4;39890:2;39879:9;39875:18;39867:26;;39903:71;39971:1;39960:9;39956:17;39947:6;39903:71;:::i;:::-;39984:72;40052:2;40041:9;40037:18;40028:6;39984:72;:::i;:::-;40066;40134:2;40123:9;40119:18;40110:6;40066:72;:::i;:::-;39703:442;;;;;;:::o;40151:180::-;40199:77;40196:1;40189:88;40296:4;40293:1;40286:15;40320:4;40317:1;40310:15;40337:180;40385:77;40382:1;40375:88;40482:4;40479:1;40472:15;40506:4;40503:1;40496:15;40523:143;40580:5;40611:6;40605:13;40596:22;;40627:33;40654:5;40627:33;:::i;:::-;40523:143;;;;:::o;40672:351::-;40742:6;40791:2;40779:9;40770:7;40766:23;40762:32;40759:119;;;40797:79;;:::i;:::-;40759:119;40917:1;40942:64;40998:7;40989:6;40978:9;40974:22;40942:64;:::i;:::-;40932:74;;40888:128;40672:351;;;;:::o;41029:85::-;41074:7;41103:5;41092:16;;41029:85;;;:::o;41120:158::-;41178:9;41211:61;41229:42;41238:32;41264:5;41238:32;:::i;:::-;41229:42;:::i;:::-;41211:61;:::i;:::-;41198:74;;41120:158;;;:::o;41284:147::-;41379:45;41418:5;41379:45;:::i;:::-;41374:3;41367:58;41284:147;;:::o;41437:114::-;41504:6;41538:5;41532:12;41522:22;;41437:114;;;:::o;41557:184::-;41656:11;41690:6;41685:3;41678:19;41730:4;41725:3;41721:14;41706:29;;41557:184;;;;:::o;41747:132::-;41814:4;41837:3;41829:11;;41867:4;41862:3;41858:14;41850:22;;41747:132;;;:::o;41885:108::-;41962:24;41980:5;41962:24;:::i;:::-;41957:3;41950:37;41885:108;;:::o;41999:179::-;42068:10;42089:46;42131:3;42123:6;42089:46;:::i;:::-;42167:4;42162:3;42158:14;42144:28;;41999:179;;;;:::o;42184:113::-;42254:4;42286;42281:3;42277:14;42269:22;;42184:113;;;:::o;42333:732::-;42452:3;42481:54;42529:5;42481:54;:::i;:::-;42551:86;42630:6;42625:3;42551:86;:::i;:::-;42544:93;;42661:56;42711:5;42661:56;:::i;:::-;42740:7;42771:1;42756:284;42781:6;42778:1;42775:13;42756:284;;;42857:6;42851:13;42884:63;42943:3;42928:13;42884:63;:::i;:::-;42877:70;;42970:60;43023:6;42970:60;:::i;:::-;42960:70;;42816:224;42803:1;42800;42796:9;42791:14;;42756:284;;;42760:14;43056:3;43049:10;;42457:608;;;42333:732;;;;:::o;43071:831::-;43334:4;43372:3;43361:9;43357:19;43349:27;;43386:71;43454:1;43443:9;43439:17;43430:6;43386:71;:::i;:::-;43467:80;43543:2;43532:9;43528:18;43519:6;43467:80;:::i;:::-;43594:9;43588:4;43584:20;43579:2;43568:9;43564:18;43557:48;43622:108;43725:4;43716:6;43622:108;:::i;:::-;43614:116;;43740:72;43808:2;43797:9;43793:18;43784:6;43740:72;:::i;:::-;43822:73;43890:3;43879:9;43875:19;43866:6;43822:73;:::i;:::-;43071:831;;;;;;;;:::o;43908:807::-;44157:4;44195:3;44184:9;44180:19;44172:27;;44209:71;44277:1;44266:9;44262:17;44253:6;44209:71;:::i;:::-;44290:72;44358:2;44347:9;44343:18;44334:6;44290:72;:::i;:::-;44372:80;44448:2;44437:9;44433:18;44424:6;44372:80;:::i;:::-;44462;44538:2;44527:9;44523:18;44514:6;44462:80;:::i;:::-;44552:73;44620:3;44609:9;44605:19;44596:6;44552:73;:::i;:::-;44635;44703:3;44692:9;44688:19;44679:6;44635:73;:::i;:::-;43908:807;;;;;;;;;:::o;44721:663::-;44809:6;44817;44825;44874:2;44862:9;44853:7;44849:23;44845:32;44842:119;;;44880:79;;:::i;:::-;44842:119;45000:1;45025:64;45081:7;45072:6;45061:9;45057:22;45025:64;:::i;:::-;45015:74;;44971:128;45138:2;45164:64;45220:7;45211:6;45200:9;45196:22;45164:64;:::i;:::-;45154:74;;45109:129;45277:2;45303:64;45359:7;45350:6;45339:9;45335:22;45303:64;:::i;:::-;45293:74;;45248:129;44721:663;;;;;:::o

Swarm Source

ipfs://164bba516ba78d910a0f279ca5f27d1cdb98e0d75e7e23e4c1488fb3b349b688
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.