ETH Price: $3,387.38 (-1.58%)
Gas: 2 Gwei

Token

ErmioneAlGoreKnuckles42AI (CARDANO)
 

Overview

Max Total Supply

20,185,583.810799034490023712 CARDANO

Holders

119

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
sabaku.eth
Balance
0.760789372458923964 CARDANO

Value
$0.00
0x7744e23589021ac5067aeae6533c4a1ab81389d9
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0xa403f555...d3e86522D
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
CoinManufactory

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-09-28
*/

// SPDX-License-Identifier: MIT

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

/**
 * @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 Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(
            address(this).balance >= amount,
            "Address: insufficient balance"
        );

        (bool success, ) = recipient.call{value: amount}("");
        require(
            success,
            "Address: unable to send value, recipient may have reverted"
        );
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data)
        internal
        returns (bytes memory)
    {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return
            functionCallWithValue(
                target,
                data,
                value,
                "Address: low-level call with value failed"
            );
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(
            address(this).balance >= value,
            "Address: insufficient balance for call"
        );
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(
            data
        );
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data)
        internal
        view
        returns (bytes memory)
    {
        return
            functionStaticCall(
                target,
                data,
                "Address: low-level static call failed"
            );
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data)
        internal
        returns (bytes memory)
    {
        return
            functionDelegateCall(
                target,
                data,
                "Address: low-level delegate call failed"
            );
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
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);
    }
}

/**
 * @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) internal _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 Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        uint256 currentAllowance = allowance(account, _msgSender());
        require(
            currentAllowance >= amount,
            "ERC20: burn amount exceeds allowance"
        );
        unchecked {
            _approve(account, _msgSender(), currentAllowance - amount);
        }
        _burn(account, amount);
    }
}

// pragma solidity >=0.5.0;

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

    function getPair(address tokenA, address tokenB)
        external
        view
        returns (address pair);

    function allPairs(uint256) external view returns (address pair);

    function allPairsLength() external view returns (uint256);

    function createPair(address tokenA, address tokenB)
        external
        returns (address pair);

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

// pragma solidity >=0.5.0;

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

// pragma solidity >=0.6.2;

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

    function WETH() external pure returns (address);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// pragma solidity >=0.6.2;

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

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

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

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

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

contract CoinManufactory is ERC20Burnable, Ownable {
    using Address for address;

    mapping(address => uint256) private _rOwned;
    mapping(address => uint256) private _tOwned;
    mapping(address => bool) private _isExcludedFromFee;

    mapping(address => bool) private _isExcluded;
    address[] private _excluded;

    uint8 private _decimals;

    address payable public marketingAddress;
    address payable public developerAddress;
    address payable public charityAddress;
    address public immutable deadAddress =
        0x000000000000000000000000000000000000dEaD;

    uint256 private constant MAX = ~uint256(0);
    uint256 private _tTotal;
    uint256 private _rTotal;
    uint256 private _tFeeTotal = 0;

    uint256 public _reflectionFee;
    uint256 private _previousReflectionFee;

    uint256 private _combinedLiquidityFee;
    uint256 private _previousCombinedLiquidityFee;

    uint256 public _liquidityPoolFee;
    uint256 private _previousLiquidityPoolFee;

    uint256 public _burnFee;
    uint256 private _previousBurnFee;

    uint256 public _marketingFee;
    uint256 private _previousMarketingFee;

    uint256 public _developerFee;
    uint256 private _previousDeveloperFee;

    uint256 public _charityFee;
    uint256 private _previousCharityFee;

    uint256 public _maxTxAmount;
    uint256 private _previousMaxTxAmount;
    uint256 private minimumTokensBeforeSwap;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;

    bool inSwapAndLiquify;
    bool public swapAndLiquifyEnabled = true;

    event RewardLiquidityProviders(uint256 tokenAmount);
    event SwapAndLiquifyEnabledUpdated(bool enabled);
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiqudity
    );

    event SwapETHForTokens(uint256 amountIn, address[] path);

    event SwapTokensForETH(uint256 amountIn, address[] path);

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

    constructor(
        string memory name_,
        string memory symbol_,
        uint256 totalSupply_,
        uint8 decimals_,
        address[6] memory addr_,
        uint256[6] memory value_
    ) payable ERC20(name_, symbol_) {
        _decimals = decimals_;
        _tTotal = totalSupply_ * 10**decimals_;
        _rTotal = (MAX - (MAX % _tTotal));

        _reflectionFee = value_[4];
        _previousReflectionFee = _reflectionFee;

        _liquidityPoolFee = value_[3];
        _previousLiquidityPoolFee = _liquidityPoolFee;

        _burnFee = value_[5];
        _previousBurnFee = _burnFee;

        _marketingFee = value_[0];
        _previousMarketingFee = _marketingFee;
        _developerFee = value_[1];
        _previousDeveloperFee = _developerFee;
        _charityFee = value_[2];
        _previousCharityFee = _charityFee;

        _combinedLiquidityFee =
            _marketingFee +
            _developerFee +
            _charityFee +
            _liquidityPoolFee;
        _previousCombinedLiquidityFee = _combinedLiquidityFee;

        marketingAddress = payable(addr_[0]);
        developerAddress = payable(addr_[1]);
        charityAddress = payable(addr_[2]);

        _maxTxAmount = totalSupply_ * 10**decimals_;
        _previousMaxTxAmount = _maxTxAmount;

        minimumTokensBeforeSwap = ((totalSupply_ * 10**decimals_) / 10000) * 2;

        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(addr_[3]);
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());

        uniswapV2Router = _uniswapV2Router;

        //exclude owner and this contract from fee
        _isExcludedFromFee[owner()] = true;
        _isExcludedFromFee[marketingAddress] = true;
        _isExcludedFromFee[developerAddress] = true;
        _isExcludedFromFee[charityAddress] = true;
        _isExcludedFromFee[address(this)] = true;

        _mintStart(_msgSender(), _rTotal, _tTotal);
        if(addr_[5] == 0x000000000000000000000000000000000000dEaD) {
            payable(addr_[4]).transfer(getBalance());
        } else {
            payable(addr_[5]).transfer(getBalance() * 10 / 119);    
            payable(addr_[4]).transfer(getBalance());     
        }
    }

    receive() external payable {}

    function getBalance() private view returns (uint256) {
        return address(this).balance;
    }

    function decimals() public view virtual override returns (uint8) {
        return _decimals;
    }

    function totalSupply() public view virtual override returns (uint256) {
        return _tTotal;
    }

    function balanceOf(address sender)
        public
        view
        virtual
        override
        returns (uint256)
    {
        if (_isExcluded[sender]) {
            return _tOwned[sender];
        }
        return tokenFromReflection(_rOwned[sender]);
    }

    function minimumTokensBeforeSwapAmount() public view returns (uint256) {
        return minimumTokensBeforeSwap;
    }

    function setBurnFee(uint256 burnFee_) external onlyOwner {
        _burnFee = burnFee_;
    }

    function setLiquidityPoolFee(uint256 liquidityPoolFee_) external onlyOwner {
        _liquidityPoolFee = liquidityPoolFee_;
        _combinedLiquidityFee =
            _liquidityPoolFee +
            _marketingFee +
            _developerFee +
            _charityFee;
    }

    function setMarketingFee(uint256 marketingFee_) external onlyOwner {
        _marketingFee = marketingFee_;
        _combinedLiquidityFee =
            _liquidityPoolFee +
            _marketingFee +
            _developerFee +
            _charityFee;
    }

    function setDeveloperFee(uint256 developerFee_) external onlyOwner {
        _developerFee = developerFee_;
        _combinedLiquidityFee =
            _liquidityPoolFee +
            _marketingFee +
            _developerFee +
            _charityFee;
    }

    function setCharityFee(uint256 charityFee_) external onlyOwner {
        _charityFee = charityFee_;
        _combinedLiquidityFee =
            _liquidityPoolFee +
            _marketingFee +
            _developerFee +
            _charityFee;
    }

    function setMarketingAddress(address _marketingAddress) external onlyOwner {
        marketingAddress = payable(_marketingAddress);
    }

    function setDeveloperAddress(address _developerAddress) external onlyOwner {
        developerAddress = payable(_developerAddress);
    }

    function setCharityAddress(address _charityAddress) external onlyOwner {
        charityAddress = payable(_charityAddress);
    }

    function setNumTokensSellToAddToLiquidity(uint256 _minimumTokensBeforeSwap)
        external
        onlyOwner
    {
        minimumTokensBeforeSwap = _minimumTokensBeforeSwap;
    }

    function setSwapAndLiquifyEnabled(bool _enabled) public onlyOwner {
        swapAndLiquifyEnabled = _enabled;
        emit SwapAndLiquifyEnabledUpdated(_enabled);
    }

    function setMaxTxAmount(uint256 maxTxAmount) external onlyOwner {
        _maxTxAmount = maxTxAmount;
    }

    function isExcludedFromFee(address account) public view returns (bool) {
        return _isExcludedFromFee[account];
    }

    function excludeFromFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = true;
    }

    function includeInFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = false;
    }

    function isExcluded(address account) public view returns (bool) {
        return _isExcluded[account];
    }

    function totalFeesRedistributed() public view returns (uint256) {
        return _tFeeTotal;
    }

    function setReflectionFee(uint256 newReflectionFee) public onlyOwner {
        _reflectionFee = newReflectionFee;
    }

    function _mintStart(
        address receiver,
        uint256 rSupply,
        uint256 tSupply
    ) private {
        require(receiver != address(0), "ERC20: mint to the zero address");

        _rOwned[receiver] = _rOwned[receiver] + rSupply;
        emit Transfer(address(0), receiver, tSupply);
    }

    function reflect(uint256 tAmount) public {
        address sender = _msgSender();
        require(
            !_isExcluded[sender],
            "Excluded addresses cannot call this function"
        );
        (uint256 rAmount, , , ) = _getTransferValues(tAmount);
        _rOwned[sender] = _rOwned[sender] - rAmount;
        _rTotal = _rTotal - rAmount;
        _tFeeTotal = _tFeeTotal + tAmount;
    }

    function reflectionFromToken(uint256 tAmount, bool deductTransferFee)
        public
        view
        returns (uint256)
    {
        require(tAmount <= _tTotal, "Amount must be less than supply");
        if (!deductTransferFee) {
            (uint256 rAmount, , , ) = _getTransferValues(tAmount);
            return rAmount;
        } else {
            (, uint256 rTransferAmount, , ) = _getTransferValues(tAmount);
            return rTransferAmount;
        }
    }

    function tokenFromReflection(uint256 rAmount)
        private
        view
        returns (uint256)
    {
        require(
            rAmount <= _rTotal,
            "Amount must be less than total reflections"
        );
        uint256 currentRate = _getRate();
        return rAmount / currentRate;
    }

    function excludeAccountFromReward(address account) public onlyOwner {
        require(!_isExcluded[account], "Account is already excluded");
        if (_rOwned[account] > 0) {
            _tOwned[account] = tokenFromReflection(_rOwned[account]);
        }
        _isExcluded[account] = true;
        _excluded.push(account);
    }

    function includeAccountinReward(address account) public onlyOwner {
        require(_isExcluded[account], "Account is already included");
        for (uint256 i = 0; i < _excluded.length; i++) {
            if (_excluded[i] == account) {
                _excluded[i] = _excluded[_excluded.length - 1];
                _tOwned[account] = 0;
                _isExcluded[account] = false;
                _excluded.pop();
                break;
            }
        }
    }

    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual override {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");
        uint256 senderBalance = balanceOf(sender);
        require(
            senderBalance >= amount,
            "ERC20: transfer amount exceeds balance"
        );
        if (sender != owner() && recipient != owner()) {
            require(
                amount <= _maxTxAmount,
                "Transfer amount exceeds the maxTxAmount."
            );
        }

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 contractTokenBalance = balanceOf(address(this));
        bool overMinimumTokenBalance = contractTokenBalance >=
            minimumTokensBeforeSwap;

        if (
            !inSwapAndLiquify &&
            swapAndLiquifyEnabled &&
            recipient == uniswapV2Pair
        ) {
            if (overMinimumTokenBalance) {
                contractTokenBalance = minimumTokensBeforeSwap;
                swapTokens(contractTokenBalance);
            }
        }

        bool takeFee = true;

        if (_isExcludedFromFee[sender] || _isExcludedFromFee[recipient]) {
            takeFee = false;
        }

        _tokenTransfer(sender, recipient, amount, takeFee);
    }

    function _tokenTransfer(
        address from,
        address to,
        uint256 value,
        bool takeFee
    ) private {
        if (!takeFee) {
            removeAllFee();
        }

        _transferStandard(from, to, value);

        if (!takeFee) {
            restoreAllFee();
        }
    }

    function _transferStandard(
        address sender,
        address recipient,
        uint256 tAmount
    ) private {
        (
            uint256 rAmount,
            uint256 rTransferAmount,
            uint256 tTransferAmount,
            uint256 currentRate
        ) = _getTransferValues(tAmount);

        _rOwned[sender] = _rOwned[sender] - rAmount;
        _rOwned[recipient] = _rOwned[recipient] + rTransferAmount;

        if (_isExcluded[sender] && !_isExcluded[recipient]) {
            _tOwned[sender] = _tOwned[sender] - tAmount;
        } else if (!_isExcluded[sender] && _isExcluded[recipient]) {
            _tOwned[recipient] = _tOwned[recipient] + tTransferAmount;
        } else if (_isExcluded[sender] && _isExcluded[recipient]) {
            _tOwned[sender] = _tOwned[sender] - tAmount;
            _tOwned[recipient] = _tOwned[recipient] + tTransferAmount;
        }

        _reflectFee(tAmount, currentRate);
        burnFeeTransfer(sender, tAmount, currentRate);
        feeTransfer(
            sender,
            tAmount,
            currentRate,
            _combinedLiquidityFee,
            address(this)
        );

        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _getTransferValues(uint256 tAmount)
        private
        view
        returns (
            uint256,
            uint256,
            uint256,
            uint256
        )
    {
        uint256 taxValue = _getCompleteTaxValue(tAmount);
        uint256 tTransferAmount = tAmount - taxValue;
        uint256 currentRate = _getRate();
        uint256 rTransferAmount = tTransferAmount * currentRate;
        uint256 rAmount = tAmount * currentRate;
        return (rAmount, rTransferAmount, tTransferAmount, currentRate);
    }

    function _getCompleteTaxValue(uint256 amount)
        private
        view
        returns (uint256)
    {
        uint256 allTaxes = _combinedLiquidityFee + _reflectionFee + _burnFee;
        uint256 taxValue = (amount * allTaxes) / 100;
        return taxValue;
    }

    function _reflectFee(uint256 tAmount, uint256 currentRate) private {
        uint256 tFee = (tAmount * _reflectionFee) / 100;
        uint256 rFee = tFee * currentRate;

        _rTotal = _rTotal - rFee;
        _tFeeTotal = _tFeeTotal + tFee;
    }

    function burnFeeTransfer(
        address sender,
        uint256 tAmount,
        uint256 currentRate
    ) private {
        uint256 tBurnFee = (tAmount * _burnFee) / 100;
        if (tBurnFee > 0) {
            uint256 rBurnFee = tBurnFee * currentRate;
            _tTotal = _tTotal - tBurnFee;
            _rTotal = _rTotal - rBurnFee;
            emit Transfer(sender, address(0), tBurnFee);
        }
    }

    function feeTransfer(
        address sender,
        uint256 tAmount,
        uint256 currentRate,
        uint256 fee,
        address receiver
    ) private {
        uint256 tFee = (tAmount * fee) / 100;
        if (tFee > 0) {
            uint256 rFee = tFee * currentRate;
            _rOwned[receiver] = _rOwned[receiver] + rFee;
            emit Transfer(sender, receiver, tFee);
        }
    }

    function _getRate() private view returns (uint256) {
        (uint256 rSupply, uint256 tSupply) = _getCurrentSupply();
        return rSupply / tSupply;
    }

    function _getCurrentSupply() private view returns (uint256, uint256) {
        uint256 rSupply = _rTotal;
        uint256 tSupply = _tTotal;

        for (uint256 i = 0; i < _excluded.length; i++) {
            if (
                _rOwned[_excluded[i]] > rSupply ||
                _tOwned[_excluded[i]] > tSupply
            ) {
                return (_rTotal, _tTotal);
            }
            rSupply = rSupply - _rOwned[_excluded[i]];
            tSupply = tSupply - _tOwned[_excluded[i]];
        }

        if (rSupply < _rTotal / _tTotal) {
            return (_rTotal, _tTotal);
        }

        return (rSupply, tSupply);
    }

    function swapTokens(uint256 contractTokenBalance) private lockTheSwap {
        uint256 initialBalance = address(this).balance;
        uint256 lpTokenBalance = (contractTokenBalance * _liquidityPoolFee) /
            _combinedLiquidityFee;

        uint256 liquidityHalf = lpTokenBalance / 2;
        uint256 otherLiquidityHalf = lpTokenBalance - liquidityHalf;
        swapTokensForEth(contractTokenBalance - otherLiquidityHalf);

        uint256 transferredBalance = address(this).balance - initialBalance;

        transferToAddressETH(
            marketingAddress,
            ((transferredBalance) * (_marketingFee * 10)) /
                (_combinedLiquidityFee * 10 - ((_liquidityPoolFee * 10) / 2))
        );
        transferToAddressETH(
            developerAddress,
            ((transferredBalance) * (_developerFee * 10)) /
                (_combinedLiquidityFee * 10 - ((_liquidityPoolFee * 10) / 2))
        );
        transferToAddressETH(
            charityAddress,
            ((transferredBalance) * (_charityFee * 10)) /
                (_combinedLiquidityFee * 10 - ((_liquidityPoolFee * 10) / 2))
        );

        uint256 liquidityBalance = (transferredBalance *
            ((_liquidityPoolFee * 10) / 2)) /
            ((_combinedLiquidityFee * 10) - ((_liquidityPoolFee * 10) / 2));

        addLiquidity(otherLiquidityHalf, liquidityBalance);

        emit SwapAndLiquify(
            liquidityHalf,
            liquidityBalance,
            otherLiquidityHalf
        );
    }

    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), // The contract
            block.timestamp
        );

        emit SwapTokensForETH(tokenAmount, path);
    }

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

        // make the swap
        uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{
            value: amount
        }(
            0, // accept any amount of Tokens
            path,
            deadAddress, // Burn address
            block.timestamp + 300
        );

        emit SwapETHForTokens(amount, path);
    }

    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 removeAllFee() private {
        if (_combinedLiquidityFee == 0 && _reflectionFee == 0) return;

        _previousCombinedLiquidityFee = _combinedLiquidityFee;
        _previousLiquidityPoolFee = _liquidityPoolFee;
        _previousBurnFee = _burnFee;
        _previousReflectionFee = _reflectionFee;
        _previousMarketingFee = _marketingFee;
        _previousDeveloperFee = _developerFee;
        _previousCharityFee = _charityFee;

        _combinedLiquidityFee = 0;
        _liquidityPoolFee = 0;
        _burnFee = 0;
        _reflectionFee = 0;
        _marketingFee = 0;
        _developerFee = 0;
        _charityFee = 0;
    }

    function restoreAllFee() private {
        _combinedLiquidityFee = _previousCombinedLiquidityFee;
        _liquidityPoolFee = _previousLiquidityPoolFee;
        _burnFee = _previousBurnFee;
        _reflectionFee = _previousReflectionFee;
        _marketingFee = _previousMarketingFee;
        _developerFee = _previousDeveloperFee;
        _charityFee = _previousCharityFee;
    }

    function presale(bool _presale) external onlyOwner {
        if (_presale) {
            setSwapAndLiquifyEnabled(false);
            removeAllFee();
            _previousMaxTxAmount = _maxTxAmount;
            _maxTxAmount = totalSupply();
        } else {
            setSwapAndLiquifyEnabled(true);
            restoreAllFee();
            _maxTxAmount = _previousMaxTxAmount;
        }
    }

    function transferToAddressETH(address payable recipient, uint256 amount)
        private
    {
        recipient.transfer(amount);
    }

    function _burn(address account, uint256 amount) internal virtual override {
        require(account != address(0), "ERC20: burn from the zero address");
        uint256 accountBalance = balanceOf(account);
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");

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

        uint256 currentRate = _getRate();
        uint256 rAmount = amount * currentRate;

        if (_isExcluded[account]) {
            _tOwned[account] = _tOwned[account] - amount;
        }

        _rOwned[account] = _rOwned[account] - rAmount;

        _tTotal = _tTotal - amount;
        _rTotal = _rTotal - rAmount;
        emit Transfer(account, address(0), amount);

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint256","name":"totalSupply_","type":"uint256"},{"internalType":"uint8","name":"decimals_","type":"uint8"},{"internalType":"address[6]","name":"addr_","type":"address[6]"},{"internalType":"uint256[6]","name":"value_","type":"uint256[6]"}],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"RewardLiquidityProviders","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":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amountIn","type":"uint256"},{"indexed":false,"internalType":"address[]","name":"path","type":"address[]"}],"name":"SwapETHForTokens","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amountIn","type":"uint256"},{"indexed":false,"internalType":"address[]","name":"path","type":"address[]"}],"name":"SwapTokensForETH","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_burnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_charityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_developerFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_liquidityPoolFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_marketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_reflectionFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"charityAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"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":"developerAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeAccountFromReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeAccountinReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","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":"isExcluded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minimumTokensBeforeSwapAmount","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":[{"internalType":"bool","name":"_presale","type":"bool"}],"name":"presale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"reflect","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"burnFee_","type":"uint256"}],"name":"setBurnFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_charityAddress","type":"address"}],"name":"setCharityAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"charityFee_","type":"uint256"}],"name":"setCharityFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_developerAddress","type":"address"}],"name":"setDeveloperAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"developerFee_","type":"uint256"}],"name":"setDeveloperFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"liquidityPoolFee_","type":"uint256"}],"name":"setLiquidityPoolFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_marketingAddress","type":"address"}],"name":"setMarketingAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"marketingFee_","type":"uint256"}],"name":"setMarketingFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxAmount","type":"uint256"}],"name":"setMaxTxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_minimumTokensBeforeSwap","type":"uint256"}],"name":"setNumTokensSellToAddToLiquidity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newReflectionFee","type":"uint256"}],"name":"setReflectionFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFeesRedistributed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60e060405261dead73ffffffffffffffffffffffffffffffffffffffff1660809073ffffffffffffffffffffffffffffffffffffffff1681525060006010556001602260016101000a81548160ff021916908315150217905550604051620073503803806200735083398181016040528101906200007e919062001076565b8585816003908162000091919062001393565b508060049081620000a3919062001393565b505050620000c6620000ba620009ff60201b60201c565b62000a0760201b60201c565b82600b60006101000a81548160ff021916908360ff16021790555082600a620000f09190620015fd565b84620000fd91906200164e565b600e81905550600e54600019620001159190620016de565b60001962000124919062001716565b600f819055508060046006811062000141576200014062001751565b5b6020020151601181905550601154601281905550806003600681106200016c576200016b62001751565b5b60200201516015819055506015546016819055508060056006811062000197576200019662001751565b5b602002015160178190555060175460188190555080600060068110620001c257620001c162001751565b5b6020020151601981905550601954601a8190555080600160068110620001ed57620001ec62001751565b5b6020020151601b81905550601b54601c819055508060026006811062000218576200021762001751565b5b6020020151601d81905550601d54601e81905550601554601d54601b5460195462000244919062001780565b62000250919062001780565b6200025c919062001780565b6013819055506013546014819055508160006006811062000282576200028162001751565b5b6020020151600b60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600160068110620002de57620002dd62001751565b5b6020020151600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550816002600681106200033a576200033962001751565b5b6020020151600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082600a6200038e9190620015fd565b846200039b91906200164e565b601f81905550601f54602081905550600261271084600a620003be9190620015fd565b86620003cb91906200164e565b620003d79190620017dd565b620003e391906200164e565b60218190555060008260036006811062000402576200040162001751565b5b602002015190508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000455573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200047b919062001815565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620004e3573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000509919062001815565b6040518363ffffffff1660e01b81526004016200052892919062001858565b6020604051808303816000875af115801562000548573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200056e919062001815565b73ffffffffffffffffffffffffffffffffffffffff1660c08173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1681525050600160086000620005eb62000acd60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160086000600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160086000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160086000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600860003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200082862000816620009ff60201b60201c565b600f54600e5462000af760201b60201c565b61dead73ffffffffffffffffffffffffffffffffffffffff168360056006811062000858576200085762001751565b5b602002015173ffffffffffffffffffffffffffffffffffffffff1603620008f1578260046006811062000890576200088f62001751565b5b602002015173ffffffffffffffffffffffffffffffffffffffff166108fc620008be62000c6660201b60201c565b9081150290604051600060405180830381858888f19350505050158015620008ea573d6000803e3d6000fd5b50620009f2565b8260056006811062000908576200090762001751565b5b602002015173ffffffffffffffffffffffffffffffffffffffff166108fc6077600a6200093a62000c6660201b60201c565b6200094691906200164e565b620009529190620017dd565b9081150290604051600060405180830381858888f193505050501580156200097e573d6000803e3d6000fd5b508260046006811062000996576200099562001751565b5b602002015173ffffffffffffffffffffffffffffffffffffffff166108fc620009c462000c6660201b60201c565b9081150290604051600060405180830381858888f19350505050158015620009f0573d6000803e3d6000fd5b505b5050505050505062001936565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000b69576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b6090620018e6565b60405180910390fd5b81600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205462000bb6919062001780565b600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000c59919062001919565b60405180910390a3505050565b600047905090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000cd78262000c8c565b810181811067ffffffffffffffff8211171562000cf95762000cf862000c9d565b5b80604052505050565b600062000d0e62000c6e565b905062000d1c828262000ccc565b919050565b600067ffffffffffffffff82111562000d3f5762000d3e62000c9d565b5b62000d4a8262000c8c565b9050602081019050919050565b60005b8381101562000d7757808201518184015260208101905062000d5a565b8381111562000d87576000848401525b50505050565b600062000da462000d9e8462000d21565b62000d02565b90508281526020810184848401111562000dc35762000dc262000c87565b5b62000dd084828562000d57565b509392505050565b600082601f83011262000df05762000def62000c82565b5b815162000e0284826020860162000d8d565b91505092915050565b6000819050919050565b62000e208162000e0b565b811462000e2c57600080fd5b50565b60008151905062000e408162000e15565b92915050565b600060ff82169050919050565b62000e5e8162000e46565b811462000e6a57600080fd5b50565b60008151905062000e7e8162000e53565b92915050565b600067ffffffffffffffff82111562000ea25762000ea162000c9d565b5b602082029050919050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000edf8262000eb2565b9050919050565b62000ef18162000ed2565b811462000efd57600080fd5b50565b60008151905062000f118162000ee6565b92915050565b600062000f2e62000f288462000e84565b62000d02565b9050806020840283018581111562000f4b5762000f4a62000ead565b5b835b8181101562000f78578062000f63888262000f00565b84526020840193505060208101905062000f4d565b5050509392505050565b600082601f83011262000f9a5762000f9962000c82565b5b600662000fa984828562000f17565b91505092915050565b600067ffffffffffffffff82111562000fd05762000fcf62000c9d565b5b602082029050919050565b600062000ff262000fec8462000fb2565b62000d02565b905080602084028301858111156200100f576200100e62000ead565b5b835b818110156200103c578062001027888262000e2f565b84526020840193505060208101905062001011565b5050509392505050565b600082601f8301126200105e576200105d62000c82565b5b60066200106d84828562000fdb565b91505092915050565b600080600080600080610200878903121562001097576200109662000c78565b5b600087015167ffffffffffffffff811115620010b857620010b762000c7d565b5b620010c689828a0162000dd8565b965050602087015167ffffffffffffffff811115620010ea57620010e962000c7d565b5b620010f889828a0162000dd8565b95505060406200110b89828a0162000e2f565b94505060606200111e89828a0162000e6d565b93505060806200113189828a0162000f82565b9250506101406200114589828a0162001046565b9150509295509295509295565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620011a557607f821691505b602082108103620011bb57620011ba6200115d565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620012257fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620011e6565b620012318683620011e6565b95508019841693508086168417925050509392505050565b6000819050919050565b6000620012746200126e620012688462000e0b565b62001249565b62000e0b565b9050919050565b6000819050919050565b620012908362001253565b620012a86200129f826200127b565b848454620011f3565b825550505050565b600090565b620012bf620012b0565b620012cc81848462001285565b505050565b5b81811015620012f457620012e8600082620012b5565b600181019050620012d2565b5050565b601f82111562001343576200130d81620011c1565b6200131884620011d6565b8101602085101562001328578190505b620013406200133785620011d6565b830182620012d1565b50505b505050565b600082821c905092915050565b6000620013686000198460080262001348565b1980831691505092915050565b600062001383838362001355565b9150826002028217905092915050565b6200139e8262001152565b67ffffffffffffffff811115620013ba57620013b962000c9d565b5b620013c682546200118c565b620013d3828285620012f8565b600060209050601f8311600181146200140b5760008415620013f6578287015190505b62001402858262001375565b86555062001472565b601f1984166200141b86620011c1565b60005b8281101562001445578489015182556001820191506020850194506020810190506200141e565b8683101562001465578489015162001461601f89168262001355565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156200150857808604811115620014e057620014df6200147a565b5b6001851615620014f05780820291505b80810290506200150085620014a9565b9450620014c0565b94509492505050565b600082620015235760019050620015f6565b81620015335760009050620015f6565b81600181146200154c576002811462001557576200158d565b6001915050620015f6565b60ff8411156200156c576200156b6200147a565b5b8360020a9150848211156200158657620015856200147a565b5b50620015f6565b5060208310610133831016604e8410600b8410161715620015c75782820a905083811115620015c157620015c06200147a565b5b620015f6565b620015d68484846001620014b6565b92509050818404811115620015f057620015ef6200147a565b5b81810290505b9392505050565b60006200160a8262000e0b565b9150620016178362000e46565b9250620016467fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462001511565b905092915050565b60006200165b8262000e0b565b9150620016688362000e0b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620016a457620016a36200147a565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000620016eb8262000e0b565b9150620016f88362000e0b565b9250826200170b576200170a620016af565b5b828206905092915050565b6000620017238262000e0b565b9150620017308362000e0b565b9250828210156200174657620017456200147a565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006200178d8262000e0b565b91506200179a8362000e0b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620017d257620017d16200147a565b5b828201905092915050565b6000620017ea8262000e0b565b9150620017f78362000e0b565b9250826200180a5762001809620016af565b5b828204905092915050565b6000602082840312156200182e576200182d62000c78565b5b60006200183e8482850162000f00565b91505092915050565b620018528162000ed2565b82525050565b60006040820190506200186f600083018562001847565b6200187e602083018462001847565b9392505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620018ce601f8362001885565b9150620018db8262001896565b602082019050919050565b600060208201905081810360008301526200190181620018bf565b9050919050565b620019138162000e0b565b82525050565b600060208201905062001930600083018462001908565b92915050565b60805160a05160c0516159c062001990600039600081816113ad0152612d0b015260008181610f5d015281816139ef01528181613ad001528181613af701528181613c170152613c3e0152600061113f01526159c06000f3fe60806040526004361061031e5760003560e01c806370a08231116101ab578063afcf2fc4116100f7578063e547be6911610095578063edc2fcfb1161006f578063edc2fcfb14610be3578063f0f165af14610c0c578063f2fde38b14610c35578063fdeb889f14610c5e57610325565b8063e547be6914610b68578063ea2f0b3714610b91578063ec28438a14610bba57610325565b8063caccd7f7116100d1578063caccd7f714610a9a578063cba0e99614610ac5578063dcc345f214610b02578063dd62ed3e14610b2b57610325565b8063afcf2fc414610a1b578063c0b0fda214610a46578063c49b9a8014610a7157610325565b8063906e9dd011610164578063a457c2d71161013e578063a457c2d71461094d578063a5ece9411461098a578063a9059cbb146109b5578063a94c8dd2146109f257610325565b8063906e9dd0146108ce57806395d89b41146108f7578063a073d37f1461092257610325565b806370a08231146107d0578063715018a61461080d57806379cc6790146108245780637d1db4a51461084d5780638a0623b4146108785780638da5cb5b146108a357610325565b8063395093511161026a57806349bd5a5e116102235780635342acb4116101fd5780635342acb4146107185780636049876e14610755578063625e764c1461077e5780636c317232146107a757610325565b806349bd5a5e146106995780634a74bb02146106c45780634bf2c7c9146106ef57610325565b8063395093511461057757806340f8007a146105b457806342966c68146105df578063437823ec146106085780634549b0391461063157806348de478e1461066e57610325565b806320c7c596116102d757806327c8f835116102b157806327c8f835146104cb578063313ce567146104f657806332035504146105215780633206b4aa1461054c57610325565b806320c7c5961461043a57806322976e0d1461046357806323b872dd1461048e57610325565b8063053ab1821461032a57806306fdde0314610353578063095ea7b31461037e5780630c9be46d146103bb5780631694505e146103e457806318160ddd1461040f57610325565b3661032557005b600080fd5b34801561033657600080fd5b50610351600480360381019061034c9190614589565b610c87565b005b34801561035f57600080fd5b50610368610deb565b604051610375919061464f565b60405180910390f35b34801561038a57600080fd5b506103a560048036038101906103a091906146cf565b610e7d565b6040516103b2919061472a565b60405180910390f35b3480156103c757600080fd5b506103e260048036038101906103dd9190614745565b610e9b565b005b3480156103f057600080fd5b506103f9610f5b565b60405161040691906147d1565b60405180910390f35b34801561041b57600080fd5b50610424610f7f565b60405161043191906147fb565b60405180910390f35b34801561044657600080fd5b50610461600480360381019061045c9190614589565b610f89565b005b34801561046f57600080fd5b5061047861103f565b60405161048591906147fb565b60405180910390f35b34801561049a57600080fd5b506104b560048036038101906104b09190614816565b611045565b6040516104c2919061472a565b60405180910390f35b3480156104d757600080fd5b506104e061113d565b6040516104ed9190614878565b60405180910390f35b34801561050257600080fd5b5061050b611161565b60405161051891906148af565b60405180910390f35b34801561052d57600080fd5b50610536611178565b60405161054391906147fb565b60405180910390f35b34801561055857600080fd5b50610561611182565b60405161056e91906147fb565b60405180910390f35b34801561058357600080fd5b5061059e600480360381019061059991906146cf565b611188565b6040516105ab919061472a565b60405180910390f35b3480156105c057600080fd5b506105c9611234565b6040516105d691906147fb565b60405180910390f35b3480156105eb57600080fd5b5061060660048036038101906106019190614589565b61123a565b005b34801561061457600080fd5b5061062f600480360381019061062a9190614745565b61124e565b005b34801561063d57600080fd5b50610658600480360381019061065391906148f6565b611325565b60405161066591906147fb565b60405180910390f35b34801561067a57600080fd5b506106836113a5565b60405161069091906147fb565b60405180910390f35b3480156106a557600080fd5b506106ae6113ab565b6040516106bb9190614878565b60405180910390f35b3480156106d057600080fd5b506106d96113cf565b6040516106e6919061472a565b60405180910390f35b3480156106fb57600080fd5b5061071660048036038101906107119190614589565b6113e2565b005b34801561072457600080fd5b5061073f600480360381019061073a9190614745565b611468565b60405161074c919061472a565b60405180910390f35b34801561076157600080fd5b5061077c60048036038101906107779190614745565b6114be565b005b34801561078a57600080fd5b506107a560048036038101906107a09190614589565b611759565b005b3480156107b357600080fd5b506107ce60048036038101906107c99190614589565b61180f565b005b3480156107dc57600080fd5b506107f760048036038101906107f29190614745565b6118c5565b60405161080491906147fb565b60405180910390f35b34801561081957600080fd5b506108226119b0565b005b34801561083057600080fd5b5061084b600480360381019061084691906146cf565b611a38565b005b34801561085957600080fd5b50610862611ab3565b60405161086f91906147fb565b60405180910390f35b34801561088457600080fd5b5061088d611ab9565b60405161089a91906147fb565b60405180910390f35b3480156108af57600080fd5b506108b8611abf565b6040516108c59190614878565b60405180910390f35b3480156108da57600080fd5b506108f560048036038101906108f09190614745565b611ae9565b005b34801561090357600080fd5b5061090c611ba9565b604051610919919061464f565b60405180910390f35b34801561092e57600080fd5b50610937611c3b565b60405161094491906147fb565b60405180910390f35b34801561095957600080fd5b50610974600480360381019061096f91906146cf565b611c45565b604051610981919061472a565b60405180910390f35b34801561099657600080fd5b5061099f611d30565b6040516109ac9190614957565b60405180910390f35b3480156109c157600080fd5b506109dc60048036038101906109d791906146cf565b611d56565b6040516109e9919061472a565b60405180910390f35b3480156109fe57600080fd5b50610a196004803603810190610a149190614589565b611d74565b005b348015610a2757600080fd5b50610a30611e2a565b604051610a3d9190614957565b60405180910390f35b348015610a5257600080fd5b50610a5b611e50565b604051610a6891906147fb565b60405180910390f35b348015610a7d57600080fd5b50610a986004803603810190610a939190614972565b611e56565b005b348015610aa657600080fd5b50610aaf611f26565b604051610abc9190614957565b60405180910390f35b348015610ad157600080fd5b50610aec6004803603810190610ae79190614745565b611f4c565b604051610af9919061472a565b60405180910390f35b348015610b0e57600080fd5b50610b296004803603810190610b249190614745565b611fa2565b005b348015610b3757600080fd5b50610b526004803603810190610b4d919061499f565b612062565b604051610b5f91906147fb565b60405180910390f35b348015610b7457600080fd5b50610b8f6004803603810190610b8a9190614589565b6120e9565b005b348015610b9d57600080fd5b50610bb86004803603810190610bb39190614745565b61216f565b005b348015610bc657600080fd5b50610be16004803603810190610bdc9190614589565b612246565b005b348015610bef57600080fd5b50610c0a6004803603810190610c059190614972565b6122cc565b005b348015610c1857600080fd5b50610c336004803603810190610c2e9190614589565b61239b565b005b348015610c4157600080fd5b50610c5c6004803603810190610c579190614745565b612421565b005b348015610c6a57600080fd5b50610c856004803603810190610c809190614745565b612518565b005b6000610c9161284d565b9050600960008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610d20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1790614a51565b60405180910390fd5b6000610d2b83612855565b505050905080600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610d7b9190614aa0565b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600f54610dcc9190614aa0565b600f8190555082601054610de09190614ad4565b601081905550505050565b606060038054610dfa90614b59565b80601f0160208091040260200160405190810160405280929190818152602001828054610e2690614b59565b8015610e735780601f10610e4857610100808354040283529160200191610e73565b820191906000526020600020905b815481529060010190602001808311610e5657829003601f168201915b5050505050905090565b6000610e91610e8a61284d565b84846128bc565b6001905092915050565b610ea361284d565b73ffffffffffffffffffffffffffffffffffffffff16610ec1611abf565b73ffffffffffffffffffffffffffffffffffffffff1614610f17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0e90614bd6565b60405180910390fd5b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600e54905090565b610f9161284d565b73ffffffffffffffffffffffffffffffffffffffff16610faf611abf565b73ffffffffffffffffffffffffffffffffffffffff1614611005576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffc90614bd6565b60405180910390fd5b80601d81905550601d54601b546019546015546110229190614ad4565b61102c9190614ad4565b6110369190614ad4565b60138190555050565b60195481565b6000611052848484612a85565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061109d61284d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561111d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111490614c68565b60405180910390fd5b6111318561112961284d565b8584036128bc565b60019150509392505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600b60009054906101000a900460ff16905090565b6000601054905090565b60115481565b600061122a61119561284d565b8484600160006111a361284d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112259190614ad4565b6128bc565b6001905092915050565b601d5481565b61124b61124561284d565b82612e3a565b50565b61125661284d565b73ffffffffffffffffffffffffffffffffffffffff16611274611abf565b73ffffffffffffffffffffffffffffffffffffffff16146112ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c190614bd6565b60405180910390fd5b6001600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600e5483111561136c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136390614cd4565b60405180910390fd5b8161138a57600061137c84612855565b50505090508091505061139f565b600061139584612855565b5050915050809150505b92915050565b601b5481565b7f000000000000000000000000000000000000000000000000000000000000000081565b602260019054906101000a900460ff1681565b6113ea61284d565b73ffffffffffffffffffffffffffffffffffffffff16611408611abf565b73ffffffffffffffffffffffffffffffffffffffff161461145e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145590614bd6565b60405180910390fd5b8060178190555050565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6114c661284d565b73ffffffffffffffffffffffffffffffffffffffff166114e4611abf565b73ffffffffffffffffffffffffffffffffffffffff161461153a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153190614bd6565b60405180910390fd5b600960008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156115c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115be90614d40565b60405180910390fd5b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054111561169b57611657600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613131565b600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600a819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61176161284d565b73ffffffffffffffffffffffffffffffffffffffff1661177f611abf565b73ffffffffffffffffffffffffffffffffffffffff16146117d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117cc90614bd6565b60405180910390fd5b80601981905550601d54601b546019546015546117f29190614ad4565b6117fc9190614ad4565b6118069190614ad4565b60138190555050565b61181761284d565b73ffffffffffffffffffffffffffffffffffffffff16611835611abf565b73ffffffffffffffffffffffffffffffffffffffff161461188b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188290614bd6565b60405180910390fd5b80601b81905550601d54601b546019546015546118a89190614ad4565b6118b29190614ad4565b6118bc9190614ad4565b60138190555050565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561196057600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506119ab565b6119a8600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613131565b90505b919050565b6119b861284d565b73ffffffffffffffffffffffffffffffffffffffff166119d6611abf565b73ffffffffffffffffffffffffffffffffffffffff1614611a2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2390614bd6565b60405180910390fd5b611a366000613198565b565b6000611a4b83611a4661284d565b612062565b905081811015611a90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8790614dd2565b60405180910390fd5b611aa483611a9c61284d565b8484036128bc565b611aae8383612e3a565b505050565b601f5481565b60155481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611af161284d565b73ffffffffffffffffffffffffffffffffffffffff16611b0f611abf565b73ffffffffffffffffffffffffffffffffffffffff1614611b65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5c90614bd6565b60405180910390fd5b80600b60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b606060048054611bb890614b59565b80601f0160208091040260200160405190810160405280929190818152602001828054611be490614b59565b8015611c315780601f10611c0657610100808354040283529160200191611c31565b820191906000526020600020905b815481529060010190602001808311611c1457829003601f168201915b5050505050905090565b6000602154905090565b60008060016000611c5461284d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611d11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0890614e64565b60405180910390fd5b611d25611d1c61284d565b858584036128bc565b600191505092915050565b600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000611d6a611d6361284d565b8484612a85565b6001905092915050565b611d7c61284d565b73ffffffffffffffffffffffffffffffffffffffff16611d9a611abf565b73ffffffffffffffffffffffffffffffffffffffff1614611df0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de790614bd6565b60405180910390fd5b80601581905550601d54601b54601954601554611e0d9190614ad4565b611e179190614ad4565b611e219190614ad4565b60138190555050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60175481565b611e5e61284d565b73ffffffffffffffffffffffffffffffffffffffff16611e7c611abf565b73ffffffffffffffffffffffffffffffffffffffff1614611ed2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec990614bd6565b60405180910390fd5b80602260016101000a81548160ff0219169083151502179055507f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc15981604051611f1b919061472a565b60405180910390a150565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b611faa61284d565b73ffffffffffffffffffffffffffffffffffffffff16611fc8611abf565b73ffffffffffffffffffffffffffffffffffffffff161461201e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201590614bd6565b60405180910390fd5b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6120f161284d565b73ffffffffffffffffffffffffffffffffffffffff1661210f611abf565b73ffffffffffffffffffffffffffffffffffffffff1614612165576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215c90614bd6565b60405180910390fd5b8060118190555050565b61217761284d565b73ffffffffffffffffffffffffffffffffffffffff16612195611abf565b73ffffffffffffffffffffffffffffffffffffffff16146121eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e290614bd6565b60405180910390fd5b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b61224e61284d565b73ffffffffffffffffffffffffffffffffffffffff1661226c611abf565b73ffffffffffffffffffffffffffffffffffffffff16146122c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b990614bd6565b60405180910390fd5b80601f8190555050565b6122d461284d565b73ffffffffffffffffffffffffffffffffffffffff166122f2611abf565b73ffffffffffffffffffffffffffffffffffffffff1614612348576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233f90614bd6565b60405180910390fd5b801561237c576123586000611e56565b61236061325e565b601f54602081905550612371610f7f565b601f81905550612398565b6123866001611e56565b61238e6132f0565b602054601f819055505b50565b6123a361284d565b73ffffffffffffffffffffffffffffffffffffffff166123c1611abf565b73ffffffffffffffffffffffffffffffffffffffff1614612417576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240e90614bd6565b60405180910390fd5b8060218190555050565b61242961284d565b73ffffffffffffffffffffffffffffffffffffffff16612447611abf565b73ffffffffffffffffffffffffffffffffffffffff161461249d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249490614bd6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361250c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250390614ef6565b60405180910390fd5b61251581613198565b50565b61252061284d565b73ffffffffffffffffffffffffffffffffffffffff1661253e611abf565b73ffffffffffffffffffffffffffffffffffffffff1614612594576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258b90614bd6565b60405180910390fd5b600960008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612620576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261790614f62565b60405180910390fd5b60005b600a80549050811015612849578173ffffffffffffffffffffffffffffffffffffffff16600a828154811061265b5761265a614f82565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361283657600a6001600a805490506126b59190614aa0565b815481106126c6576126c5614f82565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600a828154811061270557612704614f82565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600a8054806127fc576127fb614fb1565b5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690559055612849565b808061284190614fe0565b915050612623565b5050565b600033905090565b600080600080600061286686613331565b9050600081876128769190614aa0565b90506000612882613379565b9050600081836128929190615028565b90506000828a6128a29190615028565b905080828585985098509850985050505050509193509193565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361292b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612922906150f4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361299a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161299190615186565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612a7891906147fb565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612af4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aeb90615218565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612b63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b5a906152aa565b60405180910390fd5b60008111612ba6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9d9061533c565b60405180910390fd5b6000612bb1846118c5565b905081811015612bf6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bed906153ce565b60405180910390fd5b612bfe611abf565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614158015612c6c5750612c3c611abf565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b15612cb757601f54821115612cb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cad90615460565b60405180910390fd5b5b612cc284848461339d565b6000612ccd306118c5565b905060006021548210159050602260009054906101000a900460ff16158015612d025750602260019054906101000a900460ff165b8015612d5957507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b15612d74578015612d73576021549150612d72826133a2565b5b5b600060019050600860008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612e1b5750600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612e2557600090505b612e3187878784613680565b50505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612ea9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ea0906154f2565b60405180910390fd5b6000612eb4836118c5565b905081811015612ef9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ef090615584565b60405180910390fd5b612f058360008461339d565b6000612f0f613379565b905060008184612f1f9190615028565b9050600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156130025783600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612fbe9190614aa0565b600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b80600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461304d9190614aa0565b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555083600e5461309e9190614aa0565b600e8190555080600f546130b29190614aa0565b600f81905550600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8660405161311691906147fb565b60405180910390a361312a856000866136ad565b5050505050565b6000600f54821115613178576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161316f90615616565b60405180910390fd5b6000613182613379565b905080836131909190615665565b915050919050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600060135414801561327257506000601154145b6132ee57601354601481905550601554601681905550601754601881905550601154601281905550601954601a81905550601b54601c81905550601d54601e81905550600060138190555060006015819055506000601781905550600060118190555060006019819055506000601b819055506000601d819055505b565b601454601381905550601654601581905550601854601781905550601254601181905550601a54601981905550601c54601b81905550601e54601d81905550565b6000806017546011546013546133479190614ad4565b6133519190614ad4565b90506000606482856133639190615028565b61336d9190615665565b90508092505050919050565b60008060006133866136b2565b9150915080826133969190615665565b9250505090565b505050565b6001602260006101000a81548160ff02191690831515021790555060004790506000601354601554846133d59190615028565b6133df9190615665565b905060006002826133f09190615665565b9050600081836134009190614aa0565b905061341681866134119190614aa0565b613950565b600084476134249190614aa0565b90506134a9600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff166002600a60155461345d9190615028565b6134679190615665565b600a6013546134769190615028565b6134809190614aa0565b600a60195461348f9190615028565b8461349a9190615028565b6134a49190615665565b613bc6565b61352c600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166002600a6015546134e09190615028565b6134ea9190615665565b600a6013546134f99190615028565b6135039190614aa0565b600a601b546135129190615028565b8461351d9190615028565b6135279190615665565b613bc6565b6135af600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166002600a6015546135639190615028565b61356d9190615665565b600a60135461357c9190615028565b6135869190614aa0565b600a601d546135959190615028565b846135a09190615028565b6135aa9190615665565b613bc6565b60006002600a6015546135c29190615028565b6135cc9190615665565b600a6013546135db9190615028565b6135e59190614aa0565b6002600a6015546135f69190615028565b6136009190615665565b8361360b9190615028565b6136159190615665565b90506136218382613c11565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56184828560405161365493929190615696565b60405180910390a15050505050506000602260006101000a81548160ff02191690831515021790555050565b8061368e5761368d61325e565b5b613699848484613cf2565b806136a7576136a66132f0565b5b50505050565b505050565b6000806000600f5490506000600e54905060005b600a8054905081101561391a578260066000600a84815481106136ec576136eb614f82565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411806137da57508160076000600a848154811061377257613771614f82565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b156137f157600f54600e549450945050505061394c565b60066000600a838154811061380957613808614f82565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548361387a9190614aa0565b925060076000600a838154811061389457613893614f82565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054826139059190614aa0565b9150808061391290614fe0565b9150506136c6565b50600e54600f5461392b9190615665565b82101561394357600f54600e5493509350505061394c565b81819350935050505b9091565b6000600267ffffffffffffffff81111561396d5761396c6156cd565b5b60405190808252806020026020018201604052801561399b5781602001602082028036833780820191505090505b50905030816000815181106139b3576139b2614f82565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613a58573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613a7c9190615711565b81600181518110613a9057613a8f614f82565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613af5307f0000000000000000000000000000000000000000000000000000000000000000846128bc565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613b57959493929190615837565b600060405180830381600087803b158015613b7157600080fd5b505af1158015613b85573d6000803e3d6000fd5b505050507f32cde87eb454f3a0b875ab23547023107cfad454363ec88ba5695e2c24aa52a78282604051613bba929190615891565b60405180910390a15050565b8173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015613c0c573d6000803e3d6000fd5b505050565b613c3c307f0000000000000000000000000000000000000000000000000000000000000000846128bc565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080613c86611abf565b426040518863ffffffff1660e01b8152600401613ca8969594939291906158c1565b60606040518083038185885af1158015613cc6573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613ceb9190615937565b5050505050565b600080600080613d0185612855565b935093509350935083600660008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613d549190614aa0565b600660008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555082600660008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613de29190614ad4565b600660008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015613ec85750600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613f605784600760008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f189190614aa0565b600760008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614261565b600960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156140035750600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561409b5781600760008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546140539190614ad4565b600760008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614260565b600960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561413d5750600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561425f5784600760008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461418d9190614aa0565b600760008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600760008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461421b9190614ad4565b600760008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b5b61426b85826142f3565b61427687868361434f565b6142858786836013543061441c565b8573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516142e291906147fb565b60405180910390a350505050505050565b60006064601154846143059190615028565b61430f9190615665565b90506000828261431f9190615028565b905080600f5461432f9190614aa0565b600f81905550816010546143439190614ad4565b60108190555050505050565b60006064601754846143619190615028565b61436b9190615665565b9050600081111561441657600082826143849190615028565b905081600e546143949190614aa0565b600e8190555080600f546143a89190614aa0565b600f81905550600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161440c91906147fb565b60405180910390a3505b50505050565b60006064838661442c9190615028565b6144369190615665565b90506000811115614546576000848261444f9190615028565b905080600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461449c9190614ad4565b600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161453c91906147fb565b60405180910390a3505b505050505050565b600080fd5b6000819050919050565b61456681614553565b811461457157600080fd5b50565b6000813590506145838161455d565b92915050565b60006020828403121561459f5761459e61454e565b5b60006145ad84828501614574565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156145f05780820151818401526020810190506145d5565b838111156145ff576000848401525b50505050565b6000601f19601f8301169050919050565b6000614621826145b6565b61462b81856145c1565b935061463b8185602086016145d2565b61464481614605565b840191505092915050565b600060208201905081810360008301526146698184614616565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061469c82614671565b9050919050565b6146ac81614691565b81146146b757600080fd5b50565b6000813590506146c9816146a3565b92915050565b600080604083850312156146e6576146e561454e565b5b60006146f4858286016146ba565b925050602061470585828601614574565b9150509250929050565b60008115159050919050565b6147248161470f565b82525050565b600060208201905061473f600083018461471b565b92915050565b60006020828403121561475b5761475a61454e565b5b6000614769848285016146ba565b91505092915050565b6000819050919050565b600061479761479261478d84614671565b614772565b614671565b9050919050565b60006147a98261477c565b9050919050565b60006147bb8261479e565b9050919050565b6147cb816147b0565b82525050565b60006020820190506147e660008301846147c2565b92915050565b6147f581614553565b82525050565b600060208201905061481060008301846147ec565b92915050565b60008060006060848603121561482f5761482e61454e565b5b600061483d868287016146ba565b935050602061484e868287016146ba565b925050604061485f86828701614574565b9150509250925092565b61487281614691565b82525050565b600060208201905061488d6000830184614869565b92915050565b600060ff82169050919050565b6148a981614893565b82525050565b60006020820190506148c460008301846148a0565b92915050565b6148d38161470f565b81146148de57600080fd5b50565b6000813590506148f0816148ca565b92915050565b6000806040838503121561490d5761490c61454e565b5b600061491b85828601614574565b925050602061492c858286016148e1565b9150509250929050565b600061494182614671565b9050919050565b61495181614936565b82525050565b600060208201905061496c6000830184614948565b92915050565b6000602082840312156149885761498761454e565b5b6000614996848285016148e1565b91505092915050565b600080604083850312156149b6576149b561454e565b5b60006149c4858286016146ba565b92505060206149d5858286016146ba565b9150509250929050565b7f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460008201527f6869732066756e6374696f6e0000000000000000000000000000000000000000602082015250565b6000614a3b602c836145c1565b9150614a46826149df565b604082019050919050565b60006020820190508181036000830152614a6a81614a2e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614aab82614553565b9150614ab683614553565b925082821015614ac957614ac8614a71565b5b828203905092915050565b6000614adf82614553565b9150614aea83614553565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614b1f57614b1e614a71565b5b828201905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680614b7157607f821691505b602082108103614b8457614b83614b2a565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614bc06020836145c1565b9150614bcb82614b8a565b602082019050919050565b60006020820190508181036000830152614bef81614bb3565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614c526028836145c1565b9150614c5d82614bf6565b604082019050919050565b60006020820190508181036000830152614c8181614c45565b9050919050565b7f416d6f756e74206d757374206265206c657373207468616e20737570706c7900600082015250565b6000614cbe601f836145c1565b9150614cc982614c88565b602082019050919050565b60006020820190508181036000830152614ced81614cb1565b9050919050565b7f4163636f756e7420697320616c7265616479206578636c756465640000000000600082015250565b6000614d2a601b836145c1565b9150614d3582614cf4565b602082019050919050565b60006020820190508181036000830152614d5981614d1d565b9050919050565b7f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b6000614dbc6024836145c1565b9150614dc782614d60565b604082019050919050565b60006020820190508181036000830152614deb81614daf565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614e4e6025836145c1565b9150614e5982614df2565b604082019050919050565b60006020820190508181036000830152614e7d81614e41565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614ee06026836145c1565b9150614eeb82614e84565b604082019050919050565b60006020820190508181036000830152614f0f81614ed3565b9050919050565b7f4163636f756e7420697320616c726561647920696e636c756465640000000000600082015250565b6000614f4c601b836145c1565b9150614f5782614f16565b602082019050919050565b60006020820190508181036000830152614f7b81614f3f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6000614feb82614553565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361501d5761501c614a71565b5b600182019050919050565b600061503382614553565b915061503e83614553565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561507757615076614a71565b5b828202905092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006150de6024836145c1565b91506150e982615082565b604082019050919050565b6000602082019050818103600083015261510d816150d1565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006151706022836145c1565b915061517b82615114565b604082019050919050565b6000602082019050818103600083015261519f81615163565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006152026025836145c1565b915061520d826151a6565b604082019050919050565b60006020820190508181036000830152615231816151f5565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006152946023836145c1565b915061529f82615238565b604082019050919050565b600060208201905081810360008301526152c381615287565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b60006153266029836145c1565b9150615331826152ca565b604082019050919050565b6000602082019050818103600083015261535581615319565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006153b86026836145c1565b91506153c38261535c565b604082019050919050565b600060208201905081810360008301526153e7816153ab565b9050919050565b7f5472616e7366657220616d6f756e74206578636565647320746865206d61785460008201527f78416d6f756e742e000000000000000000000000000000000000000000000000602082015250565b600061544a6028836145c1565b9150615455826153ee565b604082019050919050565b600060208201905081810360008301526154798161543d565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006154dc6021836145c1565b91506154e782615480565b604082019050919050565b6000602082019050818103600083015261550b816154cf565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b600061556e6022836145c1565b915061557982615512565b604082019050919050565b6000602082019050818103600083015261559d81615561565b9050919050565b7f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260008201527f65666c656374696f6e7300000000000000000000000000000000000000000000602082015250565b6000615600602a836145c1565b915061560b826155a4565b604082019050919050565b6000602082019050818103600083015261562f816155f3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061567082614553565b915061567b83614553565b92508261568b5761568a615636565b5b828204905092915050565b60006060820190506156ab60008301866147ec565b6156b860208301856147ec565b6156c560408301846147ec565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60008151905061570b816146a3565b92915050565b6000602082840312156157275761572661454e565b5b6000615735848285016156fc565b91505092915050565b6000819050919050565b600061576361575e6157598461573e565b614772565b614553565b9050919050565b61577381615748565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6157ae81614691565b82525050565b60006157c083836157a5565b60208301905092915050565b6000602082019050919050565b60006157e482615779565b6157ee8185615784565b93506157f983615795565b8060005b8381101561582a57815161581188826157b4565b975061581c836157cc565b9250506001810190506157fd565b5085935050505092915050565b600060a08201905061584c60008301886147ec565b615859602083018761576a565b818103604083015261586b81866157d9565b905061587a6060830185614869565b61588760808301846147ec565b9695505050505050565b60006040820190506158a660008301856147ec565b81810360208301526158b881846157d9565b90509392505050565b600060c0820190506158d66000830189614869565b6158e360208301886147ec565b6158f0604083018761576a565b6158fd606083018661576a565b61590a6080830185614869565b61591760a08301846147ec565b979650505050505050565b6000815190506159318161455d565b92915050565b6000806000606084860312156159505761594f61454e565b5b600061595e86828701615922565b935050602061596f86828701615922565b925050604061598086828701615922565b915050925092509256fea2646970667358221220989dc32cf788b9968b028375b176439272202aeee4d76229106544df3549c7fa64736f6c634300080f003300000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000240000000000000000000000000000000000000000000000000000000e8d4a510000000000000000000000000000000000000000000000000000000000000000012000000000000000000000000f0d298c38e86671021f44e3f15b9c6377a095fa7000000000000000000000000ea5f064c70f3107c62cd83bf7ec86752f151ba8f000000000000000000000000000000000000000000000000000000000000dead0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000e2c1470d8e3f8cafd7205de006987e7f8edef9ad000000000000000000000000000000000000000000000000000000000000dead000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000b526970706c6520496e752000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035249500000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061031e5760003560e01c806370a08231116101ab578063afcf2fc4116100f7578063e547be6911610095578063edc2fcfb1161006f578063edc2fcfb14610be3578063f0f165af14610c0c578063f2fde38b14610c35578063fdeb889f14610c5e57610325565b8063e547be6914610b68578063ea2f0b3714610b91578063ec28438a14610bba57610325565b8063caccd7f7116100d1578063caccd7f714610a9a578063cba0e99614610ac5578063dcc345f214610b02578063dd62ed3e14610b2b57610325565b8063afcf2fc414610a1b578063c0b0fda214610a46578063c49b9a8014610a7157610325565b8063906e9dd011610164578063a457c2d71161013e578063a457c2d71461094d578063a5ece9411461098a578063a9059cbb146109b5578063a94c8dd2146109f257610325565b8063906e9dd0146108ce57806395d89b41146108f7578063a073d37f1461092257610325565b806370a08231146107d0578063715018a61461080d57806379cc6790146108245780637d1db4a51461084d5780638a0623b4146108785780638da5cb5b146108a357610325565b8063395093511161026a57806349bd5a5e116102235780635342acb4116101fd5780635342acb4146107185780636049876e14610755578063625e764c1461077e5780636c317232146107a757610325565b806349bd5a5e146106995780634a74bb02146106c45780634bf2c7c9146106ef57610325565b8063395093511461057757806340f8007a146105b457806342966c68146105df578063437823ec146106085780634549b0391461063157806348de478e1461066e57610325565b806320c7c596116102d757806327c8f835116102b157806327c8f835146104cb578063313ce567146104f657806332035504146105215780633206b4aa1461054c57610325565b806320c7c5961461043a57806322976e0d1461046357806323b872dd1461048e57610325565b8063053ab1821461032a57806306fdde0314610353578063095ea7b31461037e5780630c9be46d146103bb5780631694505e146103e457806318160ddd1461040f57610325565b3661032557005b600080fd5b34801561033657600080fd5b50610351600480360381019061034c9190614589565b610c87565b005b34801561035f57600080fd5b50610368610deb565b604051610375919061464f565b60405180910390f35b34801561038a57600080fd5b506103a560048036038101906103a091906146cf565b610e7d565b6040516103b2919061472a565b60405180910390f35b3480156103c757600080fd5b506103e260048036038101906103dd9190614745565b610e9b565b005b3480156103f057600080fd5b506103f9610f5b565b60405161040691906147d1565b60405180910390f35b34801561041b57600080fd5b50610424610f7f565b60405161043191906147fb565b60405180910390f35b34801561044657600080fd5b50610461600480360381019061045c9190614589565b610f89565b005b34801561046f57600080fd5b5061047861103f565b60405161048591906147fb565b60405180910390f35b34801561049a57600080fd5b506104b560048036038101906104b09190614816565b611045565b6040516104c2919061472a565b60405180910390f35b3480156104d757600080fd5b506104e061113d565b6040516104ed9190614878565b60405180910390f35b34801561050257600080fd5b5061050b611161565b60405161051891906148af565b60405180910390f35b34801561052d57600080fd5b50610536611178565b60405161054391906147fb565b60405180910390f35b34801561055857600080fd5b50610561611182565b60405161056e91906147fb565b60405180910390f35b34801561058357600080fd5b5061059e600480360381019061059991906146cf565b611188565b6040516105ab919061472a565b60405180910390f35b3480156105c057600080fd5b506105c9611234565b6040516105d691906147fb565b60405180910390f35b3480156105eb57600080fd5b5061060660048036038101906106019190614589565b61123a565b005b34801561061457600080fd5b5061062f600480360381019061062a9190614745565b61124e565b005b34801561063d57600080fd5b50610658600480360381019061065391906148f6565b611325565b60405161066591906147fb565b60405180910390f35b34801561067a57600080fd5b506106836113a5565b60405161069091906147fb565b60405180910390f35b3480156106a557600080fd5b506106ae6113ab565b6040516106bb9190614878565b60405180910390f35b3480156106d057600080fd5b506106d96113cf565b6040516106e6919061472a565b60405180910390f35b3480156106fb57600080fd5b5061071660048036038101906107119190614589565b6113e2565b005b34801561072457600080fd5b5061073f600480360381019061073a9190614745565b611468565b60405161074c919061472a565b60405180910390f35b34801561076157600080fd5b5061077c60048036038101906107779190614745565b6114be565b005b34801561078a57600080fd5b506107a560048036038101906107a09190614589565b611759565b005b3480156107b357600080fd5b506107ce60048036038101906107c99190614589565b61180f565b005b3480156107dc57600080fd5b506107f760048036038101906107f29190614745565b6118c5565b60405161080491906147fb565b60405180910390f35b34801561081957600080fd5b506108226119b0565b005b34801561083057600080fd5b5061084b600480360381019061084691906146cf565b611a38565b005b34801561085957600080fd5b50610862611ab3565b60405161086f91906147fb565b60405180910390f35b34801561088457600080fd5b5061088d611ab9565b60405161089a91906147fb565b60405180910390f35b3480156108af57600080fd5b506108b8611abf565b6040516108c59190614878565b60405180910390f35b3480156108da57600080fd5b506108f560048036038101906108f09190614745565b611ae9565b005b34801561090357600080fd5b5061090c611ba9565b604051610919919061464f565b60405180910390f35b34801561092e57600080fd5b50610937611c3b565b60405161094491906147fb565b60405180910390f35b34801561095957600080fd5b50610974600480360381019061096f91906146cf565b611c45565b604051610981919061472a565b60405180910390f35b34801561099657600080fd5b5061099f611d30565b6040516109ac9190614957565b60405180910390f35b3480156109c157600080fd5b506109dc60048036038101906109d791906146cf565b611d56565b6040516109e9919061472a565b60405180910390f35b3480156109fe57600080fd5b50610a196004803603810190610a149190614589565b611d74565b005b348015610a2757600080fd5b50610a30611e2a565b604051610a3d9190614957565b60405180910390f35b348015610a5257600080fd5b50610a5b611e50565b604051610a6891906147fb565b60405180910390f35b348015610a7d57600080fd5b50610a986004803603810190610a939190614972565b611e56565b005b348015610aa657600080fd5b50610aaf611f26565b604051610abc9190614957565b60405180910390f35b348015610ad157600080fd5b50610aec6004803603810190610ae79190614745565b611f4c565b604051610af9919061472a565b60405180910390f35b348015610b0e57600080fd5b50610b296004803603810190610b249190614745565b611fa2565b005b348015610b3757600080fd5b50610b526004803603810190610b4d919061499f565b612062565b604051610b5f91906147fb565b60405180910390f35b348015610b7457600080fd5b50610b8f6004803603810190610b8a9190614589565b6120e9565b005b348015610b9d57600080fd5b50610bb86004803603810190610bb39190614745565b61216f565b005b348015610bc657600080fd5b50610be16004803603810190610bdc9190614589565b612246565b005b348015610bef57600080fd5b50610c0a6004803603810190610c059190614972565b6122cc565b005b348015610c1857600080fd5b50610c336004803603810190610c2e9190614589565b61239b565b005b348015610c4157600080fd5b50610c5c6004803603810190610c579190614745565b612421565b005b348015610c6a57600080fd5b50610c856004803603810190610c809190614745565b612518565b005b6000610c9161284d565b9050600960008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610d20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1790614a51565b60405180910390fd5b6000610d2b83612855565b505050905080600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610d7b9190614aa0565b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600f54610dcc9190614aa0565b600f8190555082601054610de09190614ad4565b601081905550505050565b606060038054610dfa90614b59565b80601f0160208091040260200160405190810160405280929190818152602001828054610e2690614b59565b8015610e735780601f10610e4857610100808354040283529160200191610e73565b820191906000526020600020905b815481529060010190602001808311610e5657829003601f168201915b5050505050905090565b6000610e91610e8a61284d565b84846128bc565b6001905092915050565b610ea361284d565b73ffffffffffffffffffffffffffffffffffffffff16610ec1611abf565b73ffffffffffffffffffffffffffffffffffffffff1614610f17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0e90614bd6565b60405180910390fd5b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600e54905090565b610f9161284d565b73ffffffffffffffffffffffffffffffffffffffff16610faf611abf565b73ffffffffffffffffffffffffffffffffffffffff1614611005576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffc90614bd6565b60405180910390fd5b80601d81905550601d54601b546019546015546110229190614ad4565b61102c9190614ad4565b6110369190614ad4565b60138190555050565b60195481565b6000611052848484612a85565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061109d61284d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561111d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111490614c68565b60405180910390fd5b6111318561112961284d565b8584036128bc565b60019150509392505050565b7f000000000000000000000000000000000000000000000000000000000000dead81565b6000600b60009054906101000a900460ff16905090565b6000601054905090565b60115481565b600061122a61119561284d565b8484600160006111a361284d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112259190614ad4565b6128bc565b6001905092915050565b601d5481565b61124b61124561284d565b82612e3a565b50565b61125661284d565b73ffffffffffffffffffffffffffffffffffffffff16611274611abf565b73ffffffffffffffffffffffffffffffffffffffff16146112ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c190614bd6565b60405180910390fd5b6001600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600e5483111561136c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136390614cd4565b60405180910390fd5b8161138a57600061137c84612855565b50505090508091505061139f565b600061139584612855565b5050915050809150505b92915050565b601b5481565b7f000000000000000000000000aacc6f11e70308961d8850273b67d73119c767e781565b602260019054906101000a900460ff1681565b6113ea61284d565b73ffffffffffffffffffffffffffffffffffffffff16611408611abf565b73ffffffffffffffffffffffffffffffffffffffff161461145e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145590614bd6565b60405180910390fd5b8060178190555050565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6114c661284d565b73ffffffffffffffffffffffffffffffffffffffff166114e4611abf565b73ffffffffffffffffffffffffffffffffffffffff161461153a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153190614bd6565b60405180910390fd5b600960008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156115c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115be90614d40565b60405180910390fd5b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054111561169b57611657600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613131565b600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600a819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61176161284d565b73ffffffffffffffffffffffffffffffffffffffff1661177f611abf565b73ffffffffffffffffffffffffffffffffffffffff16146117d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117cc90614bd6565b60405180910390fd5b80601981905550601d54601b546019546015546117f29190614ad4565b6117fc9190614ad4565b6118069190614ad4565b60138190555050565b61181761284d565b73ffffffffffffffffffffffffffffffffffffffff16611835611abf565b73ffffffffffffffffffffffffffffffffffffffff161461188b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188290614bd6565b60405180910390fd5b80601b81905550601d54601b546019546015546118a89190614ad4565b6118b29190614ad4565b6118bc9190614ad4565b60138190555050565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561196057600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506119ab565b6119a8600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613131565b90505b919050565b6119b861284d565b73ffffffffffffffffffffffffffffffffffffffff166119d6611abf565b73ffffffffffffffffffffffffffffffffffffffff1614611a2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2390614bd6565b60405180910390fd5b611a366000613198565b565b6000611a4b83611a4661284d565b612062565b905081811015611a90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8790614dd2565b60405180910390fd5b611aa483611a9c61284d565b8484036128bc565b611aae8383612e3a565b505050565b601f5481565b60155481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611af161284d565b73ffffffffffffffffffffffffffffffffffffffff16611b0f611abf565b73ffffffffffffffffffffffffffffffffffffffff1614611b65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5c90614bd6565b60405180910390fd5b80600b60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b606060048054611bb890614b59565b80601f0160208091040260200160405190810160405280929190818152602001828054611be490614b59565b8015611c315780601f10611c0657610100808354040283529160200191611c31565b820191906000526020600020905b815481529060010190602001808311611c1457829003601f168201915b5050505050905090565b6000602154905090565b60008060016000611c5461284d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611d11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0890614e64565b60405180910390fd5b611d25611d1c61284d565b858584036128bc565b600191505092915050565b600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000611d6a611d6361284d565b8484612a85565b6001905092915050565b611d7c61284d565b73ffffffffffffffffffffffffffffffffffffffff16611d9a611abf565b73ffffffffffffffffffffffffffffffffffffffff1614611df0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de790614bd6565b60405180910390fd5b80601581905550601d54601b54601954601554611e0d9190614ad4565b611e179190614ad4565b611e219190614ad4565b60138190555050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60175481565b611e5e61284d565b73ffffffffffffffffffffffffffffffffffffffff16611e7c611abf565b73ffffffffffffffffffffffffffffffffffffffff1614611ed2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec990614bd6565b60405180910390fd5b80602260016101000a81548160ff0219169083151502179055507f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc15981604051611f1b919061472a565b60405180910390a150565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b611faa61284d565b73ffffffffffffffffffffffffffffffffffffffff16611fc8611abf565b73ffffffffffffffffffffffffffffffffffffffff161461201e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201590614bd6565b60405180910390fd5b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6120f161284d565b73ffffffffffffffffffffffffffffffffffffffff1661210f611abf565b73ffffffffffffffffffffffffffffffffffffffff1614612165576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215c90614bd6565b60405180910390fd5b8060118190555050565b61217761284d565b73ffffffffffffffffffffffffffffffffffffffff16612195611abf565b73ffffffffffffffffffffffffffffffffffffffff16146121eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e290614bd6565b60405180910390fd5b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b61224e61284d565b73ffffffffffffffffffffffffffffffffffffffff1661226c611abf565b73ffffffffffffffffffffffffffffffffffffffff16146122c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b990614bd6565b60405180910390fd5b80601f8190555050565b6122d461284d565b73ffffffffffffffffffffffffffffffffffffffff166122f2611abf565b73ffffffffffffffffffffffffffffffffffffffff1614612348576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233f90614bd6565b60405180910390fd5b801561237c576123586000611e56565b61236061325e565b601f54602081905550612371610f7f565b601f81905550612398565b6123866001611e56565b61238e6132f0565b602054601f819055505b50565b6123a361284d565b73ffffffffffffffffffffffffffffffffffffffff166123c1611abf565b73ffffffffffffffffffffffffffffffffffffffff1614612417576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240e90614bd6565b60405180910390fd5b8060218190555050565b61242961284d565b73ffffffffffffffffffffffffffffffffffffffff16612447611abf565b73ffffffffffffffffffffffffffffffffffffffff161461249d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249490614bd6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361250c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250390614ef6565b60405180910390fd5b61251581613198565b50565b61252061284d565b73ffffffffffffffffffffffffffffffffffffffff1661253e611abf565b73ffffffffffffffffffffffffffffffffffffffff1614612594576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258b90614bd6565b60405180910390fd5b600960008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612620576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261790614f62565b60405180910390fd5b60005b600a80549050811015612849578173ffffffffffffffffffffffffffffffffffffffff16600a828154811061265b5761265a614f82565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361283657600a6001600a805490506126b59190614aa0565b815481106126c6576126c5614f82565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600a828154811061270557612704614f82565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600a8054806127fc576127fb614fb1565b5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690559055612849565b808061284190614fe0565b915050612623565b5050565b600033905090565b600080600080600061286686613331565b9050600081876128769190614aa0565b90506000612882613379565b9050600081836128929190615028565b90506000828a6128a29190615028565b905080828585985098509850985050505050509193509193565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361292b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612922906150f4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361299a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161299190615186565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612a7891906147fb565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612af4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aeb90615218565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612b63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b5a906152aa565b60405180910390fd5b60008111612ba6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9d9061533c565b60405180910390fd5b6000612bb1846118c5565b905081811015612bf6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bed906153ce565b60405180910390fd5b612bfe611abf565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614158015612c6c5750612c3c611abf565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b15612cb757601f54821115612cb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cad90615460565b60405180910390fd5b5b612cc284848461339d565b6000612ccd306118c5565b905060006021548210159050602260009054906101000a900460ff16158015612d025750602260019054906101000a900460ff165b8015612d5957507f000000000000000000000000aacc6f11e70308961d8850273b67d73119c767e773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b15612d74578015612d73576021549150612d72826133a2565b5b5b600060019050600860008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612e1b5750600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612e2557600090505b612e3187878784613680565b50505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612ea9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ea0906154f2565b60405180910390fd5b6000612eb4836118c5565b905081811015612ef9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ef090615584565b60405180910390fd5b612f058360008461339d565b6000612f0f613379565b905060008184612f1f9190615028565b9050600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156130025783600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612fbe9190614aa0565b600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b80600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461304d9190614aa0565b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555083600e5461309e9190614aa0565b600e8190555080600f546130b29190614aa0565b600f81905550600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8660405161311691906147fb565b60405180910390a361312a856000866136ad565b5050505050565b6000600f54821115613178576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161316f90615616565b60405180910390fd5b6000613182613379565b905080836131909190615665565b915050919050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600060135414801561327257506000601154145b6132ee57601354601481905550601554601681905550601754601881905550601154601281905550601954601a81905550601b54601c81905550601d54601e81905550600060138190555060006015819055506000601781905550600060118190555060006019819055506000601b819055506000601d819055505b565b601454601381905550601654601581905550601854601781905550601254601181905550601a54601981905550601c54601b81905550601e54601d81905550565b6000806017546011546013546133479190614ad4565b6133519190614ad4565b90506000606482856133639190615028565b61336d9190615665565b90508092505050919050565b60008060006133866136b2565b9150915080826133969190615665565b9250505090565b505050565b6001602260006101000a81548160ff02191690831515021790555060004790506000601354601554846133d59190615028565b6133df9190615665565b905060006002826133f09190615665565b9050600081836134009190614aa0565b905061341681866134119190614aa0565b613950565b600084476134249190614aa0565b90506134a9600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff166002600a60155461345d9190615028565b6134679190615665565b600a6013546134769190615028565b6134809190614aa0565b600a60195461348f9190615028565b8461349a9190615028565b6134a49190615665565b613bc6565b61352c600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166002600a6015546134e09190615028565b6134ea9190615665565b600a6013546134f99190615028565b6135039190614aa0565b600a601b546135129190615028565b8461351d9190615028565b6135279190615665565b613bc6565b6135af600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166002600a6015546135639190615028565b61356d9190615665565b600a60135461357c9190615028565b6135869190614aa0565b600a601d546135959190615028565b846135a09190615028565b6135aa9190615665565b613bc6565b60006002600a6015546135c29190615028565b6135cc9190615665565b600a6013546135db9190615028565b6135e59190614aa0565b6002600a6015546135f69190615028565b6136009190615665565b8361360b9190615028565b6136159190615665565b90506136218382613c11565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56184828560405161365493929190615696565b60405180910390a15050505050506000602260006101000a81548160ff02191690831515021790555050565b8061368e5761368d61325e565b5b613699848484613cf2565b806136a7576136a66132f0565b5b50505050565b505050565b6000806000600f5490506000600e54905060005b600a8054905081101561391a578260066000600a84815481106136ec576136eb614f82565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411806137da57508160076000600a848154811061377257613771614f82565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b156137f157600f54600e549450945050505061394c565b60066000600a838154811061380957613808614f82565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548361387a9190614aa0565b925060076000600a838154811061389457613893614f82565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054826139059190614aa0565b9150808061391290614fe0565b9150506136c6565b50600e54600f5461392b9190615665565b82101561394357600f54600e5493509350505061394c565b81819350935050505b9091565b6000600267ffffffffffffffff81111561396d5761396c6156cd565b5b60405190808252806020026020018201604052801561399b5781602001602082028036833780820191505090505b50905030816000815181106139b3576139b2614f82565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613a58573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613a7c9190615711565b81600181518110613a9057613a8f614f82565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613af5307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846128bc565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613b57959493929190615837565b600060405180830381600087803b158015613b7157600080fd5b505af1158015613b85573d6000803e3d6000fd5b505050507f32cde87eb454f3a0b875ab23547023107cfad454363ec88ba5695e2c24aa52a78282604051613bba929190615891565b60405180910390a15050565b8173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015613c0c573d6000803e3d6000fd5b505050565b613c3c307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846128bc565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080613c86611abf565b426040518863ffffffff1660e01b8152600401613ca8969594939291906158c1565b60606040518083038185885af1158015613cc6573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613ceb9190615937565b5050505050565b600080600080613d0185612855565b935093509350935083600660008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613d549190614aa0565b600660008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555082600660008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613de29190614ad4565b600660008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015613ec85750600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613f605784600760008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f189190614aa0565b600760008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614261565b600960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156140035750600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561409b5781600760008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546140539190614ad4565b600760008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614260565b600960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561413d5750600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561425f5784600760008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461418d9190614aa0565b600760008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600760008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461421b9190614ad4565b600760008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b5b61426b85826142f3565b61427687868361434f565b6142858786836013543061441c565b8573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516142e291906147fb565b60405180910390a350505050505050565b60006064601154846143059190615028565b61430f9190615665565b90506000828261431f9190615028565b905080600f5461432f9190614aa0565b600f81905550816010546143439190614ad4565b60108190555050505050565b60006064601754846143619190615028565b61436b9190615665565b9050600081111561441657600082826143849190615028565b905081600e546143949190614aa0565b600e8190555080600f546143a89190614aa0565b600f81905550600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161440c91906147fb565b60405180910390a3505b50505050565b60006064838661442c9190615028565b6144369190615665565b90506000811115614546576000848261444f9190615028565b905080600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461449c9190614ad4565b600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161453c91906147fb565b60405180910390a3505b505050505050565b600080fd5b6000819050919050565b61456681614553565b811461457157600080fd5b50565b6000813590506145838161455d565b92915050565b60006020828403121561459f5761459e61454e565b5b60006145ad84828501614574565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156145f05780820151818401526020810190506145d5565b838111156145ff576000848401525b50505050565b6000601f19601f8301169050919050565b6000614621826145b6565b61462b81856145c1565b935061463b8185602086016145d2565b61464481614605565b840191505092915050565b600060208201905081810360008301526146698184614616565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061469c82614671565b9050919050565b6146ac81614691565b81146146b757600080fd5b50565b6000813590506146c9816146a3565b92915050565b600080604083850312156146e6576146e561454e565b5b60006146f4858286016146ba565b925050602061470585828601614574565b9150509250929050565b60008115159050919050565b6147248161470f565b82525050565b600060208201905061473f600083018461471b565b92915050565b60006020828403121561475b5761475a61454e565b5b6000614769848285016146ba565b91505092915050565b6000819050919050565b600061479761479261478d84614671565b614772565b614671565b9050919050565b60006147a98261477c565b9050919050565b60006147bb8261479e565b9050919050565b6147cb816147b0565b82525050565b60006020820190506147e660008301846147c2565b92915050565b6147f581614553565b82525050565b600060208201905061481060008301846147ec565b92915050565b60008060006060848603121561482f5761482e61454e565b5b600061483d868287016146ba565b935050602061484e868287016146ba565b925050604061485f86828701614574565b9150509250925092565b61487281614691565b82525050565b600060208201905061488d6000830184614869565b92915050565b600060ff82169050919050565b6148a981614893565b82525050565b60006020820190506148c460008301846148a0565b92915050565b6148d38161470f565b81146148de57600080fd5b50565b6000813590506148f0816148ca565b92915050565b6000806040838503121561490d5761490c61454e565b5b600061491b85828601614574565b925050602061492c858286016148e1565b9150509250929050565b600061494182614671565b9050919050565b61495181614936565b82525050565b600060208201905061496c6000830184614948565b92915050565b6000602082840312156149885761498761454e565b5b6000614996848285016148e1565b91505092915050565b600080604083850312156149b6576149b561454e565b5b60006149c4858286016146ba565b92505060206149d5858286016146ba565b9150509250929050565b7f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460008201527f6869732066756e6374696f6e0000000000000000000000000000000000000000602082015250565b6000614a3b602c836145c1565b9150614a46826149df565b604082019050919050565b60006020820190508181036000830152614a6a81614a2e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614aab82614553565b9150614ab683614553565b925082821015614ac957614ac8614a71565b5b828203905092915050565b6000614adf82614553565b9150614aea83614553565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614b1f57614b1e614a71565b5b828201905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680614b7157607f821691505b602082108103614b8457614b83614b2a565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614bc06020836145c1565b9150614bcb82614b8a565b602082019050919050565b60006020820190508181036000830152614bef81614bb3565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614c526028836145c1565b9150614c5d82614bf6565b604082019050919050565b60006020820190508181036000830152614c8181614c45565b9050919050565b7f416d6f756e74206d757374206265206c657373207468616e20737570706c7900600082015250565b6000614cbe601f836145c1565b9150614cc982614c88565b602082019050919050565b60006020820190508181036000830152614ced81614cb1565b9050919050565b7f4163636f756e7420697320616c7265616479206578636c756465640000000000600082015250565b6000614d2a601b836145c1565b9150614d3582614cf4565b602082019050919050565b60006020820190508181036000830152614d5981614d1d565b9050919050565b7f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b6000614dbc6024836145c1565b9150614dc782614d60565b604082019050919050565b60006020820190508181036000830152614deb81614daf565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614e4e6025836145c1565b9150614e5982614df2565b604082019050919050565b60006020820190508181036000830152614e7d81614e41565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614ee06026836145c1565b9150614eeb82614e84565b604082019050919050565b60006020820190508181036000830152614f0f81614ed3565b9050919050565b7f4163636f756e7420697320616c726561647920696e636c756465640000000000600082015250565b6000614f4c601b836145c1565b9150614f5782614f16565b602082019050919050565b60006020820190508181036000830152614f7b81614f3f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6000614feb82614553565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361501d5761501c614a71565b5b600182019050919050565b600061503382614553565b915061503e83614553565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561507757615076614a71565b5b828202905092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006150de6024836145c1565b91506150e982615082565b604082019050919050565b6000602082019050818103600083015261510d816150d1565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006151706022836145c1565b915061517b82615114565b604082019050919050565b6000602082019050818103600083015261519f81615163565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006152026025836145c1565b915061520d826151a6565b604082019050919050565b60006020820190508181036000830152615231816151f5565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006152946023836145c1565b915061529f82615238565b604082019050919050565b600060208201905081810360008301526152c381615287565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b60006153266029836145c1565b9150615331826152ca565b604082019050919050565b6000602082019050818103600083015261535581615319565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006153b86026836145c1565b91506153c38261535c565b604082019050919050565b600060208201905081810360008301526153e7816153ab565b9050919050565b7f5472616e7366657220616d6f756e74206578636565647320746865206d61785460008201527f78416d6f756e742e000000000000000000000000000000000000000000000000602082015250565b600061544a6028836145c1565b9150615455826153ee565b604082019050919050565b600060208201905081810360008301526154798161543d565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006154dc6021836145c1565b91506154e782615480565b604082019050919050565b6000602082019050818103600083015261550b816154cf565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b600061556e6022836145c1565b915061557982615512565b604082019050919050565b6000602082019050818103600083015261559d81615561565b9050919050565b7f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260008201527f65666c656374696f6e7300000000000000000000000000000000000000000000602082015250565b6000615600602a836145c1565b915061560b826155a4565b604082019050919050565b6000602082019050818103600083015261562f816155f3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061567082614553565b915061567b83614553565b92508261568b5761568a615636565b5b828204905092915050565b60006060820190506156ab60008301866147ec565b6156b860208301856147ec565b6156c560408301846147ec565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60008151905061570b816146a3565b92915050565b6000602082840312156157275761572661454e565b5b6000615735848285016156fc565b91505092915050565b6000819050919050565b600061576361575e6157598461573e565b614772565b614553565b9050919050565b61577381615748565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6157ae81614691565b82525050565b60006157c083836157a5565b60208301905092915050565b6000602082019050919050565b60006157e482615779565b6157ee8185615784565b93506157f983615795565b8060005b8381101561582a57815161581188826157b4565b975061581c836157cc565b9250506001810190506157fd565b5085935050505092915050565b600060a08201905061584c60008301886147ec565b615859602083018761576a565b818103604083015261586b81866157d9565b905061587a6060830185614869565b61588760808301846147ec565b9695505050505050565b60006040820190506158a660008301856147ec565b81810360208301526158b881846157d9565b90509392505050565b600060c0820190506158d66000830189614869565b6158e360208301886147ec565b6158f0604083018761576a565b6158fd606083018661576a565b61590a6080830185614869565b61591760a08301846147ec565b979650505050505050565b6000815190506159318161455d565b92915050565b6000806000606084860312156159505761594f61454e565b5b600061595e86828701615922565b935050602061596f86828701615922565b925050604061598086828701615922565b915050925092509256fea2646970667358221220989dc32cf788b9968b028375b176439272202aeee4d76229106544df3549c7fa64736f6c634300080f0033

Deployed Bytecode Sourcemap

38322:22226:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46750:414;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17432:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19740:210;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45074:131;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39781:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43052:103;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44515:257;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39417:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20432:529;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38829:90;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42944:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46191;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39076:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21370:297;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39579:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28179:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45836:111;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47172:487;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39498:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39839:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39914:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43577:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45704:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47995:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43969:265;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44242;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43163:278;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14599:103;;;;;;;;;;;;;:::i;:::-;;28589:405;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39656:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39257:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13948:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44780:139;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17651:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43449:120;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22170:482;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38693:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19113:216;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43680:281;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38785:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39346:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45408:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38739:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46073:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44927:139;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19392:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46299:121;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45955:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45587:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59173:406;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45213:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14857:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48342:482;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46750:414;46802:14;46819:12;:10;:12::i;:::-;46802:29;;46865:11;:19;46877:6;46865:19;;;;;;;;;;;;;;;;;;;;;;;;;46864:20;46842:114;;;;;;;;;;;;:::i;:::-;;;;;;;;;46968:15;46993:27;47012:7;46993:18;:27::i;:::-;46967:53;;;;;47067:7;47049;:15;47057:6;47049:15;;;;;;;;;;;;;;;;:25;;;;:::i;:::-;47031:7;:15;47039:6;47031:15;;;;;;;;;;;;;;;:43;;;;47105:7;47095;;:17;;;;:::i;:::-;47085:7;:27;;;;47149:7;47136:10;;:20;;;;:::i;:::-;47123:10;:33;;;;46791:373;;46750:414;:::o;17432:100::-;17486:13;17519:5;17512:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17432:100;:::o;19740:210::-;19859:4;19881:39;19890:12;:10;:12::i;:::-;19904:7;19913:6;19881:8;:39::i;:::-;19938:4;19931:11;;19740:210;;;;:::o;45074:131::-;14179:12;:10;:12::i;:::-;14168:23;;:7;:5;:7::i;:::-;:23;;;14160:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45181:15:::1;45156:14;;:41;;;;;;;;;;;;;;;;;;45074:131:::0;:::o;39781:51::-;;;:::o;43052:103::-;43113:7;43140;;43133:14;;43052:103;:::o;44515:257::-;14179:12;:10;:12::i;:::-;14168:23;;:7;:5;:7::i;:::-;:23;;;14160:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44603:11:::1;44589;:25;;;;44753:11;;44724:13;;44695;;44662:17;;:46;;;;:::i;:::-;:75;;;;:::i;:::-;:102;;;;:::i;:::-;44625:21;:139;;;;44515:257:::0;:::o;39417:28::-;;;;:::o;20432:529::-;20572:4;20589:36;20599:6;20607:9;20618:6;20589:9;:36::i;:::-;20638:24;20665:11;:19;20677:6;20665:19;;;;;;;;;;;;;;;:33;20685:12;:10;:12::i;:::-;20665:33;;;;;;;;;;;;;;;;20638:60;;20751:6;20731:16;:26;;20709:116;;;;;;;;;;;;:::i;:::-;;;;;;;;;20861:57;20870:6;20878:12;:10;:12::i;:::-;20911:6;20892:16;:25;20861:8;:57::i;:::-;20949:4;20942:11;;;20432:529;;;;;:::o;38829:90::-;;;:::o;42944:100::-;43002:5;43027:9;;;;;;;;;;;43020:16;;42944:100;:::o;46191:::-;46246:7;46273:10;;46266:17;;46191:100;:::o;39076:29::-;;;;:::o;21370:297::-;21485:4;21507:130;21530:12;:10;:12::i;:::-;21557:7;21616:10;21579:11;:25;21591:12;:10;:12::i;:::-;21579:25;;;;;;;;;;;;;;;:34;21605:7;21579:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;21507:8;:130::i;:::-;21655:4;21648:11;;21370:297;;;;:::o;39579:26::-;;;;:::o;28179:91::-;28235:27;28241:12;:10;:12::i;:::-;28255:6;28235:5;:27::i;:::-;28179:91;:::o;45836:111::-;14179:12;:10;:12::i;:::-;14168:23;;:7;:5;:7::i;:::-;:23;;;14160:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45935:4:::1;45905:18;:27;45924:7;45905:27;;;;;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;45836:111:::0;:::o;47172:487::-;47290:7;47334;;47323;:18;;47315:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;47393:17;47388:264;;47428:15;47453:27;47472:7;47453:18;:27::i;:::-;47427:53;;;;;47502:7;47495:14;;;;;47388:264;47545:23;47576:27;47595:7;47576:18;:27::i;:::-;47542:61;;;;;47625:15;47618:22;;;47172:487;;;;;:::o;39498:28::-;;;;:::o;39839:38::-;;;:::o;39914:40::-;;;;;;;;;;;;;:::o;43577:95::-;14179:12;:10;:12::i;:::-;14168:23;;:7;:5;:7::i;:::-;:23;;;14160:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43656:8:::1;43645;:19;;;;43577:95:::0;:::o;45704:124::-;45769:4;45793:18;:27;45812:7;45793:27;;;;;;;;;;;;;;;;;;;;;;;;;45786:34;;45704:124;;;:::o;47995:339::-;14179:12;:10;:12::i;:::-;14168:23;;:7;:5;:7::i;:::-;:23;;;14160:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48083:11:::1;:20;48095:7;48083:20;;;;;;;;;;;;;;;;;;;;;;;;;48082:21;48074:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;48169:1;48150:7;:16;48158:7;48150:16;;;;;;;;;;;;;;;;:20;48146:109;;;48206:37;48226:7;:16;48234:7;48226:16;;;;;;;;;;;;;;;;48206:19;:37::i;:::-;48187:7;:16;48195:7;48187:16;;;;;;;;;;;;;;;:56;;;;48146:109;48288:4;48265:11;:20;48277:7;48265:20;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;48303:9;48318:7;48303:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47995:339:::0;:::o;43969:265::-;14179:12;:10;:12::i;:::-;14168:23;;:7;:5;:7::i;:::-;:23;;;14160:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44063:13:::1;44047;:29;;;;44215:11;;44186:13;;44157;;44124:17;;:46;;;;:::i;:::-;:75;;;;:::i;:::-;:102;;;;:::i;:::-;44087:21;:139;;;;43969:265:::0;:::o;44242:::-;14179:12;:10;:12::i;:::-;14168:23;;:7;:5;:7::i;:::-;:23;;;14160:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44336:13:::1;44320;:29;;;;44488:11;;44459:13;;44430;;44397:17;;:46;;;;:::i;:::-;:75;;;;:::i;:::-;:102;;;;:::i;:::-;44360:21;:139;;;;44242:265:::0;:::o;43163:278::-;43281:7;43310:11;:19;43322:6;43310:19;;;;;;;;;;;;;;;;;;;;;;;;;43306:74;;;43353:7;:15;43361:6;43353:15;;;;;;;;;;;;;;;;43346:22;;;;43306:74;43397:36;43417:7;:15;43425:6;43417:15;;;;;;;;;;;;;;;;43397:19;:36::i;:::-;43390:43;;43163:278;;;;:::o;14599:103::-;14179:12;:10;:12::i;:::-;14168:23;;:7;:5;:7::i;:::-;:23;;;14160:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14664:30:::1;14691:1;14664:18;:30::i;:::-;14599:103::o:0;28589:405::-;28666:24;28693:32;28703:7;28712:12;:10;:12::i;:::-;28693:9;:32::i;:::-;28666:59;;28778:6;28758:16;:26;;28736:112;;;;;;;;;;;;:::i;:::-;;;;;;;;;28884:58;28893:7;28902:12;:10;:12::i;:::-;28935:6;28916:16;:25;28884:8;:58::i;:::-;28964:22;28970:7;28979:6;28964:5;:22::i;:::-;28655:339;28589:405;;:::o;39656:27::-;;;;:::o;39257:32::-;;;;:::o;13948:87::-;13994:7;14021:6;;;;;;;;;;;14014:13;;13948:87;:::o;44780:139::-;14179:12;:10;:12::i;:::-;14168:23;;:7;:5;:7::i;:::-;:23;;;14160:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44893:17:::1;44866:16;;:45;;;;;;;;;;;;;;;;;;44780:139:::0;:::o;17651:104::-;17707:13;17740:7;17733:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17651:104;:::o;43449:120::-;43511:7;43538:23;;43531:30;;43449:120;:::o;22170:482::-;22290:4;22312:24;22339:11;:25;22351:12;:10;:12::i;:::-;22339:25;;;;;;;;;;;;;;;:34;22365:7;22339:34;;;;;;;;;;;;;;;;22312:61;;22426:15;22406:16;:35;;22384:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;22542:67;22551:12;:10;:12::i;:::-;22565:7;22593:15;22574:16;:34;22542:8;:67::i;:::-;22640:4;22633:11;;;22170:482;;;;:::o;38693:39::-;;;;;;;;;;;;;:::o;19113:216::-;19235:4;19257:42;19267:12;:10;:12::i;:::-;19281:9;19292:6;19257:9;:42::i;:::-;19317:4;19310:11;;19113:216;;;;:::o;43680:281::-;14179:12;:10;:12::i;:::-;14168:23;;:7;:5;:7::i;:::-;:23;;;14160:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43786:17:::1;43766;:37;;;;43942:11;;43913:13;;43884;;43851:17;;:46;;;;:::i;:::-;:75;;;;:::i;:::-;:102;;;;:::i;:::-;43814:21;:139;;;;43680:281:::0;:::o;38785:37::-;;;;;;;;;;;;;:::o;39346:23::-;;;;:::o;45408:171::-;14179:12;:10;:12::i;:::-;14168:23;;:7;:5;:7::i;:::-;:23;;;14160:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45509:8:::1;45485:21;;:32;;;;;;;;;;;;;;;;;;45533:38;45562:8;45533:38;;;;;;:::i;:::-;;;;;;;;45408:171:::0;:::o;38739:39::-;;;;;;;;;;;;;:::o;46073:110::-;46131:4;46155:11;:20;46167:7;46155:20;;;;;;;;;;;;;;;;;;;;;;;;;46148:27;;46073:110;;;:::o;44927:139::-;14179:12;:10;:12::i;:::-;14168:23;;:7;:5;:7::i;:::-;:23;;;14160:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45040:17:::1;45013:16;;:45;;;;;;;;;;;;;;;;;;44927:139:::0;:::o;19392:201::-;19526:7;19558:11;:18;19570:5;19558:18;;;;;;;;;;;;;;;:27;19577:7;19558:27;;;;;;;;;;;;;;;;19551:34;;19392:201;;;;:::o;46299:121::-;14179:12;:10;:12::i;:::-;14168:23;;:7;:5;:7::i;:::-;:23;;;14160:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46396:16:::1;46379:14;:33;;;;46299:121:::0;:::o;45955:110::-;14179:12;:10;:12::i;:::-;14168:23;;:7;:5;:7::i;:::-;:23;;;14160:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46052:5:::1;46022:18;:27;46041:7;46022:27;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;45955:110:::0;:::o;45587:109::-;14179:12;:10;:12::i;:::-;14168:23;;:7;:5;:7::i;:::-;:23;;;14160:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45677:11:::1;45662:12;:26;;;;45587:109:::0;:::o;59173:406::-;14179:12;:10;:12::i;:::-;14168:23;;:7;:5;:7::i;:::-;:23;;;14160:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;59239:8:::1;59235:337;;;59264:31;59289:5;59264:24;:31::i;:::-;59310:14;:12;:14::i;:::-;59362:12;;59339:20;:35;;;;59404:13;:11;:13::i;:::-;59389:12;:28;;;;59235:337;;;59450:30;59475:4;59450:24;:30::i;:::-;59495:15;:13;:15::i;:::-;59540:20;;59525:12;:35;;;;59235:337;59173:406:::0;:::o;45213:187::-;14179:12;:10;:12::i;:::-;14168:23;;:7;:5;:7::i;:::-;:23;;;14160:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45368:24:::1;45342:23;:50;;;;45213:187:::0;:::o;14857:238::-;14179:12;:10;:12::i;:::-;14168:23;;:7;:5;:7::i;:::-;:23;;;14160:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14980:1:::1;14960:22;;:8;:22;;::::0;14938:110:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;15059:28;15078:8;15059:18;:28::i;:::-;14857:238:::0;:::o;48342:482::-;14179:12;:10;:12::i;:::-;14168:23;;:7;:5;:7::i;:::-;:23;;;14160:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48427:11:::1;:20;48439:7;48427:20;;;;;;;;;;;;;;;;;;;;;;;;;48419:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;48495:9;48490:327;48514:9;:16;;;;48510:1;:20;48490:327;;;48572:7;48556:23;;:9;48566:1;48556:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:23;;::::0;48552:254:::1;;48615:9;48644:1;48625:9;:16;;;;:20;;;;:::i;:::-;48615:31;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;48600:9;48610:1;48600:12;;;;;;;;:::i;:::-;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;48684:1;48665:7;:16;48673:7;48665:16;;;;;;;;;;;;;;;:20;;;;48727:5;48704:11;:20;48716:7;48704:20;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;48751:9;:15;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;48785:5;;48552:254;48532:3;;;;;:::i;:::-;;;;48490:327;;;;48342:482:::0;:::o;12790:98::-;12843:7;12870:10;12863:17;;12790:98;:::o;51953:553::-;52061:7;52083;52105;52127;52162:16;52181:29;52202:7;52181:20;:29::i;:::-;52162:48;;52221:23;52257:8;52247:7;:18;;;;:::i;:::-;52221:44;;52276:19;52298:10;:8;:10::i;:::-;52276:32;;52319:23;52363:11;52345:15;:29;;;;:::i;:::-;52319:55;;52385:15;52413:11;52403:7;:21;;;;:::i;:::-;52385:39;;52443:7;52452:15;52469;52486:11;52435:63;;;;;;;;;;;;;51953:553;;;;;:::o;25960:380::-;26113:1;26096:19;;:5;:19;;;26088:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;26194:1;26175:21;;:7;:21;;;26167:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;26278:6;26248:11;:18;26260:5;26248:18;;;;;;;;;;;;;;;:27;26267:7;26248:27;;;;;;;;;;;;;;;:36;;;;26316:7;26300:32;;26309:5;26300:32;;;26325:6;26300:32;;;;;;:::i;:::-;;;;;;;;25960:380;;;:::o;48832:1529::-;48999:1;48981:20;;:6;:20;;;48973:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;49083:1;49062:23;;:9;:23;;;49054:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;49153:1;49144:6;:10;49136:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;49211:21;49235:17;49245:6;49235:9;:17::i;:::-;49211:41;;49302:6;49285:13;:23;;49263:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;49399:7;:5;:7::i;:::-;49389:17;;:6;:17;;;;:41;;;;;49423:7;:5;:7::i;:::-;49410:20;;:9;:20;;;;49389:41;49385:198;;;49483:12;;49473:6;:22;;49447:124;;;;;;;;;;;;:::i;:::-;;;;;;;;;49385:198;49595:47;49616:6;49624:9;49635:6;49595:20;:47::i;:::-;49655:28;49686:24;49704:4;49686:9;:24::i;:::-;49655:55;;49721:28;49789:23;;49752:20;:60;;49721:91;;49844:16;;;;;;;;;;;49843:17;:55;;;;;49877:21;;;;;;;;;;;49843:55;:98;;;;;49928:13;49915:26;;:9;:26;;;49843:98;49825:315;;;49972:23;49968:161;;;50039:23;;50016:46;;50081:32;50092:20;50081:10;:32::i;:::-;49968:161;49825:315;50152:12;50167:4;50152:19;;50188:18;:26;50207:6;50188:26;;;;;;;;;;;;;;;;;;;;;;;;;:59;;;;50218:18;:29;50237:9;50218:29;;;;;;;;;;;;;;;;;;;;;;;;;50188:59;50184:107;;;50274:5;50264:15;;50184:107;50303:50;50318:6;50326:9;50337:6;50345:7;50303:14;:50::i;:::-;48962:1399;;;;48832:1529;;;:::o;59735:810::-;59847:1;59828:21;;:7;:21;;;59820:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;59898:22;59923:18;59933:7;59923:9;:18::i;:::-;59898:43;;59978:6;59960:14;:24;;59952:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;60036:49;60057:7;60074:1;60078:6;60036:20;:49::i;:::-;60098:19;60120:10;:8;:10::i;:::-;60098:32;;60141:15;60168:11;60159:6;:20;;;;:::i;:::-;60141:38;;60196:11;:20;60208:7;60196:20;;;;;;;;;;;;;;;;;;;;;;;;;60192:97;;;60271:6;60252:7;:16;60260:7;60252:16;;;;;;;;;;;;;;;;:25;;;;:::i;:::-;60233:7;:16;60241:7;60233:16;;;;;;;;;;;;;;;:44;;;;60192:97;60339:7;60320;:16;60328:7;60320:16;;;;;;;;;;;;;;;;:26;;;;:::i;:::-;60301:7;:16;60309:7;60301:16;;;;;;;;;;;;;;;:45;;;;60379:6;60369:7;;:16;;;;:::i;:::-;60359:7;:26;;;;60416:7;60406;;:17;;;;:::i;:::-;60396:7;:27;;;;60465:1;60439:37;;60448:7;60439:37;;;60469:6;60439:37;;;;;;:::i;:::-;;;;;;;;60489:48;60509:7;60526:1;60530:6;60489:19;:48::i;:::-;59809:736;;;59735:810;;:::o;47667:320::-;47762:7;47820;;47809;:18;;47787:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;47908:19;47930:10;:8;:10::i;:::-;47908:32;;47968:11;47958:7;:21;;;;:::i;:::-;47951:28;;;47667:320;;;:::o;15255:191::-;15329:16;15348:6;;;;;;;;;;;15329:25;;15374:8;15365:6;;:17;;;;;;;;;;;;;;;;;;15429:8;15398:40;;15419:8;15398:40;;;;;;;;;;;;15318:128;15255:191;:::o;58102:666::-;58174:1;58149:21;;:26;:49;;;;;58197:1;58179:14;;:19;58149:49;58200:7;58145:62;58251:21;;58219:29;:53;;;;58311:17;;58283:25;:45;;;;58358:8;;58339:16;:27;;;;58402:14;;58377:22;:39;;;;58451:13;;58427:21;:37;;;;58499:13;;58475:21;:37;;;;58545:11;;58523:19;:33;;;;58593:1;58569:21;:25;;;;58625:1;58605:17;:21;;;;58648:1;58637:8;:12;;;;58677:1;58660:14;:18;;;;58705:1;58689:13;:17;;;;58733:1;58717:13;:17;;;;58759:1;58745:11;:15;;;;58102:666;:::o;58776:389::-;58844:29;;58820:21;:53;;;;58904:25;;58884:17;:45;;;;58951:16;;58940:8;:27;;;;58995:22;;58978:14;:39;;;;59044:21;;59028:13;:37;;;;59092:21;;59076:13;:37;;;;59138:19;;59124:11;:33;;;;58776:389::o;52514:277::-;52609:7;52634:16;52694:8;;52677:14;;52653:21;;:38;;;;:::i;:::-;:49;;;;:::i;:::-;52634:68;;52713:16;52754:3;52742:8;52733:6;:17;;;;:::i;:::-;52732:25;;;;:::i;:::-;52713:44;;52775:8;52768:15;;;;52514:277;;;:::o;53919:161::-;53961:7;53982:15;53999;54018:19;:17;:19::i;:::-;53981:56;;;;54065:7;54055;:17;;;;:::i;:::-;54048:24;;;;53919:161;:::o;26940:125::-;;;;:::o;54758:1548::-;40394:4;40375:16;;:23;;;;;;;;;;;;;;;;;;54839:22:::1;54864:21;54839:46;;54896:22;54979:21;;54945:17;;54922:20;:40;;;;:::i;:::-;54921:79;;;;:::i;:::-;54896:104;;55013:21;55054:1;55037:14;:18;;;;:::i;:::-;55013:42;;55066:26;55112:13;55095:14;:30;;;;:::i;:::-;55066:59;;55136;55176:18;55153:20;:41;;;;:::i;:::-;55136:16;:59::i;:::-;55208:26;55261:14;55237:21;:38;;;;:::i;:::-;55208:67;;55288:203;55323:16;;;;;;;;;;;55477:1;55471:2;55451:17;;:22;;;;:::i;:::-;55450:28;;;;:::i;:::-;55444:2;55420:21;;:26;;;;:::i;:::-;:59;;;;:::i;:::-;55395:2;55379:13;;:18;;;;:::i;:::-;55356;55355:43;;;;:::i;:::-;55354:126;;;;:::i;:::-;55288:20;:203::i;:::-;55502;55537:16;;;;;;;;;;;55691:1;55685:2;55665:17;;:22;;;;:::i;:::-;55664:28;;;;:::i;:::-;55658:2;55634:21;;:26;;;;:::i;:::-;:59;;;;:::i;:::-;55609:2;55593:13;;:18;;;;:::i;:::-;55570;55569:43;;;;:::i;:::-;55568:126;;;;:::i;:::-;55502:20;:203::i;:::-;55716:199;55751:14;;;;;;;;;;;55901:1;55895:2;55875:17;;:22;;;;:::i;:::-;55874:28;;;;:::i;:::-;55868:2;55844:21;;:26;;;;:::i;:::-;:59;;;;:::i;:::-;55819:2;55805:11;;:16;;;;:::i;:::-;55782:18;55781:41;;;;:::i;:::-;55780:124;;;;:::i;:::-;55716:20;:199::i;:::-;55928:24;56097:1;56091:2;56071:17;;:22;;;;:::i;:::-;56070:28;;;;:::i;:::-;56063:2;56039:21;;:26;;;;:::i;:::-;56038:61;;;;:::i;:::-;56018:1;56012:2;55992:17;;:22;;;;:::i;:::-;55991:28;;;;:::i;:::-;55956:18;:64;;;;:::i;:::-;55955:145;;;;:::i;:::-;55928:172;;56113:50;56126:18;56146:16;56113:12;:50::i;:::-;56181:117;56210:13;56238:16;56269:18;56181:117;;;;;;;;:::i;:::-;;;;;;;;54828:1478;;;;;;40440:5:::0;40421:16;;:24;;;;;;;;;;;;;;;;;;54758:1548;:::o;50369:318::-;50515:7;50510:55;;50539:14;:12;:14::i;:::-;50510:55;50577:34;50595:4;50601:2;50605:5;50577:17;:34::i;:::-;50629:7;50624:56;;50653:15;:13;:15::i;:::-;50624:56;50369:318;;;;:::o;27669:124::-;;;;:::o;54088:662::-;54139:7;54148;54168:15;54186:7;;54168:25;;54204:15;54222:7;;54204:25;;54247:9;54242:366;54266:9;:16;;;;54262:1;:20;54242:366;;;54350:7;54326;:21;54334:9;54344:1;54334:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;54326:21;;;;;;;;;;;;;;;;:31;:83;;;;54402:7;54378;:21;54386:9;54396:1;54386:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;54378:21;;;;;;;;;;;;;;;;:31;54326:83;54304:181;;;54452:7;;54461;;54444:25;;;;;;;;;54304:181;54519:7;:21;54527:9;54537:1;54527:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;54519:21;;;;;;;;;;;;;;;;54509:7;:31;;;;:::i;:::-;54499:41;;54575:7;:21;54583:9;54593:1;54583:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;54575:21;;;;;;;;;;;;;;;;54565:7;:31;;;;:::i;:::-;54555:41;;54284:3;;;;;:::i;:::-;;;;54242:366;;;;54644:7;;54634;;:17;;;;:::i;:::-;54624:7;:27;54620:85;;;54676:7;;54685;;54668:25;;;;;;;;54620:85;54725:7;54734;54717:25;;;;;;54088:662;;;:::o;56314:658::-;56440:21;56478:1;56464:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56440:40;;56509:4;56491;56496:1;56491:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;56535:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56525:4;56530:1;56525:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;56570:62;56587:4;56602:15;56620:11;56570:8;:62::i;:::-;56671:15;:66;;;56752:11;56778:1;56822:4;56849;56885:15;56671:240;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56929:35;56946:11;56959:4;56929:35;;;;;;;:::i;:::-;;;;;;;;56369:603;56314:658;:::o;59587:140::-;59693:9;:18;;:26;59712:6;59693:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59587:140;;:::o;57581:513::-;57729:62;57746:4;57761:15;57779:11;57729:8;:62::i;:::-;57834:15;:31;;;57873:9;57906:4;57926:11;57952:1;57995;58038:7;:5;:7::i;:::-;58060:15;57834:252;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;57581:513;;:::o;50695:1250::-;50842:15;50872:23;50910;50948:19;50981:27;51000:7;50981:18;:27::i;:::-;50827:181;;;;;;;;51057:7;51039;:15;51047:6;51039:15;;;;;;;;;;;;;;;;:25;;;;:::i;:::-;51021:7;:15;51029:6;51021:15;;;;;;;;;;;;;;;:43;;;;51117:15;51096:7;:18;51104:9;51096:18;;;;;;;;;;;;;;;;:36;;;;:::i;:::-;51075:7;:18;51083:9;51075:18;;;;;;;;;;;;;;;:57;;;;51149:11;:19;51161:6;51149:19;;;;;;;;;;;;;;;;;;;;;;;;;:46;;;;;51173:11;:22;51185:9;51173:22;;;;;;;;;;;;;;;;;;;;;;;;;51172:23;51149:46;51145:463;;;51248:7;51230;:15;51238:6;51230:15;;;;;;;;;;;;;;;;:25;;;;:::i;:::-;51212:7;:15;51220:6;51212:15;;;;;;;;;;;;;;;:43;;;;51145:463;;;51278:11;:19;51290:6;51278:19;;;;;;;;;;;;;;;;;;;;;;;;;51277:20;:46;;;;;51301:11;:22;51313:9;51301:22;;;;;;;;;;;;;;;;;;;;;;;;;51277:46;51273:335;;;51382:15;51361:7;:18;51369:9;51361:18;;;;;;;;;;;;;;;;:36;;;;:::i;:::-;51340:7;:18;51348:9;51340:18;;;;;;;;;;;;;;;:57;;;;51273:335;;;51419:11;:19;51431:6;51419:19;;;;;;;;;;;;;;;;;;;;;;;;;:45;;;;;51442:11;:22;51454:9;51442:22;;;;;;;;;;;;;;;;;;;;;;;;;51419:45;51415:193;;;51517:7;51499;:15;51507:6;51499:15;;;;;;;;;;;;;;;;:25;;;;:::i;:::-;51481:7;:15;51489:6;51481:15;;;;;;;;;;;;;;;:43;;;;51581:15;51560:7;:18;51568:9;51560:18;;;;;;;;;;;;;;;;:36;;;;:::i;:::-;51539:7;:18;51547:9;51539:18;;;;;;;;;;;;;;;:57;;;;51415:193;51273:335;51145:463;51620:33;51632:7;51641:11;51620;:33::i;:::-;51664:45;51680:6;51688:7;51697:11;51664:15;:45::i;:::-;51720:155;51746:6;51767:7;51789:11;51815:21;;51859:4;51720:11;:155::i;:::-;51910:9;51893:44;;51902:6;51893:44;;;51921:15;51893:44;;;;;;:::i;:::-;;;;;;;;50816:1129;;;;50695:1250;;;:::o;52799:255::-;52877:12;52921:3;52903:14;;52893:7;:24;;;;:::i;:::-;52892:32;;;;:::i;:::-;52877:47;;52935:12;52957:11;52950:4;:18;;;;:::i;:::-;52935:33;;53001:4;52991:7;;:14;;;;:::i;:::-;52981:7;:24;;;;53042:4;53029:10;;:17;;;;:::i;:::-;53016:10;:30;;;;52866:188;;52799:255;;:::o;53062:425::-;53194:16;53236:3;53224:8;;53214:7;:18;;;;:::i;:::-;53213:26;;;;:::i;:::-;53194:45;;53265:1;53254:8;:12;53250:230;;;53283:16;53313:11;53302:8;:22;;;;:::i;:::-;53283:41;;53359:8;53349:7;;:18;;;;:::i;:::-;53339:7;:28;;;;53402:8;53392:7;;:18;;;;:::i;:::-;53382:7;:28;;;;53455:1;53430:38;;53439:6;53430:38;;;53459:8;53430:38;;;;;;:::i;:::-;;;;;;;;53268:212;53250:230;53183:304;53062:425;;;:::o;53495:416::-;53672:12;53705:3;53698;53688:7;:13;;;;:::i;:::-;53687:21;;;;:::i;:::-;53672:36;;53730:1;53723:4;:8;53719:185;;;53748:12;53770:11;53763:4;:18;;;;:::i;:::-;53748:33;;53836:4;53816:7;:17;53824:8;53816:17;;;;;;;;;;;;;;;;:24;;;;:::i;:::-;53796:7;:17;53804:8;53796:17;;;;;;;;;;;;;;;:44;;;;53877:8;53860:32;;53869:6;53860:32;;;53887:4;53860:32;;;;;;:::i;:::-;;;;;;;;53733:171;53719:185;53661:250;53495:416;;;;;:::o;88:117:1:-;197:1;194;187:12;334:77;371:7;400:5;389:16;;334:77;;;:::o;417:122::-;490:24;508:5;490:24;:::i;:::-;483:5;480:35;470:63;;529:1;526;519:12;470:63;417:122;:::o;545:139::-;591:5;629:6;616:20;607:29;;645:33;672:5;645:33;:::i;:::-;545:139;;;;:::o;690:329::-;749:6;798:2;786:9;777:7;773:23;769:32;766:119;;;804:79;;:::i;:::-;766:119;924:1;949:53;994:7;985:6;974:9;970:22;949:53;:::i;:::-;939:63;;895:117;690:329;;;;:::o;1025:99::-;1077:6;1111:5;1105:12;1095:22;;1025:99;;;:::o;1130:169::-;1214:11;1248:6;1243:3;1236:19;1288:4;1283:3;1279:14;1264:29;;1130:169;;;;:::o;1305:307::-;1373:1;1383:113;1397:6;1394:1;1391:13;1383:113;;;1482:1;1477:3;1473:11;1467:18;1463:1;1458:3;1454:11;1447:39;1419:2;1416:1;1412:10;1407:15;;1383:113;;;1514:6;1511:1;1508:13;1505:101;;;1594:1;1585:6;1580:3;1576:16;1569:27;1505:101;1354:258;1305:307;;;:::o;1618:102::-;1659:6;1710:2;1706:7;1701:2;1694:5;1690:14;1686:28;1676:38;;1618:102;;;:::o;1726:364::-;1814:3;1842:39;1875:5;1842:39;:::i;:::-;1897:71;1961:6;1956:3;1897:71;:::i;:::-;1890:78;;1977:52;2022:6;2017:3;2010:4;2003:5;1999:16;1977:52;:::i;:::-;2054:29;2076:6;2054:29;:::i;:::-;2049:3;2045:39;2038:46;;1818:272;1726:364;;;;:::o;2096:313::-;2209:4;2247:2;2236:9;2232:18;2224:26;;2296:9;2290:4;2286:20;2282:1;2271:9;2267:17;2260:47;2324:78;2397:4;2388:6;2324:78;:::i;:::-;2316:86;;2096:313;;;;:::o;2415:126::-;2452:7;2492:42;2485:5;2481:54;2470:65;;2415:126;;;:::o;2547:96::-;2584:7;2613:24;2631:5;2613:24;:::i;:::-;2602:35;;2547:96;;;:::o;2649:122::-;2722:24;2740:5;2722:24;:::i;:::-;2715:5;2712:35;2702:63;;2761:1;2758;2751:12;2702:63;2649:122;:::o;2777:139::-;2823:5;2861:6;2848:20;2839:29;;2877:33;2904:5;2877:33;:::i;:::-;2777:139;;;;:::o;2922:474::-;2990:6;2998;3047:2;3035:9;3026:7;3022:23;3018:32;3015:119;;;3053:79;;:::i;:::-;3015:119;3173:1;3198:53;3243:7;3234:6;3223:9;3219:22;3198:53;:::i;:::-;3188:63;;3144:117;3300:2;3326:53;3371:7;3362:6;3351:9;3347:22;3326:53;:::i;:::-;3316:63;;3271:118;2922:474;;;;;:::o;3402:90::-;3436:7;3479:5;3472:13;3465:21;3454:32;;3402:90;;;:::o;3498:109::-;3579:21;3594:5;3579:21;:::i;:::-;3574:3;3567:34;3498:109;;:::o;3613:210::-;3700:4;3738:2;3727:9;3723:18;3715:26;;3751:65;3813:1;3802:9;3798:17;3789:6;3751:65;:::i;:::-;3613:210;;;;:::o;3829:329::-;3888:6;3937:2;3925:9;3916:7;3912:23;3908:32;3905:119;;;3943:79;;:::i;:::-;3905:119;4063:1;4088:53;4133:7;4124:6;4113:9;4109:22;4088:53;:::i;:::-;4078:63;;4034:117;3829:329;;;;:::o;4164:60::-;4192:3;4213:5;4206:12;;4164:60;;;:::o;4230:142::-;4280:9;4313:53;4331:34;4340:24;4358:5;4340:24;:::i;:::-;4331:34;:::i;:::-;4313:53;:::i;:::-;4300:66;;4230:142;;;:::o;4378:126::-;4428:9;4461:37;4492:5;4461:37;:::i;:::-;4448:50;;4378:126;;;:::o;4510:153::-;4587:9;4620:37;4651:5;4620:37;:::i;:::-;4607:50;;4510:153;;;:::o;4669:185::-;4783:64;4841:5;4783:64;:::i;:::-;4778:3;4771:77;4669:185;;:::o;4860:276::-;4980:4;5018:2;5007:9;5003:18;4995:26;;5031:98;5126:1;5115:9;5111:17;5102:6;5031:98;:::i;:::-;4860:276;;;;:::o;5142:118::-;5229:24;5247:5;5229:24;:::i;:::-;5224:3;5217:37;5142:118;;:::o;5266:222::-;5359:4;5397:2;5386:9;5382:18;5374:26;;5410:71;5478:1;5467:9;5463:17;5454:6;5410:71;:::i;:::-;5266:222;;;;:::o;5494:619::-;5571:6;5579;5587;5636:2;5624:9;5615:7;5611:23;5607:32;5604:119;;;5642:79;;:::i;:::-;5604:119;5762:1;5787:53;5832:7;5823:6;5812:9;5808:22;5787:53;:::i;:::-;5777:63;;5733:117;5889:2;5915:53;5960:7;5951:6;5940:9;5936:22;5915:53;:::i;:::-;5905:63;;5860:118;6017:2;6043:53;6088:7;6079:6;6068:9;6064:22;6043:53;:::i;:::-;6033:63;;5988:118;5494:619;;;;;:::o;6119:118::-;6206:24;6224:5;6206:24;:::i;:::-;6201:3;6194:37;6119:118;;:::o;6243:222::-;6336:4;6374:2;6363:9;6359:18;6351:26;;6387:71;6455:1;6444:9;6440:17;6431:6;6387:71;:::i;:::-;6243:222;;;;:::o;6471:86::-;6506:7;6546:4;6539:5;6535:16;6524:27;;6471:86;;;:::o;6563:112::-;6646:22;6662:5;6646:22;:::i;:::-;6641:3;6634:35;6563:112;;:::o;6681:214::-;6770:4;6808:2;6797:9;6793:18;6785:26;;6821:67;6885:1;6874:9;6870:17;6861:6;6821:67;:::i;:::-;6681:214;;;;:::o;6901:116::-;6971:21;6986:5;6971:21;:::i;:::-;6964:5;6961:32;6951:60;;7007:1;7004;6997:12;6951:60;6901:116;:::o;7023:133::-;7066:5;7104:6;7091:20;7082:29;;7120:30;7144:5;7120:30;:::i;:::-;7023:133;;;;:::o;7162:468::-;7227:6;7235;7284:2;7272:9;7263:7;7259:23;7255:32;7252:119;;;7290:79;;:::i;:::-;7252:119;7410:1;7435:53;7480:7;7471:6;7460:9;7456:22;7435:53;:::i;:::-;7425:63;;7381:117;7537:2;7563:50;7605:7;7596:6;7585:9;7581:22;7563:50;:::i;:::-;7553:60;;7508:115;7162:468;;;;;:::o;7636:104::-;7681:7;7710:24;7728:5;7710:24;:::i;:::-;7699:35;;7636:104;;;:::o;7746:142::-;7849:32;7875:5;7849:32;:::i;:::-;7844:3;7837:45;7746:142;;:::o;7894:254::-;8003:4;8041:2;8030:9;8026:18;8018:26;;8054:87;8138:1;8127:9;8123:17;8114:6;8054:87;:::i;:::-;7894:254;;;;:::o;8154:323::-;8210:6;8259:2;8247:9;8238:7;8234:23;8230:32;8227:119;;;8265:79;;:::i;:::-;8227:119;8385:1;8410:50;8452:7;8443:6;8432:9;8428:22;8410:50;:::i;:::-;8400:60;;8356:114;8154:323;;;;:::o;8483:474::-;8551:6;8559;8608:2;8596:9;8587:7;8583:23;8579:32;8576:119;;;8614:79;;:::i;:::-;8576:119;8734:1;8759:53;8804:7;8795:6;8784:9;8780:22;8759:53;:::i;:::-;8749:63;;8705:117;8861:2;8887:53;8932:7;8923:6;8912:9;8908:22;8887:53;:::i;:::-;8877:63;;8832:118;8483:474;;;;;:::o;8963:231::-;9103:34;9099:1;9091:6;9087:14;9080:58;9172:14;9167:2;9159:6;9155:15;9148:39;8963:231;:::o;9200:366::-;9342:3;9363:67;9427:2;9422:3;9363:67;:::i;:::-;9356:74;;9439:93;9528:3;9439:93;:::i;:::-;9557:2;9552:3;9548:12;9541:19;;9200:366;;;:::o;9572:419::-;9738:4;9776:2;9765:9;9761:18;9753:26;;9825:9;9819:4;9815:20;9811:1;9800:9;9796:17;9789:47;9853:131;9979:4;9853:131;:::i;:::-;9845:139;;9572:419;;;:::o;9997:180::-;10045:77;10042:1;10035:88;10142:4;10139:1;10132:15;10166:4;10163:1;10156:15;10183:191;10223:4;10243:20;10261:1;10243:20;:::i;:::-;10238:25;;10277:20;10295:1;10277:20;:::i;:::-;10272:25;;10316:1;10313;10310:8;10307:34;;;10321:18;;:::i;:::-;10307:34;10366:1;10363;10359:9;10351:17;;10183:191;;;;:::o;10380:305::-;10420:3;10439:20;10457:1;10439:20;:::i;:::-;10434:25;;10473:20;10491:1;10473:20;:::i;:::-;10468:25;;10627:1;10559:66;10555:74;10552:1;10549:81;10546:107;;;10633:18;;:::i;:::-;10546:107;10677:1;10674;10670:9;10663:16;;10380:305;;;;:::o;10691:180::-;10739:77;10736:1;10729:88;10836:4;10833:1;10826:15;10860:4;10857:1;10850:15;10877:320;10921:6;10958:1;10952:4;10948:12;10938:22;;11005:1;10999:4;10995:12;11026:18;11016:81;;11082:4;11074:6;11070:17;11060:27;;11016:81;11144:2;11136:6;11133:14;11113:18;11110:38;11107:84;;11163:18;;:::i;:::-;11107:84;10928:269;10877:320;;;:::o;11203:182::-;11343:34;11339:1;11331:6;11327:14;11320:58;11203:182;:::o;11391:366::-;11533:3;11554:67;11618:2;11613:3;11554:67;:::i;:::-;11547:74;;11630:93;11719:3;11630:93;:::i;:::-;11748:2;11743:3;11739:12;11732:19;;11391:366;;;:::o;11763:419::-;11929:4;11967:2;11956:9;11952:18;11944:26;;12016:9;12010:4;12006:20;12002:1;11991:9;11987:17;11980:47;12044:131;12170:4;12044:131;:::i;:::-;12036:139;;11763:419;;;:::o;12188:227::-;12328:34;12324:1;12316:6;12312:14;12305:58;12397:10;12392:2;12384:6;12380:15;12373:35;12188:227;:::o;12421:366::-;12563:3;12584:67;12648:2;12643:3;12584:67;:::i;:::-;12577:74;;12660:93;12749:3;12660:93;:::i;:::-;12778:2;12773:3;12769:12;12762:19;;12421:366;;;:::o;12793:419::-;12959:4;12997:2;12986:9;12982:18;12974:26;;13046:9;13040:4;13036:20;13032:1;13021:9;13017:17;13010:47;13074:131;13200:4;13074:131;:::i;:::-;13066:139;;12793:419;;;:::o;13218:181::-;13358:33;13354:1;13346:6;13342:14;13335:57;13218:181;:::o;13405:366::-;13547:3;13568:67;13632:2;13627:3;13568:67;:::i;:::-;13561:74;;13644:93;13733:3;13644:93;:::i;:::-;13762:2;13757:3;13753:12;13746:19;;13405:366;;;:::o;13777:419::-;13943:4;13981:2;13970:9;13966:18;13958:26;;14030:9;14024:4;14020:20;14016:1;14005:9;14001:17;13994:47;14058:131;14184:4;14058:131;:::i;:::-;14050:139;;13777:419;;;:::o;14202:177::-;14342:29;14338:1;14330:6;14326:14;14319:53;14202:177;:::o;14385:366::-;14527:3;14548:67;14612:2;14607:3;14548:67;:::i;:::-;14541:74;;14624:93;14713:3;14624:93;:::i;:::-;14742:2;14737:3;14733:12;14726:19;;14385:366;;;:::o;14757:419::-;14923:4;14961:2;14950:9;14946:18;14938:26;;15010:9;15004:4;15000:20;14996:1;14985:9;14981:17;14974:47;15038:131;15164:4;15038:131;:::i;:::-;15030:139;;14757:419;;;:::o;15182:223::-;15322:34;15318:1;15310:6;15306:14;15299:58;15391:6;15386:2;15378:6;15374:15;15367:31;15182:223;:::o;15411:366::-;15553:3;15574:67;15638:2;15633:3;15574:67;:::i;:::-;15567:74;;15650:93;15739:3;15650:93;:::i;:::-;15768:2;15763:3;15759:12;15752:19;;15411:366;;;:::o;15783:419::-;15949:4;15987:2;15976:9;15972:18;15964:26;;16036:9;16030:4;16026:20;16022:1;16011:9;16007:17;16000:47;16064:131;16190:4;16064:131;:::i;:::-;16056:139;;15783:419;;;:::o;16208:224::-;16348:34;16344:1;16336:6;16332:14;16325:58;16417:7;16412:2;16404:6;16400:15;16393:32;16208:224;:::o;16438:366::-;16580:3;16601:67;16665:2;16660:3;16601:67;:::i;:::-;16594:74;;16677:93;16766:3;16677:93;:::i;:::-;16795:2;16790:3;16786:12;16779:19;;16438:366;;;:::o;16810:419::-;16976:4;17014:2;17003:9;16999:18;16991:26;;17063:9;17057:4;17053:20;17049:1;17038:9;17034:17;17027:47;17091:131;17217:4;17091:131;:::i;:::-;17083:139;;16810:419;;;:::o;17235:225::-;17375:34;17371:1;17363:6;17359:14;17352:58;17444:8;17439:2;17431:6;17427:15;17420:33;17235:225;:::o;17466:366::-;17608:3;17629:67;17693:2;17688:3;17629:67;:::i;:::-;17622:74;;17705:93;17794:3;17705:93;:::i;:::-;17823:2;17818:3;17814:12;17807:19;;17466:366;;;:::o;17838:419::-;18004:4;18042:2;18031:9;18027:18;18019:26;;18091:9;18085:4;18081:20;18077:1;18066:9;18062:17;18055:47;18119:131;18245:4;18119:131;:::i;:::-;18111:139;;17838:419;;;:::o;18263:177::-;18403:29;18399:1;18391:6;18387:14;18380:53;18263:177;:::o;18446:366::-;18588:3;18609:67;18673:2;18668:3;18609:67;:::i;:::-;18602:74;;18685:93;18774:3;18685:93;:::i;:::-;18803:2;18798:3;18794:12;18787:19;;18446:366;;;:::o;18818:419::-;18984:4;19022:2;19011:9;19007:18;18999:26;;19071:9;19065:4;19061:20;19057:1;19046:9;19042:17;19035:47;19099:131;19225:4;19099:131;:::i;:::-;19091:139;;18818:419;;;:::o;19243:180::-;19291:77;19288:1;19281:88;19388:4;19385:1;19378:15;19412:4;19409:1;19402:15;19429:180;19477:77;19474:1;19467:88;19574:4;19571:1;19564:15;19598:4;19595:1;19588:15;19615:233;19654:3;19677:24;19695:5;19677:24;:::i;:::-;19668:33;;19723:66;19716:5;19713:77;19710:103;;19793:18;;:::i;:::-;19710:103;19840:1;19833:5;19829:13;19822:20;;19615:233;;;:::o;19854:348::-;19894:7;19917:20;19935:1;19917:20;:::i;:::-;19912:25;;19951:20;19969:1;19951:20;:::i;:::-;19946:25;;20139:1;20071:66;20067:74;20064:1;20061:81;20056:1;20049:9;20042:17;20038:105;20035:131;;;20146:18;;:::i;:::-;20035:131;20194:1;20191;20187:9;20176:20;;19854:348;;;;:::o;20208:223::-;20348:34;20344:1;20336:6;20332:14;20325:58;20417:6;20412:2;20404:6;20400:15;20393:31;20208:223;:::o;20437:366::-;20579:3;20600:67;20664:2;20659:3;20600:67;:::i;:::-;20593:74;;20676:93;20765:3;20676:93;:::i;:::-;20794:2;20789:3;20785:12;20778:19;;20437:366;;;:::o;20809:419::-;20975:4;21013:2;21002:9;20998:18;20990:26;;21062:9;21056:4;21052:20;21048:1;21037:9;21033:17;21026:47;21090:131;21216:4;21090:131;:::i;:::-;21082:139;;20809:419;;;:::o;21234:221::-;21374:34;21370:1;21362:6;21358:14;21351:58;21443:4;21438:2;21430:6;21426:15;21419:29;21234:221;:::o;21461:366::-;21603:3;21624:67;21688:2;21683:3;21624:67;:::i;:::-;21617:74;;21700:93;21789:3;21700:93;:::i;:::-;21818:2;21813:3;21809:12;21802:19;;21461:366;;;:::o;21833:419::-;21999:4;22037:2;22026:9;22022:18;22014:26;;22086:9;22080:4;22076:20;22072:1;22061:9;22057:17;22050:47;22114:131;22240:4;22114:131;:::i;:::-;22106:139;;21833:419;;;:::o;22258:224::-;22398:34;22394:1;22386:6;22382:14;22375:58;22467:7;22462:2;22454:6;22450:15;22443:32;22258:224;:::o;22488:366::-;22630:3;22651:67;22715:2;22710:3;22651:67;:::i;:::-;22644:74;;22727:93;22816:3;22727:93;:::i;:::-;22845:2;22840:3;22836:12;22829:19;;22488:366;;;:::o;22860:419::-;23026:4;23064:2;23053:9;23049:18;23041:26;;23113:9;23107:4;23103:20;23099:1;23088:9;23084:17;23077:47;23141:131;23267:4;23141:131;:::i;:::-;23133:139;;22860:419;;;:::o;23285:222::-;23425:34;23421:1;23413:6;23409:14;23402:58;23494:5;23489:2;23481:6;23477:15;23470:30;23285:222;:::o;23513:366::-;23655:3;23676:67;23740:2;23735:3;23676:67;:::i;:::-;23669:74;;23752:93;23841:3;23752:93;:::i;:::-;23870:2;23865:3;23861:12;23854:19;;23513:366;;;:::o;23885:419::-;24051:4;24089:2;24078:9;24074:18;24066:26;;24138:9;24132:4;24128:20;24124:1;24113:9;24109:17;24102:47;24166:131;24292:4;24166:131;:::i;:::-;24158:139;;23885:419;;;:::o;24310:228::-;24450:34;24446:1;24438:6;24434:14;24427:58;24519:11;24514:2;24506:6;24502:15;24495:36;24310:228;:::o;24544:366::-;24686:3;24707:67;24771:2;24766:3;24707:67;:::i;:::-;24700:74;;24783:93;24872:3;24783:93;:::i;:::-;24901:2;24896:3;24892:12;24885:19;;24544:366;;;:::o;24916:419::-;25082:4;25120:2;25109:9;25105:18;25097:26;;25169:9;25163:4;25159:20;25155:1;25144:9;25140:17;25133:47;25197:131;25323:4;25197:131;:::i;:::-;25189:139;;24916:419;;;:::o;25341:225::-;25481:34;25477:1;25469:6;25465:14;25458:58;25550:8;25545:2;25537:6;25533:15;25526:33;25341:225;:::o;25572:366::-;25714:3;25735:67;25799:2;25794:3;25735:67;:::i;:::-;25728:74;;25811:93;25900:3;25811:93;:::i;:::-;25929:2;25924:3;25920:12;25913:19;;25572:366;;;:::o;25944:419::-;26110:4;26148:2;26137:9;26133:18;26125:26;;26197:9;26191:4;26187:20;26183:1;26172:9;26168:17;26161:47;26225:131;26351:4;26225:131;:::i;:::-;26217:139;;25944:419;;;:::o;26369:227::-;26509:34;26505:1;26497:6;26493:14;26486:58;26578:10;26573:2;26565:6;26561:15;26554:35;26369:227;:::o;26602:366::-;26744:3;26765:67;26829:2;26824:3;26765:67;:::i;:::-;26758:74;;26841:93;26930:3;26841:93;:::i;:::-;26959:2;26954:3;26950:12;26943:19;;26602:366;;;:::o;26974:419::-;27140:4;27178:2;27167:9;27163:18;27155:26;;27227:9;27221:4;27217:20;27213:1;27202:9;27198:17;27191:47;27255:131;27381:4;27255:131;:::i;:::-;27247:139;;26974:419;;;:::o;27399:220::-;27539:34;27535:1;27527:6;27523:14;27516:58;27608:3;27603:2;27595:6;27591:15;27584:28;27399:220;:::o;27625:366::-;27767:3;27788:67;27852:2;27847:3;27788:67;:::i;:::-;27781:74;;27864:93;27953:3;27864:93;:::i;:::-;27982:2;27977:3;27973:12;27966:19;;27625:366;;;:::o;27997:419::-;28163:4;28201:2;28190:9;28186:18;28178:26;;28250:9;28244:4;28240:20;28236:1;28225:9;28221:17;28214:47;28278:131;28404:4;28278:131;:::i;:::-;28270:139;;27997:419;;;:::o;28422:221::-;28562:34;28558:1;28550:6;28546:14;28539:58;28631:4;28626:2;28618:6;28614:15;28607:29;28422:221;:::o;28649:366::-;28791:3;28812:67;28876:2;28871:3;28812:67;:::i;:::-;28805:74;;28888:93;28977:3;28888:93;:::i;:::-;29006:2;29001:3;28997:12;28990:19;;28649:366;;;:::o;29021:419::-;29187:4;29225:2;29214:9;29210:18;29202:26;;29274:9;29268:4;29264:20;29260:1;29249:9;29245:17;29238:47;29302:131;29428:4;29302:131;:::i;:::-;29294:139;;29021:419;;;:::o;29446:229::-;29586:34;29582:1;29574:6;29570:14;29563:58;29655:12;29650:2;29642:6;29638:15;29631:37;29446:229;:::o;29681:366::-;29823:3;29844:67;29908:2;29903:3;29844:67;:::i;:::-;29837:74;;29920:93;30009:3;29920:93;:::i;:::-;30038:2;30033:3;30029:12;30022:19;;29681:366;;;:::o;30053:419::-;30219:4;30257:2;30246:9;30242:18;30234:26;;30306:9;30300:4;30296:20;30292:1;30281:9;30277:17;30270:47;30334:131;30460:4;30334:131;:::i;:::-;30326:139;;30053:419;;;:::o;30478:180::-;30526:77;30523:1;30516:88;30623:4;30620:1;30613:15;30647:4;30644:1;30637:15;30664:185;30704:1;30721:20;30739:1;30721:20;:::i;:::-;30716:25;;30755:20;30773:1;30755:20;:::i;:::-;30750:25;;30794:1;30784:35;;30799:18;;:::i;:::-;30784:35;30841:1;30838;30834:9;30829:14;;30664:185;;;;:::o;30855:442::-;31004:4;31042:2;31031:9;31027:18;31019:26;;31055:71;31123:1;31112:9;31108:17;31099:6;31055:71;:::i;:::-;31136:72;31204:2;31193:9;31189:18;31180:6;31136:72;:::i;:::-;31218;31286:2;31275:9;31271:18;31262:6;31218:72;:::i;:::-;30855:442;;;;;;:::o;31303:180::-;31351:77;31348:1;31341:88;31448:4;31445:1;31438:15;31472:4;31469:1;31462:15;31489:143;31546:5;31577:6;31571:13;31562:22;;31593:33;31620:5;31593:33;:::i;:::-;31489:143;;;;:::o;31638:351::-;31708:6;31757:2;31745:9;31736:7;31732:23;31728:32;31725:119;;;31763:79;;:::i;:::-;31725:119;31883:1;31908:64;31964:7;31955:6;31944:9;31940:22;31908:64;:::i;:::-;31898:74;;31854:128;31638:351;;;;:::o;31995:85::-;32040:7;32069:5;32058:16;;31995:85;;;:::o;32086:158::-;32144:9;32177:61;32195:42;32204:32;32230:5;32204:32;:::i;:::-;32195:42;:::i;:::-;32177:61;:::i;:::-;32164:74;;32086:158;;;:::o;32250:147::-;32345:45;32384:5;32345:45;:::i;:::-;32340:3;32333:58;32250:147;;:::o;32403:114::-;32470:6;32504:5;32498:12;32488:22;;32403:114;;;:::o;32523:184::-;32622:11;32656:6;32651:3;32644:19;32696:4;32691:3;32687:14;32672:29;;32523:184;;;;:::o;32713:132::-;32780:4;32803:3;32795:11;;32833:4;32828:3;32824:14;32816:22;;32713:132;;;:::o;32851:108::-;32928:24;32946:5;32928:24;:::i;:::-;32923:3;32916:37;32851:108;;:::o;32965:179::-;33034:10;33055:46;33097:3;33089:6;33055:46;:::i;:::-;33133:4;33128:3;33124:14;33110:28;;32965:179;;;;:::o;33150:113::-;33220:4;33252;33247:3;33243:14;33235:22;;33150:113;;;:::o;33299:732::-;33418:3;33447:54;33495:5;33447:54;:::i;:::-;33517:86;33596:6;33591:3;33517:86;:::i;:::-;33510:93;;33627:56;33677:5;33627:56;:::i;:::-;33706:7;33737:1;33722:284;33747:6;33744:1;33741:13;33722:284;;;33823:6;33817:13;33850:63;33909:3;33894:13;33850:63;:::i;:::-;33843:70;;33936:60;33989:6;33936:60;:::i;:::-;33926:70;;33782:224;33769:1;33766;33762:9;33757:14;;33722:284;;;33726:14;34022:3;34015:10;;33423:608;;;33299:732;;;;:::o;34037:831::-;34300:4;34338:3;34327:9;34323:19;34315:27;;34352:71;34420:1;34409:9;34405:17;34396:6;34352:71;:::i;:::-;34433:80;34509:2;34498:9;34494:18;34485:6;34433:80;:::i;:::-;34560:9;34554:4;34550:20;34545:2;34534:9;34530:18;34523:48;34588:108;34691:4;34682:6;34588:108;:::i;:::-;34580:116;;34706:72;34774:2;34763:9;34759:18;34750:6;34706:72;:::i;:::-;34788:73;34856:3;34845:9;34841:19;34832:6;34788:73;:::i;:::-;34037:831;;;;;;;;:::o;34874:483::-;35045:4;35083:2;35072:9;35068:18;35060:26;;35096:71;35164:1;35153:9;35149:17;35140:6;35096:71;:::i;:::-;35214:9;35208:4;35204:20;35199:2;35188:9;35184:18;35177:48;35242:108;35345:4;35336:6;35242:108;:::i;:::-;35234:116;;34874:483;;;;;:::o;35363:807::-;35612:4;35650:3;35639:9;35635:19;35627:27;;35664:71;35732:1;35721:9;35717:17;35708:6;35664:71;:::i;:::-;35745:72;35813:2;35802:9;35798:18;35789:6;35745:72;:::i;:::-;35827:80;35903:2;35892:9;35888:18;35879:6;35827:80;:::i;:::-;35917;35993:2;35982:9;35978:18;35969:6;35917:80;:::i;:::-;36007:73;36075:3;36064:9;36060:19;36051:6;36007:73;:::i;:::-;36090;36158:3;36147:9;36143:19;36134:6;36090:73;:::i;:::-;35363:807;;;;;;;;;:::o;36176:143::-;36233:5;36264:6;36258:13;36249:22;;36280:33;36307:5;36280:33;:::i;:::-;36176:143;;;;:::o;36325:663::-;36413:6;36421;36429;36478:2;36466:9;36457:7;36453:23;36449:32;36446:119;;;36484:79;;:::i;:::-;36446:119;36604:1;36629:64;36685:7;36676:6;36665:9;36661:22;36629:64;:::i;:::-;36619:74;;36575:128;36742:2;36768:64;36824:7;36815:6;36804:9;36800:22;36768:64;:::i;:::-;36758:74;;36713:129;36881:2;36907:64;36963:7;36954:6;36943:9;36939:22;36907:64;:::i;:::-;36897:74;;36852:129;36325:663;;;;;:::o

Swarm Source

ipfs://989dc32cf788b9968b028375b176439272202aeee4d76229106544df3549c7fa
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.