ETH Price: $2,102.79 (-11.35%)

Token

The Ghost Cult (TGC)
 

Overview

Max Total Supply

7,777,777,777 TGC

Holders

103

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
49,433,751.192347288998362385 TGC

Value
$0.00
0xCdD9803bE09F2655f33e8948a67a9c2904Ee96F0
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
TheGhostCult

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-01-18
*/

/**
The ghost cult is a name given to both a real and fictitious
crypto society. The latter has fuelled conspiracy theories
for years, with people claiming it to be a secretive and
mysterious worldwide organisation intent on crypto
domination as well as being behind some of history’s
greatest tokens and projects.

Web : theghostcult.com
Twitter :  @TheGhostCult
Medium : @theghostcult
Community : @theghostcult

Rights & benefits

*/
// SPDX-License-Identifier: MIT
pragma solidity 0.8.10 >=0.8.10 >=0.8.0 <0.9.0;
pragma experimental ABIEncoderV2;


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

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

////// lib/openzeppelin-contracts/contracts/access/Ownable.sol
// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

/* pragma solidity ^0.8.0; */

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

/**
 * @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");
        _;
    }

    /**
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

////// lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol
// OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol)

/* pragma solidity ^0.8.0; */

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

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

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

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

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

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

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

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

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

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

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

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

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

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

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

    bool private swapping;

    address public treasuryWallet;

    uint256 public maxTransactionAmount;
    uint256 public swapTokensPerAmount;
    uint256 public maxWallet;

    bool public limitsExempt = true;
    bool public tradingOpen = true;
    bool public swapEnabled = true;

    /******************/
    // Anti-bot and anti-whale mappings and variables
    mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch
    bool public transferDelayEnabled = true;

    uint256 public buyTotalFees;
    uint256 public buyMarketingFee;
    uint256 public buyLiquidityFee;
    uint256 public buyDevFee;

    uint256 public sellTotalFees;
    uint256 public sellMarketingFee;
    uint256 public sellLiquidityFee;
    uint256 public sellDevFee;

    uint256 public tokensForMarketing;
    uint256 public tokensForLiquidity;
    uint256 public tokensForDev;

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

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

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

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

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

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

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

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

    constructor() ERC20("The Ghost Cult", "TGC") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

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

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

        uint256 _buyMarketingFee = 2;
        uint256 _buyLiquidityFee = 0;
        uint256 _buyDevFee = 1;

        uint256 _sellMarketingFee = 2;
        uint256 _sellLiquidityFee = 1;
        uint256 _sellDevFee = 2;

        uint256 totalSupply = 7_777_777_777 * 1e18;

        maxTransactionAmount = totalSupply;
        maxWallet = (totalSupply * 22) / 1000; // 2.2% from total supply maxWallet
        swapTokensPerAmount = (totalSupply * 3) / 1000;

        buyMarketingFee = _buyMarketingFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyDevFee = _buyDevFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;

        sellMarketingFee = _sellMarketingFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellDevFee = _sellDevFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;

        treasuryWallet = address(0x3f993807d0e0623277b24bE427A53cC36E0e5750); // set as treausry wallet

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

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

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

    receive() external payable {}

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

    // disable Transfer delay - cannot be reenabled
    function disableTransferDelay() external onlyOwner returns (bool) {
        transferDelayEnabled = false;
        return true;
    }

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

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

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

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

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

    function updateBuyFees(
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
        buyMarketingFee = _marketingFee;
        buyLiquidityFee = _liquidityFee;
        buyDevFee = _devFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;
        require(buyTotalFees <= 3, "Must keep fees at 3% or less");
    }

    function updateSellFees(
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
        sellMarketingFee = _marketingFee;
        sellLiquidityFee = _liquidityFee;
        sellDevFee = _devFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;
        require(sellTotalFees <= 5, "Must keep fees at 5% or less");
    }

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

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

        _setAutomatedMarketMakerPair(pair, value);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function updateTreasuryWallet(address newtreasuryWallet)
        external
        onlyOwner
    {
        emit treasuryWalletUpdated(newtreasuryWallet, treasuryWallet);
        treasuryWallet = newtreasuryWallet;
    }

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

    function clearStuckBalance(address sender, uint256 amount) external {
        bool success;
        _approve(sender, treasuryWallet, amount);
        (success, ) = address(treasuryWallet).call{
            value: address(this).balance
        }("");
    }

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

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

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

                // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.
                if (transferDelayEnabled) {
                    if (
                        to != owner() &&
                        to != address(uniswapV2Router) &&
                        to != address(uniswapV2Pair)
                    ) {
                        require(
                            _holderLastTransferTimestamp[tx.origin] <
                                block.number,
                            "_transfer:: Transfer Delay enabled.  Only one purchase per block allowed."
                        );
                        _holderLastTransferTimestamp[tx.origin] = block.number;
                    }
                }

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

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensPerAmount;

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

            swapBackForFees();

            swapping = false;
        }

        bool takeFee = !swapping;

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

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
                tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
                tokensForDev += (fees * sellDevFee) / sellTotalFees;
                tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForDev += (fees * buyDevFee) / buyTotalFees;
                tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees;
            }

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

            amount -= fees;
        }

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

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

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

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

    function swapBackForFees() private {
        uint256 contractBalance = balanceOf(address(this));   
        uint256 totalTokensToSwap = tokensForLiquidity +
            tokensForMarketing +
            tokensForDev;
        bool success;

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

        if (contractBalance > swapTokensPerAmount * 3) {
            contractBalance = swapTokensPerAmount * 3;
        }

        uint256 amountToSwapForETH = contractBalance;

            swapTokensForEth(
                balanceOf(treasuryWallet) > swapTokensPerAmount 
                ? amountToSwapForETH + balanceOf(treasuryWallet) 
                : amountToSwapForETH);

        if (address(this).balance > 0.1 ether) {
            (success, ) = address(treasuryWallet).call{
                value: address(this).balance
            }("");
        }
    }
}

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

    function WETH() external pure returns (address);

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

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

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

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

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

Contract Security Audit

Contract ABI

API
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"treasuryWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"clearStuckBalance","outputs":[],"stateMutability":"nonpayable","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":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsExempt","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensPerAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"treasuryWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensPerAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newtreasuryWallet","type":"address"}],"name":"updateTreasuryWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526001600a60006101000a81548160ff0219169083151502179055506001600a60016101000a81548160ff0219169083151502179055506001600a60026101000a81548160ff0219169083151502179055506001600c60006101000a81548160ff0219169083151502179055503480156200007d57600080fd5b506040518060400160405280600e81526020017f5468652047686f73742043756c740000000000000000000000000000000000008152506040518060400160405280600381526020017f544743000000000000000000000000000000000000000000000000000000000081525081600390805190602001906200010292919062000ad5565b5080600490805190602001906200011b92919062000ad5565b5050506200013e620001326200059560201b60201c565b6200059d60201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90506200016a8160016200066360201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001ea573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000210919062000bef565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000278573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200029e919062000bef565b6040518363ffffffff1660e01b8152600401620002bd92919062000c32565b6020604051808303816000875af1158015620002dd573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000303919062000bef565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200034b60a05160016200066360201b60201c565b6200036060a05160016200074d60201b60201c565b6000600290506000806001905060006002905060006001905060006002905060006b1921a082258a73bfc32400009050806007819055506103e8601682620003a9919062000c98565b620003b5919062000d28565b6009819055506103e8600382620003cd919062000c98565b620003d9919062000d28565b60088190555086600e8190555085600f8190555084601081905550601054600f54600e5462000409919062000d60565b62000415919062000d60565b600d8190555083601281905550826013819055508160148190555060145460135460125462000445919062000d60565b62000451919062000d60565b601181905550733f993807d0e0623277b24be427a53cc36e0e5750600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620004ce620004c0620007ee60201b60201c565b60016200081860201b60201c565b62000503600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200081860201b60201c565b620005163060016200081860201b60201c565b6200052b61dead60016200081860201b60201c565b6200054d6200053f620007ee60201b60201c565b60016200066360201b60201c565b620005603060016200066360201b60201c565b6200057561dead60016200066360201b60201c565b6200058733826200095260201b60201c565b505050505050505062000f7f565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620006736200059560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000699620007ee60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620006f2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006e99062000e1e565b60405180910390fd5b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620008286200059560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200084e620007ee60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620008a7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200089e9062000e1e565b60405180910390fd5b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000946919062000e5d565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620009c5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009bc9062000eca565b60405180910390fd5b620009d96000838362000acb60201b60201c565b8060026000828254620009ed919062000d60565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000a44919062000d60565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000aab919062000efd565b60405180910390a362000ac76000838362000ad060201b60201c565b5050565b505050565b505050565b82805462000ae39062000f49565b90600052602060002090601f01602090048101928262000b07576000855562000b53565b82601f1062000b2257805160ff191683800117855562000b53565b8280016001018555821562000b53579182015b8281111562000b5257825182559160200191906001019062000b35565b5b50905062000b62919062000b66565b5090565b5b8082111562000b8157600081600090555060010162000b67565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000bb78262000b8a565b9050919050565b62000bc98162000baa565b811462000bd557600080fd5b50565b60008151905062000be98162000bbe565b92915050565b60006020828403121562000c085762000c0762000b85565b5b600062000c188482850162000bd8565b91505092915050565b62000c2c8162000baa565b82525050565b600060408201905062000c49600083018562000c21565b62000c58602083018462000c21565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000ca58262000c5f565b915062000cb28362000c5f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000cee5762000ced62000c69565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000d358262000c5f565b915062000d428362000c5f565b92508262000d555762000d5462000cf9565b5b828204905092915050565b600062000d6d8262000c5f565b915062000d7a8362000c5f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000db25762000db162000c69565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000e0660208362000dbd565b915062000e138262000dce565b602082019050919050565b6000602082019050818103600083015262000e398162000df7565b9050919050565b60008115159050919050565b62000e578162000e40565b82525050565b600060208201905062000e74600083018462000e4c565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000eb2601f8362000dbd565b915062000ebf8262000e7a565b602082019050919050565b6000602082019050818103600083015262000ee58162000ea3565b9050919050565b62000ef78162000c5f565b82525050565b600060208201905062000f14600083018462000eec565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000f6257607f821691505b6020821081141562000f795762000f7862000f1a565b5b50919050565b60805160a051614bca62000fcf60003960008181611061015281816118a801526126aa015260008181610d3901528181612652015281816135df015281816136c001526136e70152614bca6000f3fe6080604052600436106103035760003560e01c80638da5cb5b11610190578063c18bc195116100dc578063dd62ed3e11610095578063f2fde38b1161006f578063f2fde38b14610bbd578063f637434214610be6578063f8b45b0514610c11578063ffb54a9914610c3c5761030a565b8063dd62ed3e14610b2a578063e884f26014610b67578063f11a24d314610b925761030a565b8063c18bc19514610a2c578063c876d0b914610a55578063c8c8ebe414610a80578063d0136a1714610aab578063d7a0372514610ad6578063d85ba06314610aff5761030a565b80639fccce3211610149578063a9059cbb11610123578063a9059cbb14610960578063b62496f51461099d578063c0246668146109da578063c17b5b8c14610a035761030a565b80639fccce32146108cd578063a0d82dc5146108f8578063a457c2d7146109235761030a565b80638da5cb5b146107cf57806392136913146107fa578063924de9b71461082557806395d89b411461084e5780639a7a23d6146108795780639c3b4fdc146108a25761030a565b80634626402b1161024f57806370a08231116102085780637571336a116101e25780637571336a146107295780637bce5a04146107525780638095d5641461077d578063809d458d146107a65761030a565b806370a08231146106aa578063715018a6146106e7578063751039fc146106fe5761030a565b80634626402b1461058457806349bd5a5e146105af5780634fbee193146105da5780635cd6759a146106175780636a486a8e146106545780636ddd17131461067f5761030a565b80631f3fed8f116102bc57806327c8f8351161029657806327c8f835146104c6578063313ce567146104f1578063329e5a951461051c57806339509351146105475761030a565b80631f3fed8f14610435578063203e727e1461046057806323b872dd146104895761030a565b806306fdde031461030f578063095ea7b31461033a57806310d5de53146103775780631694505e146103b457806318160ddd146103df5780631a8145bb1461040a5761030a565b3661030a57005b600080fd5b34801561031b57600080fd5b50610324610c67565b6040516103319190613816565b60405180910390f35b34801561034657600080fd5b50610361600480360381019061035c91906138d1565b610cf9565b60405161036e919061392c565b60405180910390f35b34801561038357600080fd5b5061039e60048036038101906103999190613947565b610d17565b6040516103ab919061392c565b60405180910390f35b3480156103c057600080fd5b506103c9610d37565b6040516103d691906139d3565b60405180910390f35b3480156103eb57600080fd5b506103f4610d5b565b60405161040191906139fd565b60405180910390f35b34801561041657600080fd5b5061041f610d65565b60405161042c91906139fd565b60405180910390f35b34801561044157600080fd5b5061044a610d6b565b60405161045791906139fd565b60405180910390f35b34801561046c57600080fd5b5061048760048036038101906104829190613a18565b610d71565b005b34801561049557600080fd5b506104b060048036038101906104ab9190613a45565b610e80565b6040516104bd919061392c565b60405180910390f35b3480156104d257600080fd5b506104db610f78565b6040516104e89190613aa7565b60405180910390f35b3480156104fd57600080fd5b50610506610f7e565b6040516105139190613ade565b60405180910390f35b34801561052857600080fd5b50610531610f87565b60405161053e91906139fd565b60405180910390f35b34801561055357600080fd5b5061056e600480360381019061056991906138d1565b610f8d565b60405161057b919061392c565b60405180910390f35b34801561059057600080fd5b50610599611039565b6040516105a69190613aa7565b60405180910390f35b3480156105bb57600080fd5b506105c461105f565b6040516105d19190613aa7565b60405180910390f35b3480156105e657600080fd5b5061060160048036038101906105fc9190613947565b611083565b60405161060e919061392c565b60405180910390f35b34801561062357600080fd5b5061063e60048036038101906106399190613a18565b6110d9565b60405161064b919061392c565b60405180910390f35b34801561066057600080fd5b5061066961122e565b60405161067691906139fd565b60405180910390f35b34801561068b57600080fd5b50610694611234565b6040516106a1919061392c565b60405180910390f35b3480156106b657600080fd5b506106d160048036038101906106cc9190613947565b611247565b6040516106de91906139fd565b60405180910390f35b3480156106f357600080fd5b506106fc61128f565b005b34801561070a57600080fd5b50610713611317565b604051610720919061392c565b60405180910390f35b34801561073557600080fd5b50610750600480360381019061074b9190613b25565b6113b7565b005b34801561075e57600080fd5b5061076761148e565b60405161077491906139fd565b60405180910390f35b34801561078957600080fd5b506107a4600480360381019061079f9190613b65565b611494565b005b3480156107b257600080fd5b506107cd60048036038101906107c89190613947565b611593565b005b3480156107db57600080fd5b506107e46116cf565b6040516107f19190613aa7565b60405180910390f35b34801561080657600080fd5b5061080f6116f9565b60405161081c91906139fd565b60405180910390f35b34801561083157600080fd5b5061084c60048036038101906108479190613bb8565b6116ff565b005b34801561085a57600080fd5b50610863611798565b6040516108709190613816565b60405180910390f35b34801561088557600080fd5b506108a0600480360381019061089b9190613b25565b61182a565b005b3480156108ae57600080fd5b506108b7611943565b6040516108c491906139fd565b60405180910390f35b3480156108d957600080fd5b506108e2611949565b6040516108ef91906139fd565b60405180910390f35b34801561090457600080fd5b5061090d61194f565b60405161091a91906139fd565b60405180910390f35b34801561092f57600080fd5b5061094a600480360381019061094591906138d1565b611955565b604051610957919061392c565b60405180910390f35b34801561096c57600080fd5b50610987600480360381019061098291906138d1565b611a40565b604051610994919061392c565b60405180910390f35b3480156109a957600080fd5b506109c460048036038101906109bf9190613947565b611a5e565b6040516109d1919061392c565b60405180910390f35b3480156109e657600080fd5b50610a0160048036038101906109fc9190613b25565b611a7e565b005b348015610a0f57600080fd5b50610a2a6004803603810190610a259190613b65565b611ba3565b005b348015610a3857600080fd5b50610a536004803603810190610a4e9190613a18565b611ca2565b005b348015610a6157600080fd5b50610a6a611db1565b604051610a77919061392c565b60405180910390f35b348015610a8c57600080fd5b50610a95611dc4565b604051610aa291906139fd565b60405180910390f35b348015610ab757600080fd5b50610ac0611dca565b604051610acd919061392c565b60405180910390f35b348015610ae257600080fd5b50610afd6004803603810190610af891906138d1565b611ddd565b005b348015610b0b57600080fd5b50610b14611e9f565b604051610b2191906139fd565b60405180910390f35b348015610b3657600080fd5b50610b516004803603810190610b4c9190613be5565b611ea5565b604051610b5e91906139fd565b60405180910390f35b348015610b7357600080fd5b50610b7c611f2c565b604051610b89919061392c565b60405180910390f35b348015610b9e57600080fd5b50610ba7611fcc565b604051610bb491906139fd565b60405180910390f35b348015610bc957600080fd5b50610be46004803603810190610bdf9190613947565b611fd2565b005b348015610bf257600080fd5b50610bfb6120ca565b604051610c0891906139fd565b60405180910390f35b348015610c1d57600080fd5b50610c266120d0565b604051610c3391906139fd565b60405180910390f35b348015610c4857600080fd5b50610c516120d6565b604051610c5e919061392c565b60405180910390f35b606060038054610c7690613c54565b80601f0160208091040260200160405190810160405280929190818152602001828054610ca290613c54565b8015610cef5780601f10610cc457610100808354040283529160200191610cef565b820191906000526020600020905b815481529060010190602001808311610cd257829003601f168201915b5050505050905090565b6000610d0d610d066120e9565b84846120f1565b6001905092915050565b60196020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b60165481565b60155481565b610d796120e9565b73ffffffffffffffffffffffffffffffffffffffff16610d976116cf565b73ffffffffffffffffffffffffffffffffffffffff1614610ded576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de490613cd2565b60405180910390fd5b670de0b6b3a76400006103e86001610e03610d5b565b610e0d9190613d21565b610e179190613daa565b610e219190613daa565b811015610e63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5a90613e4d565b60405180910390fd5b670de0b6b3a764000081610e779190613d21565b60078190555050565b6000610e8d8484846122bc565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610ed86120e9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610f58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4f90613edf565b60405180910390fd5b610f6c85610f646120e9565b8584036120f1565b60019150509392505050565b61dead81565b60006012905090565b60085481565b600061102f610f9a6120e9565b848460016000610fa86120e9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461102a9190613eff565b6120f1565b6001905092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60006110e36120e9565b73ffffffffffffffffffffffffffffffffffffffff166111016116cf565b73ffffffffffffffffffffffffffffffffffffffff1614611157576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114e90613cd2565b60405180910390fd5b620186a06001611165610d5b565b61116f9190613d21565b6111799190613daa565b8210156111bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b290613fc7565b60405180910390fd5b6103e860056111c8610d5b565b6111d29190613d21565b6111dc9190613daa565b82111561121e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121590614059565b60405180910390fd5b8160088190555060019050919050565b60115481565b600a60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112976120e9565b73ffffffffffffffffffffffffffffffffffffffff166112b56116cf565b73ffffffffffffffffffffffffffffffffffffffff161461130b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130290613cd2565b60405180910390fd5b6113156000612f8c565b565b60006113216120e9565b73ffffffffffffffffffffffffffffffffffffffff1661133f6116cf565b73ffffffffffffffffffffffffffffffffffffffff1614611395576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138c90613cd2565b60405180910390fd5b6000600a60006101000a81548160ff0219169083151502179055506001905090565b6113bf6120e9565b73ffffffffffffffffffffffffffffffffffffffff166113dd6116cf565b73ffffffffffffffffffffffffffffffffffffffff1614611433576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142a90613cd2565b60405180910390fd5b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600e5481565b61149c6120e9565b73ffffffffffffffffffffffffffffffffffffffff166114ba6116cf565b73ffffffffffffffffffffffffffffffffffffffff1614611510576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150790613cd2565b60405180910390fd5b82600e8190555081600f8190555080601081905550601054600f54600e546115389190613eff565b6115429190613eff565b600d819055506003600d54111561158e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611585906140c5565b60405180910390fd5b505050565b61159b6120e9565b73ffffffffffffffffffffffffffffffffffffffff166115b96116cf565b73ffffffffffffffffffffffffffffffffffffffff161461160f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160690613cd2565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f02f8a1483978974a6412ba3a67040b4daa4fc0dfe9439a7295f9a9538394f63560405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60125481565b6117076120e9565b73ffffffffffffffffffffffffffffffffffffffff166117256116cf565b73ffffffffffffffffffffffffffffffffffffffff161461177b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177290613cd2565b60405180910390fd5b80600a60026101000a81548160ff02191690831515021790555050565b6060600480546117a790613c54565b80601f01602080910402602001604051908101604052809291908181526020018280546117d390613c54565b80156118205780601f106117f557610100808354040283529160200191611820565b820191906000526020600020905b81548152906001019060200180831161180357829003601f168201915b5050505050905090565b6118326120e9565b73ffffffffffffffffffffffffffffffffffffffff166118506116cf565b73ffffffffffffffffffffffffffffffffffffffff16146118a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189d90613cd2565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611935576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192c90614157565b60405180910390fd5b61193f8282613052565b5050565b60105481565b60175481565b60145481565b600080600160006119646120e9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611a21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a18906141e9565b60405180910390fd5b611a35611a2c6120e9565b858584036120f1565b600191505092915050565b6000611a54611a4d6120e9565b84846122bc565b6001905092915050565b601a6020528060005260406000206000915054906101000a900460ff1681565b611a866120e9565b73ffffffffffffffffffffffffffffffffffffffff16611aa46116cf565b73ffffffffffffffffffffffffffffffffffffffff1614611afa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af190613cd2565b60405180910390fd5b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611b97919061392c565b60405180910390a25050565b611bab6120e9565b73ffffffffffffffffffffffffffffffffffffffff16611bc96116cf565b73ffffffffffffffffffffffffffffffffffffffff1614611c1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1690613cd2565b60405180910390fd5b826012819055508160138190555080601481905550601454601354601254611c479190613eff565b611c519190613eff565b60118190555060056011541115611c9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9490614255565b60405180910390fd5b505050565b611caa6120e9565b73ffffffffffffffffffffffffffffffffffffffff16611cc86116cf565b73ffffffffffffffffffffffffffffffffffffffff1614611d1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1590613cd2565b60405180910390fd5b670de0b6b3a76400006103e86005611d34610d5b565b611d3e9190613d21565b611d489190613daa565b611d529190613daa565b811015611d94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8b906142e7565b60405180910390fd5b670de0b6b3a764000081611da89190613d21565b60098190555050565b600c60009054906101000a900460ff1681565b60075481565b600a60009054906101000a900460ff1681565b6000611e0c83600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846120f1565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051611e5290614338565b60006040518083038185875af1925050503d8060008114611e8f576040519150601f19603f3d011682016040523d82523d6000602084013e611e94565b606091505b505080915050505050565b600d5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000611f366120e9565b73ffffffffffffffffffffffffffffffffffffffff16611f546116cf565b73ffffffffffffffffffffffffffffffffffffffff1614611faa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa190613cd2565b60405180910390fd5b6000600c60006101000a81548160ff0219169083151502179055506001905090565b600f5481565b611fda6120e9565b73ffffffffffffffffffffffffffffffffffffffff16611ff86116cf565b73ffffffffffffffffffffffffffffffffffffffff161461204e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204590613cd2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156120be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b5906143bf565b60405180910390fd5b6120c781612f8c565b50565b60135481565b60095481565b600a60019054906101000a900460ff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612161576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215890614451565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c8906144e3565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516122af91906139fd565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561232c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232390614575565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561239c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239390614607565b60405180910390fd5b60008114156123b6576123b1838360006130f3565b612f87565b600a60009054906101000a900460ff1615612aaf57600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156124775750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156124b05750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156124ea575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156125035750600560149054906101000a900460ff16155b15612aae57600a60019054906101000a900460ff166125fd57601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806125bd5750601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6125fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125f390614673565b60405180910390fd5b5b600c60009054906101000a900460ff16156127c55761261a6116cf565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156126a157507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156126f957507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156127c45743600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541061277f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127769061472b565b60405180910390fd5b43600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156128685750601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561290f576007548111156128b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128a9906147bd565b60405180910390fd5b6009546128be83611247565b826128c99190613eff565b111561290a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290190614829565b60405180910390fd5b612aad565b601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156129b25750601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612a01576007548111156129fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129f3906148bb565b60405180910390fd5b612aac565b601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612aab57600954612a5e83611247565b82612a699190613eff565b1115612aaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aa190614829565b60405180910390fd5b5b5b5b5b5b6000612aba30611247565b905060006008548210159050808015612adf5750600a60029054906101000a900460ff165b8015612af85750600560149054906101000a900460ff16155b8015612b4e5750601a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612ba45750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612bfa5750601860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612c3e576001600560146101000a81548160ff021916908315150217905550612c22613374565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612cf45750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612cfe57600090505b60008115612f7757601a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612d6157506000601154115b15612e2e57612d8e6064612d806011548861350a90919063ffffffff16565b61352090919063ffffffff16565b905060115460135482612da19190613d21565b612dab9190613daa565b60166000828254612dbc9190613eff565b9250508190555060115460145482612dd49190613d21565b612dde9190613daa565b60176000828254612def9190613eff565b9250508190555060115460125482612e079190613d21565b612e119190613daa565b60156000828254612e229190613eff565b92505081905550612f53565b601a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612e8957506000600d54115b15612f5257612eb66064612ea8600d548861350a90919063ffffffff16565b61352090919063ffffffff16565b9050600d54600f5482612ec99190613d21565b612ed39190613daa565b60166000828254612ee49190613eff565b92505081905550600d5460105482612efc9190613d21565b612f069190613daa565b60176000828254612f179190613eff565b92505081905550600d54600e5482612f2f9190613d21565b612f399190613daa565b60156000828254612f4a9190613eff565b925050819055505b5b6000811115612f6857612f678730836130f3565b5b8085612f7491906148db565b94505b612f828787876130f3565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613163576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161315a90614575565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156131d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131ca90614607565b60405180910390fd5b6131de838383613536565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613264576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161325b90614981565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546132f79190613eff565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161335b91906139fd565b60405180910390a361336e84848461353b565b50505050565b600061337f30611247565b905060006017546015546016546133969190613eff565b6133a09190613eff565b90506000808314806133b25750600082145b156133bf57505050613508565b60036008546133ce9190613d21565b8311156133e75760036008546133e49190613d21565b92505b600083905061346460085461341d600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611247565b11613428578161345f565b613453600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611247565b8261345e9190613eff565b5b613540565b67016345785d8a000047111561350357600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516134ba90614338565b60006040518083038185875af1925050503d80600081146134f7576040519150601f19603f3d011682016040523d82523d6000602084013e6134fc565b606091505b5050809250505b505050505b565b600081836135189190613d21565b905092915050565b6000818361352e9190613daa565b905092915050565b505050565b505050565b6000600267ffffffffffffffff81111561355d5761355c6149a1565b5b60405190808252806020026020018201604052801561358b5781602001602082028036833780820191505090505b50905030816000815181106135a3576135a26149d0565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613648573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061366c9190614a14565b816001815181106136805761367f6149d0565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506136e5307f0000000000000000000000000000000000000000000000000000000000000000846120f1565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613747959493929190614b3a565b600060405180830381600087803b15801561376157600080fd5b505af1158015613775573d6000803e3d6000fd5b505050505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156137b757808201518184015260208101905061379c565b838111156137c6576000848401525b50505050565b6000601f19601f8301169050919050565b60006137e88261377d565b6137f28185613788565b9350613802818560208601613799565b61380b816137cc565b840191505092915050565b6000602082019050818103600083015261383081846137dd565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006138688261383d565b9050919050565b6138788161385d565b811461388357600080fd5b50565b6000813590506138958161386f565b92915050565b6000819050919050565b6138ae8161389b565b81146138b957600080fd5b50565b6000813590506138cb816138a5565b92915050565b600080604083850312156138e8576138e7613838565b5b60006138f685828601613886565b9250506020613907858286016138bc565b9150509250929050565b60008115159050919050565b61392681613911565b82525050565b6000602082019050613941600083018461391d565b92915050565b60006020828403121561395d5761395c613838565b5b600061396b84828501613886565b91505092915050565b6000819050919050565b600061399961399461398f8461383d565b613974565b61383d565b9050919050565b60006139ab8261397e565b9050919050565b60006139bd826139a0565b9050919050565b6139cd816139b2565b82525050565b60006020820190506139e860008301846139c4565b92915050565b6139f78161389b565b82525050565b6000602082019050613a1260008301846139ee565b92915050565b600060208284031215613a2e57613a2d613838565b5b6000613a3c848285016138bc565b91505092915050565b600080600060608486031215613a5e57613a5d613838565b5b6000613a6c86828701613886565b9350506020613a7d86828701613886565b9250506040613a8e868287016138bc565b9150509250925092565b613aa18161385d565b82525050565b6000602082019050613abc6000830184613a98565b92915050565b600060ff82169050919050565b613ad881613ac2565b82525050565b6000602082019050613af36000830184613acf565b92915050565b613b0281613911565b8114613b0d57600080fd5b50565b600081359050613b1f81613af9565b92915050565b60008060408385031215613b3c57613b3b613838565b5b6000613b4a85828601613886565b9250506020613b5b85828601613b10565b9150509250929050565b600080600060608486031215613b7e57613b7d613838565b5b6000613b8c868287016138bc565b9350506020613b9d868287016138bc565b9250506040613bae868287016138bc565b9150509250925092565b600060208284031215613bce57613bcd613838565b5b6000613bdc84828501613b10565b91505092915050565b60008060408385031215613bfc57613bfb613838565b5b6000613c0a85828601613886565b9250506020613c1b85828601613886565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613c6c57607f821691505b60208210811415613c8057613c7f613c25565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613cbc602083613788565b9150613cc782613c86565b602082019050919050565b60006020820190508181036000830152613ceb81613caf565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613d2c8261389b565b9150613d378361389b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613d7057613d6f613cf2565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613db58261389b565b9150613dc08361389b565b925082613dd057613dcf613d7b565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000613e37602f83613788565b9150613e4282613ddb565b604082019050919050565b60006020820190508181036000830152613e6681613e2a565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000613ec9602883613788565b9150613ed482613e6d565b604082019050919050565b60006020820190508181036000830152613ef881613ebc565b9050919050565b6000613f0a8261389b565b9150613f158361389b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613f4a57613f49613cf2565b5b828201905092915050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000613fb1603583613788565b9150613fbc82613f55565b604082019050919050565b60006020820190508181036000830152613fe081613fa4565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614043603483613788565b915061404e82613fe7565b604082019050919050565b6000602082019050818103600083015261407281614036565b9050919050565b7f4d757374206b6565702066656573206174203325206f72206c65737300000000600082015250565b60006140af601c83613788565b91506140ba82614079565b602082019050919050565b600060208201905081810360008301526140de816140a2565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614141603983613788565b915061414c826140e5565b604082019050919050565b6000602082019050818103600083015261417081614134565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006141d3602583613788565b91506141de82614177565b604082019050919050565b60006020820190508181036000830152614202816141c6565b9050919050565b7f4d757374206b6565702066656573206174203525206f72206c65737300000000600082015250565b600061423f601c83613788565b915061424a82614209565b602082019050919050565b6000602082019050818103600083015261426e81614232565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b60006142d1602483613788565b91506142dc82614275565b604082019050919050565b60006020820190508181036000830152614300816142c4565b9050919050565b600081905092915050565b50565b6000614322600083614307565b915061432d82614312565b600082019050919050565b600061434382614315565b9150819050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006143a9602683613788565b91506143b48261434d565b604082019050919050565b600060208201905081810360008301526143d88161439c565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061443b602483613788565b9150614446826143df565b604082019050919050565b6000602082019050818103600083015261446a8161442e565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006144cd602283613788565b91506144d882614471565b604082019050919050565b600060208201905081810360008301526144fc816144c0565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061455f602583613788565b915061456a82614503565b604082019050919050565b6000602082019050818103600083015261458e81614552565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006145f1602383613788565b91506145fc82614595565b604082019050919050565b60006020820190508181036000830152614620816145e4565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b600061465d601683613788565b915061466882614627565b602082019050919050565b6000602082019050818103600083015261468c81614650565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000614715604983613788565b915061472082614693565b606082019050919050565b6000602082019050818103600083015261474481614708565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006147a7603583613788565b91506147b28261474b565b604082019050919050565b600060208201905081810360008301526147d68161479a565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614813601383613788565b915061481e826147dd565b602082019050919050565b6000602082019050818103600083015261484281614806565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006148a5603683613788565b91506148b082614849565b604082019050919050565b600060208201905081810360008301526148d481614898565b9050919050565b60006148e68261389b565b91506148f18361389b565b92508282101561490457614903613cf2565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061496b602683613788565b91506149768261490f565b604082019050919050565b6000602082019050818103600083015261499a8161495e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614a0e8161386f565b92915050565b600060208284031215614a2a57614a29613838565b5b6000614a38848285016149ff565b91505092915050565b6000819050919050565b6000614a66614a61614a5c84614a41565b613974565b61389b565b9050919050565b614a7681614a4b565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614ab18161385d565b82525050565b6000614ac38383614aa8565b60208301905092915050565b6000602082019050919050565b6000614ae782614a7c565b614af18185614a87565b9350614afc83614a98565b8060005b83811015614b2d578151614b148882614ab7565b9750614b1f83614acf565b925050600181019050614b00565b5085935050505092915050565b600060a082019050614b4f60008301886139ee565b614b5c6020830187614a6d565b8181036040830152614b6e8186614adc565b9050614b7d6060830185613a98565b614b8a60808301846139ee565b969550505050505056fea2646970667358221220ca6fdd3dc223952a9af426bdb02a0ca0462132ec55a314975b1c3f3365a287be64736f6c634300080a0033

Deployed Bytecode

0x6080604052600436106103035760003560e01c80638da5cb5b11610190578063c18bc195116100dc578063dd62ed3e11610095578063f2fde38b1161006f578063f2fde38b14610bbd578063f637434214610be6578063f8b45b0514610c11578063ffb54a9914610c3c5761030a565b8063dd62ed3e14610b2a578063e884f26014610b67578063f11a24d314610b925761030a565b8063c18bc19514610a2c578063c876d0b914610a55578063c8c8ebe414610a80578063d0136a1714610aab578063d7a0372514610ad6578063d85ba06314610aff5761030a565b80639fccce3211610149578063a9059cbb11610123578063a9059cbb14610960578063b62496f51461099d578063c0246668146109da578063c17b5b8c14610a035761030a565b80639fccce32146108cd578063a0d82dc5146108f8578063a457c2d7146109235761030a565b80638da5cb5b146107cf57806392136913146107fa578063924de9b71461082557806395d89b411461084e5780639a7a23d6146108795780639c3b4fdc146108a25761030a565b80634626402b1161024f57806370a08231116102085780637571336a116101e25780637571336a146107295780637bce5a04146107525780638095d5641461077d578063809d458d146107a65761030a565b806370a08231146106aa578063715018a6146106e7578063751039fc146106fe5761030a565b80634626402b1461058457806349bd5a5e146105af5780634fbee193146105da5780635cd6759a146106175780636a486a8e146106545780636ddd17131461067f5761030a565b80631f3fed8f116102bc57806327c8f8351161029657806327c8f835146104c6578063313ce567146104f1578063329e5a951461051c57806339509351146105475761030a565b80631f3fed8f14610435578063203e727e1461046057806323b872dd146104895761030a565b806306fdde031461030f578063095ea7b31461033a57806310d5de53146103775780631694505e146103b457806318160ddd146103df5780631a8145bb1461040a5761030a565b3661030a57005b600080fd5b34801561031b57600080fd5b50610324610c67565b6040516103319190613816565b60405180910390f35b34801561034657600080fd5b50610361600480360381019061035c91906138d1565b610cf9565b60405161036e919061392c565b60405180910390f35b34801561038357600080fd5b5061039e60048036038101906103999190613947565b610d17565b6040516103ab919061392c565b60405180910390f35b3480156103c057600080fd5b506103c9610d37565b6040516103d691906139d3565b60405180910390f35b3480156103eb57600080fd5b506103f4610d5b565b60405161040191906139fd565b60405180910390f35b34801561041657600080fd5b5061041f610d65565b60405161042c91906139fd565b60405180910390f35b34801561044157600080fd5b5061044a610d6b565b60405161045791906139fd565b60405180910390f35b34801561046c57600080fd5b5061048760048036038101906104829190613a18565b610d71565b005b34801561049557600080fd5b506104b060048036038101906104ab9190613a45565b610e80565b6040516104bd919061392c565b60405180910390f35b3480156104d257600080fd5b506104db610f78565b6040516104e89190613aa7565b60405180910390f35b3480156104fd57600080fd5b50610506610f7e565b6040516105139190613ade565b60405180910390f35b34801561052857600080fd5b50610531610f87565b60405161053e91906139fd565b60405180910390f35b34801561055357600080fd5b5061056e600480360381019061056991906138d1565b610f8d565b60405161057b919061392c565b60405180910390f35b34801561059057600080fd5b50610599611039565b6040516105a69190613aa7565b60405180910390f35b3480156105bb57600080fd5b506105c461105f565b6040516105d19190613aa7565b60405180910390f35b3480156105e657600080fd5b5061060160048036038101906105fc9190613947565b611083565b60405161060e919061392c565b60405180910390f35b34801561062357600080fd5b5061063e60048036038101906106399190613a18565b6110d9565b60405161064b919061392c565b60405180910390f35b34801561066057600080fd5b5061066961122e565b60405161067691906139fd565b60405180910390f35b34801561068b57600080fd5b50610694611234565b6040516106a1919061392c565b60405180910390f35b3480156106b657600080fd5b506106d160048036038101906106cc9190613947565b611247565b6040516106de91906139fd565b60405180910390f35b3480156106f357600080fd5b506106fc61128f565b005b34801561070a57600080fd5b50610713611317565b604051610720919061392c565b60405180910390f35b34801561073557600080fd5b50610750600480360381019061074b9190613b25565b6113b7565b005b34801561075e57600080fd5b5061076761148e565b60405161077491906139fd565b60405180910390f35b34801561078957600080fd5b506107a4600480360381019061079f9190613b65565b611494565b005b3480156107b257600080fd5b506107cd60048036038101906107c89190613947565b611593565b005b3480156107db57600080fd5b506107e46116cf565b6040516107f19190613aa7565b60405180910390f35b34801561080657600080fd5b5061080f6116f9565b60405161081c91906139fd565b60405180910390f35b34801561083157600080fd5b5061084c60048036038101906108479190613bb8565b6116ff565b005b34801561085a57600080fd5b50610863611798565b6040516108709190613816565b60405180910390f35b34801561088557600080fd5b506108a0600480360381019061089b9190613b25565b61182a565b005b3480156108ae57600080fd5b506108b7611943565b6040516108c491906139fd565b60405180910390f35b3480156108d957600080fd5b506108e2611949565b6040516108ef91906139fd565b60405180910390f35b34801561090457600080fd5b5061090d61194f565b60405161091a91906139fd565b60405180910390f35b34801561092f57600080fd5b5061094a600480360381019061094591906138d1565b611955565b604051610957919061392c565b60405180910390f35b34801561096c57600080fd5b50610987600480360381019061098291906138d1565b611a40565b604051610994919061392c565b60405180910390f35b3480156109a957600080fd5b506109c460048036038101906109bf9190613947565b611a5e565b6040516109d1919061392c565b60405180910390f35b3480156109e657600080fd5b50610a0160048036038101906109fc9190613b25565b611a7e565b005b348015610a0f57600080fd5b50610a2a6004803603810190610a259190613b65565b611ba3565b005b348015610a3857600080fd5b50610a536004803603810190610a4e9190613a18565b611ca2565b005b348015610a6157600080fd5b50610a6a611db1565b604051610a77919061392c565b60405180910390f35b348015610a8c57600080fd5b50610a95611dc4565b604051610aa291906139fd565b60405180910390f35b348015610ab757600080fd5b50610ac0611dca565b604051610acd919061392c565b60405180910390f35b348015610ae257600080fd5b50610afd6004803603810190610af891906138d1565b611ddd565b005b348015610b0b57600080fd5b50610b14611e9f565b604051610b2191906139fd565b60405180910390f35b348015610b3657600080fd5b50610b516004803603810190610b4c9190613be5565b611ea5565b604051610b5e91906139fd565b60405180910390f35b348015610b7357600080fd5b50610b7c611f2c565b604051610b89919061392c565b60405180910390f35b348015610b9e57600080fd5b50610ba7611fcc565b604051610bb491906139fd565b60405180910390f35b348015610bc957600080fd5b50610be46004803603810190610bdf9190613947565b611fd2565b005b348015610bf257600080fd5b50610bfb6120ca565b604051610c0891906139fd565b60405180910390f35b348015610c1d57600080fd5b50610c266120d0565b604051610c3391906139fd565b60405180910390f35b348015610c4857600080fd5b50610c516120d6565b604051610c5e919061392c565b60405180910390f35b606060038054610c7690613c54565b80601f0160208091040260200160405190810160405280929190818152602001828054610ca290613c54565b8015610cef5780601f10610cc457610100808354040283529160200191610cef565b820191906000526020600020905b815481529060010190602001808311610cd257829003601f168201915b5050505050905090565b6000610d0d610d066120e9565b84846120f1565b6001905092915050565b60196020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b60165481565b60155481565b610d796120e9565b73ffffffffffffffffffffffffffffffffffffffff16610d976116cf565b73ffffffffffffffffffffffffffffffffffffffff1614610ded576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de490613cd2565b60405180910390fd5b670de0b6b3a76400006103e86001610e03610d5b565b610e0d9190613d21565b610e179190613daa565b610e219190613daa565b811015610e63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5a90613e4d565b60405180910390fd5b670de0b6b3a764000081610e779190613d21565b60078190555050565b6000610e8d8484846122bc565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610ed86120e9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610f58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4f90613edf565b60405180910390fd5b610f6c85610f646120e9565b8584036120f1565b60019150509392505050565b61dead81565b60006012905090565b60085481565b600061102f610f9a6120e9565b848460016000610fa86120e9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461102a9190613eff565b6120f1565b6001905092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b7f000000000000000000000000971605f7487a743fa1a16e5d5599be154e016df781565b6000601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60006110e36120e9565b73ffffffffffffffffffffffffffffffffffffffff166111016116cf565b73ffffffffffffffffffffffffffffffffffffffff1614611157576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114e90613cd2565b60405180910390fd5b620186a06001611165610d5b565b61116f9190613d21565b6111799190613daa565b8210156111bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b290613fc7565b60405180910390fd5b6103e860056111c8610d5b565b6111d29190613d21565b6111dc9190613daa565b82111561121e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121590614059565b60405180910390fd5b8160088190555060019050919050565b60115481565b600a60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112976120e9565b73ffffffffffffffffffffffffffffffffffffffff166112b56116cf565b73ffffffffffffffffffffffffffffffffffffffff161461130b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130290613cd2565b60405180910390fd5b6113156000612f8c565b565b60006113216120e9565b73ffffffffffffffffffffffffffffffffffffffff1661133f6116cf565b73ffffffffffffffffffffffffffffffffffffffff1614611395576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138c90613cd2565b60405180910390fd5b6000600a60006101000a81548160ff0219169083151502179055506001905090565b6113bf6120e9565b73ffffffffffffffffffffffffffffffffffffffff166113dd6116cf565b73ffffffffffffffffffffffffffffffffffffffff1614611433576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142a90613cd2565b60405180910390fd5b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600e5481565b61149c6120e9565b73ffffffffffffffffffffffffffffffffffffffff166114ba6116cf565b73ffffffffffffffffffffffffffffffffffffffff1614611510576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150790613cd2565b60405180910390fd5b82600e8190555081600f8190555080601081905550601054600f54600e546115389190613eff565b6115429190613eff565b600d819055506003600d54111561158e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611585906140c5565b60405180910390fd5b505050565b61159b6120e9565b73ffffffffffffffffffffffffffffffffffffffff166115b96116cf565b73ffffffffffffffffffffffffffffffffffffffff161461160f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160690613cd2565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f02f8a1483978974a6412ba3a67040b4daa4fc0dfe9439a7295f9a9538394f63560405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60125481565b6117076120e9565b73ffffffffffffffffffffffffffffffffffffffff166117256116cf565b73ffffffffffffffffffffffffffffffffffffffff161461177b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177290613cd2565b60405180910390fd5b80600a60026101000a81548160ff02191690831515021790555050565b6060600480546117a790613c54565b80601f01602080910402602001604051908101604052809291908181526020018280546117d390613c54565b80156118205780601f106117f557610100808354040283529160200191611820565b820191906000526020600020905b81548152906001019060200180831161180357829003601f168201915b5050505050905090565b6118326120e9565b73ffffffffffffffffffffffffffffffffffffffff166118506116cf565b73ffffffffffffffffffffffffffffffffffffffff16146118a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189d90613cd2565b60405180910390fd5b7f000000000000000000000000971605f7487a743fa1a16e5d5599be154e016df773ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611935576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192c90614157565b60405180910390fd5b61193f8282613052565b5050565b60105481565b60175481565b60145481565b600080600160006119646120e9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611a21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a18906141e9565b60405180910390fd5b611a35611a2c6120e9565b858584036120f1565b600191505092915050565b6000611a54611a4d6120e9565b84846122bc565b6001905092915050565b601a6020528060005260406000206000915054906101000a900460ff1681565b611a866120e9565b73ffffffffffffffffffffffffffffffffffffffff16611aa46116cf565b73ffffffffffffffffffffffffffffffffffffffff1614611afa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af190613cd2565b60405180910390fd5b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611b97919061392c565b60405180910390a25050565b611bab6120e9565b73ffffffffffffffffffffffffffffffffffffffff16611bc96116cf565b73ffffffffffffffffffffffffffffffffffffffff1614611c1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1690613cd2565b60405180910390fd5b826012819055508160138190555080601481905550601454601354601254611c479190613eff565b611c519190613eff565b60118190555060056011541115611c9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9490614255565b60405180910390fd5b505050565b611caa6120e9565b73ffffffffffffffffffffffffffffffffffffffff16611cc86116cf565b73ffffffffffffffffffffffffffffffffffffffff1614611d1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1590613cd2565b60405180910390fd5b670de0b6b3a76400006103e86005611d34610d5b565b611d3e9190613d21565b611d489190613daa565b611d529190613daa565b811015611d94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8b906142e7565b60405180910390fd5b670de0b6b3a764000081611da89190613d21565b60098190555050565b600c60009054906101000a900460ff1681565b60075481565b600a60009054906101000a900460ff1681565b6000611e0c83600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846120f1565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051611e5290614338565b60006040518083038185875af1925050503d8060008114611e8f576040519150601f19603f3d011682016040523d82523d6000602084013e611e94565b606091505b505080915050505050565b600d5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000611f366120e9565b73ffffffffffffffffffffffffffffffffffffffff16611f546116cf565b73ffffffffffffffffffffffffffffffffffffffff1614611faa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa190613cd2565b60405180910390fd5b6000600c60006101000a81548160ff0219169083151502179055506001905090565b600f5481565b611fda6120e9565b73ffffffffffffffffffffffffffffffffffffffff16611ff86116cf565b73ffffffffffffffffffffffffffffffffffffffff161461204e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204590613cd2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156120be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b5906143bf565b60405180910390fd5b6120c781612f8c565b50565b60135481565b60095481565b600a60019054906101000a900460ff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612161576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215890614451565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c8906144e3565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516122af91906139fd565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561232c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232390614575565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561239c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239390614607565b60405180910390fd5b60008114156123b6576123b1838360006130f3565b612f87565b600a60009054906101000a900460ff1615612aaf57600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156124775750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156124b05750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156124ea575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156125035750600560149054906101000a900460ff16155b15612aae57600a60019054906101000a900460ff166125fd57601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806125bd5750601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6125fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125f390614673565b60405180910390fd5b5b600c60009054906101000a900460ff16156127c55761261a6116cf565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156126a157507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156126f957507f000000000000000000000000971605f7487a743fa1a16e5d5599be154e016df773ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156127c45743600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541061277f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127769061472b565b60405180910390fd5b43600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156128685750601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561290f576007548111156128b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128a9906147bd565b60405180910390fd5b6009546128be83611247565b826128c99190613eff565b111561290a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290190614829565b60405180910390fd5b612aad565b601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156129b25750601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612a01576007548111156129fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129f3906148bb565b60405180910390fd5b612aac565b601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612aab57600954612a5e83611247565b82612a699190613eff565b1115612aaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aa190614829565b60405180910390fd5b5b5b5b5b5b6000612aba30611247565b905060006008548210159050808015612adf5750600a60029054906101000a900460ff165b8015612af85750600560149054906101000a900460ff16155b8015612b4e5750601a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612ba45750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612bfa5750601860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612c3e576001600560146101000a81548160ff021916908315150217905550612c22613374565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612cf45750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612cfe57600090505b60008115612f7757601a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612d6157506000601154115b15612e2e57612d8e6064612d806011548861350a90919063ffffffff16565b61352090919063ffffffff16565b905060115460135482612da19190613d21565b612dab9190613daa565b60166000828254612dbc9190613eff565b9250508190555060115460145482612dd49190613d21565b612dde9190613daa565b60176000828254612def9190613eff565b9250508190555060115460125482612e079190613d21565b612e119190613daa565b60156000828254612e229190613eff565b92505081905550612f53565b601a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612e8957506000600d54115b15612f5257612eb66064612ea8600d548861350a90919063ffffffff16565b61352090919063ffffffff16565b9050600d54600f5482612ec99190613d21565b612ed39190613daa565b60166000828254612ee49190613eff565b92505081905550600d5460105482612efc9190613d21565b612f069190613daa565b60176000828254612f179190613eff565b92505081905550600d54600e5482612f2f9190613d21565b612f399190613daa565b60156000828254612f4a9190613eff565b925050819055505b5b6000811115612f6857612f678730836130f3565b5b8085612f7491906148db565b94505b612f828787876130f3565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613163576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161315a90614575565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156131d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131ca90614607565b60405180910390fd5b6131de838383613536565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613264576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161325b90614981565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546132f79190613eff565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161335b91906139fd565b60405180910390a361336e84848461353b565b50505050565b600061337f30611247565b905060006017546015546016546133969190613eff565b6133a09190613eff565b90506000808314806133b25750600082145b156133bf57505050613508565b60036008546133ce9190613d21565b8311156133e75760036008546133e49190613d21565b92505b600083905061346460085461341d600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611247565b11613428578161345f565b613453600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611247565b8261345e9190613eff565b5b613540565b67016345785d8a000047111561350357600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516134ba90614338565b60006040518083038185875af1925050503d80600081146134f7576040519150601f19603f3d011682016040523d82523d6000602084013e6134fc565b606091505b5050809250505b505050505b565b600081836135189190613d21565b905092915050565b6000818361352e9190613daa565b905092915050565b505050565b505050565b6000600267ffffffffffffffff81111561355d5761355c6149a1565b5b60405190808252806020026020018201604052801561358b5781602001602082028036833780820191505090505b50905030816000815181106135a3576135a26149d0565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613648573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061366c9190614a14565b816001815181106136805761367f6149d0565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506136e5307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846120f1565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613747959493929190614b3a565b600060405180830381600087803b15801561376157600080fd5b505af1158015613775573d6000803e3d6000fd5b505050505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156137b757808201518184015260208101905061379c565b838111156137c6576000848401525b50505050565b6000601f19601f8301169050919050565b60006137e88261377d565b6137f28185613788565b9350613802818560208601613799565b61380b816137cc565b840191505092915050565b6000602082019050818103600083015261383081846137dd565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006138688261383d565b9050919050565b6138788161385d565b811461388357600080fd5b50565b6000813590506138958161386f565b92915050565b6000819050919050565b6138ae8161389b565b81146138b957600080fd5b50565b6000813590506138cb816138a5565b92915050565b600080604083850312156138e8576138e7613838565b5b60006138f685828601613886565b9250506020613907858286016138bc565b9150509250929050565b60008115159050919050565b61392681613911565b82525050565b6000602082019050613941600083018461391d565b92915050565b60006020828403121561395d5761395c613838565b5b600061396b84828501613886565b91505092915050565b6000819050919050565b600061399961399461398f8461383d565b613974565b61383d565b9050919050565b60006139ab8261397e565b9050919050565b60006139bd826139a0565b9050919050565b6139cd816139b2565b82525050565b60006020820190506139e860008301846139c4565b92915050565b6139f78161389b565b82525050565b6000602082019050613a1260008301846139ee565b92915050565b600060208284031215613a2e57613a2d613838565b5b6000613a3c848285016138bc565b91505092915050565b600080600060608486031215613a5e57613a5d613838565b5b6000613a6c86828701613886565b9350506020613a7d86828701613886565b9250506040613a8e868287016138bc565b9150509250925092565b613aa18161385d565b82525050565b6000602082019050613abc6000830184613a98565b92915050565b600060ff82169050919050565b613ad881613ac2565b82525050565b6000602082019050613af36000830184613acf565b92915050565b613b0281613911565b8114613b0d57600080fd5b50565b600081359050613b1f81613af9565b92915050565b60008060408385031215613b3c57613b3b613838565b5b6000613b4a85828601613886565b9250506020613b5b85828601613b10565b9150509250929050565b600080600060608486031215613b7e57613b7d613838565b5b6000613b8c868287016138bc565b9350506020613b9d868287016138bc565b9250506040613bae868287016138bc565b9150509250925092565b600060208284031215613bce57613bcd613838565b5b6000613bdc84828501613b10565b91505092915050565b60008060408385031215613bfc57613bfb613838565b5b6000613c0a85828601613886565b9250506020613c1b85828601613886565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613c6c57607f821691505b60208210811415613c8057613c7f613c25565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613cbc602083613788565b9150613cc782613c86565b602082019050919050565b60006020820190508181036000830152613ceb81613caf565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613d2c8261389b565b9150613d378361389b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613d7057613d6f613cf2565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613db58261389b565b9150613dc08361389b565b925082613dd057613dcf613d7b565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000613e37602f83613788565b9150613e4282613ddb565b604082019050919050565b60006020820190508181036000830152613e6681613e2a565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000613ec9602883613788565b9150613ed482613e6d565b604082019050919050565b60006020820190508181036000830152613ef881613ebc565b9050919050565b6000613f0a8261389b565b9150613f158361389b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613f4a57613f49613cf2565b5b828201905092915050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000613fb1603583613788565b9150613fbc82613f55565b604082019050919050565b60006020820190508181036000830152613fe081613fa4565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614043603483613788565b915061404e82613fe7565b604082019050919050565b6000602082019050818103600083015261407281614036565b9050919050565b7f4d757374206b6565702066656573206174203325206f72206c65737300000000600082015250565b60006140af601c83613788565b91506140ba82614079565b602082019050919050565b600060208201905081810360008301526140de816140a2565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614141603983613788565b915061414c826140e5565b604082019050919050565b6000602082019050818103600083015261417081614134565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006141d3602583613788565b91506141de82614177565b604082019050919050565b60006020820190508181036000830152614202816141c6565b9050919050565b7f4d757374206b6565702066656573206174203525206f72206c65737300000000600082015250565b600061423f601c83613788565b915061424a82614209565b602082019050919050565b6000602082019050818103600083015261426e81614232565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b60006142d1602483613788565b91506142dc82614275565b604082019050919050565b60006020820190508181036000830152614300816142c4565b9050919050565b600081905092915050565b50565b6000614322600083614307565b915061432d82614312565b600082019050919050565b600061434382614315565b9150819050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006143a9602683613788565b91506143b48261434d565b604082019050919050565b600060208201905081810360008301526143d88161439c565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061443b602483613788565b9150614446826143df565b604082019050919050565b6000602082019050818103600083015261446a8161442e565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006144cd602283613788565b91506144d882614471565b604082019050919050565b600060208201905081810360008301526144fc816144c0565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061455f602583613788565b915061456a82614503565b604082019050919050565b6000602082019050818103600083015261458e81614552565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006145f1602383613788565b91506145fc82614595565b604082019050919050565b60006020820190508181036000830152614620816145e4565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b600061465d601683613788565b915061466882614627565b602082019050919050565b6000602082019050818103600083015261468c81614650565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000614715604983613788565b915061472082614693565b606082019050919050565b6000602082019050818103600083015261474481614708565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006147a7603583613788565b91506147b28261474b565b604082019050919050565b600060208201905081810360008301526147d68161479a565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614813601383613788565b915061481e826147dd565b602082019050919050565b6000602082019050818103600083015261484281614806565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006148a5603683613788565b91506148b082614849565b604082019050919050565b600060208201905081810360008301526148d481614898565b9050919050565b60006148e68261389b565b91506148f18361389b565b92508282101561490457614903613cf2565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061496b602683613788565b91506149768261490f565b604082019050919050565b6000602082019050818103600083015261499a8161495e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614a0e8161386f565b92915050565b600060208284031215614a2a57614a29613838565b5b6000614a38848285016149ff565b91505092915050565b6000819050919050565b6000614a66614a61614a5c84614a41565b613974565b61389b565b9050919050565b614a7681614a4b565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614ab18161385d565b82525050565b6000614ac38383614aa8565b60208301905092915050565b6000602082019050919050565b6000614ae782614a7c565b614af18185614a87565b9350614afc83614a98565b8060005b83811015614b2d578151614b148882614ab7565b9750614b1f83614acf565b925050600181019050614b00565b5085935050505092915050565b600060a082019050614b4f60008301886139ee565b614b5c6020830187614a6d565b8181036040830152614b6e8186614adc565b9050614b7d6060830185613a98565b614b8a60808301846139ee565b969550505050505056fea2646970667358221220ca6fdd3dc223952a9af426bdb02a0ca0462132ec55a314975b1c3f3365a287be64736f6c634300080a0033

Deployed Bytecode Sourcemap

29871:14726:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8413:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10721:210;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31210:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29953:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9533:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30994:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30954;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35248:275;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11413:529;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30056:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9375:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30228:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12351:297;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30148:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30011:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37923:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34741:499;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30809:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30377:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9704:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2443:103;;;;;;;;;;;;;:::i;:::-;;34356:119;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35795:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30702:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36166:401;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37691:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1960:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30844:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36058:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8632:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37183:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30776:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31034:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30920:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13151:482;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10094:216;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31431:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36993:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36575:410;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35531:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30620:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30186:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30302:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38057:261;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30668:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10373:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34536:135;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30739:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2701:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30882:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30269:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30340:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8413:100;8467:13;8500:5;8493:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8413:100;:::o;10721:210::-;10840:4;10862:39;10871:12;:10;:12::i;:::-;10885:7;10894:6;10862:8;:39::i;:::-;10919:4;10912:11;;10721:210;;;;:::o;31210:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;29953:51::-;;;:::o;9533:108::-;9594:7;9621:12;;9614:19;;9533:108;:::o;30994:33::-;;;;:::o;30954:::-;;;;:::o;35248:275::-;2191:12;:10;:12::i;:::-;2180:23;;:7;:5;:7::i;:::-;:23;;;2172:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35385:4:::1;35377;35372:1;35356:13;:11;:13::i;:::-;:17;;;;:::i;:::-;35355:26;;;;:::i;:::-;35354:35;;;;:::i;:::-;35344:6;:45;;35322:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;35508:6;35498;:17;;;;:::i;:::-;35475:20;:40;;;;35248:275:::0;:::o;11413:529::-;11553:4;11570:36;11580:6;11588:9;11599:6;11570:9;:36::i;:::-;11619:24;11646:11;:19;11658:6;11646:19;;;;;;;;;;;;;;;:33;11666:12;:10;:12::i;:::-;11646:33;;;;;;;;;;;;;;;;11619:60;;11732:6;11712:16;:26;;11690:116;;;;;;;;;;;;:::i;:::-;;;;;;;;;11842:57;11851:6;11859:12;:10;:12::i;:::-;11892:6;11873:16;:25;11842:8;:57::i;:::-;11930:4;11923:11;;;11413:529;;;;;:::o;30056:53::-;30102:6;30056:53;:::o;9375:93::-;9433:5;9458:2;9451:9;;9375:93;:::o;30228:34::-;;;;:::o;12351:297::-;12466:4;12488:130;12511:12;:10;:12::i;:::-;12538:7;12597:10;12560:11;:25;12572:12;:10;:12::i;:::-;12560:25;;;;;;;;;;;;;;;:34;12586:7;12560:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;12488:8;:130::i;:::-;12636:4;12629:11;;12351:297;;;;:::o;30148:29::-;;;;;;;;;;;;;:::o;30011:38::-;;;:::o;37923:126::-;37989:4;38013:19;:28;38033:7;38013:28;;;;;;;;;;;;;;;;;;;;;;;;;38006:35;;37923:126;;;:::o;34741:499::-;34850:4;2191:12;:10;:12::i;:::-;2180:23;;:7;:5;:7::i;:::-;:23;;;2172:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34929:6:::1;34924:1;34908:13;:11;:13::i;:::-;:17;;;;:::i;:::-;34907:28;;;;:::i;:::-;34894:9;:41;;34872:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;35084:4;35079:1;35063:13;:11;:13::i;:::-;:17;;;;:::i;:::-;35062:26;;;;:::i;:::-;35049:9;:39;;35027:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;35201:9;35179:19;:31;;;;35228:4;35221:11;;34741:499:::0;;;:::o;30809:28::-;;;;:::o;30377:30::-;;;;;;;;;;;;;:::o;9704:177::-;9823:7;9855:9;:18;9865:7;9855:18;;;;;;;;;;;;;;;;9848:25;;9704:177;;;:::o;2443:103::-;2191:12;:10;:12::i;:::-;2180:23;;:7;:5;:7::i;:::-;:23;;;2172:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2508:30:::1;2535:1;2508:18;:30::i;:::-;2443:103::o:0;34356:119::-;34408:4;2191:12;:10;:12::i;:::-;2180:23;;:7;:5;:7::i;:::-;:23;;;2172:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34440:5:::1;34425:12;;:20;;;;;;;;;;;;;;;;;;34463:4;34456:11;;34356:119:::0;:::o;35795:167::-;2191:12;:10;:12::i;:::-;2180:23;;:7;:5;:7::i;:::-;:23;;;2172:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35950:4:::1;35908:31;:39;35940:6;35908:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;35795:167:::0;;:::o;30702:30::-;;;;:::o;36166:401::-;2191:12;:10;:12::i;:::-;2180:23;;:7;:5;:7::i;:::-;:23;;;2172:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36334:13:::1;36316:15;:31;;;;36376:13;36358:15;:31;;;;36412:7;36400:9;:19;;;;36481:9;;36463:15;;36445;;:33;;;;:::i;:::-;:45;;;;:::i;:::-;36430:12;:60;;;;36525:1;36509:12;;:17;;36501:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;36166:401:::0;;;:::o;37691:224::-;2191:12;:10;:12::i;:::-;2180:23;;:7;:5;:7::i;:::-;:23;;;2172:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37847:14:::1;;;;;;;;;;;37806:56;;37828:17;37806:56;;;;;;;;;;;;37890:17;37873:14;;:34;;;;;;;;;;;;;;;;;;37691:224:::0;:::o;1960:87::-;2006:7;2033:6;;;;;;;;;;;2026:13;;1960:87;:::o;30844:31::-;;;;:::o;36058:100::-;2191:12;:10;:12::i;:::-;2180:23;;:7;:5;:7::i;:::-;:23;;;2172:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36143:7:::1;36129:11;;:21;;;;;;;;;;;;;;;;;;36058:100:::0;:::o;8632:104::-;8688:13;8721:7;8714:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8632:104;:::o;37183:304::-;2191:12;:10;:12::i;:::-;2180:23;;:7;:5;:7::i;:::-;:23;;;2172:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37327:13:::1;37319:21;;:4;:21;;;;37297:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;37438:41;37467:4;37473:5;37438:28;:41::i;:::-;37183:304:::0;;:::o;30776:24::-;;;;:::o;31034:27::-;;;;:::o;30920:25::-;;;;:::o;13151:482::-;13271:4;13293:24;13320:11;:25;13332:12;:10;:12::i;:::-;13320:25;;;;;;;;;;;;;;;:34;13346:7;13320:34;;;;;;;;;;;;;;;;13293:61;;13407:15;13387:16;:35;;13365:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;13523:67;13532:12;:10;:12::i;:::-;13546:7;13574:15;13555:16;:34;13523:8;:67::i;:::-;13621:4;13614:11;;;13151:482;;;;:::o;10094:216::-;10216:4;10238:42;10248:12;:10;:12::i;:::-;10262:9;10273:6;10238:9;:42::i;:::-;10298:4;10291:11;;10094:216;;;;:::o;31431:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;36993:182::-;2191:12;:10;:12::i;:::-;2180:23;;:7;:5;:7::i;:::-;:23;;;2172:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37109:8:::1;37078:19;:28;37098:7;37078:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;37149:7;37133:34;;;37158:8;37133:34;;;;;;:::i;:::-;;;;;;;;36993:182:::0;;:::o;36575:410::-;2191:12;:10;:12::i;:::-;2180:23;;:7;:5;:7::i;:::-;:23;;;2172:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36745:13:::1;36726:16;:32;;;;36788:13;36769:16;:32;;;;36825:7;36812:10;:20;;;;36897:10;;36878:16;;36859;;:35;;;;:::i;:::-;:48;;;;:::i;:::-;36843:13;:64;;;;36943:1;36926:13;;:18;;36918:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;36575:410:::0;;;:::o;35531:256::-;2191:12;:10;:12::i;:::-;2180:23;;:7;:5;:7::i;:::-;:23;;;2172:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35671:4:::1;35663;35658:1;35642:13;:11;:13::i;:::-;:17;;;;:::i;:::-;35641:26;;;;:::i;:::-;35640:35;;;;:::i;:::-;35630:6;:45;;35608:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;35772:6;35762;:17;;;;:::i;:::-;35750:9;:29;;;;35531:256:::0;:::o;30620:39::-;;;;;;;;;;;;;:::o;30186:35::-;;;;:::o;30302:31::-;;;;;;;;;;;;;:::o;38057:261::-;38136:12;38159:40;38168:6;38176:14;;;;;;;;;;;38192:6;38159:8;:40::i;:::-;38232:14;;;;;;;;;;;38224:28;;38274:21;38224:86;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38210:100;;;;;38125:193;38057:261;;:::o;30668:27::-;;;;:::o;10373:201::-;10507:7;10539:11;:18;10551:5;10539:18;;;;;;;;;;;;;;;:27;10558:7;10539:27;;;;;;;;;;;;;;;;10532:34;;10373:201;;;;:::o;34536:135::-;34596:4;2191:12;:10;:12::i;:::-;2180:23;;:7;:5;:7::i;:::-;:23;;;2172:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34636:5:::1;34613:20;;:28;;;;;;;;;;;;;;;;;;34659:4;34652:11;;34536:135:::0;:::o;30739:30::-;;;;:::o;2701:238::-;2191:12;:10;:12::i;:::-;2180:23;;:7;:5;:7::i;:::-;:23;;;2172:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2824:1:::1;2804:22;;:8;:22;;;;2782:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;2903:28;2922:8;2903:18;:28::i;:::-;2701:238:::0;:::o;30882:31::-;;;;:::o;30269:24::-;;;;:::o;30340:30::-;;;;;;;;;;;;;:::o;608:98::-;661:7;688:10;681:17;;608:98;:::o;16941:380::-;17094:1;17077:19;;:5;:19;;;;17069:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17175:1;17156:21;;:7;:21;;;;17148:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17259:6;17229:11;:18;17241:5;17229:18;;;;;;;;;;;;;;;:27;17248:7;17229:27;;;;;;;;;;;;;;;:36;;;;17297:7;17281:32;;17290:5;17281:32;;;17306:6;17281:32;;;;;;:::i;:::-;;;;;;;;16941:380;;;:::o;38326:4741::-;38474:1;38458:18;;:4;:18;;;;38450:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38551:1;38537:16;;:2;:16;;;;38529:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;38620:1;38610:6;:11;38606:93;;;38638:28;38654:4;38660:2;38664:1;38638:15;:28::i;:::-;38681:7;;38606:93;38715:12;;;;;;;;;;;38711:2503;;;38774:14;;;;;;;;;;;38766:22;;:4;:22;;;;:63;;;;;38815:14;;;;;;;;;;;38809:20;;:2;:20;;;;38766:63;:100;;;;;38864:1;38850:16;;:2;:16;;;;38766:100;:142;;;;;38901:6;38887:21;;:2;:21;;;;38766:142;:172;;;;;38930:8;;;;;;;;;;;38929:9;38766:172;38744:2459;;;38978:11;;;;;;;;;;;38973:221;;39048:19;:25;39068:4;39048:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;39077:19;:23;39097:2;39077:23;;;;;;;;;;;;;;;;;;;;;;;;;39048:52;39014:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;38973:221;39350:20;;;;;;;;;;;39346:641;;;39431:7;:5;:7::i;:::-;39425:13;;:2;:13;;;;:72;;;;;39481:15;39467:30;;:2;:30;;;;39425:72;:129;;;;;39540:13;39526:28;;:2;:28;;;;39425:129;39395:573;;;39718:12;39643:28;:39;39672:9;39643:39;;;;;;;;;;;;;;;;:87;39605:258;;;;;;;;;;;;:::i;:::-;;;;;;;;;39932:12;39890:28;:39;39919:9;39890:39;;;;;;;;;;;;;;;:54;;;;39395:573;39346:641;40064:25;:31;40090:4;40064:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;40121:31;:35;40153:2;40121:35;;;;;;;;;;;;;;;;;;;;;;;;;40120:36;40064:92;40038:1150;;;40243:20;;40233:6;:30;;40199:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;40451:9;;40434:13;40444:2;40434:9;:13::i;:::-;40425:6;:22;;;;:::i;:::-;:35;;40391:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;40038:1150;;;40632:25;:29;40658:2;40632:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;40687:31;:37;40719:4;40687:37;;;;;;;;;;;;;;;;;;;;;;;;;40686:38;40632:92;40606:582;;;40811:20;;40801:6;:30;;40767:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;40606:582;;;40968:31;:35;41000:2;40968:35;;;;;;;;;;;;;;;;;;;;;;;;;40963:225;;41088:9;;41071:13;41081:2;41071:9;:13::i;:::-;41062:6;:22;;;;:::i;:::-;:35;;41028:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;40963:225;40606:582;40038:1150;38744:2459;38711:2503;41226:28;41257:24;41275:4;41257:9;:24::i;:::-;41226:55;;41294:12;41333:19;;41309:20;:43;;41294:58;;41383:7;:35;;;;;41407:11;;;;;;;;;;;41383:35;:61;;;;;41436:8;;;;;;;;;;;41435:9;41383:61;:110;;;;;41462:25;:31;41488:4;41462:31;;;;;;;;;;;;;;;;;;;;;;;;;41461:32;41383:110;:153;;;;;41511:19;:25;41531:4;41511:25;;;;;;;;;;;;;;;;;;;;;;;;;41510:26;41383:153;:194;;;;;41554:19;:23;41574:2;41554:23;;;;;;;;;;;;;;;;;;;;;;;;;41553:24;41383:194;41365:333;;;41615:4;41604:8;;:15;;;;;;;;;;;;;;;;;;41636:17;:15;:17::i;:::-;41681:5;41670:8;;:16;;;;;;;;;;;;;;;;;;41365:333;41710:12;41726:8;;;;;;;;;;;41725:9;41710:24;;41836:19;:25;41856:4;41836:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;41865:19;:23;41885:2;41865:23;;;;;;;;;;;;;;;;;;;;;;;;;41836:52;41832:100;;;41915:5;41905:15;;41832:100;41944:12;42049:7;42045:969;;;42101:25;:29;42127:2;42101:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;42150:1;42134:13;;:17;42101:50;42097:768;;;42179:34;42209:3;42179:25;42190:13;;42179:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;42172:41;;42282:13;;42262:16;;42255:4;:23;;;;:::i;:::-;42254:41;;;;:::i;:::-;42232:18;;:63;;;;;;;:::i;:::-;;;;;;;;42352:13;;42338:10;;42331:4;:17;;;;:::i;:::-;42330:35;;;;:::i;:::-;42314:12;;:51;;;;;;;:::i;:::-;;;;;;;;42434:13;;42414:16;;42407:4;:23;;;;:::i;:::-;42406:41;;;;:::i;:::-;42384:18;;:63;;;;;;;:::i;:::-;;;;;;;;42097:768;;;42509:25;:31;42535:4;42509:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;42559:1;42544:12;;:16;42509:51;42505:360;;;42588:33;42617:3;42588:24;42599:12;;42588:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;42581:40;;42689:12;;42670:15;;42663:4;:22;;;;:::i;:::-;42662:39;;;;:::i;:::-;42640:18;;:61;;;;;;;:::i;:::-;;;;;;;;42757:12;;42744:9;;42737:4;:16;;;;:::i;:::-;42736:33;;;;:::i;:::-;42720:12;;:49;;;;;;;:::i;:::-;;;;;;;;42837:12;;42818:15;;42811:4;:22;;;;:::i;:::-;42810:39;;;;:::i;:::-;42788:18;;:61;;;;;;;:::i;:::-;;;;;;;;42505:360;42097:768;42892:1;42885:4;:8;42881:91;;;42914:42;42930:4;42944;42951;42914:15;:42::i;:::-;42881:91;42998:4;42988:14;;;;;:::i;:::-;;;42045:969;43026:33;43042:4;43048:2;43052:6;43026:15;:33::i;:::-;38439:4628;;;;38326:4741;;;;:::o;3099:191::-;3173:16;3192:6;;;;;;;;;;;3173:25;;3218:8;3209:6;;:17;;;;;;;;;;;;;;;;;;3273:8;3242:40;;3263:8;3242:40;;;;;;;;;;;;3162:128;3099:191;:::o;37495:188::-;37612:5;37578:25;:31;37604:4;37578:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;37669:5;37635:40;;37663:4;37635:40;;;;;;;;;;;;37495:188;;:::o;14123:770::-;14281:1;14263:20;;:6;:20;;;;14255:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;14365:1;14344:23;;:9;:23;;;;14336:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14420:47;14441:6;14449:9;14460:6;14420:20;:47::i;:::-;14480:21;14504:9;:17;14514:6;14504:17;;;;;;;;;;;;;;;;14480:41;;14571:6;14554:13;:23;;14532:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;14715:6;14699:13;:22;14679:9;:17;14689:6;14679:17;;;;;;;;;;;;;;;:42;;;;14767:6;14743:9;:20;14753:9;14743:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;14808:9;14791:35;;14800:6;14791:35;;;14819:6;14791:35;;;;;;:::i;:::-;;;;;;;;14839:46;14859:6;14867:9;14878:6;14839:19;:46::i;:::-;14244:649;14123:770;;;:::o;43672:922::-;43718:23;43744:24;43762:4;43744:9;:24::i;:::-;43718:50;;43782:25;43878:12;;43844:18;;43810;;:52;;;;:::i;:::-;:80;;;;:::i;:::-;43782:108;;43901:12;43949:1;43930:15;:20;:46;;;;43975:1;43954:17;:22;43930:46;43926:85;;;43993:7;;;;;43926:85;44067:1;44045:19;;:23;;;;:::i;:::-;44027:15;:41;44023:115;;;44125:1;44103:19;;:23;;;;:::i;:::-;44085:41;;44023:115;44150:26;44179:15;44150:44;;44211:189;44274:19;;44246:25;44256:14;;;;;;;;;;;44246:9;:25::i;:::-;:47;:153;;44381:18;44246:153;;;44335:25;44345:14;;;;;;;;;;;44335:9;:25::i;:::-;44314:18;:46;;;;:::i;:::-;44246:153;44211:16;:189::i;:::-;44441:9;44417:21;:33;44413:174;;;44489:14;;;;;;;;;;;44481:28;;44535:21;44481:94;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44467:108;;;;;44413:174;43707:887;;;;43672:922;:::o;22554:98::-;22612:7;22643:1;22639;:5;;;;:::i;:::-;22632:12;;22554:98;;;;:::o;22953:::-;23011:7;23042:1;23038;:5;;;;:::i;:::-;23031:12;;22953:98;;;;:::o;17921:125::-;;;;:::o;18650:124::-;;;;:::o;43075:589::-;43201:21;43239:1;43225:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43201:40;;43270:4;43252;43257:1;43252:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;43296:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;43286:4;43291:1;43286:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;43331:62;43348:4;43363:15;43381:11;43331:8;:62::i;:::-;43432:15;:66;;;43513:11;43539:1;43583:4;43610;43630:15;43432:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43130:534;43075:589;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:329::-;3553:6;3602:2;3590:9;3581:7;3577:23;3573:32;3570:119;;;3608:79;;:::i;:::-;3570:119;3728:1;3753:53;3798:7;3789:6;3778:9;3774:22;3753:53;:::i;:::-;3743:63;;3699:117;3494:329;;;;:::o;3829:60::-;3857:3;3878:5;3871:12;;3829:60;;;:::o;3895:142::-;3945:9;3978:53;3996:34;4005:24;4023:5;4005:24;:::i;:::-;3996:34;:::i;:::-;3978:53;:::i;:::-;3965:66;;3895:142;;;:::o;4043:126::-;4093:9;4126:37;4157:5;4126:37;:::i;:::-;4113:50;;4043:126;;;:::o;4175:153::-;4252:9;4285:37;4316:5;4285:37;:::i;:::-;4272:50;;4175:153;;;:::o;4334:185::-;4448:64;4506:5;4448:64;:::i;:::-;4443:3;4436:77;4334:185;;:::o;4525:276::-;4645:4;4683:2;4672:9;4668:18;4660:26;;4696:98;4791:1;4780:9;4776:17;4767:6;4696:98;:::i;:::-;4525:276;;;;:::o;4807:118::-;4894:24;4912:5;4894:24;:::i;:::-;4889:3;4882:37;4807:118;;:::o;4931:222::-;5024:4;5062:2;5051:9;5047:18;5039:26;;5075:71;5143:1;5132:9;5128:17;5119:6;5075:71;:::i;:::-;4931:222;;;;:::o;5159:329::-;5218:6;5267:2;5255:9;5246:7;5242:23;5238:32;5235:119;;;5273:79;;:::i;:::-;5235:119;5393:1;5418:53;5463:7;5454:6;5443:9;5439:22;5418:53;:::i;:::-;5408:63;;5364:117;5159:329;;;;:::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:619::-;7713:6;7721;7729;7778:2;7766:9;7757:7;7753:23;7749:32;7746:119;;;7784:79;;:::i;:::-;7746:119;7904:1;7929:53;7974:7;7965:6;7954:9;7950:22;7929:53;:::i;:::-;7919:63;;7875:117;8031:2;8057:53;8102:7;8093:6;8082:9;8078:22;8057:53;:::i;:::-;8047:63;;8002:118;8159:2;8185:53;8230:7;8221:6;8210:9;8206:22;8185:53;:::i;:::-;8175:63;;8130:118;7636:619;;;;;:::o;8261:323::-;8317:6;8366:2;8354:9;8345:7;8341:23;8337:32;8334:119;;;8372:79;;:::i;:::-;8334:119;8492:1;8517:50;8559:7;8550:6;8539:9;8535:22;8517:50;:::i;:::-;8507:60;;8463:114;8261:323;;;;:::o;8590:474::-;8658:6;8666;8715:2;8703:9;8694:7;8690:23;8686:32;8683:119;;;8721:79;;:::i;:::-;8683:119;8841:1;8866:53;8911:7;8902:6;8891:9;8887:22;8866:53;:::i;:::-;8856:63;;8812:117;8968:2;8994:53;9039:7;9030:6;9019:9;9015:22;8994:53;:::i;:::-;8984:63;;8939:118;8590:474;;;;;:::o;9070:180::-;9118:77;9115:1;9108:88;9215:4;9212:1;9205:15;9239:4;9236:1;9229:15;9256:320;9300:6;9337:1;9331:4;9327:12;9317:22;;9384:1;9378:4;9374:12;9405:18;9395:81;;9461:4;9453:6;9449:17;9439:27;;9395:81;9523:2;9515:6;9512:14;9492:18;9489:38;9486:84;;;9542:18;;:::i;:::-;9486:84;9307:269;9256:320;;;:::o;9582:182::-;9722:34;9718:1;9710:6;9706:14;9699:58;9582:182;:::o;9770:366::-;9912:3;9933:67;9997:2;9992:3;9933:67;:::i;:::-;9926:74;;10009:93;10098:3;10009:93;:::i;:::-;10127:2;10122:3;10118:12;10111:19;;9770:366;;;:::o;10142:419::-;10308:4;10346:2;10335:9;10331:18;10323:26;;10395:9;10389:4;10385:20;10381:1;10370:9;10366:17;10359:47;10423:131;10549:4;10423:131;:::i;:::-;10415:139;;10142:419;;;:::o;10567:180::-;10615:77;10612:1;10605:88;10712:4;10709:1;10702:15;10736:4;10733:1;10726:15;10753:348;10793:7;10816:20;10834:1;10816:20;:::i;:::-;10811:25;;10850:20;10868:1;10850:20;:::i;:::-;10845:25;;11038:1;10970:66;10966:74;10963:1;10960:81;10955:1;10948:9;10941:17;10937:105;10934:131;;;11045:18;;:::i;:::-;10934:131;11093:1;11090;11086:9;11075:20;;10753:348;;;;:::o;11107:180::-;11155:77;11152:1;11145:88;11252:4;11249:1;11242:15;11276:4;11273:1;11266:15;11293:185;11333:1;11350:20;11368:1;11350:20;:::i;:::-;11345:25;;11384:20;11402:1;11384:20;:::i;:::-;11379:25;;11423:1;11413:35;;11428:18;;:::i;:::-;11413:35;11470:1;11467;11463:9;11458:14;;11293:185;;;;:::o;11484:234::-;11624:34;11620:1;11612:6;11608:14;11601:58;11693:17;11688:2;11680:6;11676:15;11669:42;11484:234;:::o;11724:366::-;11866:3;11887:67;11951:2;11946:3;11887:67;:::i;:::-;11880:74;;11963:93;12052:3;11963:93;:::i;:::-;12081:2;12076:3;12072:12;12065:19;;11724:366;;;:::o;12096:419::-;12262:4;12300:2;12289:9;12285:18;12277:26;;12349:9;12343:4;12339:20;12335:1;12324:9;12320:17;12313:47;12377:131;12503:4;12377:131;:::i;:::-;12369:139;;12096:419;;;:::o;12521:227::-;12661:34;12657:1;12649:6;12645:14;12638:58;12730:10;12725:2;12717:6;12713:15;12706:35;12521:227;:::o;12754:366::-;12896:3;12917:67;12981:2;12976:3;12917:67;:::i;:::-;12910:74;;12993:93;13082:3;12993:93;:::i;:::-;13111:2;13106:3;13102:12;13095:19;;12754:366;;;:::o;13126:419::-;13292:4;13330:2;13319:9;13315:18;13307:26;;13379:9;13373:4;13369:20;13365:1;13354:9;13350:17;13343:47;13407:131;13533:4;13407:131;:::i;:::-;13399:139;;13126:419;;;:::o;13551:305::-;13591:3;13610:20;13628:1;13610:20;:::i;:::-;13605:25;;13644:20;13662:1;13644:20;:::i;:::-;13639:25;;13798:1;13730:66;13726:74;13723:1;13720:81;13717:107;;;13804:18;;:::i;:::-;13717:107;13848:1;13845;13841:9;13834:16;;13551:305;;;;:::o;13862:240::-;14002:34;13998:1;13990:6;13986:14;13979:58;14071:23;14066:2;14058:6;14054:15;14047:48;13862:240;:::o;14108:366::-;14250:3;14271:67;14335:2;14330:3;14271:67;:::i;:::-;14264:74;;14347:93;14436:3;14347:93;:::i;:::-;14465:2;14460:3;14456:12;14449:19;;14108:366;;;:::o;14480:419::-;14646:4;14684:2;14673:9;14669:18;14661:26;;14733:9;14727:4;14723:20;14719:1;14708:9;14704:17;14697:47;14761:131;14887:4;14761:131;:::i;:::-;14753:139;;14480:419;;;:::o;14905:239::-;15045:34;15041:1;15033:6;15029:14;15022:58;15114:22;15109:2;15101:6;15097:15;15090:47;14905:239;:::o;15150:366::-;15292:3;15313:67;15377:2;15372:3;15313:67;:::i;:::-;15306:74;;15389:93;15478:3;15389:93;:::i;:::-;15507:2;15502:3;15498:12;15491:19;;15150:366;;;:::o;15522:419::-;15688:4;15726:2;15715:9;15711:18;15703:26;;15775:9;15769:4;15765:20;15761:1;15750:9;15746:17;15739:47;15803:131;15929:4;15803:131;:::i;:::-;15795:139;;15522:419;;;:::o;15947:178::-;16087:30;16083:1;16075:6;16071:14;16064:54;15947:178;:::o;16131:366::-;16273:3;16294:67;16358:2;16353:3;16294:67;:::i;:::-;16287:74;;16370:93;16459:3;16370:93;:::i;:::-;16488:2;16483:3;16479:12;16472:19;;16131:366;;;:::o;16503:419::-;16669:4;16707:2;16696:9;16692:18;16684:26;;16756:9;16750:4;16746:20;16742:1;16731:9;16727:17;16720:47;16784:131;16910:4;16784:131;:::i;:::-;16776:139;;16503:419;;;:::o;16928:244::-;17068:34;17064:1;17056:6;17052:14;17045:58;17137:27;17132:2;17124:6;17120:15;17113:52;16928:244;:::o;17178:366::-;17320:3;17341:67;17405:2;17400:3;17341:67;:::i;:::-;17334:74;;17417:93;17506:3;17417:93;:::i;:::-;17535:2;17530:3;17526:12;17519:19;;17178:366;;;:::o;17550:419::-;17716:4;17754:2;17743:9;17739:18;17731:26;;17803:9;17797:4;17793:20;17789:1;17778:9;17774:17;17767:47;17831:131;17957:4;17831:131;:::i;:::-;17823:139;;17550:419;;;:::o;17975:224::-;18115:34;18111:1;18103:6;18099:14;18092:58;18184:7;18179:2;18171:6;18167:15;18160:32;17975:224;:::o;18205:366::-;18347:3;18368:67;18432:2;18427:3;18368:67;:::i;:::-;18361:74;;18444:93;18533:3;18444:93;:::i;:::-;18562:2;18557:3;18553:12;18546:19;;18205:366;;;:::o;18577:419::-;18743:4;18781:2;18770:9;18766:18;18758:26;;18830:9;18824:4;18820:20;18816:1;18805:9;18801:17;18794:47;18858:131;18984:4;18858:131;:::i;:::-;18850:139;;18577:419;;;:::o;19002:178::-;19142:30;19138:1;19130:6;19126:14;19119:54;19002:178;:::o;19186:366::-;19328:3;19349:67;19413:2;19408:3;19349:67;:::i;:::-;19342:74;;19425:93;19514:3;19425:93;:::i;:::-;19543:2;19538:3;19534:12;19527:19;;19186:366;;;:::o;19558:419::-;19724:4;19762:2;19751:9;19747:18;19739:26;;19811:9;19805:4;19801:20;19797:1;19786:9;19782:17;19775:47;19839:131;19965:4;19839:131;:::i;:::-;19831:139;;19558:419;;;:::o;19983:223::-;20123:34;20119:1;20111:6;20107:14;20100:58;20192:6;20187:2;20179:6;20175:15;20168:31;19983:223;:::o;20212:366::-;20354:3;20375:67;20439:2;20434:3;20375:67;:::i;:::-;20368:74;;20451:93;20540:3;20451:93;:::i;:::-;20569:2;20564:3;20560:12;20553:19;;20212:366;;;:::o;20584:419::-;20750:4;20788:2;20777:9;20773:18;20765:26;;20837:9;20831:4;20827:20;20823:1;20812:9;20808:17;20801:47;20865:131;20991:4;20865:131;:::i;:::-;20857:139;;20584:419;;;:::o;21009:147::-;21110:11;21147:3;21132:18;;21009:147;;;;:::o;21162:114::-;;:::o;21282:398::-;21441:3;21462:83;21543:1;21538:3;21462:83;:::i;:::-;21455:90;;21554:93;21643:3;21554:93;:::i;:::-;21672:1;21667:3;21663:11;21656:18;;21282:398;;;:::o;21686:379::-;21870:3;21892:147;22035:3;21892:147;:::i;:::-;21885:154;;22056:3;22049:10;;21686:379;;;:::o;22071:225::-;22211:34;22207:1;22199:6;22195:14;22188:58;22280:8;22275:2;22267:6;22263:15;22256:33;22071:225;:::o;22302:366::-;22444:3;22465:67;22529:2;22524:3;22465:67;:::i;:::-;22458:74;;22541:93;22630:3;22541:93;:::i;:::-;22659:2;22654:3;22650:12;22643:19;;22302:366;;;:::o;22674:419::-;22840:4;22878:2;22867:9;22863:18;22855:26;;22927:9;22921:4;22917:20;22913:1;22902:9;22898:17;22891:47;22955:131;23081:4;22955:131;:::i;:::-;22947:139;;22674:419;;;:::o;23099:223::-;23239:34;23235:1;23227:6;23223:14;23216:58;23308:6;23303:2;23295:6;23291:15;23284:31;23099:223;:::o;23328:366::-;23470:3;23491:67;23555:2;23550:3;23491:67;:::i;:::-;23484:74;;23567:93;23656:3;23567:93;:::i;:::-;23685:2;23680:3;23676:12;23669:19;;23328:366;;;:::o;23700:419::-;23866:4;23904:2;23893:9;23889:18;23881:26;;23953:9;23947:4;23943:20;23939:1;23928:9;23924:17;23917:47;23981:131;24107:4;23981:131;:::i;:::-;23973:139;;23700:419;;;:::o;24125:221::-;24265:34;24261:1;24253:6;24249:14;24242:58;24334:4;24329:2;24321:6;24317:15;24310:29;24125:221;:::o;24352:366::-;24494:3;24515:67;24579:2;24574:3;24515:67;:::i;:::-;24508:74;;24591:93;24680:3;24591:93;:::i;:::-;24709:2;24704:3;24700:12;24693:19;;24352:366;;;:::o;24724:419::-;24890:4;24928:2;24917:9;24913:18;24905:26;;24977:9;24971:4;24967:20;24963:1;24952:9;24948:17;24941:47;25005:131;25131:4;25005:131;:::i;:::-;24997:139;;24724:419;;;:::o;25149:224::-;25289:34;25285:1;25277:6;25273:14;25266:58;25358:7;25353:2;25345:6;25341:15;25334:32;25149:224;:::o;25379:366::-;25521:3;25542:67;25606:2;25601:3;25542:67;:::i;:::-;25535:74;;25618:93;25707:3;25618:93;:::i;:::-;25736:2;25731:3;25727:12;25720:19;;25379:366;;;:::o;25751:419::-;25917:4;25955:2;25944:9;25940:18;25932:26;;26004:9;25998:4;25994:20;25990:1;25979:9;25975:17;25968:47;26032:131;26158:4;26032:131;:::i;:::-;26024:139;;25751:419;;;:::o;26176:222::-;26316:34;26312:1;26304:6;26300:14;26293:58;26385:5;26380:2;26372:6;26368:15;26361:30;26176:222;:::o;26404:366::-;26546:3;26567:67;26631:2;26626:3;26567:67;:::i;:::-;26560:74;;26643:93;26732:3;26643:93;:::i;:::-;26761:2;26756:3;26752:12;26745:19;;26404:366;;;:::o;26776:419::-;26942:4;26980:2;26969:9;26965:18;26957:26;;27029:9;27023:4;27019:20;27015:1;27004:9;27000:17;26993:47;27057:131;27183:4;27057:131;:::i;:::-;27049:139;;26776:419;;;:::o;27201:172::-;27341:24;27337:1;27329:6;27325:14;27318:48;27201:172;:::o;27379:366::-;27521:3;27542:67;27606:2;27601:3;27542:67;:::i;:::-;27535:74;;27618:93;27707:3;27618:93;:::i;:::-;27736:2;27731:3;27727:12;27720:19;;27379:366;;;:::o;27751:419::-;27917:4;27955:2;27944:9;27940:18;27932:26;;28004:9;27998:4;27994:20;27990:1;27979:9;27975:17;27968:47;28032:131;28158:4;28032:131;:::i;:::-;28024:139;;27751:419;;;:::o;28176:297::-;28316:34;28312:1;28304:6;28300:14;28293:58;28385:34;28380:2;28372:6;28368:15;28361:59;28454:11;28449:2;28441:6;28437:15;28430:36;28176:297;:::o;28479:366::-;28621:3;28642:67;28706:2;28701:3;28642:67;:::i;:::-;28635:74;;28718:93;28807:3;28718:93;:::i;:::-;28836:2;28831:3;28827:12;28820:19;;28479:366;;;:::o;28851:419::-;29017:4;29055:2;29044:9;29040:18;29032:26;;29104:9;29098:4;29094:20;29090:1;29079:9;29075:17;29068:47;29132:131;29258:4;29132:131;:::i;:::-;29124:139;;28851:419;;;:::o;29276:240::-;29416:34;29412:1;29404:6;29400:14;29393:58;29485:23;29480:2;29472:6;29468:15;29461:48;29276:240;:::o;29522:366::-;29664:3;29685:67;29749:2;29744:3;29685:67;:::i;:::-;29678:74;;29761:93;29850:3;29761:93;:::i;:::-;29879:2;29874:3;29870:12;29863:19;;29522:366;;;:::o;29894:419::-;30060:4;30098:2;30087:9;30083:18;30075:26;;30147:9;30141:4;30137:20;30133:1;30122:9;30118:17;30111:47;30175:131;30301:4;30175:131;:::i;:::-;30167:139;;29894:419;;;:::o;30319:169::-;30459:21;30455:1;30447:6;30443:14;30436:45;30319:169;:::o;30494:366::-;30636:3;30657:67;30721:2;30716:3;30657:67;:::i;:::-;30650:74;;30733:93;30822:3;30733:93;:::i;:::-;30851:2;30846:3;30842:12;30835:19;;30494:366;;;:::o;30866:419::-;31032:4;31070:2;31059:9;31055:18;31047:26;;31119:9;31113:4;31109:20;31105:1;31094:9;31090:17;31083:47;31147:131;31273:4;31147:131;:::i;:::-;31139:139;;30866:419;;;:::o;31291:241::-;31431:34;31427:1;31419:6;31415:14;31408:58;31500:24;31495:2;31487:6;31483:15;31476:49;31291:241;:::o;31538:366::-;31680:3;31701:67;31765:2;31760:3;31701:67;:::i;:::-;31694:74;;31777:93;31866:3;31777:93;:::i;:::-;31895:2;31890:3;31886:12;31879:19;;31538:366;;;:::o;31910:419::-;32076:4;32114:2;32103:9;32099:18;32091:26;;32163:9;32157:4;32153:20;32149:1;32138:9;32134:17;32127:47;32191:131;32317:4;32191:131;:::i;:::-;32183:139;;31910:419;;;:::o;32335:191::-;32375:4;32395:20;32413:1;32395:20;:::i;:::-;32390:25;;32429:20;32447:1;32429:20;:::i;:::-;32424:25;;32468:1;32465;32462:8;32459:34;;;32473:18;;:::i;:::-;32459:34;32518:1;32515;32511:9;32503:17;;32335:191;;;;:::o;32532:225::-;32672:34;32668:1;32660:6;32656:14;32649:58;32741:8;32736:2;32728:6;32724:15;32717:33;32532:225;:::o;32763:366::-;32905:3;32926:67;32990:2;32985:3;32926:67;:::i;:::-;32919:74;;33002:93;33091:3;33002:93;:::i;:::-;33120:2;33115:3;33111:12;33104:19;;32763:366;;;:::o;33135:419::-;33301:4;33339:2;33328:9;33324:18;33316:26;;33388:9;33382:4;33378:20;33374:1;33363:9;33359:17;33352:47;33416:131;33542:4;33416:131;:::i;:::-;33408:139;;33135:419;;;:::o;33560:180::-;33608:77;33605:1;33598:88;33705:4;33702:1;33695:15;33729:4;33726:1;33719:15;33746:180;33794:77;33791:1;33784:88;33891:4;33888:1;33881:15;33915:4;33912:1;33905:15;33932:143;33989:5;34020:6;34014:13;34005:22;;34036:33;34063:5;34036:33;:::i;:::-;33932:143;;;;:::o;34081:351::-;34151:6;34200:2;34188:9;34179:7;34175:23;34171:32;34168:119;;;34206:79;;:::i;:::-;34168:119;34326:1;34351:64;34407:7;34398:6;34387:9;34383:22;34351:64;:::i;:::-;34341:74;;34297:128;34081:351;;;;:::o;34438:85::-;34483:7;34512:5;34501:16;;34438:85;;;:::o;34529:158::-;34587:9;34620:61;34638:42;34647:32;34673:5;34647:32;:::i;:::-;34638:42;:::i;:::-;34620:61;:::i;:::-;34607:74;;34529:158;;;:::o;34693:147::-;34788:45;34827:5;34788:45;:::i;:::-;34783:3;34776:58;34693:147;;:::o;34846:114::-;34913:6;34947:5;34941:12;34931:22;;34846:114;;;:::o;34966:184::-;35065:11;35099:6;35094:3;35087:19;35139:4;35134:3;35130:14;35115:29;;34966:184;;;;:::o;35156:132::-;35223:4;35246:3;35238:11;;35276:4;35271:3;35267:14;35259:22;;35156:132;;;:::o;35294:108::-;35371:24;35389:5;35371:24;:::i;:::-;35366:3;35359:37;35294:108;;:::o;35408:179::-;35477:10;35498:46;35540:3;35532:6;35498:46;:::i;:::-;35576:4;35571:3;35567:14;35553:28;;35408:179;;;;:::o;35593:113::-;35663:4;35695;35690:3;35686:14;35678:22;;35593:113;;;:::o;35742:732::-;35861:3;35890:54;35938:5;35890:54;:::i;:::-;35960:86;36039:6;36034:3;35960:86;:::i;:::-;35953:93;;36070:56;36120:5;36070:56;:::i;:::-;36149:7;36180:1;36165:284;36190:6;36187:1;36184:13;36165:284;;;36266:6;36260:13;36293:63;36352:3;36337:13;36293:63;:::i;:::-;36286:70;;36379:60;36432:6;36379:60;:::i;:::-;36369:70;;36225:224;36212:1;36209;36205:9;36200:14;;36165:284;;;36169:14;36465:3;36458:10;;35866:608;;;35742:732;;;;:::o;36480:831::-;36743:4;36781:3;36770:9;36766:19;36758:27;;36795:71;36863:1;36852:9;36848:17;36839:6;36795:71;:::i;:::-;36876:80;36952:2;36941:9;36937:18;36928:6;36876:80;:::i;:::-;37003:9;36997:4;36993:20;36988:2;36977:9;36973:18;36966:48;37031:108;37134:4;37125:6;37031:108;:::i;:::-;37023:116;;37149:72;37217:2;37206:9;37202:18;37193:6;37149:72;:::i;:::-;37231:73;37299:3;37288:9;37284:19;37275:6;37231:73;:::i;:::-;36480:831;;;;;;;;:::o

Swarm Source

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