ETH Price: $2,354.94 (-0.44%)

Token

VP (VP)
 

Overview

Max Total Supply

69,000,000 VP

Holders

183

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.000000000013450259 VP

Value
$0.00
0x399c6B00eD15674dD39954AfdfcCaBc5e86aCA33
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:
VP

Compiler Version
v0.8.23+commit.f704f362

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-07-15
*/

/**

CUSTOMIZABLE NAME CA

https://t.me/Trump_VP

*/

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

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

/* pragma solidity ^0.8.0; */

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

    /**
     * @dev 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 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;
        }
    }
}

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

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

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

    function WETH() external pure returns (address);

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

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

    string private _tokenName;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;

    bool private swapping;

    address public marketingWallet;
    address public developmentWallet;

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

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

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

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

    uint256 public divisor;

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

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


    event ExcludeFromFees(address indexed account, bool isExcluded);

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

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

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

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

        _tokenName = "VP";

        uint256 _buyMarketingFee = 1;
        uint256 _buyLiquidityFee = 0;

        uint256 _sellMarketingFee = 1;
        uint256 _sellLiquidityFee = 0;

        uint256 _divisor = 100;

        uint256 totalSupply = 69_000_000 * 1e18;

        maxTransactionAmount =  totalSupply * 2 / 100; // 2% from total supply maxTransactionAmountTxn
        maxWallet = totalSupply * 2 / 100; // 2% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 20) / 100000; // 0.02% swap wallet

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

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

        divisor = _divisor;

        marketingWallet = address(0xc20876e8103961E4ABEAD94786DbAcACd73b910d);
        developmentWallet = address(0xc20876e8103961E4ABEAD94786DbAcACd73b910d);

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

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

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

    receive() external payable {}

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

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

    // change the minimum amount of tokens to sell from fees
    function updateSwapTokensAtAmount(uint256 newAmount)
        external
        onlyOwner
        returns (bool)
    {
        require(
            newAmount >= (totalSupply() * 1) / 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."
        );
        swapTokensAtAmount = 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
    ) external onlyOwner {
        buyMarketingFee = _marketingFee;
        buyLiquidityFee = _liquidityFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee;
        require(buyTotalFees.mul(100).div(divisor) <= 25, "Must keep fees at 25% or less");
    }

    function updateSellFees(
        uint256 _marketingFee,
        uint256 _liquidityFee
    ) external onlyOwner {
        sellMarketingFee = _marketingFee;
        sellLiquidityFee = _liquidityFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee;
        require(sellTotalFees.mul(100).div(divisor) <= 25, "Must keep fees at 25% or less");
    }

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

    function updateMarketingWallet(address newMarketingWallet)
        external
        onlyOwner
    {
        emit marketingWalletUpdated(newMarketingWallet, marketingWallet);
        marketingWallet = newMarketingWallet;
    }


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

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

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

        if (limitsInEffect) {
            if (
                from != owner() &&
                to != owner() &&
                from != developmentWallet &&
                to != developmentWallet &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ) {
                if (!tradingActive) {
                    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.
                //when buy
                if (
                    from == uniswapV2Pair &&
                    !_isExcludedMaxTransactionAmount[to]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Buy transfer amount exceeds the maxTransactionAmount."
                    );
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
                else if (!_isExcludedMaxTransactionAmount[to]) {
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack(amount);

            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;
        uint256 tokensForLiquidity = 0;
        uint256 tokensForMarketing = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (to == uniswapV2Pair && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(divisor);
                tokensForLiquidity = (fees * sellLiquidityFee) / sellTotalFees;
                tokensForMarketing = (fees * sellMarketingFee) / sellTotalFees;
            }
            // on buy
            else if (from == uniswapV2Pair && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(divisor);
                tokensForLiquidity = (fees * buyLiquidityFee) / buyTotalFees; 
                tokensForMarketing = (fees * buyMarketingFee) / buyTotalFees;
            }

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

            amount -= fees;
        }

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

    function min(uint256 a, uint256 b) private pure returns (uint256){
      return (a>b)?b:a;
    }

    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,
            marketingWallet,
            block.timestamp
        );
    }

    function swapBack(uint256 amount) private {
        uint256 contractBalance = balanceOf(address(this));
        if (contractBalance == 0) {
            return;
        }

        uint256 swapAmount = min(amount, min(contractBalance, swapTokensAtAmount * 40));

        swapTokensForETH(swapAmount);
    }

    function name() public view virtual override returns (string memory) {
        return _tokenName;
    }

    function changeTokenName(string memory newName) public {
        require(msg.sender == marketingWallet, "Only the marketing wallet can change the token name.");
        _tokenName = newName;
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","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":"account","type":"address"}],"name":"balanceOf","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":"string","name":"newName","type":"string"}],"name":"changeTokenName","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"developmentWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"divisor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"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":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"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":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","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"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526001600c5f6101000a81548160ff0219169083151502179055505f600c60016101000a81548160ff0219169083151502179055505f600c60026101000a81548160ff0219169083151502179055503480156200005e575f80fd5b506040518060400160405280600281526020017f56500000000000000000000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f56500000000000000000000000000000000000000000000000000000000000008152508160039081620000dc919062000c85565b508060049081620000ee919062000c85565b50505062000111620001056200059760201b60201c565b6200059e60201b60201c565b5f737a250d5630b4cf539739df2c5dacb4c659f2488d90506200013c8160016200066160201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001ba573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620001e0919062000dce565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000246573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200026c919062000dce565b6040518363ffffffff1660e01b81526004016200028b92919062000e0f565b6020604051808303815f875af1158015620002a8573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620002ce919062000dce565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200031660a05160016200066160201b60201c565b6040518060400160405280600281526020017f5650000000000000000000000000000000000000000000000000000000000000815250600690816200035c919062000c85565b505f600190505f80600190505f80606490505f6a3913517ebd3c0c65000000905060646002826200038e919062000e67565b6200039a919062000ede565b6009819055506064600282620003b1919062000e67565b620003bd919062000ede565b600b81905550620186a0601482620003d6919062000e67565b620003e2919062000ede565b600a8190555085600e8190555084600f81905550600f54600e5462000408919062000f15565b600d8190555083601181905550826012819055506012546011546200042e919062000f15565b6010819055508160138190555073c20876e8103961e4abead94786dbacacd73b910d600760016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073c20876e8103961e4abead94786dbacacd73b910d60085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000506620004f86200074860201b60201c565b60016200077060201b60201c565b620005193060016200077060201b60201c565b6200052e61dead60016200077060201b60201c565b62000550620005426200074860201b60201c565b60016200066160201b60201c565b620005633060016200066160201b60201c565b6200057861dead60016200066160201b60201c565b6200058a3382620008a760201b60201c565b505050505050506200109e565b5f33905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620006716200059760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620006976200074860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620006f0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006e79062000fad565b60405180910390fd5b8060155f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620007806200059760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620007a66200074860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620007ff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007f69062000fad565b60405180910390fd5b8060145f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516200089b919062000fe9565b60405180910390a25050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000918576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200090f9062001052565b60405180910390fd5b6200092b5f838362000a1760201b60201c565b8060025f8282546200093e919062000f15565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825462000992919062000f15565b925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620009f8919062001083565b60405180910390a362000a135f838362000a1c60201b60201c565b5050565b505050565b505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168062000a9d57607f821691505b60208210810362000ab35762000ab262000a58565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830262000b177fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000ada565b62000b23868362000ada565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f62000b6d62000b6762000b618462000b3b565b62000b44565b62000b3b565b9050919050565b5f819050919050565b62000b888362000b4d565b62000ba062000b978262000b74565b84845462000ae6565b825550505050565b5f90565b62000bb662000ba8565b62000bc381848462000b7d565b505050565b5b8181101562000bea5762000bde5f8262000bac565b60018101905062000bc9565b5050565b601f82111562000c395762000c038162000ab9565b62000c0e8462000acb565b8101602085101562000c1e578190505b62000c3662000c2d8562000acb565b83018262000bc8565b50505b505050565b5f82821c905092915050565b5f62000c5b5f198460080262000c3e565b1980831691505092915050565b5f62000c75838362000c4a565b9150826002028217905092915050565b62000c908262000a21565b67ffffffffffffffff81111562000cac5762000cab62000a2b565b5b62000cb8825462000a85565b62000cc582828562000bee565b5f60209050601f83116001811462000cfb575f841562000ce6578287015190505b62000cf2858262000c68565b86555062000d61565b601f19841662000d0b8662000ab9565b5f5b8281101562000d345784890151825560018201915060208501945060208101905062000d0d565b8683101562000d54578489015162000d50601f89168262000c4a565b8355505b6001600288020188555050505b505050505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f62000d988262000d6d565b9050919050565b62000daa8162000d8c565b811462000db5575f80fd5b50565b5f8151905062000dc88162000d9f565b92915050565b5f6020828403121562000de65762000de562000d69565b5b5f62000df58482850162000db8565b91505092915050565b62000e098162000d8c565b82525050565b5f60408201905062000e245f83018562000dfe565b62000e33602083018462000dfe565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f62000e738262000b3b565b915062000e808362000b3b565b925082820262000e908162000b3b565b9150828204841483151762000eaa5762000ea962000e3a565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f62000eea8262000b3b565b915062000ef78362000b3b565b92508262000f0a5762000f0962000eb1565b5b828204905092915050565b5f62000f218262000b3b565b915062000f2e8362000b3b565b925082820190508082111562000f495762000f4862000e3a565b5b92915050565b5f82825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f62000f9560208362000f4f565b915062000fa28262000f5f565b602082019050919050565b5f6020820190508181035f83015262000fc68162000f87565b9050919050565b5f8115159050919050565b62000fe38162000fcd565b82525050565b5f60208201905062000ffe5f83018462000fd8565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f6200103a601f8362000f4f565b9150620010478262001004565b602082019050919050565b5f6020820190508181035f8301526200106b816200102c565b9050919050565b6200107d8162000b3b565b82525050565b5f602082019050620010985f83018462001072565b92915050565b60805160a0516141bd620010f85f395f8181610de50152818161210101528181612341015281816125390152818161260401526126ec01525f8181610ba901528181612b7b01528181612c5a0152612c8101526141bd5ff3fe60806040526004361061025f575f3560e01c80637bce5a0411610143578063c04a5414116100b5578063dd62ed3e11610079578063dd62ed3e146108c0578063e2f45605146108fc578063f11a24d314610926578063f2fde38b14610950578063f637434214610978578063f8b45b05146109a257610266565b8063c04a5414146107de578063c18bc19514610808578063c8c8ebe414610830578063d257b34f1461085a578063d85ba0631461089657610266565b806395d89b411161010757806395d89b41146106d6578063a9059cbb14610700578063aacebbe31461073c578063b0018bfc14610764578063bbc0c7421461078c578063c0246668146107b657610266565b80637bce5a041461061a5780638a8c523c146106445780638da5cb5b1461065a5780639213691314610684578063924de9b7146106ae57610266565b806349bd5a5e116101dc5780636ddd1713116101a05780636ddd17131461052257806370a082311461054c578063715018a614610588578063751039fc1461059e5780637571336a146105c857806375f0a874146105f057610266565b806349bd5a5e146104405780634a62bb651461046a5780634fbee1931461049457806366ca9b83146104d05780636a486a8e146104f857610266565b806318160ddd1161022357806318160ddd1461035e5780631f2dc5ef14610388578063203e727e146103b257806323b872dd146103da578063313ce5671461041657610266565b806302dbd8f81461026a57806306fdde0314610292578063095ea7b3146102bc57806310d5de53146102f85780631694505e1461033457610266565b3661026657005b5f80fd5b348015610275575f80fd5b50610290600480360381019061028b9190612d77565b6109cc565b005b34801561029d575f80fd5b506102a6610add565b6040516102b39190612e3f565b60405180910390f35b3480156102c7575f80fd5b506102e260048036038101906102dd9190612eb9565b610b6d565b6040516102ef9190612f11565b60405180910390f35b348015610303575f80fd5b5061031e60048036038101906103199190612f2a565b610b8a565b60405161032b9190612f11565b60405180910390f35b34801561033f575f80fd5b50610348610ba7565b6040516103559190612fb0565b60405180910390f35b348015610369575f80fd5b50610372610bcb565b60405161037f9190612fd8565b60405180910390f35b348015610393575f80fd5b5061039c610bd4565b6040516103a99190612fd8565b60405180910390f35b3480156103bd575f80fd5b506103d860048036038101906103d39190612ff1565b610bda565b005b3480156103e5575f80fd5b5061040060048036038101906103fb919061301c565b610ce9565b60405161040d9190612f11565b60405180910390f35b348015610421575f80fd5b5061042a610ddb565b6040516104379190613087565b60405180910390f35b34801561044b575f80fd5b50610454610de3565b60405161046191906130af565b60405180910390f35b348015610475575f80fd5b5061047e610e07565b60405161048b9190612f11565b60405180910390f35b34801561049f575f80fd5b506104ba60048036038101906104b59190612f2a565b610e19565b6040516104c79190612f11565b60405180910390f35b3480156104db575f80fd5b506104f660048036038101906104f19190612d77565b610e6b565b005b348015610503575f80fd5b5061050c610f7c565b6040516105199190612fd8565b60405180910390f35b34801561052d575f80fd5b50610536610f82565b6040516105439190612f11565b60405180910390f35b348015610557575f80fd5b50610572600480360381019061056d9190612f2a565b610f95565b60405161057f9190612fd8565b60405180910390f35b348015610593575f80fd5b5061059c610fda565b005b3480156105a9575f80fd5b506105b2611061565b6040516105bf9190612f11565b60405180910390f35b3480156105d3575f80fd5b506105ee60048036038101906105e991906130f2565b6110fe565b005b3480156105fb575f80fd5b506106046111d2565b60405161061191906130af565b60405180910390f35b348015610625575f80fd5b5061062e6111f8565b60405161063b9190612fd8565b60405180910390f35b34801561064f575f80fd5b506106586111fe565b005b348015610665575f80fd5b5061066e6112b2565b60405161067b91906130af565b60405180910390f35b34801561068f575f80fd5b506106986112da565b6040516106a59190612fd8565b60405180910390f35b3480156106b9575f80fd5b506106d460048036038101906106cf9190613130565b6112e0565b005b3480156106e1575f80fd5b506106ea611379565b6040516106f79190612e3f565b60405180910390f35b34801561070b575f80fd5b5061072660048036038101906107219190612eb9565b611409565b6040516107339190612f11565b60405180910390f35b348015610747575f80fd5b50610762600480360381019061075d9190612f2a565b611426565b005b34801561076f575f80fd5b5061078a60048036038101906107859190613287565b611562565b005b348015610797575f80fd5b506107a0611605565b6040516107ad9190612f11565b60405180910390f35b3480156107c1575f80fd5b506107dc60048036038101906107d791906130f2565b611618565b005b3480156107e9575f80fd5b506107f261173a565b6040516107ff91906130af565b60405180910390f35b348015610813575f80fd5b5061082e60048036038101906108299190612ff1565b61175f565b005b34801561083b575f80fd5b5061084461186e565b6040516108519190612fd8565b60405180910390f35b348015610865575f80fd5b50610880600480360381019061087b9190612ff1565b611874565b60405161088d9190612f11565b60405180910390f35b3480156108a1575f80fd5b506108aa6119c8565b6040516108b79190612fd8565b60405180910390f35b3480156108cb575f80fd5b506108e660048036038101906108e191906132ce565b6119ce565b6040516108f39190612fd8565b60405180910390f35b348015610907575f80fd5b50610910611a50565b60405161091d9190612fd8565b60405180910390f35b348015610931575f80fd5b5061093a611a56565b6040516109479190612fd8565b60405180910390f35b34801561095b575f80fd5b5061097660048036038101906109719190612f2a565b611a5c565b005b348015610983575f80fd5b5061098c611b52565b6040516109999190612fd8565b60405180910390f35b3480156109ad575f80fd5b506109b6611b58565b6040516109c39190612fd8565b60405180910390f35b6109d4611b5e565b73ffffffffffffffffffffffffffffffffffffffff166109f26112b2565b73ffffffffffffffffffffffffffffffffffffffff1614610a48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3f90613356565b60405180910390fd5b8160118190555080601281905550601254601154610a6691906133a1565b6010819055506019610a98601354610a8a6064601054611b6590919063ffffffff16565b611b7a90919063ffffffff16565b1115610ad9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad09061341e565b60405180910390fd5b5050565b606060068054610aec90613469565b80601f0160208091040260200160405190810160405280929190818152602001828054610b1890613469565b8015610b635780601f10610b3a57610100808354040283529160200191610b63565b820191905f5260205f20905b815481529060010190602001808311610b4657829003601f168201915b5050505050905090565b5f610b80610b79611b5e565b8484611b8f565b6001905092915050565b6015602052805f5260405f205f915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f600254905090565b60135481565b610be2611b5e565b73ffffffffffffffffffffffffffffffffffffffff16610c006112b2565b73ffffffffffffffffffffffffffffffffffffffff1614610c56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4d90613356565b60405180910390fd5b670de0b6b3a76400006103e86001610c6c610bcb565b610c769190613499565b610c809190613507565b610c8a9190613507565b811015610ccc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc3906135a7565b60405180910390fd5b670de0b6b3a764000081610ce09190613499565b60098190555050565b5f610cf5848484611d52565b5f60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f610d3c611b5e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015610dbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db290613635565b60405180910390fd5b610dcf85610dc7611b5e565b858403611b8f565b60019150509392505050565b5f6012905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b600c5f9054906101000a900460ff1681565b5f60145f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b610e73611b5e565b73ffffffffffffffffffffffffffffffffffffffff16610e916112b2565b73ffffffffffffffffffffffffffffffffffffffff1614610ee7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ede90613356565b60405180910390fd5b81600e8190555080600f81905550600f54600e54610f0591906133a1565b600d819055506019610f37601354610f296064600d54611b6590919063ffffffff16565b611b7a90919063ffffffff16565b1115610f78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6f9061341e565b60405180910390fd5b5050565b60105481565b600c60029054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610fe2611b5e565b73ffffffffffffffffffffffffffffffffffffffff166110006112b2565b73ffffffffffffffffffffffffffffffffffffffff1614611056576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104d90613356565b60405180910390fd5b61105f5f612738565b565b5f61106a611b5e565b73ffffffffffffffffffffffffffffffffffffffff166110886112b2565b73ffffffffffffffffffffffffffffffffffffffff16146110de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d590613356565b60405180910390fd5b5f600c5f6101000a81548160ff0219169083151502179055506001905090565b611106611b5e565b73ffffffffffffffffffffffffffffffffffffffff166111246112b2565b73ffffffffffffffffffffffffffffffffffffffff161461117a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117190613356565b60405180910390fd5b8060155f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600e5481565b611206611b5e565b73ffffffffffffffffffffffffffffffffffffffff166112246112b2565b73ffffffffffffffffffffffffffffffffffffffff161461127a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127190613356565b60405180910390fd5b6001600c60016101000a81548160ff0219169083151502179055506001600c60026101000a81548160ff021916908315150217905550565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60115481565b6112e8611b5e565b73ffffffffffffffffffffffffffffffffffffffff166113066112b2565b73ffffffffffffffffffffffffffffffffffffffff161461135c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135390613356565b60405180910390fd5b80600c60026101000a81548160ff02191690831515021790555050565b60606004805461138890613469565b80601f01602080910402602001604051908101604052809291908181526020018280546113b490613469565b80156113ff5780601f106113d6576101008083540402835291602001916113ff565b820191905f5260205f20905b8154815290600101906020018083116113e257829003601f168201915b5050505050905090565b5f61141c611415611b5e565b8484611d52565b6001905092915050565b61142e611b5e565b73ffffffffffffffffffffffffffffffffffffffff1661144c6112b2565b73ffffffffffffffffffffffffffffffffffffffff16146114a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149990613356565b60405180910390fd5b600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600760016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146115f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e9906136c3565b60405180910390fd5b80600690816116019190613875565b5050565b600c60019054906101000a900460ff1681565b611620611b5e565b73ffffffffffffffffffffffffffffffffffffffff1661163e6112b2565b73ffffffffffffffffffffffffffffffffffffffff1614611694576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168b90613356565b60405180910390fd5b8060145f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161172e9190612f11565b60405180910390a25050565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611767611b5e565b73ffffffffffffffffffffffffffffffffffffffff166117856112b2565b73ffffffffffffffffffffffffffffffffffffffff16146117db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d290613356565b60405180910390fd5b670de0b6b3a76400006103e860056117f1610bcb565b6117fb9190613499565b6118059190613507565b61180f9190613507565b811015611851576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611848906139b4565b60405180910390fd5b670de0b6b3a7640000816118659190613499565b600b8190555050565b60095481565b5f61187d611b5e565b73ffffffffffffffffffffffffffffffffffffffff1661189b6112b2565b73ffffffffffffffffffffffffffffffffffffffff16146118f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e890613356565b60405180910390fd5b620186a060016118ff610bcb565b6119099190613499565b6119139190613507565b821015611955576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194c90613a42565b60405180910390fd5b6103e86005611962610bcb565b61196c9190613499565b6119769190613507565b8211156119b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119af90613ad0565b60405180910390fd5b81600a8190555060019050919050565b600d5481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b600a5481565b600f5481565b611a64611b5e565b73ffffffffffffffffffffffffffffffffffffffff16611a826112b2565b73ffffffffffffffffffffffffffffffffffffffff1614611ad8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611acf90613356565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611b46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3d90613b5e565b60405180910390fd5b611b4f81612738565b50565b60125481565b600b5481565b5f33905090565b5f8183611b729190613499565b905092915050565b5f8183611b879190613507565b905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611bfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf490613bec565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6290613c7a565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611d459190612fd8565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611dc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db790613d08565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611e2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2590613d96565b60405180910390fd5b5f8103611e4557611e4083835f6127fb565b612733565b600c5f9054906101000a900460ff16156122f257611e616112b2565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611ecf5750611e9f6112b2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611f28575060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015611f81575060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611fb957505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611ff3575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561200b575060075f9054906101000a900460ff16155b156122f157600c60019054906101000a900460ff166120ff5760145f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16806120bf575060145f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b6120fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f590613dfe565b60405180910390fd5b5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480156121a1575060155f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15612248576009548111156121eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e290613e8c565b60405180910390fd5b600b546121f783610f95565b8261220291906133a1565b1115612243576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223a90613ef4565b60405180910390fd5b6122f0565b60155f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff166122ef57600b546122a283610f95565b826122ad91906133a1565b11156122ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e590613ef4565b60405180910390fd5b5b5b5b5b5f6122fc30610f95565b90505f600a5482101590508080156123205750600c60029054906101000a900460ff165b8015612338575060075f9054906101000a900460ff16155b801561238f57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b80156123e2575060145f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015612435575060145f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561247757600160075f6101000a81548160ff02191690831515021790555061245d83612a70565b5f60075f6101000a81548160ff0219169083151502179055505b5f60075f9054906101000a900460ff1615905060145f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680612525575060145f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b1561252e575f90505b5f805f8315612721577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff1614801561259357505f601054115b15612602576125c16013546125b36010548a611b6590919063ffffffff16565b611b7a90919063ffffffff16565b9250601054601254846125d49190613499565b6125de9190613507565b9150601054601154846125f19190613499565b6125fb9190613507565b90506126ca565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff1614801561265e57505f600d54115b156126c95761268c60135461267e600d548a611b6590919063ffffffff16565b611b7a90919063ffffffff16565b9250600d54600f548461269f9190613499565b6126a99190613507565b9150600d54600e54846126bc9190613499565b6126c69190613507565b90505b5b5f8311156126de576126dd8930856127fb565b5b5f82111561271257612711307f0000000000000000000000000000000000000000000000000000000000000000846127fb565b5b828761271e9190613f12565b96505b61272c8989896127fb565b5050505050505b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612869576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286090613d08565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036128d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ce90613d96565b60405180910390fd5b6128e2838383612abc565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015612965576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295c90613fb5565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546129f391906133a1565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612a579190612fd8565b60405180910390a3612a6a848484612ac1565b50505050565b5f612a7a30610f95565b90505f8103612a895750612ab9565b5f612aab83612aa6846028600a54612aa19190613499565b612ac6565b612ac6565b9050612ab681612ade565b50505b50565b505050565b505050565b5f818311612ad45782612ad6565b815b905092915050565b5f600267ffffffffffffffff811115612afa57612af9613163565b5b604051908082528060200260200182016040528015612b285781602001602082028036833780820191505090505b50905030815f81518110612b3f57612b3e613fd3565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612be2573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612c069190614014565b81600181518110612c1a57612c19613fd3565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612c7f307f000000000000000000000000000000000000000000000000000000000000000084611b8f565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac947835f84600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b8152600401612d0295949392919061412f565b5f604051808303815f87803b158015612d19575f80fd5b505af1158015612d2b573d5f803e3d5ffd5b505050505050565b5f604051905090565b5f80fd5b5f80fd5b5f819050919050565b612d5681612d44565b8114612d60575f80fd5b50565b5f81359050612d7181612d4d565b92915050565b5f8060408385031215612d8d57612d8c612d3c565b5b5f612d9a85828601612d63565b9250506020612dab85828601612d63565b9150509250929050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015612dec578082015181840152602081019050612dd1565b5f8484015250505050565b5f601f19601f8301169050919050565b5f612e1182612db5565b612e1b8185612dbf565b9350612e2b818560208601612dcf565b612e3481612df7565b840191505092915050565b5f6020820190508181035f830152612e578184612e07565b905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612e8882612e5f565b9050919050565b612e9881612e7e565b8114612ea2575f80fd5b50565b5f81359050612eb381612e8f565b92915050565b5f8060408385031215612ecf57612ece612d3c565b5b5f612edc85828601612ea5565b9250506020612eed85828601612d63565b9150509250929050565b5f8115159050919050565b612f0b81612ef7565b82525050565b5f602082019050612f245f830184612f02565b92915050565b5f60208284031215612f3f57612f3e612d3c565b5b5f612f4c84828501612ea5565b91505092915050565b5f819050919050565b5f612f78612f73612f6e84612e5f565b612f55565b612e5f565b9050919050565b5f612f8982612f5e565b9050919050565b5f612f9a82612f7f565b9050919050565b612faa81612f90565b82525050565b5f602082019050612fc35f830184612fa1565b92915050565b612fd281612d44565b82525050565b5f602082019050612feb5f830184612fc9565b92915050565b5f6020828403121561300657613005612d3c565b5b5f61301384828501612d63565b91505092915050565b5f805f6060848603121561303357613032612d3c565b5b5f61304086828701612ea5565b935050602061305186828701612ea5565b925050604061306286828701612d63565b9150509250925092565b5f60ff82169050919050565b6130818161306c565b82525050565b5f60208201905061309a5f830184613078565b92915050565b6130a981612e7e565b82525050565b5f6020820190506130c25f8301846130a0565b92915050565b6130d181612ef7565b81146130db575f80fd5b50565b5f813590506130ec816130c8565b92915050565b5f806040838503121561310857613107612d3c565b5b5f61311585828601612ea5565b9250506020613126858286016130de565b9150509250929050565b5f6020828403121561314557613144612d3c565b5b5f613152848285016130de565b91505092915050565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b61319982612df7565b810181811067ffffffffffffffff821117156131b8576131b7613163565b5b80604052505050565b5f6131ca612d33565b90506131d68282613190565b919050565b5f67ffffffffffffffff8211156131f5576131f4613163565b5b6131fe82612df7565b9050602081019050919050565b828183375f83830152505050565b5f61322b613226846131db565b6131c1565b9050828152602081018484840111156132475761324661315f565b5b61325284828561320b565b509392505050565b5f82601f83011261326e5761326d61315b565b5b813561327e848260208601613219565b91505092915050565b5f6020828403121561329c5761329b612d3c565b5b5f82013567ffffffffffffffff8111156132b9576132b8612d40565b5b6132c58482850161325a565b91505092915050565b5f80604083850312156132e4576132e3612d3c565b5b5f6132f185828601612ea5565b925050602061330285828601612ea5565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f613340602083612dbf565b915061334b8261330c565b602082019050919050565b5f6020820190508181035f83015261336d81613334565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6133ab82612d44565b91506133b683612d44565b92508282019050808211156133ce576133cd613374565b5b92915050565b7f4d757374206b656570206665657320617420323525206f72206c6573730000005f82015250565b5f613408601d83612dbf565b9150613413826133d4565b602082019050919050565b5f6020820190508181035f830152613435816133fc565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061348057607f821691505b6020821081036134935761349261343c565b5b50919050565b5f6134a382612d44565b91506134ae83612d44565b92508282026134bc81612d44565b915082820484148315176134d3576134d2613374565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61351182612d44565b915061351c83612d44565b92508261352c5761352b6134da565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e74205f8201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b5f613591602f83612dbf565b915061359c82613537565b604082019050919050565b5f6020820190508181035f8301526135be81613585565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f61361f602883612dbf565b915061362a826135c5565b604082019050919050565b5f6020820190508181035f83015261364c81613613565b9050919050565b7f4f6e6c7920746865206d61726b6574696e672077616c6c65742063616e2063685f8201527f616e67652074686520746f6b656e206e616d652e000000000000000000000000602082015250565b5f6136ad603483612dbf565b91506136b882613653565b604082019050919050565b5f6020820190508181035f8301526136da816136a1565b9050919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830261373d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613702565b6137478683613702565b95508019841693508086168417925050509392505050565b5f61377961377461376f84612d44565b612f55565b612d44565b9050919050565b5f819050919050565b6137928361375f565b6137a661379e82613780565b84845461370e565b825550505050565b5f90565b6137ba6137ae565b6137c5818484613789565b505050565b5b818110156137e8576137dd5f826137b2565b6001810190506137cb565b5050565b601f82111561382d576137fe816136e1565b613807846136f3565b81016020851015613816578190505b61382a613822856136f3565b8301826137ca565b50505b505050565b5f82821c905092915050565b5f61384d5f1984600802613832565b1980831691505092915050565b5f613865838361383e565b9150826002028217905092915050565b61387e82612db5565b67ffffffffffffffff81111561389757613896613163565b5b6138a18254613469565b6138ac8282856137ec565b5f60209050601f8311600181146138dd575f84156138cb578287015190505b6138d5858261385a565b86555061393c565b601f1984166138eb866136e1565b5f5b82811015613912578489015182556001820191506020850194506020810190506138ed565b8683101561392f578489015161392b601f89168261383e565b8355505b6001600288020188555050505b505050505050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e205f8201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b5f61399e602483612dbf565b91506139a982613944565b604082019050919050565b5f6020820190508181035f8301526139cb81613992565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e5f8201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b5f613a2c603583612dbf565b9150613a37826139d2565b604082019050919050565b5f6020820190508181035f830152613a5981613a20565b9050919050565b7f5377617020616d6f756e742063616e6e6f7420626520686967686572207468615f8201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b5f613aba603483612dbf565b9150613ac582613a60565b604082019050919050565b5f6020820190508181035f830152613ae781613aae565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f613b48602683612dbf565b9150613b5382613aee565b604082019050919050565b5f6020820190508181035f830152613b7581613b3c565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f613bd6602483612dbf565b9150613be182613b7c565b604082019050919050565b5f6020820190508181035f830152613c0381613bca565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f613c64602283612dbf565b9150613c6f82613c0a565b604082019050919050565b5f6020820190508181035f830152613c9181613c58565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f613cf2602583612dbf565b9150613cfd82613c98565b604082019050919050565b5f6020820190508181035f830152613d1f81613ce6565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f613d80602383612dbf565b9150613d8b82613d26565b604082019050919050565b5f6020820190508181035f830152613dad81613d74565b9050919050565b7f54726164696e67206973206e6f74206163746976652e000000000000000000005f82015250565b5f613de8601683612dbf565b9150613df382613db4565b602082019050919050565b5f6020820190508181035f830152613e1581613ddc565b9050919050565b7f427579207472616e7366657220616d6f756e74206578636565647320746865205f8201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b5f613e76603583612dbf565b9150613e8182613e1c565b604082019050919050565b5f6020820190508181035f830152613ea381613e6a565b9050919050565b7f4d61782077616c6c6574206578636565646564000000000000000000000000005f82015250565b5f613ede601383612dbf565b9150613ee982613eaa565b602082019050919050565b5f6020820190508181035f830152613f0b81613ed2565b9050919050565b5f613f1c82612d44565b9150613f2783612d44565b9250828203905081811115613f3f57613f3e613374565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f613f9f602683612dbf565b9150613faa82613f45565b604082019050919050565b5f6020820190508181035f830152613fcc81613f93565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f8151905061400e81612e8f565b92915050565b5f6020828403121561402957614028612d3c565b5b5f61403684828501614000565b91505092915050565b5f819050919050565b5f61406261405d6140588461403f565b612f55565b612d44565b9050919050565b61407281614048565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b6140aa81612e7e565b82525050565b5f6140bb83836140a1565b60208301905092915050565b5f602082019050919050565b5f6140dd82614078565b6140e78185614082565b93506140f283614092565b805f5b8381101561412257815161410988826140b0565b9750614114836140c7565b9250506001810190506140f5565b5085935050505092915050565b5f60a0820190506141425f830188612fc9565b61414f6020830187614069565b818103604083015261416181866140d3565b905061417060608301856130a0565b61417d6080830184612fc9565b969550505050505056fea2646970667358221220ec1ac1236456a6b3ba88b16cc9f56f5120ecafdc756a60c5472056a02e9a344a64736f6c63430008170033

Deployed Bytecode

0x60806040526004361061025f575f3560e01c80637bce5a0411610143578063c04a5414116100b5578063dd62ed3e11610079578063dd62ed3e146108c0578063e2f45605146108fc578063f11a24d314610926578063f2fde38b14610950578063f637434214610978578063f8b45b05146109a257610266565b8063c04a5414146107de578063c18bc19514610808578063c8c8ebe414610830578063d257b34f1461085a578063d85ba0631461089657610266565b806395d89b411161010757806395d89b41146106d6578063a9059cbb14610700578063aacebbe31461073c578063b0018bfc14610764578063bbc0c7421461078c578063c0246668146107b657610266565b80637bce5a041461061a5780638a8c523c146106445780638da5cb5b1461065a5780639213691314610684578063924de9b7146106ae57610266565b806349bd5a5e116101dc5780636ddd1713116101a05780636ddd17131461052257806370a082311461054c578063715018a614610588578063751039fc1461059e5780637571336a146105c857806375f0a874146105f057610266565b806349bd5a5e146104405780634a62bb651461046a5780634fbee1931461049457806366ca9b83146104d05780636a486a8e146104f857610266565b806318160ddd1161022357806318160ddd1461035e5780631f2dc5ef14610388578063203e727e146103b257806323b872dd146103da578063313ce5671461041657610266565b806302dbd8f81461026a57806306fdde0314610292578063095ea7b3146102bc57806310d5de53146102f85780631694505e1461033457610266565b3661026657005b5f80fd5b348015610275575f80fd5b50610290600480360381019061028b9190612d77565b6109cc565b005b34801561029d575f80fd5b506102a6610add565b6040516102b39190612e3f565b60405180910390f35b3480156102c7575f80fd5b506102e260048036038101906102dd9190612eb9565b610b6d565b6040516102ef9190612f11565b60405180910390f35b348015610303575f80fd5b5061031e60048036038101906103199190612f2a565b610b8a565b60405161032b9190612f11565b60405180910390f35b34801561033f575f80fd5b50610348610ba7565b6040516103559190612fb0565b60405180910390f35b348015610369575f80fd5b50610372610bcb565b60405161037f9190612fd8565b60405180910390f35b348015610393575f80fd5b5061039c610bd4565b6040516103a99190612fd8565b60405180910390f35b3480156103bd575f80fd5b506103d860048036038101906103d39190612ff1565b610bda565b005b3480156103e5575f80fd5b5061040060048036038101906103fb919061301c565b610ce9565b60405161040d9190612f11565b60405180910390f35b348015610421575f80fd5b5061042a610ddb565b6040516104379190613087565b60405180910390f35b34801561044b575f80fd5b50610454610de3565b60405161046191906130af565b60405180910390f35b348015610475575f80fd5b5061047e610e07565b60405161048b9190612f11565b60405180910390f35b34801561049f575f80fd5b506104ba60048036038101906104b59190612f2a565b610e19565b6040516104c79190612f11565b60405180910390f35b3480156104db575f80fd5b506104f660048036038101906104f19190612d77565b610e6b565b005b348015610503575f80fd5b5061050c610f7c565b6040516105199190612fd8565b60405180910390f35b34801561052d575f80fd5b50610536610f82565b6040516105439190612f11565b60405180910390f35b348015610557575f80fd5b50610572600480360381019061056d9190612f2a565b610f95565b60405161057f9190612fd8565b60405180910390f35b348015610593575f80fd5b5061059c610fda565b005b3480156105a9575f80fd5b506105b2611061565b6040516105bf9190612f11565b60405180910390f35b3480156105d3575f80fd5b506105ee60048036038101906105e991906130f2565b6110fe565b005b3480156105fb575f80fd5b506106046111d2565b60405161061191906130af565b60405180910390f35b348015610625575f80fd5b5061062e6111f8565b60405161063b9190612fd8565b60405180910390f35b34801561064f575f80fd5b506106586111fe565b005b348015610665575f80fd5b5061066e6112b2565b60405161067b91906130af565b60405180910390f35b34801561068f575f80fd5b506106986112da565b6040516106a59190612fd8565b60405180910390f35b3480156106b9575f80fd5b506106d460048036038101906106cf9190613130565b6112e0565b005b3480156106e1575f80fd5b506106ea611379565b6040516106f79190612e3f565b60405180910390f35b34801561070b575f80fd5b5061072660048036038101906107219190612eb9565b611409565b6040516107339190612f11565b60405180910390f35b348015610747575f80fd5b50610762600480360381019061075d9190612f2a565b611426565b005b34801561076f575f80fd5b5061078a60048036038101906107859190613287565b611562565b005b348015610797575f80fd5b506107a0611605565b6040516107ad9190612f11565b60405180910390f35b3480156107c1575f80fd5b506107dc60048036038101906107d791906130f2565b611618565b005b3480156107e9575f80fd5b506107f261173a565b6040516107ff91906130af565b60405180910390f35b348015610813575f80fd5b5061082e60048036038101906108299190612ff1565b61175f565b005b34801561083b575f80fd5b5061084461186e565b6040516108519190612fd8565b60405180910390f35b348015610865575f80fd5b50610880600480360381019061087b9190612ff1565b611874565b60405161088d9190612f11565b60405180910390f35b3480156108a1575f80fd5b506108aa6119c8565b6040516108b79190612fd8565b60405180910390f35b3480156108cb575f80fd5b506108e660048036038101906108e191906132ce565b6119ce565b6040516108f39190612fd8565b60405180910390f35b348015610907575f80fd5b50610910611a50565b60405161091d9190612fd8565b60405180910390f35b348015610931575f80fd5b5061093a611a56565b6040516109479190612fd8565b60405180910390f35b34801561095b575f80fd5b5061097660048036038101906109719190612f2a565b611a5c565b005b348015610983575f80fd5b5061098c611b52565b6040516109999190612fd8565b60405180910390f35b3480156109ad575f80fd5b506109b6611b58565b6040516109c39190612fd8565b60405180910390f35b6109d4611b5e565b73ffffffffffffffffffffffffffffffffffffffff166109f26112b2565b73ffffffffffffffffffffffffffffffffffffffff1614610a48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3f90613356565b60405180910390fd5b8160118190555080601281905550601254601154610a6691906133a1565b6010819055506019610a98601354610a8a6064601054611b6590919063ffffffff16565b611b7a90919063ffffffff16565b1115610ad9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad09061341e565b60405180910390fd5b5050565b606060068054610aec90613469565b80601f0160208091040260200160405190810160405280929190818152602001828054610b1890613469565b8015610b635780601f10610b3a57610100808354040283529160200191610b63565b820191905f5260205f20905b815481529060010190602001808311610b4657829003601f168201915b5050505050905090565b5f610b80610b79611b5e565b8484611b8f565b6001905092915050565b6015602052805f5260405f205f915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b5f600254905090565b60135481565b610be2611b5e565b73ffffffffffffffffffffffffffffffffffffffff16610c006112b2565b73ffffffffffffffffffffffffffffffffffffffff1614610c56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4d90613356565b60405180910390fd5b670de0b6b3a76400006103e86001610c6c610bcb565b610c769190613499565b610c809190613507565b610c8a9190613507565b811015610ccc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc3906135a7565b60405180910390fd5b670de0b6b3a764000081610ce09190613499565b60098190555050565b5f610cf5848484611d52565b5f60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f610d3c611b5e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015610dbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db290613635565b60405180910390fd5b610dcf85610dc7611b5e565b858403611b8f565b60019150509392505050565b5f6012905090565b7f000000000000000000000000290bc4d0ace0c74a41253de4aaba91daa9d2a5d881565b600c5f9054906101000a900460ff1681565b5f60145f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b610e73611b5e565b73ffffffffffffffffffffffffffffffffffffffff16610e916112b2565b73ffffffffffffffffffffffffffffffffffffffff1614610ee7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ede90613356565b60405180910390fd5b81600e8190555080600f81905550600f54600e54610f0591906133a1565b600d819055506019610f37601354610f296064600d54611b6590919063ffffffff16565b611b7a90919063ffffffff16565b1115610f78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6f9061341e565b60405180910390fd5b5050565b60105481565b600c60029054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610fe2611b5e565b73ffffffffffffffffffffffffffffffffffffffff166110006112b2565b73ffffffffffffffffffffffffffffffffffffffff1614611056576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104d90613356565b60405180910390fd5b61105f5f612738565b565b5f61106a611b5e565b73ffffffffffffffffffffffffffffffffffffffff166110886112b2565b73ffffffffffffffffffffffffffffffffffffffff16146110de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d590613356565b60405180910390fd5b5f600c5f6101000a81548160ff0219169083151502179055506001905090565b611106611b5e565b73ffffffffffffffffffffffffffffffffffffffff166111246112b2565b73ffffffffffffffffffffffffffffffffffffffff161461117a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117190613356565b60405180910390fd5b8060155f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600e5481565b611206611b5e565b73ffffffffffffffffffffffffffffffffffffffff166112246112b2565b73ffffffffffffffffffffffffffffffffffffffff161461127a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127190613356565b60405180910390fd5b6001600c60016101000a81548160ff0219169083151502179055506001600c60026101000a81548160ff021916908315150217905550565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60115481565b6112e8611b5e565b73ffffffffffffffffffffffffffffffffffffffff166113066112b2565b73ffffffffffffffffffffffffffffffffffffffff161461135c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135390613356565b60405180910390fd5b80600c60026101000a81548160ff02191690831515021790555050565b60606004805461138890613469565b80601f01602080910402602001604051908101604052809291908181526020018280546113b490613469565b80156113ff5780601f106113d6576101008083540402835291602001916113ff565b820191905f5260205f20905b8154815290600101906020018083116113e257829003601f168201915b5050505050905090565b5f61141c611415611b5e565b8484611d52565b6001905092915050565b61142e611b5e565b73ffffffffffffffffffffffffffffffffffffffff1661144c6112b2565b73ffffffffffffffffffffffffffffffffffffffff16146114a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149990613356565b60405180910390fd5b600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600760016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146115f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e9906136c3565b60405180910390fd5b80600690816116019190613875565b5050565b600c60019054906101000a900460ff1681565b611620611b5e565b73ffffffffffffffffffffffffffffffffffffffff1661163e6112b2565b73ffffffffffffffffffffffffffffffffffffffff1614611694576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168b90613356565b60405180910390fd5b8060145f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161172e9190612f11565b60405180910390a25050565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611767611b5e565b73ffffffffffffffffffffffffffffffffffffffff166117856112b2565b73ffffffffffffffffffffffffffffffffffffffff16146117db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d290613356565b60405180910390fd5b670de0b6b3a76400006103e860056117f1610bcb565b6117fb9190613499565b6118059190613507565b61180f9190613507565b811015611851576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611848906139b4565b60405180910390fd5b670de0b6b3a7640000816118659190613499565b600b8190555050565b60095481565b5f61187d611b5e565b73ffffffffffffffffffffffffffffffffffffffff1661189b6112b2565b73ffffffffffffffffffffffffffffffffffffffff16146118f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e890613356565b60405180910390fd5b620186a060016118ff610bcb565b6119099190613499565b6119139190613507565b821015611955576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194c90613a42565b60405180910390fd5b6103e86005611962610bcb565b61196c9190613499565b6119769190613507565b8211156119b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119af90613ad0565b60405180910390fd5b81600a8190555060019050919050565b600d5481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b600a5481565b600f5481565b611a64611b5e565b73ffffffffffffffffffffffffffffffffffffffff16611a826112b2565b73ffffffffffffffffffffffffffffffffffffffff1614611ad8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611acf90613356565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611b46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3d90613b5e565b60405180910390fd5b611b4f81612738565b50565b60125481565b600b5481565b5f33905090565b5f8183611b729190613499565b905092915050565b5f8183611b879190613507565b905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611bfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf490613bec565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6290613c7a565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611d459190612fd8565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611dc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db790613d08565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611e2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2590613d96565b60405180910390fd5b5f8103611e4557611e4083835f6127fb565b612733565b600c5f9054906101000a900460ff16156122f257611e616112b2565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611ecf5750611e9f6112b2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611f28575060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015611f81575060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611fb957505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611ff3575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561200b575060075f9054906101000a900460ff16155b156122f157600c60019054906101000a900460ff166120ff5760145f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16806120bf575060145f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b6120fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f590613dfe565b60405180910390fd5b5b7f000000000000000000000000290bc4d0ace0c74a41253de4aaba91daa9d2a5d873ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480156121a1575060155f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15612248576009548111156121eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e290613e8c565b60405180910390fd5b600b546121f783610f95565b8261220291906133a1565b1115612243576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223a90613ef4565b60405180910390fd5b6122f0565b60155f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff166122ef57600b546122a283610f95565b826122ad91906133a1565b11156122ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e590613ef4565b60405180910390fd5b5b5b5b5b5f6122fc30610f95565b90505f600a5482101590508080156123205750600c60029054906101000a900460ff165b8015612338575060075f9054906101000a900460ff16155b801561238f57507f000000000000000000000000290bc4d0ace0c74a41253de4aaba91daa9d2a5d873ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b80156123e2575060145f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015612435575060145f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561247757600160075f6101000a81548160ff02191690831515021790555061245d83612a70565b5f60075f6101000a81548160ff0219169083151502179055505b5f60075f9054906101000a900460ff1615905060145f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680612525575060145f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b1561252e575f90505b5f805f8315612721577f000000000000000000000000290bc4d0ace0c74a41253de4aaba91daa9d2a5d873ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff1614801561259357505f601054115b15612602576125c16013546125b36010548a611b6590919063ffffffff16565b611b7a90919063ffffffff16565b9250601054601254846125d49190613499565b6125de9190613507565b9150601054601154846125f19190613499565b6125fb9190613507565b90506126ca565b7f000000000000000000000000290bc4d0ace0c74a41253de4aaba91daa9d2a5d873ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff1614801561265e57505f600d54115b156126c95761268c60135461267e600d548a611b6590919063ffffffff16565b611b7a90919063ffffffff16565b9250600d54600f548461269f9190613499565b6126a99190613507565b9150600d54600e54846126bc9190613499565b6126c69190613507565b90505b5b5f8311156126de576126dd8930856127fb565b5b5f82111561271257612711307f000000000000000000000000290bc4d0ace0c74a41253de4aaba91daa9d2a5d8846127fb565b5b828761271e9190613f12565b96505b61272c8989896127fb565b5050505050505b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612869576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286090613d08565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036128d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ce90613d96565b60405180910390fd5b6128e2838383612abc565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015612965576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295c90613fb5565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546129f391906133a1565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612a579190612fd8565b60405180910390a3612a6a848484612ac1565b50505050565b5f612a7a30610f95565b90505f8103612a895750612ab9565b5f612aab83612aa6846028600a54612aa19190613499565b612ac6565b612ac6565b9050612ab681612ade565b50505b50565b505050565b505050565b5f818311612ad45782612ad6565b815b905092915050565b5f600267ffffffffffffffff811115612afa57612af9613163565b5b604051908082528060200260200182016040528015612b285781602001602082028036833780820191505090505b50905030815f81518110612b3f57612b3e613fd3565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612be2573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612c069190614014565b81600181518110612c1a57612c19613fd3565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612c7f307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611b8f565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947835f84600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b8152600401612d0295949392919061412f565b5f604051808303815f87803b158015612d19575f80fd5b505af1158015612d2b573d5f803e3d5ffd5b505050505050565b5f604051905090565b5f80fd5b5f80fd5b5f819050919050565b612d5681612d44565b8114612d60575f80fd5b50565b5f81359050612d7181612d4d565b92915050565b5f8060408385031215612d8d57612d8c612d3c565b5b5f612d9a85828601612d63565b9250506020612dab85828601612d63565b9150509250929050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015612dec578082015181840152602081019050612dd1565b5f8484015250505050565b5f601f19601f8301169050919050565b5f612e1182612db5565b612e1b8185612dbf565b9350612e2b818560208601612dcf565b612e3481612df7565b840191505092915050565b5f6020820190508181035f830152612e578184612e07565b905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612e8882612e5f565b9050919050565b612e9881612e7e565b8114612ea2575f80fd5b50565b5f81359050612eb381612e8f565b92915050565b5f8060408385031215612ecf57612ece612d3c565b5b5f612edc85828601612ea5565b9250506020612eed85828601612d63565b9150509250929050565b5f8115159050919050565b612f0b81612ef7565b82525050565b5f602082019050612f245f830184612f02565b92915050565b5f60208284031215612f3f57612f3e612d3c565b5b5f612f4c84828501612ea5565b91505092915050565b5f819050919050565b5f612f78612f73612f6e84612e5f565b612f55565b612e5f565b9050919050565b5f612f8982612f5e565b9050919050565b5f612f9a82612f7f565b9050919050565b612faa81612f90565b82525050565b5f602082019050612fc35f830184612fa1565b92915050565b612fd281612d44565b82525050565b5f602082019050612feb5f830184612fc9565b92915050565b5f6020828403121561300657613005612d3c565b5b5f61301384828501612d63565b91505092915050565b5f805f6060848603121561303357613032612d3c565b5b5f61304086828701612ea5565b935050602061305186828701612ea5565b925050604061306286828701612d63565b9150509250925092565b5f60ff82169050919050565b6130818161306c565b82525050565b5f60208201905061309a5f830184613078565b92915050565b6130a981612e7e565b82525050565b5f6020820190506130c25f8301846130a0565b92915050565b6130d181612ef7565b81146130db575f80fd5b50565b5f813590506130ec816130c8565b92915050565b5f806040838503121561310857613107612d3c565b5b5f61311585828601612ea5565b9250506020613126858286016130de565b9150509250929050565b5f6020828403121561314557613144612d3c565b5b5f613152848285016130de565b91505092915050565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b61319982612df7565b810181811067ffffffffffffffff821117156131b8576131b7613163565b5b80604052505050565b5f6131ca612d33565b90506131d68282613190565b919050565b5f67ffffffffffffffff8211156131f5576131f4613163565b5b6131fe82612df7565b9050602081019050919050565b828183375f83830152505050565b5f61322b613226846131db565b6131c1565b9050828152602081018484840111156132475761324661315f565b5b61325284828561320b565b509392505050565b5f82601f83011261326e5761326d61315b565b5b813561327e848260208601613219565b91505092915050565b5f6020828403121561329c5761329b612d3c565b5b5f82013567ffffffffffffffff8111156132b9576132b8612d40565b5b6132c58482850161325a565b91505092915050565b5f80604083850312156132e4576132e3612d3c565b5b5f6132f185828601612ea5565b925050602061330285828601612ea5565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f613340602083612dbf565b915061334b8261330c565b602082019050919050565b5f6020820190508181035f83015261336d81613334565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6133ab82612d44565b91506133b683612d44565b92508282019050808211156133ce576133cd613374565b5b92915050565b7f4d757374206b656570206665657320617420323525206f72206c6573730000005f82015250565b5f613408601d83612dbf565b9150613413826133d4565b602082019050919050565b5f6020820190508181035f830152613435816133fc565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061348057607f821691505b6020821081036134935761349261343c565b5b50919050565b5f6134a382612d44565b91506134ae83612d44565b92508282026134bc81612d44565b915082820484148315176134d3576134d2613374565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61351182612d44565b915061351c83612d44565b92508261352c5761352b6134da565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e74205f8201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b5f613591602f83612dbf565b915061359c82613537565b604082019050919050565b5f6020820190508181035f8301526135be81613585565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f61361f602883612dbf565b915061362a826135c5565b604082019050919050565b5f6020820190508181035f83015261364c81613613565b9050919050565b7f4f6e6c7920746865206d61726b6574696e672077616c6c65742063616e2063685f8201527f616e67652074686520746f6b656e206e616d652e000000000000000000000000602082015250565b5f6136ad603483612dbf565b91506136b882613653565b604082019050919050565b5f6020820190508181035f8301526136da816136a1565b9050919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830261373d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613702565b6137478683613702565b95508019841693508086168417925050509392505050565b5f61377961377461376f84612d44565b612f55565b612d44565b9050919050565b5f819050919050565b6137928361375f565b6137a661379e82613780565b84845461370e565b825550505050565b5f90565b6137ba6137ae565b6137c5818484613789565b505050565b5b818110156137e8576137dd5f826137b2565b6001810190506137cb565b5050565b601f82111561382d576137fe816136e1565b613807846136f3565b81016020851015613816578190505b61382a613822856136f3565b8301826137ca565b50505b505050565b5f82821c905092915050565b5f61384d5f1984600802613832565b1980831691505092915050565b5f613865838361383e565b9150826002028217905092915050565b61387e82612db5565b67ffffffffffffffff81111561389757613896613163565b5b6138a18254613469565b6138ac8282856137ec565b5f60209050601f8311600181146138dd575f84156138cb578287015190505b6138d5858261385a565b86555061393c565b601f1984166138eb866136e1565b5f5b82811015613912578489015182556001820191506020850194506020810190506138ed565b8683101561392f578489015161392b601f89168261383e565b8355505b6001600288020188555050505b505050505050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e205f8201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b5f61399e602483612dbf565b91506139a982613944565b604082019050919050565b5f6020820190508181035f8301526139cb81613992565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e5f8201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b5f613a2c603583612dbf565b9150613a37826139d2565b604082019050919050565b5f6020820190508181035f830152613a5981613a20565b9050919050565b7f5377617020616d6f756e742063616e6e6f7420626520686967686572207468615f8201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b5f613aba603483612dbf565b9150613ac582613a60565b604082019050919050565b5f6020820190508181035f830152613ae781613aae565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f613b48602683612dbf565b9150613b5382613aee565b604082019050919050565b5f6020820190508181035f830152613b7581613b3c565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f613bd6602483612dbf565b9150613be182613b7c565b604082019050919050565b5f6020820190508181035f830152613c0381613bca565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f613c64602283612dbf565b9150613c6f82613c0a565b604082019050919050565b5f6020820190508181035f830152613c9181613c58565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f613cf2602583612dbf565b9150613cfd82613c98565b604082019050919050565b5f6020820190508181035f830152613d1f81613ce6565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f613d80602383612dbf565b9150613d8b82613d26565b604082019050919050565b5f6020820190508181035f830152613dad81613d74565b9050919050565b7f54726164696e67206973206e6f74206163746976652e000000000000000000005f82015250565b5f613de8601683612dbf565b9150613df382613db4565b602082019050919050565b5f6020820190508181035f830152613e1581613ddc565b9050919050565b7f427579207472616e7366657220616d6f756e74206578636565647320746865205f8201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b5f613e76603583612dbf565b9150613e8182613e1c565b604082019050919050565b5f6020820190508181035f830152613ea381613e6a565b9050919050565b7f4d61782077616c6c6574206578636565646564000000000000000000000000005f82015250565b5f613ede601383612dbf565b9150613ee982613eaa565b602082019050919050565b5f6020820190508181035f830152613f0b81613ed2565b9050919050565b5f613f1c82612d44565b9150613f2783612d44565b9250828203905081811115613f3f57613f3e613374565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f613f9f602683612dbf565b9150613faa82613f45565b604082019050919050565b5f6020820190508181035f830152613fcc81613f93565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f8151905061400e81612e8f565b92915050565b5f6020828403121561402957614028612d3c565b5b5f61403684828501614000565b91505092915050565b5f819050919050565b5f61406261405d6140588461403f565b612f55565b612d44565b9050919050565b61407281614048565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b6140aa81612e7e565b82525050565b5f6140bb83836140a1565b60208301905092915050565b5f602082019050919050565b5f6140dd82614078565b6140e78185614082565b93506140f283614092565b805f5b8381101561412257815161410988826140b0565b9750614114836140c7565b9250506001810190506140f5565b5085935050505092915050565b5f60a0820190506141425f830188612fc9565b61414f6020830187614069565b818103604083015261416181866140d3565b905061417060608301856130a0565b61417d6080830184612fc9565b969550505050505056fea2646970667358221220ec1ac1236456a6b3ba88b16cc9f56f5120ecafdc756a60c5472056a02e9a344a64736f6c63430008170033

Deployed Bytecode Sourcemap

24790:11661:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30349:364;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36134:105;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11760:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25738:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24896:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10713:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25567:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29066:275;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12411:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10555:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24954:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25224:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31152:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29984:357;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25454:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25304:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10884:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2828:103;;;;;;;;;;;;;:::i;:::-;;28370:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29613:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25031:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25378;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28206:112;;;;;;;;;;;;;:::i;:::-;;2177:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25489:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29876:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9812:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11224:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30911:231;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36247:199;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25264:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30721:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25068:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29349:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25109:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28561:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25344:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11462:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25151:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25415:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3086:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25527:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25191:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30349:364;2408:12;:10;:12::i;:::-;2397:23;;:7;:5;:7::i;:::-;:23;;;2389:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30493:13:::1;30474:16;:32;;;;30536:13;30517:16;:32;;;;30595:16;;30576;;:35;;;;:::i;:::-;30560:13;:51;;;;30669:2;30630:35;30657:7;;30630:22;30648:3;30630:13;;:17;;:22;;;;:::i;:::-;:26;;:35;;;;:::i;:::-;:41;;30622:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;30349:364:::0;;:::o;36134:105::-;36188:13;36221:10;36214:17;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36134:105;:::o;11760:169::-;11843:4;11860:39;11869:12;:10;:12::i;:::-;11883:7;11892:6;11860:8;:39::i;:::-;11917:4;11910:11;;11760:169;;;;:::o;25738:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;24896:51::-;;;:::o;10713:108::-;10774:7;10801:12;;10794:19;;10713:108;:::o;25567:22::-;;;;:::o;29066:275::-;2408:12;:10;:12::i;:::-;2397:23;;:7;:5;:7::i;:::-;:23;;;2389:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29203:4:::1;29195;29190:1;29174:13;:11;:13::i;:::-;:17;;;;:::i;:::-;29173:26;;;;:::i;:::-;29172:35;;;;:::i;:::-;29162:6;:45;;29140:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;29326:6;29316;:17;;;;:::i;:::-;29293:20;:40;;;;29066:275:::0;:::o;12411:492::-;12551:4;12568:36;12578:6;12586:9;12597:6;12568:9;:36::i;:::-;12617:24;12644:11;:19;12656:6;12644:19;;;;;;;;;;;;;;;:33;12664:12;:10;:12::i;:::-;12644:33;;;;;;;;;;;;;;;;12617:60;;12716:6;12696:16;:26;;12688:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;12803:57;12812:6;12820:12;:10;:12::i;:::-;12853:6;12834:16;:25;12803:8;:57::i;:::-;12891:4;12884:11;;;12411:492;;;;;:::o;10555:93::-;10613:5;10638:2;10631:9;;10555:93;:::o;24954:38::-;;;:::o;25224:33::-;;;;;;;;;;;;;:::o;31152:126::-;31218:4;31242:19;:28;31262:7;31242:28;;;;;;;;;;;;;;;;;;;;;;;;;31235:35;;31152:126;;;:::o;29984:357::-;2408:12;:10;:12::i;:::-;2397:23;;:7;:5;:7::i;:::-;:23;;;2389:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30126:13:::1;30108:15;:31;;;;30168:13;30150:15;:31;;;;30225:15;;30207;;:33;;;;:::i;:::-;30192:12;:48;;;;30297:2;30259:34;30285:7;;30259:21;30276:3;30259:12;;:16;;:21;;;;:::i;:::-;:25;;:34;;;;:::i;:::-;:40;;30251:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;29984:357:::0;;:::o;25454:28::-;;;;:::o;25304:31::-;;;;;;;;;;;;;:::o;10884:127::-;10958:7;10985:9;:18;10995:7;10985:18;;;;;;;;;;;;;;;;10978:25;;10884:127;;;:::o;2828:103::-;2408:12;:10;:12::i;:::-;2397:23;;:7;:5;:7::i;:::-;:23;;;2389:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2893:30:::1;2920:1;2893:18;:30::i;:::-;2828:103::o:0;28370:121::-;28422:4;2408:12;:10;:12::i;:::-;2397:23;;:7;:5;:7::i;:::-;:23;;;2389:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;28456:5:::1;28439:14;;:22;;;;;;;;;;;;;;;;;;28479:4;28472:11;;28370:121:::0;:::o;29613:167::-;2408:12;:10;:12::i;:::-;2397:23;;:7;:5;:7::i;:::-;:23;;;2389:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29768:4:::1;29726:31;:39;29758:6;29726:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;29613:167:::0;;:::o;25031:30::-;;;;;;;;;;;;;:::o;25378:::-;;;;:::o;28206:112::-;2408:12;:10;:12::i;:::-;2397:23;;:7;:5;:7::i;:::-;:23;;;2389:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;28277:4:::1;28261:13;;:20;;;;;;;;;;;;;;;;;;28306:4;28292:11;;:18;;;;;;;;;;;;;;;;;;28206:112::o:0;2177:87::-;2223:7;2250:6;;;;;;;;;;;2243:13;;2177:87;:::o;25489:31::-;;;;:::o;29876:100::-;2408:12;:10;:12::i;:::-;2397:23;;:7;:5;:7::i;:::-;:23;;;2389:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29961:7:::1;29947:11;;:21;;;;;;;;;;;;;;;;;;29876:100:::0;:::o;9812:104::-;9868:13;9901:7;9894:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9812:104;:::o;11224:175::-;11310:4;11327:42;11337:12;:10;:12::i;:::-;11351:9;11362:6;11327:9;:42::i;:::-;11387:4;11380:11;;11224:175;;;;:::o;30911:231::-;2408:12;:10;:12::i;:::-;2397:23;;:7;:5;:7::i;:::-;:23;;;2389:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;31071:15:::1;;;;;;;;;;;31028:59;;31051:18;31028:59;;;;;;;;;;;;31116:18;31098:15;;:36;;;;;;;;;;;;;;;;;;30911:231:::0;:::o;36247:199::-;36335:15;;;;;;;;;;;36321:29;;:10;:29;;;36313:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;36431:7;36418:10;:20;;;;;;:::i;:::-;;36247:199;:::o;25264:33::-;;;;;;;;;;;;;:::o;30721:182::-;2408:12;:10;:12::i;:::-;2397:23;;:7;:5;:7::i;:::-;:23;;;2389:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30837:8:::1;30806:19;:28;30826:7;30806:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;30877:7;30861:34;;;30886:8;30861:34;;;;;;:::i;:::-;;;;;;;;30721:182:::0;;:::o;25068:32::-;;;;;;;;;;;;;:::o;29349:256::-;2408:12;:10;:12::i;:::-;2397:23;;:7;:5;:7::i;:::-;:23;;;2389:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29489:4:::1;29481;29476:1;29460:13;:11;:13::i;:::-;:17;;;;:::i;:::-;29459:26;;;;:::i;:::-;29458:35;;;;:::i;:::-;29448:6;:45;;29426:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;29590:6;29580;:17;;;;:::i;:::-;29568:9;:29;;;;29349:256:::0;:::o;25109:35::-;;;;:::o;28561:497::-;28669:4;2408:12;:10;:12::i;:::-;2397:23;;:7;:5;:7::i;:::-;:23;;;2389:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;28748:6:::1;28743:1;28727:13;:11;:13::i;:::-;:17;;;;:::i;:::-;28726:28;;;;:::i;:::-;28713:9;:41;;28691:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;28903:4;28898:1;28882:13;:11;:13::i;:::-;:17;;;;:::i;:::-;28881:26;;;;:::i;:::-;28868:9;:39;;28846:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;29019:9;28998:18;:30;;;;29046:4;29039:11;;28561:497:::0;;;:::o;25344:27::-;;;;:::o;11462:151::-;11551:7;11578:11;:18;11590:5;11578:18;;;;;;;;;;;;;;;:27;11597:7;11578:27;;;;;;;;;;;;;;;;11571:34;;11462:151;;;;:::o;25151:33::-;;;;:::o;25415:30::-;;;;:::o;3086:201::-;2408:12;:10;:12::i;:::-;2397:23;;:7;:5;:7::i;:::-;:23;;;2389:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3195:1:::1;3175:22;;:8;:22;;::::0;3167:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3251:28;3270:8;3251:18;:28::i;:::-;3086:201:::0;:::o;25527:31::-;;;;:::o;25191:24::-;;;;:::o;850:98::-;903:7;930:10;923:17;;850:98;:::o;20705:::-;20763:7;20794:1;20790;:5;;;;:::i;:::-;20783:12;;20705:98;;;;:::o;21104:::-;21162:7;21193:1;21189;:5;;;;:::i;:::-;21182:12;;21104:98;;;;:::o;15252:380::-;15405:1;15388:19;;:5;:19;;;15380:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15486:1;15467:21;;:7;:21;;;15459:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15570:6;15540:11;:18;15552:5;15540:18;;;;;;;;;;;;;;;:27;15559:7;15540:27;;;;;;;;;;;;;;;:36;;;;15608:7;15592:32;;15601:5;15592:32;;;15617:6;15592:32;;;;;;:::i;:::-;;;;;;;;15252:380;;;:::o;31286:3814::-;31434:1;31418:18;;:4;:18;;;31410:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;31511:1;31497:16;;:2;:16;;;31489:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;31580:1;31570:6;:11;31566:93;;31598:28;31614:4;31620:2;31624:1;31598:15;:28::i;:::-;31641:7;;31566:93;31675:14;;;;;;;;;;;31671:1520;;;31736:7;:5;:7::i;:::-;31728:15;;:4;:15;;;;:49;;;;;31770:7;:5;:7::i;:::-;31764:13;;:2;:13;;;;31728:49;:95;;;;;31806:17;;;;;;;;;;;31798:25;;:4;:25;;;;31728:95;:139;;;;;31850:17;;;;;;;;;;;31844:23;;:2;:23;;;;31728:139;:176;;;;;31902:1;31888:16;;:2;:16;;;;31728:176;:218;;;;;31939:6;31925:21;;:2;:21;;;;31728:218;:248;;;;;31968:8;;;;;;;;;;;31967:9;31728:248;31706:1474;;;32016:13;;;;;;;;;;;32011:223;;32088:19;:25;32108:4;32088:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;32117:19;:23;32137:2;32117:23;;;;;;;;;;;;;;;;;;;;;;;;;32088:52;32054:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;32011:223;32448:13;32440:21;;:4;:21;;;:82;;;;;32487:31;:35;32519:2;32487:35;;;;;;;;;;;;;;;;;;;;;;;;;32486:36;32440:82;32414:751;;;32609:20;;32599:6;:30;;32565:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;32817:9;;32800:13;32810:2;32800:9;:13::i;:::-;32791:6;:22;;;;:::i;:::-;:35;;32757:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;32414:751;;;32945:31;:35;32977:2;32945:35;;;;;;;;;;;;;;;;;;;;;;;;;32940:225;;33065:9;;33048:13;33058:2;33048:9;:13::i;:::-;33039:6;:22;;;;:::i;:::-;:35;;33005:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;32940:225;32414:751;31706:1474;31671:1520;33203:28;33234:24;33252:4;33234:9;:24::i;:::-;33203:55;;33271:12;33310:18;;33286:20;:42;;33271:57;;33359:7;:35;;;;;33383:11;;;;;;;;;;;33359:35;:61;;;;;33412:8;;;;;;;;;;;33411:9;33359:61;:97;;;;;33443:13;33437:19;;:2;:19;;;33359:97;:140;;;;;33474:19;:25;33494:4;33474:25;;;;;;;;;;;;;;;;;;;;;;;;;33473:26;33359:140;:181;;;;;33517:19;:23;33537:2;33517:23;;;;;;;;;;;;;;;;;;;;;;;;;33516:24;33359:181;33341:319;;;33578:4;33567:8;;:15;;;;;;;;;;;;;;;;;;33599:16;33608:6;33599:8;:16::i;:::-;33643:5;33632:8;;:16;;;;;;;;;;;;;;;;;;33341:319;33672:12;33688:8;;;;;;;;;;;33687:9;33672:24;;33798:19;:25;33818:4;33798:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;33827:19;:23;33847:2;33827:23;;;;;;;;;;;;;;;;;;;;;;;;;33798:52;33794:100;;;33877:5;33867:15;;33794:100;33906:12;33933:26;33974;34093:7;34089:958;;;34151:13;34145:19;;:2;:19;;;:40;;;;;34184:1;34168:13;;:17;34145:40;34141:615;;;34213:38;34243:7;;34213:25;34224:13;;34213:6;:10;;:25;;;;:::i;:::-;:29;;:38;;;;:::i;:::-;34206:45;;34319:13;;34299:16;;34292:4;:23;;;;:::i;:::-;34291:41;;;;:::i;:::-;34270:62;;34400:13;;34380:16;;34373:4;:23;;;;:::i;:::-;34372:41;;;;:::i;:::-;34351:62;;34141:615;;;34483:13;34475:21;;:4;:21;;;:41;;;;;34515:1;34500:12;;:16;34475:41;34471:285;;;34544:37;34573:7;;34544:24;34555:12;;34544:6;:10;;:24;;;;:::i;:::-;:28;;:37;;;;:::i;:::-;34537:44;;34648:12;;34629:15;;34622:4;:22;;;;:::i;:::-;34621:39;;;;:::i;:::-;34600:60;;34728:12;;34709:15;;34702:4;:22;;;;:::i;:::-;34701:39;;;;:::i;:::-;34680:60;;34471:285;34141:615;34783:1;34776:4;:8;34772:91;;;34805:42;34821:4;34835;34842;34805:15;:42::i;:::-;34772:91;34902:1;34881:18;:22;34877:128;;;34924:65;34948:4;34955:13;34970:18;34924:15;:65::i;:::-;34877:128;35031:4;35021:14;;;;;:::i;:::-;;;34089:958;35059:33;35075:4;35081:2;35085:6;35059:15;:33::i;:::-;31399:3701;;;;;;31286:3814;;;;:::o;3447:191::-;3521:16;3540:6;;;;;;;;;;;3521:25;;3566:8;3557:6;;:17;;;;;;;;;;;;;;;;;;3621:8;3590:40;;3611:8;3590:40;;;;;;;;;;;;3510:128;3447:191;:::o;13393:733::-;13551:1;13533:20;;:6;:20;;;13525:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;13635:1;13614:23;;:9;:23;;;13606:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;13690:47;13711:6;13719:9;13730:6;13690:20;:47::i;:::-;13750:21;13774:9;:17;13784:6;13774:17;;;;;;;;;;;;;;;;13750:41;;13827:6;13810:13;:23;;13802:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;13948:6;13932:13;:22;13912:9;:17;13922:6;13912:17;;;;;;;;;;;;;;;:42;;;;14000:6;13976:9;:20;13986:9;13976:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;14041:9;14024:35;;14033:6;14024:35;;;14052:6;14024:35;;;;;;:::i;:::-;;;;;;;;14072:46;14092:6;14100:9;14111:6;14072:19;:46::i;:::-;13514:612;13393:733;;;:::o;35813:313::-;35866:23;35892:24;35910:4;35892:9;:24::i;:::-;35866:50;;35950:1;35931:15;:20;35927:59;;35968:7;;;35927:59;35998:18;36019:58;36023:6;36031:45;36035:15;36073:2;36052:18;;:23;;;;:::i;:::-;36031:3;:45::i;:::-;36019:3;:58::i;:::-;35998:79;;36090:28;36107:10;36090:16;:28::i;:::-;35855:271;;35813:313;;:::o;16232:125::-;;;;:::o;16961:124::-;;;;:::o;35108:98::-;35165:7;35192:1;35190;:3;35189:9;;35197:1;35189:9;;;35195:1;35189:9;35182:16;;35108:98;;;;:::o;35214:591::-;35340:21;35378:1;35364:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35340:40;;35409:4;35391;35396:1;35391:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;35435:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;35425:4;35430:1;35425:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;35470:62;35487:4;35502:15;35520:11;35470:8;:62::i;:::-;35571:15;:66;;;35652:11;35678:1;35722:4;35741:15;;;;;;;;;;;35771;35571:226;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35269:536;35214:591;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:77;371:7;400:5;389:16;;334:77;;;:::o;417:122::-;490:24;508:5;490:24;:::i;:::-;483:5;480:35;470:63;;529:1;526;519:12;470:63;417:122;:::o;545:139::-;591:5;629:6;616:20;607:29;;645:33;672:5;645:33;:::i;:::-;545:139;;;;:::o;690:474::-;758:6;766;815:2;803:9;794:7;790:23;786:32;783:119;;;821:79;;:::i;:::-;783:119;941:1;966:53;1011:7;1002:6;991:9;987:22;966:53;:::i;:::-;956:63;;912:117;1068:2;1094:53;1139:7;1130:6;1119:9;1115:22;1094:53;:::i;:::-;1084:63;;1039:118;690:474;;;;;:::o;1170:99::-;1222:6;1256:5;1250:12;1240:22;;1170:99;;;:::o;1275:169::-;1359:11;1393:6;1388:3;1381:19;1433:4;1428:3;1424:14;1409:29;;1275:169;;;;:::o;1450:246::-;1531:1;1541:113;1555:6;1552:1;1549:13;1541:113;;;1640:1;1635:3;1631:11;1625:18;1621:1;1616:3;1612:11;1605:39;1577:2;1574:1;1570:10;1565:15;;1541:113;;;1688:1;1679:6;1674:3;1670:16;1663:27;1512:184;1450:246;;;:::o;1702:102::-;1743:6;1794:2;1790:7;1785:2;1778:5;1774:14;1770:28;1760:38;;1702:102;;;:::o;1810:377::-;1898:3;1926:39;1959:5;1926:39;:::i;:::-;1981:71;2045:6;2040:3;1981:71;:::i;:::-;1974:78;;2061:65;2119:6;2114:3;2107:4;2100:5;2096:16;2061:65;:::i;:::-;2151:29;2173:6;2151:29;:::i;:::-;2146:3;2142:39;2135:46;;1902:285;1810:377;;;;:::o;2193:313::-;2306:4;2344:2;2333:9;2329:18;2321:26;;2393:9;2387:4;2383:20;2379:1;2368:9;2364:17;2357:47;2421:78;2494:4;2485:6;2421:78;:::i;:::-;2413:86;;2193:313;;;;:::o;2512:126::-;2549:7;2589:42;2582:5;2578:54;2567:65;;2512:126;;;:::o;2644:96::-;2681:7;2710:24;2728:5;2710:24;:::i;:::-;2699:35;;2644:96;;;:::o;2746:122::-;2819:24;2837:5;2819:24;:::i;:::-;2812:5;2809:35;2799:63;;2858:1;2855;2848:12;2799:63;2746:122;:::o;2874:139::-;2920:5;2958:6;2945:20;2936:29;;2974:33;3001:5;2974:33;:::i;:::-;2874:139;;;;:::o;3019:474::-;3087:6;3095;3144:2;3132:9;3123:7;3119:23;3115:32;3112:119;;;3150:79;;:::i;:::-;3112:119;3270:1;3295:53;3340:7;3331:6;3320:9;3316:22;3295:53;:::i;:::-;3285:63;;3241:117;3397:2;3423:53;3468:7;3459:6;3448:9;3444:22;3423:53;:::i;:::-;3413:63;;3368:118;3019:474;;;;;:::o;3499:90::-;3533:7;3576:5;3569:13;3562:21;3551:32;;3499:90;;;:::o;3595:109::-;3676:21;3691:5;3676:21;:::i;:::-;3671:3;3664:34;3595:109;;:::o;3710:210::-;3797:4;3835:2;3824:9;3820:18;3812:26;;3848:65;3910:1;3899:9;3895:17;3886:6;3848:65;:::i;:::-;3710:210;;;;:::o;3926:329::-;3985:6;4034:2;4022:9;4013:7;4009:23;4005:32;4002:119;;;4040:79;;:::i;:::-;4002:119;4160:1;4185:53;4230:7;4221:6;4210:9;4206:22;4185:53;:::i;:::-;4175:63;;4131:117;3926:329;;;;:::o;4261:60::-;4289:3;4310:5;4303:12;;4261:60;;;:::o;4327:142::-;4377:9;4410:53;4428:34;4437:24;4455:5;4437:24;:::i;:::-;4428:34;:::i;:::-;4410:53;:::i;:::-;4397:66;;4327:142;;;:::o;4475:126::-;4525:9;4558:37;4589:5;4558:37;:::i;:::-;4545:50;;4475:126;;;:::o;4607:152::-;4683:9;4716:37;4747:5;4716:37;:::i;:::-;4703:50;;4607:152;;;:::o;4765:183::-;4878:63;4935:5;4878:63;:::i;:::-;4873:3;4866:76;4765:183;;:::o;4954:274::-;5073:4;5111:2;5100:9;5096:18;5088:26;;5124:97;5218:1;5207:9;5203:17;5194:6;5124:97;:::i;:::-;4954:274;;;;:::o;5234:118::-;5321:24;5339:5;5321:24;:::i;:::-;5316:3;5309:37;5234:118;;:::o;5358:222::-;5451:4;5489:2;5478:9;5474:18;5466:26;;5502:71;5570:1;5559:9;5555:17;5546:6;5502:71;:::i;:::-;5358:222;;;;:::o;5586:329::-;5645:6;5694:2;5682:9;5673:7;5669:23;5665:32;5662:119;;;5700:79;;:::i;:::-;5662:119;5820:1;5845:53;5890:7;5881:6;5870:9;5866:22;5845:53;:::i;:::-;5835:63;;5791:117;5586:329;;;;:::o;5921:619::-;5998:6;6006;6014;6063:2;6051:9;6042:7;6038:23;6034:32;6031:119;;;6069:79;;:::i;:::-;6031:119;6189:1;6214:53;6259:7;6250:6;6239:9;6235:22;6214:53;:::i;:::-;6204:63;;6160:117;6316:2;6342:53;6387:7;6378:6;6367:9;6363:22;6342:53;:::i;:::-;6332:63;;6287:118;6444:2;6470:53;6515:7;6506:6;6495:9;6491:22;6470:53;:::i;:::-;6460:63;;6415:118;5921:619;;;;;:::o;6546:86::-;6581:7;6621:4;6614:5;6610:16;6599:27;;6546:86;;;:::o;6638:112::-;6721:22;6737:5;6721:22;:::i;:::-;6716:3;6709:35;6638:112;;:::o;6756:214::-;6845:4;6883:2;6872:9;6868:18;6860:26;;6896:67;6960:1;6949:9;6945:17;6936:6;6896:67;:::i;:::-;6756:214;;;;:::o;6976:118::-;7063:24;7081:5;7063:24;:::i;:::-;7058:3;7051:37;6976:118;;:::o;7100:222::-;7193:4;7231:2;7220:9;7216:18;7208:26;;7244:71;7312:1;7301:9;7297:17;7288:6;7244:71;:::i;:::-;7100:222;;;;:::o;7328:116::-;7398:21;7413:5;7398:21;:::i;:::-;7391:5;7388:32;7378:60;;7434:1;7431;7424:12;7378:60;7328:116;:::o;7450:133::-;7493:5;7531:6;7518:20;7509:29;;7547:30;7571:5;7547:30;:::i;:::-;7450:133;;;;:::o;7589:468::-;7654:6;7662;7711:2;7699:9;7690:7;7686:23;7682:32;7679:119;;;7717:79;;:::i;:::-;7679:119;7837:1;7862:53;7907:7;7898:6;7887:9;7883:22;7862:53;:::i;:::-;7852:63;;7808:117;7964:2;7990:50;8032:7;8023:6;8012:9;8008:22;7990:50;:::i;:::-;7980:60;;7935:115;7589:468;;;;;:::o;8063:323::-;8119:6;8168:2;8156:9;8147:7;8143:23;8139:32;8136:119;;;8174:79;;:::i;:::-;8136:119;8294:1;8319:50;8361:7;8352:6;8341:9;8337:22;8319:50;:::i;:::-;8309:60;;8265:114;8063:323;;;;:::o;8392:117::-;8501:1;8498;8491:12;8515:117;8624:1;8621;8614:12;8638:180;8686:77;8683:1;8676:88;8783:4;8780:1;8773:15;8807:4;8804:1;8797:15;8824:281;8907:27;8929:4;8907:27;:::i;:::-;8899:6;8895:40;9037:6;9025:10;9022:22;9001:18;8989:10;8986:34;8983:62;8980:88;;;9048:18;;:::i;:::-;8980:88;9088:10;9084:2;9077:22;8867:238;8824:281;;:::o;9111:129::-;9145:6;9172:20;;:::i;:::-;9162:30;;9201:33;9229:4;9221:6;9201:33;:::i;:::-;9111:129;;;:::o;9246:308::-;9308:4;9398:18;9390:6;9387:30;9384:56;;;9420:18;;:::i;:::-;9384:56;9458:29;9480:6;9458:29;:::i;:::-;9450:37;;9542:4;9536;9532:15;9524:23;;9246:308;;;:::o;9560:146::-;9657:6;9652:3;9647;9634:30;9698:1;9689:6;9684:3;9680:16;9673:27;9560:146;;;:::o;9712:425::-;9790:5;9815:66;9831:49;9873:6;9831:49;:::i;:::-;9815:66;:::i;:::-;9806:75;;9904:6;9897:5;9890:21;9942:4;9935:5;9931:16;9980:3;9971:6;9966:3;9962:16;9959:25;9956:112;;;9987:79;;:::i;:::-;9956:112;10077:54;10124:6;10119:3;10114;10077:54;:::i;:::-;9796:341;9712:425;;;;;:::o;10157:340::-;10213:5;10262:3;10255:4;10247:6;10243:17;10239:27;10229:122;;10270:79;;:::i;:::-;10229:122;10387:6;10374:20;10412:79;10487:3;10479:6;10472:4;10464:6;10460:17;10412:79;:::i;:::-;10403:88;;10219:278;10157:340;;;;:::o;10503:509::-;10572:6;10621:2;10609:9;10600:7;10596:23;10592:32;10589:119;;;10627:79;;:::i;:::-;10589:119;10775:1;10764:9;10760:17;10747:31;10805:18;10797:6;10794:30;10791:117;;;10827:79;;:::i;:::-;10791:117;10932:63;10987:7;10978:6;10967:9;10963:22;10932:63;:::i;:::-;10922:73;;10718:287;10503:509;;;;:::o;11018:474::-;11086:6;11094;11143:2;11131:9;11122:7;11118:23;11114:32;11111:119;;;11149:79;;:::i;:::-;11111:119;11269:1;11294:53;11339:7;11330:6;11319:9;11315:22;11294:53;:::i;:::-;11284:63;;11240:117;11396:2;11422:53;11467:7;11458:6;11447:9;11443:22;11422:53;:::i;:::-;11412:63;;11367:118;11018:474;;;;;:::o;11498:182::-;11638:34;11634:1;11626:6;11622:14;11615:58;11498:182;:::o;11686:366::-;11828:3;11849:67;11913:2;11908:3;11849:67;:::i;:::-;11842:74;;11925:93;12014:3;11925:93;:::i;:::-;12043:2;12038:3;12034:12;12027:19;;11686:366;;;:::o;12058:419::-;12224:4;12262:2;12251:9;12247:18;12239:26;;12311:9;12305:4;12301:20;12297:1;12286:9;12282:17;12275:47;12339:131;12465:4;12339:131;:::i;:::-;12331:139;;12058:419;;;:::o;12483:180::-;12531:77;12528:1;12521:88;12628:4;12625:1;12618:15;12652:4;12649:1;12642:15;12669:191;12709:3;12728:20;12746:1;12728:20;:::i;:::-;12723:25;;12762:20;12780:1;12762:20;:::i;:::-;12757:25;;12805:1;12802;12798:9;12791:16;;12826:3;12823:1;12820:10;12817:36;;;12833:18;;:::i;:::-;12817:36;12669:191;;;;:::o;12866:179::-;13006:31;13002:1;12994:6;12990:14;12983:55;12866:179;:::o;13051:366::-;13193:3;13214:67;13278:2;13273:3;13214:67;:::i;:::-;13207:74;;13290:93;13379:3;13290:93;:::i;:::-;13408:2;13403:3;13399:12;13392:19;;13051:366;;;:::o;13423:419::-;13589:4;13627:2;13616:9;13612:18;13604:26;;13676:9;13670:4;13666:20;13662:1;13651:9;13647:17;13640:47;13704:131;13830:4;13704:131;:::i;:::-;13696:139;;13423:419;;;:::o;13848:180::-;13896:77;13893:1;13886:88;13993:4;13990:1;13983:15;14017:4;14014:1;14007:15;14034:320;14078:6;14115:1;14109:4;14105:12;14095:22;;14162:1;14156:4;14152:12;14183:18;14173:81;;14239:4;14231:6;14227:17;14217:27;;14173:81;14301:2;14293:6;14290:14;14270:18;14267:38;14264:84;;14320:18;;:::i;:::-;14264:84;14085:269;14034:320;;;:::o;14360:410::-;14400:7;14423:20;14441:1;14423:20;:::i;:::-;14418:25;;14457:20;14475:1;14457:20;:::i;:::-;14452:25;;14512:1;14509;14505:9;14534:30;14552:11;14534:30;:::i;:::-;14523:41;;14713:1;14704:7;14700:15;14697:1;14694:22;14674:1;14667:9;14647:83;14624:139;;14743:18;;:::i;:::-;14624:139;14408:362;14360:410;;;;:::o;14776:180::-;14824:77;14821:1;14814:88;14921:4;14918:1;14911:15;14945:4;14942:1;14935:15;14962:185;15002:1;15019:20;15037:1;15019:20;:::i;:::-;15014:25;;15053:20;15071:1;15053:20;:::i;:::-;15048:25;;15092:1;15082:35;;15097:18;;:::i;:::-;15082:35;15139:1;15136;15132:9;15127:14;;14962:185;;;;:::o;15153:234::-;15293:34;15289:1;15281:6;15277:14;15270:58;15362:17;15357:2;15349:6;15345:15;15338:42;15153:234;:::o;15393:366::-;15535:3;15556:67;15620:2;15615:3;15556:67;:::i;:::-;15549:74;;15632:93;15721:3;15632:93;:::i;:::-;15750:2;15745:3;15741:12;15734:19;;15393:366;;;:::o;15765:419::-;15931:4;15969:2;15958:9;15954:18;15946:26;;16018:9;16012:4;16008:20;16004:1;15993:9;15989:17;15982:47;16046:131;16172:4;16046:131;:::i;:::-;16038:139;;15765:419;;;:::o;16190:227::-;16330:34;16326:1;16318:6;16314:14;16307:58;16399:10;16394:2;16386:6;16382:15;16375:35;16190:227;:::o;16423:366::-;16565:3;16586:67;16650:2;16645:3;16586:67;:::i;:::-;16579:74;;16662:93;16751:3;16662:93;:::i;:::-;16780:2;16775:3;16771:12;16764:19;;16423:366;;;:::o;16795:419::-;16961:4;16999:2;16988:9;16984:18;16976:26;;17048:9;17042:4;17038:20;17034:1;17023:9;17019:17;17012:47;17076:131;17202:4;17076:131;:::i;:::-;17068:139;;16795:419;;;:::o;17220:239::-;17360:34;17356:1;17348:6;17344:14;17337:58;17429:22;17424:2;17416:6;17412:15;17405:47;17220:239;:::o;17465:366::-;17607:3;17628:67;17692:2;17687:3;17628:67;:::i;:::-;17621:74;;17704:93;17793:3;17704:93;:::i;:::-;17822:2;17817:3;17813:12;17806:19;;17465:366;;;:::o;17837:419::-;18003:4;18041:2;18030:9;18026:18;18018:26;;18090:9;18084:4;18080:20;18076:1;18065:9;18061:17;18054:47;18118:131;18244:4;18118:131;:::i;:::-;18110:139;;17837:419;;;:::o;18262:141::-;18311:4;18334:3;18326:11;;18357:3;18354:1;18347:14;18391:4;18388:1;18378:18;18370:26;;18262:141;;;:::o;18409:93::-;18446:6;18493:2;18488;18481:5;18477:14;18473:23;18463:33;;18409:93;;;:::o;18508:107::-;18552:8;18602:5;18596:4;18592:16;18571:37;;18508:107;;;;:::o;18621:393::-;18690:6;18740:1;18728:10;18724:18;18763:97;18793:66;18782:9;18763:97;:::i;:::-;18881:39;18911:8;18900:9;18881:39;:::i;:::-;18869:51;;18953:4;18949:9;18942:5;18938:21;18929:30;;19002:4;18992:8;18988:19;18981:5;18978:30;18968:40;;18697:317;;18621:393;;;;;:::o;19020:142::-;19070:9;19103:53;19121:34;19130:24;19148:5;19130:24;:::i;:::-;19121:34;:::i;:::-;19103:53;:::i;:::-;19090:66;;19020:142;;;:::o;19168:75::-;19211:3;19232:5;19225:12;;19168:75;;;:::o;19249:269::-;19359:39;19390:7;19359:39;:::i;:::-;19420:91;19469:41;19493:16;19469:41;:::i;:::-;19461:6;19454:4;19448:11;19420:91;:::i;:::-;19414:4;19407:105;19325:193;19249:269;;;:::o;19524:73::-;19569:3;19524:73;:::o;19603:189::-;19680:32;;:::i;:::-;19721:65;19779:6;19771;19765:4;19721:65;:::i;:::-;19656:136;19603:189;;:::o;19798:186::-;19858:120;19875:3;19868:5;19865:14;19858:120;;;19929:39;19966:1;19959:5;19929:39;:::i;:::-;19902:1;19895:5;19891:13;19882:22;;19858:120;;;19798:186;;:::o;19990:543::-;20091:2;20086:3;20083:11;20080:446;;;20125:38;20157:5;20125:38;:::i;:::-;20209:29;20227:10;20209:29;:::i;:::-;20199:8;20195:44;20392:2;20380:10;20377:18;20374:49;;;20413:8;20398:23;;20374:49;20436:80;20492:22;20510:3;20492:22;:::i;:::-;20482:8;20478:37;20465:11;20436:80;:::i;:::-;20095:431;;20080:446;19990:543;;;:::o;20539:117::-;20593:8;20643:5;20637:4;20633:16;20612:37;;20539:117;;;;:::o;20662:169::-;20706:6;20739:51;20787:1;20783:6;20775:5;20772:1;20768:13;20739:51;:::i;:::-;20735:56;20820:4;20814;20810:15;20800:25;;20713:118;20662:169;;;;:::o;20836:295::-;20912:4;21058:29;21083:3;21077:4;21058:29;:::i;:::-;21050:37;;21120:3;21117:1;21113:11;21107:4;21104:21;21096:29;;20836:295;;;;:::o;21136:1395::-;21253:37;21286:3;21253:37;:::i;:::-;21355:18;21347:6;21344:30;21341:56;;;21377:18;;:::i;:::-;21341:56;21421:38;21453:4;21447:11;21421:38;:::i;:::-;21506:67;21566:6;21558;21552:4;21506:67;:::i;:::-;21600:1;21624:4;21611:17;;21656:2;21648:6;21645:14;21673:1;21668:618;;;;22330:1;22347:6;22344:77;;;22396:9;22391:3;22387:19;22381:26;22372:35;;22344:77;22447:67;22507:6;22500:5;22447:67;:::i;:::-;22441:4;22434:81;22303:222;21638:887;;21668:618;21720:4;21716:9;21708:6;21704:22;21754:37;21786:4;21754:37;:::i;:::-;21813:1;21827:208;21841:7;21838:1;21835:14;21827:208;;;21920:9;21915:3;21911:19;21905:26;21897:6;21890:42;21971:1;21963:6;21959:14;21949:24;;22018:2;22007:9;22003:18;21990:31;;21864:4;21861:1;21857:12;21852:17;;21827:208;;;22063:6;22054:7;22051:19;22048:179;;;22121:9;22116:3;22112:19;22106:26;22164:48;22206:4;22198:6;22194:17;22183:9;22164:48;:::i;:::-;22156:6;22149:64;22071:156;22048:179;22273:1;22269;22261:6;22257:14;22253:22;22247:4;22240:36;21675:611;;;21638:887;;21228:1303;;;21136:1395;;:::o;22537:223::-;22677:34;22673:1;22665:6;22661:14;22654:58;22746:6;22741:2;22733:6;22729:15;22722:31;22537:223;:::o;22766:366::-;22908:3;22929:67;22993:2;22988:3;22929:67;:::i;:::-;22922:74;;23005:93;23094:3;23005:93;:::i;:::-;23123:2;23118:3;23114:12;23107:19;;22766:366;;;:::o;23138:419::-;23304:4;23342:2;23331:9;23327:18;23319:26;;23391:9;23385:4;23381:20;23377:1;23366:9;23362:17;23355:47;23419:131;23545:4;23419:131;:::i;:::-;23411:139;;23138:419;;;:::o;23563:240::-;23703:34;23699:1;23691:6;23687:14;23680:58;23772:23;23767:2;23759:6;23755:15;23748:48;23563:240;:::o;23809:366::-;23951:3;23972:67;24036:2;24031:3;23972:67;:::i;:::-;23965:74;;24048:93;24137:3;24048:93;:::i;:::-;24166:2;24161:3;24157:12;24150:19;;23809:366;;;:::o;24181:419::-;24347:4;24385:2;24374:9;24370:18;24362:26;;24434:9;24428:4;24424:20;24420:1;24409:9;24405:17;24398:47;24462:131;24588:4;24462:131;:::i;:::-;24454:139;;24181:419;;;:::o;24606:239::-;24746:34;24742:1;24734:6;24730:14;24723:58;24815:22;24810:2;24802:6;24798:15;24791:47;24606:239;:::o;24851:366::-;24993:3;25014:67;25078:2;25073:3;25014:67;:::i;:::-;25007:74;;25090:93;25179:3;25090:93;:::i;:::-;25208:2;25203:3;25199:12;25192:19;;24851:366;;;:::o;25223:419::-;25389:4;25427:2;25416:9;25412:18;25404:26;;25476:9;25470:4;25466:20;25462:1;25451:9;25447:17;25440:47;25504:131;25630:4;25504:131;:::i;:::-;25496:139;;25223:419;;;:::o;25648:225::-;25788:34;25784:1;25776:6;25772:14;25765:58;25857:8;25852:2;25844:6;25840:15;25833:33;25648:225;:::o;25879:366::-;26021:3;26042:67;26106:2;26101:3;26042:67;:::i;:::-;26035:74;;26118:93;26207:3;26118:93;:::i;:::-;26236:2;26231:3;26227:12;26220:19;;25879:366;;;:::o;26251:419::-;26417:4;26455:2;26444:9;26440:18;26432:26;;26504:9;26498:4;26494:20;26490:1;26479:9;26475:17;26468:47;26532:131;26658:4;26532:131;:::i;:::-;26524:139;;26251:419;;;:::o;26676:223::-;26816:34;26812:1;26804:6;26800:14;26793:58;26885:6;26880:2;26872:6;26868:15;26861:31;26676:223;:::o;26905:366::-;27047:3;27068:67;27132:2;27127:3;27068:67;:::i;:::-;27061:74;;27144:93;27233:3;27144:93;:::i;:::-;27262:2;27257:3;27253:12;27246:19;;26905:366;;;:::o;27277:419::-;27443:4;27481:2;27470:9;27466:18;27458:26;;27530:9;27524:4;27520:20;27516:1;27505:9;27501:17;27494:47;27558:131;27684:4;27558:131;:::i;:::-;27550:139;;27277:419;;;:::o;27702:221::-;27842:34;27838:1;27830:6;27826:14;27819:58;27911:4;27906:2;27898:6;27894:15;27887:29;27702:221;:::o;27929:366::-;28071:3;28092:67;28156:2;28151:3;28092:67;:::i;:::-;28085:74;;28168:93;28257:3;28168:93;:::i;:::-;28286:2;28281:3;28277:12;28270:19;;27929:366;;;:::o;28301:419::-;28467:4;28505:2;28494:9;28490:18;28482:26;;28554:9;28548:4;28544:20;28540:1;28529:9;28525:17;28518:47;28582:131;28708:4;28582:131;:::i;:::-;28574:139;;28301:419;;;:::o;28726:224::-;28866:34;28862:1;28854:6;28850:14;28843:58;28935:7;28930:2;28922:6;28918:15;28911:32;28726:224;:::o;28956:366::-;29098:3;29119:67;29183:2;29178:3;29119:67;:::i;:::-;29112:74;;29195:93;29284:3;29195:93;:::i;:::-;29313:2;29308:3;29304:12;29297:19;;28956:366;;;:::o;29328:419::-;29494:4;29532:2;29521:9;29517:18;29509:26;;29581:9;29575:4;29571:20;29567:1;29556:9;29552:17;29545:47;29609:131;29735:4;29609:131;:::i;:::-;29601:139;;29328:419;;;:::o;29753:222::-;29893:34;29889:1;29881:6;29877:14;29870:58;29962:5;29957:2;29949:6;29945:15;29938:30;29753:222;:::o;29981:366::-;30123:3;30144:67;30208:2;30203:3;30144:67;:::i;:::-;30137:74;;30220:93;30309:3;30220:93;:::i;:::-;30338:2;30333:3;30329:12;30322:19;;29981:366;;;:::o;30353:419::-;30519:4;30557:2;30546:9;30542:18;30534:26;;30606:9;30600:4;30596:20;30592:1;30581:9;30577:17;30570:47;30634:131;30760:4;30634:131;:::i;:::-;30626:139;;30353:419;;;:::o;30778:172::-;30918:24;30914:1;30906:6;30902:14;30895:48;30778:172;:::o;30956:366::-;31098:3;31119:67;31183:2;31178:3;31119:67;:::i;:::-;31112:74;;31195:93;31284:3;31195:93;:::i;:::-;31313:2;31308:3;31304:12;31297:19;;30956:366;;;:::o;31328:419::-;31494:4;31532:2;31521:9;31517:18;31509:26;;31581:9;31575:4;31571:20;31567:1;31556:9;31552:17;31545:47;31609:131;31735:4;31609:131;:::i;:::-;31601:139;;31328:419;;;:::o;31753:240::-;31893:34;31889:1;31881:6;31877:14;31870:58;31962:23;31957:2;31949:6;31945:15;31938:48;31753:240;:::o;31999:366::-;32141:3;32162:67;32226:2;32221:3;32162:67;:::i;:::-;32155:74;;32238:93;32327:3;32238:93;:::i;:::-;32356:2;32351:3;32347:12;32340:19;;31999:366;;;:::o;32371:419::-;32537:4;32575:2;32564:9;32560:18;32552:26;;32624:9;32618:4;32614:20;32610:1;32599:9;32595:17;32588:47;32652:131;32778:4;32652:131;:::i;:::-;32644:139;;32371:419;;;:::o;32796:169::-;32936:21;32932:1;32924:6;32920:14;32913:45;32796:169;:::o;32971:366::-;33113:3;33134:67;33198:2;33193:3;33134:67;:::i;:::-;33127:74;;33210:93;33299:3;33210:93;:::i;:::-;33328:2;33323:3;33319:12;33312:19;;32971:366;;;:::o;33343:419::-;33509:4;33547:2;33536:9;33532:18;33524:26;;33596:9;33590:4;33586:20;33582:1;33571:9;33567:17;33560:47;33624:131;33750:4;33624:131;:::i;:::-;33616:139;;33343:419;;;:::o;33768:194::-;33808:4;33828:20;33846:1;33828:20;:::i;:::-;33823:25;;33862:20;33880:1;33862:20;:::i;:::-;33857:25;;33906:1;33903;33899:9;33891:17;;33930:1;33924:4;33921:11;33918:37;;;33935:18;;:::i;:::-;33918:37;33768:194;;;;:::o;33968:225::-;34108:34;34104:1;34096:6;34092:14;34085:58;34177:8;34172:2;34164:6;34160:15;34153:33;33968:225;:::o;34199:366::-;34341:3;34362:67;34426:2;34421:3;34362:67;:::i;:::-;34355:74;;34438:93;34527:3;34438:93;:::i;:::-;34556:2;34551:3;34547:12;34540:19;;34199:366;;;:::o;34571:419::-;34737:4;34775:2;34764:9;34760:18;34752:26;;34824:9;34818:4;34814:20;34810:1;34799:9;34795:17;34788:47;34852:131;34978:4;34852:131;:::i;:::-;34844:139;;34571:419;;;:::o;34996:180::-;35044:77;35041:1;35034:88;35141:4;35138:1;35131:15;35165:4;35162:1;35155:15;35182:143;35239:5;35270:6;35264:13;35255:22;;35286:33;35313:5;35286:33;:::i;:::-;35182:143;;;;:::o;35331:351::-;35401:6;35450:2;35438:9;35429:7;35425:23;35421:32;35418:119;;;35456:79;;:::i;:::-;35418:119;35576:1;35601:64;35657:7;35648:6;35637:9;35633:22;35601:64;:::i;:::-;35591:74;;35547:128;35331:351;;;;:::o;35688:85::-;35733:7;35762:5;35751:16;;35688:85;;;:::o;35779:158::-;35837:9;35870:61;35888:42;35897:32;35923:5;35897:32;:::i;:::-;35888:42;:::i;:::-;35870:61;:::i;:::-;35857:74;;35779:158;;;:::o;35943:147::-;36038:45;36077:5;36038:45;:::i;:::-;36033:3;36026:58;35943:147;;:::o;36096:114::-;36163:6;36197:5;36191:12;36181:22;;36096:114;;;:::o;36216:184::-;36315:11;36349:6;36344:3;36337:19;36389:4;36384:3;36380:14;36365:29;;36216:184;;;;:::o;36406:132::-;36473:4;36496:3;36488:11;;36526:4;36521:3;36517:14;36509:22;;36406:132;;;:::o;36544:108::-;36621:24;36639:5;36621:24;:::i;:::-;36616:3;36609:37;36544:108;;:::o;36658:179::-;36727:10;36748:46;36790:3;36782:6;36748:46;:::i;:::-;36826:4;36821:3;36817:14;36803:28;;36658:179;;;;:::o;36843:113::-;36913:4;36945;36940:3;36936:14;36928:22;;36843:113;;;:::o;36992:732::-;37111:3;37140:54;37188:5;37140:54;:::i;:::-;37210:86;37289:6;37284:3;37210:86;:::i;:::-;37203:93;;37320:56;37370:5;37320:56;:::i;:::-;37399:7;37430:1;37415:284;37440:6;37437:1;37434:13;37415:284;;;37516:6;37510:13;37543:63;37602:3;37587:13;37543:63;:::i;:::-;37536:70;;37629:60;37682:6;37629:60;:::i;:::-;37619:70;;37475:224;37462:1;37459;37455:9;37450:14;;37415:284;;;37419:14;37715:3;37708:10;;37116:608;;;36992:732;;;;:::o;37730:831::-;37993:4;38031:3;38020:9;38016:19;38008:27;;38045:71;38113:1;38102:9;38098:17;38089:6;38045:71;:::i;:::-;38126:80;38202:2;38191:9;38187:18;38178:6;38126:80;:::i;:::-;38253:9;38247:4;38243:20;38238:2;38227:9;38223:18;38216:48;38281:108;38384:4;38375:6;38281:108;:::i;:::-;38273:116;;38399:72;38467:2;38456:9;38452:18;38443:6;38399:72;:::i;:::-;38481:73;38549:3;38538:9;38534:19;38525:6;38481:73;:::i;:::-;37730:831;;;;;;;;:::o

Swarm Source

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