ETH Price: $2,401.38 (+2.66%)

Token

AIMatriX (AIMX)
 

Overview

Max Total Supply

10,000,000 AIMX

Holders

14

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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:
AIMatriX

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-03-05
*/

/**

AIMatriX Project 
 
	Our token is built on the Ethereum network and serves as a key component of our system. As you hold more of our tokens, you will unlock access to more advanced features within the system, allowing you to maximize your returns from cryptocurrency investments. Our tokens provide an easy and secure way for you to access the full range of features offered by our AI-powered investment platform. 
	By holding our tokens, you will have the ability to take advantage of the latest market trends and opportunities, and enjoy a more comprehensive and profitable investment experience. We encourage our users to keep their tokens on their Ethereum wallets to take full advantage of our system's capabilities and secure their investments. 
	Join us in the exciting world of cryptocurrency investing, and let our AI-powered platform help you achieve your financial goals
                                                                                                                              
Chat - https://t.me/aimatrixproject
Twitter - https://twitter.com/aimatrixproject
Website - http://www.aimatrixsystem.info/

*/

// SPDX-License-Identifier: MIT

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

pragma solidity ^0.8.0;

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.10;
pragma experimental ABIEncoderV2;
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 swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
}

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

    IUniswapV2Router02 public immutable uniswapV2Router;

    address public immutable uniswapV2Pair;
    address public devWallet;
    address public WETH = 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2;

    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) private _isExcludedFromMaxWallet;

    uint256 public swapTokensAtAmount;
    uint256 public buyDevFee;
    uint256 public buyLiquidityFee;
    uint256 public buyTotalFees;
    uint256 public sellDevFee;
    uint256 public sellLiquidityFee;
    uint256 public sellTotalFees;
    uint256 public maxWallet;

    bool public swapBackEnabled = true;
    bool public limitsInEffect = true;
    bool public tradingActive;
    bool private swapping;

    constructor() ERC20("AIMatriX", "AIMX") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        uniswapV2Router = _uniswapV2Router;
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), WETH);

        uint256 totalSupply = 10000000e18;

        maxWallet = totalSupply * 5 / 100; // 5%
        swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.05%

        buyDevFee = 2;
        buyLiquidityFee = 1;
        buyTotalFees = buyDevFee + buyLiquidityFee;
        sellDevFee = 2;
        sellLiquidityFee = 1;
        sellTotalFees = sellDevFee + sellLiquidityFee;

        devWallet = owner();

        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);
        excludeFromFees(address(0x0000), true);

        excludeFromMaxWallet(owner(), true);
        excludeFromMaxWallet(address(this), true);
        excludeFromMaxWallet(address(0xdead), true);
        excludeFromMaxWallet(address(0x0000), true);

        _mint(msg.sender, totalSupply);
    }

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

        bool isBuy = from == uniswapV2Pair;
        bool isSell = to == uniswapV2Pair;

        if (!tradingActive && !_isExcludedFromFees[from] && !_isExcludedFromFees[to]) require(false, "Trading has not started yet");

        if (limitsInEffect && !_isExcludedFromMaxWallet[to] && !swapping) {
            if (isBuy) {
                require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded (buy)");
            }
            if (!isBuy && !isSell) {
                require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded (transfer)");
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));
        bool canSwap = contractTokenBalance >= swapTokensAtAmount;
        if (canSwap && swapBackEnabled && !swapping && to == uniswapV2Pair && !_isExcludedFromFees[from] && !_isExcludedFromFees[to]) {
            swapping = true;
            swapBack();
            swapping = false;
        }

        bool takeFee = !swapping;
        if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }

        uint256 fees = 0;
   
     uint256 tokensForLiquidity = 0;

        if (takeFee) {
            if (to == uniswapV2Pair && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
                tokensForLiquidity = (fees * sellLiquidityFee) / sellTotalFees;
            }
            else if (from == uniswapV2Pair && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity = (fees * buyLiquidityFee) / 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 swapTokensForUSDC(uint256 tokenAmount) private {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = WETH;

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

        uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            devWallet,
            block.timestamp
        );
    }

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

        swapTokensForUSDC(contractBalance);
    }

    receive() external payable {}

    function rescue(address token) public onlyOwner {
        ERC20 Token = ERC20(token);
        uint256 balance = Token.balanceOf(address(this));
        if (balance > 0) Token.transfer(_msgSender(), balance);
    }

    function updateDevWallet(address newWallet) external onlyOwner {
        devWallet = newWallet;
    }

    function updateSwapBackEnabled(bool enabled) external onlyOwner {
        swapBackEnabled = enabled;
    }

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

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

    function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns (bool) {
        require(newAmount >= (totalSupply() * 1) / 100000, "< 0.001% total supply.");
        require(newAmount <= (totalSupply() * 5) / 100, "> 5% total supply.");
        swapTokensAtAmount = newAmount;
        return true;
    }

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

    function enableTrading() public onlyOwner {
        tradingActive = true;
    }

    function enableLimits(bool _limitsInEffect) public onlyOwner {
        limitsInEffect = _limitsInEffect;
    }

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

    function excludeFromMaxWallet(address account, bool excluded) public onlyOwner {
        _isExcludedFromMaxWallet[account] = excluded;
    }

    function isExcludedFromMaxWallet(address account) public view returns (bool) {
        return _isExcludedFromMaxWallet[account];
    }

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

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":"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"},{"inputs":[],"name":"WETH","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_limitsInEffect","type":"bool"}],"name":"enableLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromMaxWallet","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":"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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"rescue","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapBackEnabled","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":"_devFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateBuyFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_devFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapBackEnabled","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"}]

60c060405273c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001601260006101000a81548160ff0219169083151502179055506001601260016101000a81548160ff0219169083151502179055503480156200009c57600080fd5b506040518060400160405280600881526020017f41494d61747269580000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f41494d58000000000000000000000000000000000000000000000000000000008152508160039080519060200190620001219291906200090f565b5080600490805190602001906200013a9291906200090f565b5050506200015d62000151620004c060201b60201c565b620004c860201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001f6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200021c919062000a29565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518363ffffffff1660e01b81526004016200027a92919062000a6c565b6020604051808303816000875af11580156200029a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002c0919062000a29565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff168152505060006a084595161401484a0000009050606460058262000314919062000ad2565b62000320919062000b62565b60118190555061271060058262000338919062000ad2565b62000344919062000b62565b600a819055506002600b819055506001600c81905550600c54600b546200036c919062000b9a565b600d819055506002600e819055506001600f81905550600f54600e5462000394919062000b9a565b601081905550620003aa6200058e60201b60201c565b600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200040c620003fe6200058e60201b60201c565b6001620005b860201b60201c565b6200041f306001620005b860201b60201c565b6200043461dead6001620005b860201b60201c565b6200044860006001620005b860201b60201c565b6200046a6200045c6200058e60201b60201c565b6001620006a260201b60201c565b6200047d306001620006a260201b60201c565b6200049261dead6001620006a260201b60201c565b620004a660006001620006a260201b60201c565b620004b833826200078c60201b60201c565b505062000d7f565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620005c8620004c060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620005ee6200058e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000647576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200063e9062000c58565b60405180910390fd5b80600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b620006b2620004c060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620006d86200058e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000731576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007289062000c58565b60405180910390fd5b80600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620007ff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007f69062000cca565b60405180910390fd5b62000813600083836200090560201b60201c565b806002600082825462000827919062000b9a565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200087e919062000b9a565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620008e5919062000cfd565b60405180910390a362000901600083836200090a60201b60201c565b5050565b505050565b505050565b8280546200091d9062000d49565b90600052602060002090601f0160209004810192826200094157600085556200098d565b82601f106200095c57805160ff19168380011785556200098d565b828001600101855582156200098d579182015b828111156200098c5782518255916020019190600101906200096f565b5b5090506200099c9190620009a0565b5090565b5b80821115620009bb576000816000905550600101620009a1565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620009f182620009c4565b9050919050565b62000a0381620009e4565b811462000a0f57600080fd5b50565b60008151905062000a2381620009f8565b92915050565b60006020828403121562000a425762000a41620009bf565b5b600062000a528482850162000a12565b91505092915050565b62000a6681620009e4565b82525050565b600060408201905062000a83600083018562000a5b565b62000a92602083018462000a5b565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000adf8262000a99565b915062000aec8362000a99565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000b285762000b2762000aa3565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000b6f8262000a99565b915062000b7c8362000a99565b92508262000b8f5762000b8e62000b33565b5b828204905092915050565b600062000ba78262000a99565b915062000bb48362000a99565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000bec5762000beb62000aa3565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000c4060208362000bf7565b915062000c4d8262000c08565b602082019050919050565b6000602082019050818103600083015262000c738162000c31565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000cb2601f8362000bf7565b915062000cbf8262000c7a565b602082019050919050565b6000602082019050818103600083015262000ce58162000ca3565b9050919050565b62000cf78162000a99565b82525050565b600060208201905062000d14600083018462000cec565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000d6257607f821691505b6020821081141562000d795762000d7862000d1a565b5b50919050565b60805160a051613ca362000ddd60003960008181610f2d01528181611ee001528181611f33015281816122260152818161242f015281816124dd01526125aa015260008181610b8301528181612ab10152612ad80152613ca36000f3fe6080604052600436106102555760003560e01c80638da5cb5b11610139578063c0246668116100b6578063e2f456051161007a578063e2f45605146108e9578063f11a24d314610914578063f2fde38b1461093f578063f637434214610968578063f8b45b0514610993578063f931d9d2146109be5761025c565b8063c0246668146107f2578063d257b34f1461081b578063d2fcc00114610858578063d85ba06314610881578063dd62ed3e146108ac5761025c565b8063a457c2d7116100fd578063a457c2d7146106f9578063a5cdee0514610736578063a9059cbb1461075f578063ad5c46481461079c578063bbc0c742146107c75761025c565b80638da5cb5b146106225780638ea5220f1461064d57806395d89b41146106785780639c3b4fdc146106a3578063a0d82dc5146106ce5761025c565b806349bd5a5e116101d25780636a486a8e116101965780636a486a8e146105265780636dd3d39f1461055157806370a082311461058e578063715018a6146105cb578063839006f2146105e25780638a8c523c1461060b5761025c565b806349bd5a5e1461043f5780634a62bb651461046a5780634fbee19314610495578063610e34b9146104d257806364c0a2f8146104fb5761025c565b80631816467f116102195780631816467f146103485780631c499ab01461037157806323b872dd1461039a578063313ce567146103d757806339509351146104025761025c565b806302dbd8f81461026157806306fdde031461028a578063095ea7b3146102b55780631694505e146102f257806318160ddd1461031d5761025c565b3661025c57005b600080fd5b34801561026d57600080fd5b5061028860048036038101906102839190612bcb565b6109e7565b005b34801561029657600080fd5b5061029f610ad1565b6040516102ac9190612ca4565b60405180910390f35b3480156102c157600080fd5b506102dc60048036038101906102d79190612d24565b610b63565b6040516102e99190612d7f565b60405180910390f35b3480156102fe57600080fd5b50610307610b81565b6040516103149190612df9565b60405180910390f35b34801561032957600080fd5b50610332610ba5565b60405161033f9190612e23565b60405180910390f35b34801561035457600080fd5b5061036f600480360381019061036a9190612e3e565b610baf565b005b34801561037d57600080fd5b5061039860048036038101906103939190612e6b565b610c6f565b005b3480156103a657600080fd5b506103c160048036038101906103bc9190612e98565b610d7e565b6040516103ce9190612d7f565b60405180910390f35b3480156103e357600080fd5b506103ec610e76565b6040516103f99190612f07565b60405180910390f35b34801561040e57600080fd5b5061042960048036038101906104249190612d24565b610e7f565b6040516104369190612d7f565b60405180910390f35b34801561044b57600080fd5b50610454610f2b565b6040516104619190612f31565b60405180910390f35b34801561047657600080fd5b5061047f610f4f565b60405161048c9190612d7f565b60405180910390f35b3480156104a157600080fd5b506104bc60048036038101906104b79190612e3e565b610f62565b6040516104c99190612d7f565b60405180910390f35b3480156104de57600080fd5b506104f960048036038101906104f49190612bcb565b610fb8565b005b34801561050757600080fd5b506105106110a2565b60405161051d9190612d7f565b60405180910390f35b34801561053257600080fd5b5061053b6110b5565b6040516105489190612e23565b60405180910390f35b34801561055d57600080fd5b5061057860048036038101906105739190612e3e565b6110bb565b6040516105859190612d7f565b60405180910390f35b34801561059a57600080fd5b506105b560048036038101906105b09190612e3e565b611111565b6040516105c29190612e23565b60405180910390f35b3480156105d757600080fd5b506105e0611159565b005b3480156105ee57600080fd5b5061060960048036038101906106049190612e3e565b6111e1565b005b34801561061757600080fd5b50610620611375565b005b34801561062e57600080fd5b5061063761140e565b6040516106449190612f31565b60405180910390f35b34801561065957600080fd5b50610662611438565b60405161066f9190612f31565b60405180910390f35b34801561068457600080fd5b5061068d61145e565b60405161069a9190612ca4565b60405180910390f35b3480156106af57600080fd5b506106b86114f0565b6040516106c59190612e23565b60405180910390f35b3480156106da57600080fd5b506106e36114f6565b6040516106f09190612e23565b60405180910390f35b34801561070557600080fd5b50610720600480360381019061071b9190612d24565b6114fc565b60405161072d9190612d7f565b60405180910390f35b34801561074257600080fd5b5061075d60048036038101906107589190612f78565b6115e7565b005b34801561076b57600080fd5b5061078660048036038101906107819190612d24565b611680565b6040516107939190612d7f565b60405180910390f35b3480156107a857600080fd5b506107b161169e565b6040516107be9190612f31565b60405180910390f35b3480156107d357600080fd5b506107dc6116c4565b6040516107e99190612d7f565b60405180910390f35b3480156107fe57600080fd5b5061081960048036038101906108149190612fa5565b6116d7565b005b34801561082757600080fd5b50610842600480360381019061083d9190612e6b565b6117ae565b60405161084f9190612d7f565b60405180910390f35b34801561086457600080fd5b5061087f600480360381019061087a9190612fa5565b611902565b005b34801561088d57600080fd5b506108966119d9565b6040516108a39190612e23565b60405180910390f35b3480156108b857600080fd5b506108d360048036038101906108ce9190612fe5565b6119df565b6040516108e09190612e23565b60405180910390f35b3480156108f557600080fd5b506108fe611a66565b60405161090b9190612e23565b60405180910390f35b34801561092057600080fd5b50610929611a6c565b6040516109369190612e23565b60405180910390f35b34801561094b57600080fd5b5061096660048036038101906109619190612e3e565b611a72565b005b34801561097457600080fd5b5061097d611b6a565b60405161098a9190612e23565b60405180910390f35b34801561099f57600080fd5b506109a8611b70565b6040516109b59190612e23565b60405180910390f35b3480156109ca57600080fd5b506109e560048036038101906109e09190612f78565b611b76565b005b6109ef611c0f565b73ffffffffffffffffffffffffffffffffffffffff16610a0d61140e565b73ffffffffffffffffffffffffffffffffffffffff1614610a63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5a90613071565b60405180910390fd5b81600e8190555080600f81905550600f54600e54610a8191906130c0565b60108190555060636010541115610acd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac490613162565b60405180910390fd5b5050565b606060038054610ae0906131b1565b80601f0160208091040260200160405190810160405280929190818152602001828054610b0c906131b1565b8015610b595780601f10610b2e57610100808354040283529160200191610b59565b820191906000526020600020905b815481529060010190602001808311610b3c57829003601f168201915b5050505050905090565b6000610b77610b70611c0f565b8484611c17565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610bb7611c0f565b73ffffffffffffffffffffffffffffffffffffffff16610bd561140e565b73ffffffffffffffffffffffffffffffffffffffff1614610c2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2290613071565b60405180910390fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610c77611c0f565b73ffffffffffffffffffffffffffffffffffffffff16610c9561140e565b73ffffffffffffffffffffffffffffffffffffffff1614610ceb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce290613071565b60405180910390fd5b670de0b6b3a76400006103e86005610d01610ba5565b610d0b91906131e3565b610d15919061326c565b610d1f919061326c565b811015610d61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d589061330f565b60405180910390fd5b670de0b6b3a764000081610d7591906131e3565b60118190555050565b6000610d8b848484611de2565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610dd6611c0f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610e56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4d906133a1565b60405180910390fd5b610e6a85610e62611c0f565b858403611c17565b60019150509392505050565b60006012905090565b6000610f21610e8c611c0f565b848460016000610e9a611c0f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f1c91906130c0565b611c17565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601260019054906101000a900460ff1681565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610fc0611c0f565b73ffffffffffffffffffffffffffffffffffffffff16610fde61140e565b73ffffffffffffffffffffffffffffffffffffffff1614611034576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102b90613071565b60405180910390fd5b81600b8190555080600c81905550600c54600b5461105291906130c0565b600d81905550600f600d54111561109e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109590613162565b60405180910390fd5b5050565b601260009054906101000a900460ff1681565b60105481565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611161611c0f565b73ffffffffffffffffffffffffffffffffffffffff1661117f61140e565b73ffffffffffffffffffffffffffffffffffffffff16146111d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cc90613071565b60405180910390fd5b6111df60006125f7565b565b6111e9611c0f565b73ffffffffffffffffffffffffffffffffffffffff1661120761140e565b73ffffffffffffffffffffffffffffffffffffffff161461125d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125490613071565b60405180910390fd5b600081905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161129d9190612f31565b602060405180830381865afa1580156112ba573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112de91906133d6565b90506000811115611370578173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb61130d611c0f565b836040518363ffffffff1660e01b815260040161132b929190613403565b6020604051808303816000875af115801561134a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061136e9190613441565b505b505050565b61137d611c0f565b73ffffffffffffffffffffffffffffffffffffffff1661139b61140e565b73ffffffffffffffffffffffffffffffffffffffff16146113f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e890613071565b60405180910390fd5b6001601260026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606004805461146d906131b1565b80601f0160208091040260200160405190810160405280929190818152602001828054611499906131b1565b80156114e65780601f106114bb576101008083540402835291602001916114e6565b820191906000526020600020905b8154815290600101906020018083116114c957829003601f168201915b5050505050905090565b600b5481565b600e5481565b6000806001600061150b611c0f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156115c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bf906134e0565b60405180910390fd5b6115dc6115d3611c0f565b85858403611c17565b600191505092915050565b6115ef611c0f565b73ffffffffffffffffffffffffffffffffffffffff1661160d61140e565b73ffffffffffffffffffffffffffffffffffffffff1614611663576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165a90613071565b60405180910390fd5b80601260016101000a81548160ff02191690831515021790555050565b600061169461168d611c0f565b8484611de2565b6001905092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601260029054906101000a900460ff1681565b6116df611c0f565b73ffffffffffffffffffffffffffffffffffffffff166116fd61140e565b73ffffffffffffffffffffffffffffffffffffffff1614611753576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174a90613071565b60405180910390fd5b80600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60006117b8611c0f565b73ffffffffffffffffffffffffffffffffffffffff166117d661140e565b73ffffffffffffffffffffffffffffffffffffffff161461182c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182390613071565b60405180910390fd5b620186a0600161183a610ba5565b61184491906131e3565b61184e919061326c565b821015611890576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118879061354c565b60405180910390fd5b6064600561189c610ba5565b6118a691906131e3565b6118b0919061326c565b8211156118f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e9906135b8565b60405180910390fd5b81600a8190555060019050919050565b61190a611c0f565b73ffffffffffffffffffffffffffffffffffffffff1661192861140e565b73ffffffffffffffffffffffffffffffffffffffff161461197e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197590613071565b60405180910390fd5b80600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600d5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600a5481565b600c5481565b611a7a611c0f565b73ffffffffffffffffffffffffffffffffffffffff16611a9861140e565b73ffffffffffffffffffffffffffffffffffffffff1614611aee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae590613071565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b559061364a565b60405180910390fd5b611b67816125f7565b50565b600f5481565b60115481565b611b7e611c0f565b73ffffffffffffffffffffffffffffffffffffffff16611b9c61140e565b73ffffffffffffffffffffffffffffffffffffffff1614611bf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be990613071565b60405180910390fd5b80601260006101000a81548160ff02191690831515021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611c87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7e906136dc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611cf7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cee9061376e565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611dd59190612e23565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611e52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4990613800565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ec2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb990613892565b60405180910390fd5b6000811415611edc57611ed7838360006126bd565b6125f2565b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614905060007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16149050601260029054906101000a900460ff16158015611fe95750600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561203f5750600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612086576000612085576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207c906138fe565b60405180910390fd5b5b601260019054906101000a900460ff1680156120ec5750600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156121055750601260039054906101000a900460ff16155b156121d45781156121695760115461211c85611111565b8461212791906130c0565b1115612168576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215f9061396a565b60405180910390fd5b5b81158015612175575080155b156121d35760115461218685611111565b8461219191906130c0565b11156121d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c9906139d6565b60405180910390fd5b5b5b60006121df30611111565b90506000600a5482101590508080156122045750601260009054906101000a900460ff165b801561221d5750601260039054906101000a900460ff16155b801561227457507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16145b80156122ca5750600860008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156123205750600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612364576001601260036101000a81548160ff02191690831515021790555061234861293e565b6000601260036101000a81548160ff0219169083151502179055505b6000601260039054906101000a900460ff16159050600860008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061241a5750600860008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561242457600090505b60008082156125df577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff1614801561248a57506000601054115b156124db576124b760646124a96010548b61296790919063ffffffff16565b61297d90919063ffffffff16565b9150601054600f54836124ca91906131e3565b6124d4919061326c565b9050612586565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff1614801561253857506000600d54115b15612585576125656064612557600d548b61296790919063ffffffff16565b61297d90919063ffffffff16565b9150600d54600c548361257891906131e3565b612582919061326c565b90505b5b600082111561259b5761259a8a30846126bd565b5b60008111156125d0576125cf307f0000000000000000000000000000000000000000000000000000000000000000836126bd565b5b81886125dc91906139f6565b97505b6125ea8a8a8a6126bd565b505050505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561272d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272490613800565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561279d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279490613892565b60405180910390fd5b6127a8838383612993565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561282e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161282590613a9c565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128c191906130c0565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516129259190612e23565b60405180910390a3612938848484612998565b50505050565b600061294930611111565b9050600081141561295a5750612965565b6129638161299d565b505b565b6000818361297591906131e3565b905092915050565b6000818361298b919061326c565b905092915050565b505050565b505050565b6000600267ffffffffffffffff8111156129ba576129b9613abc565b5b6040519080825280602002602001820160405280156129e85781602001602082028036833780820191505090505b5090503081600081518110612a00576129ff613aeb565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681600181518110612a7157612a70613aeb565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612ad6307f000000000000000000000000000000000000000000000000000000000000000084611c17565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16635c11d79583600084600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b8152600401612b5a959493929190613c13565b600060405180830381600087803b158015612b7457600080fd5b505af1158015612b88573d6000803e3d6000fd5b505050505050565b600080fd5b6000819050919050565b612ba881612b95565b8114612bb357600080fd5b50565b600081359050612bc581612b9f565b92915050565b60008060408385031215612be257612be1612b90565b5b6000612bf085828601612bb6565b9250506020612c0185828601612bb6565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612c45578082015181840152602081019050612c2a565b83811115612c54576000848401525b50505050565b6000601f19601f8301169050919050565b6000612c7682612c0b565b612c808185612c16565b9350612c90818560208601612c27565b612c9981612c5a565b840191505092915050565b60006020820190508181036000830152612cbe8184612c6b565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612cf182612cc6565b9050919050565b612d0181612ce6565b8114612d0c57600080fd5b50565b600081359050612d1e81612cf8565b92915050565b60008060408385031215612d3b57612d3a612b90565b5b6000612d4985828601612d0f565b9250506020612d5a85828601612bb6565b9150509250929050565b60008115159050919050565b612d7981612d64565b82525050565b6000602082019050612d946000830184612d70565b92915050565b6000819050919050565b6000612dbf612dba612db584612cc6565b612d9a565b612cc6565b9050919050565b6000612dd182612da4565b9050919050565b6000612de382612dc6565b9050919050565b612df381612dd8565b82525050565b6000602082019050612e0e6000830184612dea565b92915050565b612e1d81612b95565b82525050565b6000602082019050612e386000830184612e14565b92915050565b600060208284031215612e5457612e53612b90565b5b6000612e6284828501612d0f565b91505092915050565b600060208284031215612e8157612e80612b90565b5b6000612e8f84828501612bb6565b91505092915050565b600080600060608486031215612eb157612eb0612b90565b5b6000612ebf86828701612d0f565b9350506020612ed086828701612d0f565b9250506040612ee186828701612bb6565b9150509250925092565b600060ff82169050919050565b612f0181612eeb565b82525050565b6000602082019050612f1c6000830184612ef8565b92915050565b612f2b81612ce6565b82525050565b6000602082019050612f466000830184612f22565b92915050565b612f5581612d64565b8114612f6057600080fd5b50565b600081359050612f7281612f4c565b92915050565b600060208284031215612f8e57612f8d612b90565b5b6000612f9c84828501612f63565b91505092915050565b60008060408385031215612fbc57612fbb612b90565b5b6000612fca85828601612d0f565b9250506020612fdb85828601612f63565b9150509250929050565b60008060408385031215612ffc57612ffb612b90565b5b600061300a85828601612d0f565b925050602061301b85828601612d0f565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061305b602083612c16565b915061306682613025565b602082019050919050565b6000602082019050818103600083015261308a8161304e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006130cb82612b95565b91506130d683612b95565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561310b5761310a613091565b5b828201905092915050565b7f4d757374206b656570206665657320617420313525206f72206c657373000000600082015250565b600061314c601d83612c16565b915061315782613116565b602082019050919050565b6000602082019050818103600083015261317b8161313f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806131c957607f821691505b602082108114156131dd576131dc613182565b5b50919050565b60006131ee82612b95565b91506131f983612b95565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561323257613231613091565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061327782612b95565b915061328283612b95565b9250826132925761329161323d565b5b828204905092915050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b60006132f9602483612c16565b91506133048261329d565b604082019050919050565b60006020820190508181036000830152613328816132ec565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b600061338b602883612c16565b91506133968261332f565b604082019050919050565b600060208201905081810360008301526133ba8161337e565b9050919050565b6000815190506133d081612b9f565b92915050565b6000602082840312156133ec576133eb612b90565b5b60006133fa848285016133c1565b91505092915050565b60006040820190506134186000830185612f22565b6134256020830184612e14565b9392505050565b60008151905061343b81612f4c565b92915050565b60006020828403121561345757613456612b90565b5b60006134658482850161342c565b91505092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006134ca602583612c16565b91506134d58261346e565b604082019050919050565b600060208201905081810360008301526134f9816134bd565b9050919050565b7f3c20302e3030312520746f74616c20737570706c792e00000000000000000000600082015250565b6000613536601683612c16565b915061354182613500565b602082019050919050565b6000602082019050818103600083015261356581613529565b9050919050565b7f3e20352520746f74616c20737570706c792e0000000000000000000000000000600082015250565b60006135a2601283612c16565b91506135ad8261356c565b602082019050919050565b600060208201905081810360008301526135d181613595565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613634602683612c16565b915061363f826135d8565b604082019050919050565b6000602082019050818103600083015261366381613627565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006136c6602483612c16565b91506136d18261366a565b604082019050919050565b600060208201905081810360008301526136f5816136b9565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613758602283612c16565b9150613763826136fc565b604082019050919050565b600060208201905081810360008301526137878161374b565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006137ea602583612c16565b91506137f58261378e565b604082019050919050565b60006020820190508181036000830152613819816137dd565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061387c602383612c16565b915061388782613820565b604082019050919050565b600060208201905081810360008301526138ab8161386f565b9050919050565b7f54726164696e6720686173206e6f742073746172746564207965740000000000600082015250565b60006138e8601b83612c16565b91506138f3826138b2565b602082019050919050565b60006020820190508181036000830152613917816138db565b9050919050565b7f4d61782077616c6c657420657863656564656420286275792900000000000000600082015250565b6000613954601983612c16565b915061395f8261391e565b602082019050919050565b6000602082019050818103600083015261398381613947565b9050919050565b7f4d61782077616c6c657420657863656564656420287472616e73666572290000600082015250565b60006139c0601e83612c16565b91506139cb8261398a565b602082019050919050565b600060208201905081810360008301526139ef816139b3565b9050919050565b6000613a0182612b95565b9150613a0c83612b95565b925082821015613a1f57613a1e613091565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613a86602683612c16565b9150613a9182613a2a565b604082019050919050565b60006020820190508181036000830152613ab581613a79565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b6000613b3f613b3a613b3584613b1a565b612d9a565b612b95565b9050919050565b613b4f81613b24565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613b8a81612ce6565b82525050565b6000613b9c8383613b81565b60208301905092915050565b6000602082019050919050565b6000613bc082613b55565b613bca8185613b60565b9350613bd583613b71565b8060005b83811015613c06578151613bed8882613b90565b9750613bf883613ba8565b925050600181019050613bd9565b5085935050505092915050565b600060a082019050613c286000830188612e14565b613c356020830187613b46565b8181036040830152613c478186613bb5565b9050613c566060830185612f22565b613c636080830184612e14565b969550505050505056fea26469706673582212207d01dded4c0b410139637190174a686ceeebf579f19a3e9113f7c64f70141f8b64736f6c634300080a0033

Deployed Bytecode

0x6080604052600436106102555760003560e01c80638da5cb5b11610139578063c0246668116100b6578063e2f456051161007a578063e2f45605146108e9578063f11a24d314610914578063f2fde38b1461093f578063f637434214610968578063f8b45b0514610993578063f931d9d2146109be5761025c565b8063c0246668146107f2578063d257b34f1461081b578063d2fcc00114610858578063d85ba06314610881578063dd62ed3e146108ac5761025c565b8063a457c2d7116100fd578063a457c2d7146106f9578063a5cdee0514610736578063a9059cbb1461075f578063ad5c46481461079c578063bbc0c742146107c75761025c565b80638da5cb5b146106225780638ea5220f1461064d57806395d89b41146106785780639c3b4fdc146106a3578063a0d82dc5146106ce5761025c565b806349bd5a5e116101d25780636a486a8e116101965780636a486a8e146105265780636dd3d39f1461055157806370a082311461058e578063715018a6146105cb578063839006f2146105e25780638a8c523c1461060b5761025c565b806349bd5a5e1461043f5780634a62bb651461046a5780634fbee19314610495578063610e34b9146104d257806364c0a2f8146104fb5761025c565b80631816467f116102195780631816467f146103485780631c499ab01461037157806323b872dd1461039a578063313ce567146103d757806339509351146104025761025c565b806302dbd8f81461026157806306fdde031461028a578063095ea7b3146102b55780631694505e146102f257806318160ddd1461031d5761025c565b3661025c57005b600080fd5b34801561026d57600080fd5b5061028860048036038101906102839190612bcb565b6109e7565b005b34801561029657600080fd5b5061029f610ad1565b6040516102ac9190612ca4565b60405180910390f35b3480156102c157600080fd5b506102dc60048036038101906102d79190612d24565b610b63565b6040516102e99190612d7f565b60405180910390f35b3480156102fe57600080fd5b50610307610b81565b6040516103149190612df9565b60405180910390f35b34801561032957600080fd5b50610332610ba5565b60405161033f9190612e23565b60405180910390f35b34801561035457600080fd5b5061036f600480360381019061036a9190612e3e565b610baf565b005b34801561037d57600080fd5b5061039860048036038101906103939190612e6b565b610c6f565b005b3480156103a657600080fd5b506103c160048036038101906103bc9190612e98565b610d7e565b6040516103ce9190612d7f565b60405180910390f35b3480156103e357600080fd5b506103ec610e76565b6040516103f99190612f07565b60405180910390f35b34801561040e57600080fd5b5061042960048036038101906104249190612d24565b610e7f565b6040516104369190612d7f565b60405180910390f35b34801561044b57600080fd5b50610454610f2b565b6040516104619190612f31565b60405180910390f35b34801561047657600080fd5b5061047f610f4f565b60405161048c9190612d7f565b60405180910390f35b3480156104a157600080fd5b506104bc60048036038101906104b79190612e3e565b610f62565b6040516104c99190612d7f565b60405180910390f35b3480156104de57600080fd5b506104f960048036038101906104f49190612bcb565b610fb8565b005b34801561050757600080fd5b506105106110a2565b60405161051d9190612d7f565b60405180910390f35b34801561053257600080fd5b5061053b6110b5565b6040516105489190612e23565b60405180910390f35b34801561055d57600080fd5b5061057860048036038101906105739190612e3e565b6110bb565b6040516105859190612d7f565b60405180910390f35b34801561059a57600080fd5b506105b560048036038101906105b09190612e3e565b611111565b6040516105c29190612e23565b60405180910390f35b3480156105d757600080fd5b506105e0611159565b005b3480156105ee57600080fd5b5061060960048036038101906106049190612e3e565b6111e1565b005b34801561061757600080fd5b50610620611375565b005b34801561062e57600080fd5b5061063761140e565b6040516106449190612f31565b60405180910390f35b34801561065957600080fd5b50610662611438565b60405161066f9190612f31565b60405180910390f35b34801561068457600080fd5b5061068d61145e565b60405161069a9190612ca4565b60405180910390f35b3480156106af57600080fd5b506106b86114f0565b6040516106c59190612e23565b60405180910390f35b3480156106da57600080fd5b506106e36114f6565b6040516106f09190612e23565b60405180910390f35b34801561070557600080fd5b50610720600480360381019061071b9190612d24565b6114fc565b60405161072d9190612d7f565b60405180910390f35b34801561074257600080fd5b5061075d60048036038101906107589190612f78565b6115e7565b005b34801561076b57600080fd5b5061078660048036038101906107819190612d24565b611680565b6040516107939190612d7f565b60405180910390f35b3480156107a857600080fd5b506107b161169e565b6040516107be9190612f31565b60405180910390f35b3480156107d357600080fd5b506107dc6116c4565b6040516107e99190612d7f565b60405180910390f35b3480156107fe57600080fd5b5061081960048036038101906108149190612fa5565b6116d7565b005b34801561082757600080fd5b50610842600480360381019061083d9190612e6b565b6117ae565b60405161084f9190612d7f565b60405180910390f35b34801561086457600080fd5b5061087f600480360381019061087a9190612fa5565b611902565b005b34801561088d57600080fd5b506108966119d9565b6040516108a39190612e23565b60405180910390f35b3480156108b857600080fd5b506108d360048036038101906108ce9190612fe5565b6119df565b6040516108e09190612e23565b60405180910390f35b3480156108f557600080fd5b506108fe611a66565b60405161090b9190612e23565b60405180910390f35b34801561092057600080fd5b50610929611a6c565b6040516109369190612e23565b60405180910390f35b34801561094b57600080fd5b5061096660048036038101906109619190612e3e565b611a72565b005b34801561097457600080fd5b5061097d611b6a565b60405161098a9190612e23565b60405180910390f35b34801561099f57600080fd5b506109a8611b70565b6040516109b59190612e23565b60405180910390f35b3480156109ca57600080fd5b506109e560048036038101906109e09190612f78565b611b76565b005b6109ef611c0f565b73ffffffffffffffffffffffffffffffffffffffff16610a0d61140e565b73ffffffffffffffffffffffffffffffffffffffff1614610a63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5a90613071565b60405180910390fd5b81600e8190555080600f81905550600f54600e54610a8191906130c0565b60108190555060636010541115610acd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac490613162565b60405180910390fd5b5050565b606060038054610ae0906131b1565b80601f0160208091040260200160405190810160405280929190818152602001828054610b0c906131b1565b8015610b595780601f10610b2e57610100808354040283529160200191610b59565b820191906000526020600020905b815481529060010190602001808311610b3c57829003601f168201915b5050505050905090565b6000610b77610b70611c0f565b8484611c17565b6001905092915050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610bb7611c0f565b73ffffffffffffffffffffffffffffffffffffffff16610bd561140e565b73ffffffffffffffffffffffffffffffffffffffff1614610c2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2290613071565b60405180910390fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610c77611c0f565b73ffffffffffffffffffffffffffffffffffffffff16610c9561140e565b73ffffffffffffffffffffffffffffffffffffffff1614610ceb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce290613071565b60405180910390fd5b670de0b6b3a76400006103e86005610d01610ba5565b610d0b91906131e3565b610d15919061326c565b610d1f919061326c565b811015610d61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d589061330f565b60405180910390fd5b670de0b6b3a764000081610d7591906131e3565b60118190555050565b6000610d8b848484611de2565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610dd6611c0f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610e56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4d906133a1565b60405180910390fd5b610e6a85610e62611c0f565b858403611c17565b60019150509392505050565b60006012905090565b6000610f21610e8c611c0f565b848460016000610e9a611c0f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f1c91906130c0565b611c17565b6001905092915050565b7f0000000000000000000000006d5d2abb3bacb3702f6d6dd8f7d414d9c5d4806981565b601260019054906101000a900460ff1681565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610fc0611c0f565b73ffffffffffffffffffffffffffffffffffffffff16610fde61140e565b73ffffffffffffffffffffffffffffffffffffffff1614611034576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102b90613071565b60405180910390fd5b81600b8190555080600c81905550600c54600b5461105291906130c0565b600d81905550600f600d54111561109e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109590613162565b60405180910390fd5b5050565b601260009054906101000a900460ff1681565b60105481565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611161611c0f565b73ffffffffffffffffffffffffffffffffffffffff1661117f61140e565b73ffffffffffffffffffffffffffffffffffffffff16146111d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cc90613071565b60405180910390fd5b6111df60006125f7565b565b6111e9611c0f565b73ffffffffffffffffffffffffffffffffffffffff1661120761140e565b73ffffffffffffffffffffffffffffffffffffffff161461125d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125490613071565b60405180910390fd5b600081905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161129d9190612f31565b602060405180830381865afa1580156112ba573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112de91906133d6565b90506000811115611370578173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb61130d611c0f565b836040518363ffffffff1660e01b815260040161132b929190613403565b6020604051808303816000875af115801561134a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061136e9190613441565b505b505050565b61137d611c0f565b73ffffffffffffffffffffffffffffffffffffffff1661139b61140e565b73ffffffffffffffffffffffffffffffffffffffff16146113f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e890613071565b60405180910390fd5b6001601260026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606004805461146d906131b1565b80601f0160208091040260200160405190810160405280929190818152602001828054611499906131b1565b80156114e65780601f106114bb576101008083540402835291602001916114e6565b820191906000526020600020905b8154815290600101906020018083116114c957829003601f168201915b5050505050905090565b600b5481565b600e5481565b6000806001600061150b611c0f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156115c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bf906134e0565b60405180910390fd5b6115dc6115d3611c0f565b85858403611c17565b600191505092915050565b6115ef611c0f565b73ffffffffffffffffffffffffffffffffffffffff1661160d61140e565b73ffffffffffffffffffffffffffffffffffffffff1614611663576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165a90613071565b60405180910390fd5b80601260016101000a81548160ff02191690831515021790555050565b600061169461168d611c0f565b8484611de2565b6001905092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601260029054906101000a900460ff1681565b6116df611c0f565b73ffffffffffffffffffffffffffffffffffffffff166116fd61140e565b73ffffffffffffffffffffffffffffffffffffffff1614611753576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174a90613071565b60405180910390fd5b80600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60006117b8611c0f565b73ffffffffffffffffffffffffffffffffffffffff166117d661140e565b73ffffffffffffffffffffffffffffffffffffffff161461182c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182390613071565b60405180910390fd5b620186a0600161183a610ba5565b61184491906131e3565b61184e919061326c565b821015611890576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118879061354c565b60405180910390fd5b6064600561189c610ba5565b6118a691906131e3565b6118b0919061326c565b8211156118f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e9906135b8565b60405180910390fd5b81600a8190555060019050919050565b61190a611c0f565b73ffffffffffffffffffffffffffffffffffffffff1661192861140e565b73ffffffffffffffffffffffffffffffffffffffff161461197e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197590613071565b60405180910390fd5b80600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600d5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600a5481565b600c5481565b611a7a611c0f565b73ffffffffffffffffffffffffffffffffffffffff16611a9861140e565b73ffffffffffffffffffffffffffffffffffffffff1614611aee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae590613071565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b559061364a565b60405180910390fd5b611b67816125f7565b50565b600f5481565b60115481565b611b7e611c0f565b73ffffffffffffffffffffffffffffffffffffffff16611b9c61140e565b73ffffffffffffffffffffffffffffffffffffffff1614611bf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be990613071565b60405180910390fd5b80601260006101000a81548160ff02191690831515021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611c87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7e906136dc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611cf7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cee9061376e565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611dd59190612e23565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611e52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4990613800565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ec2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb990613892565b60405180910390fd5b6000811415611edc57611ed7838360006126bd565b6125f2565b60007f0000000000000000000000006d5d2abb3bacb3702f6d6dd8f7d414d9c5d4806973ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614905060007f0000000000000000000000006d5d2abb3bacb3702f6d6dd8f7d414d9c5d4806973ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16149050601260029054906101000a900460ff16158015611fe95750600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561203f5750600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612086576000612085576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207c906138fe565b60405180910390fd5b5b601260019054906101000a900460ff1680156120ec5750600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156121055750601260039054906101000a900460ff16155b156121d45781156121695760115461211c85611111565b8461212791906130c0565b1115612168576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215f9061396a565b60405180910390fd5b5b81158015612175575080155b156121d35760115461218685611111565b8461219191906130c0565b11156121d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c9906139d6565b60405180910390fd5b5b5b60006121df30611111565b90506000600a5482101590508080156122045750601260009054906101000a900460ff165b801561221d5750601260039054906101000a900460ff16155b801561227457507f0000000000000000000000006d5d2abb3bacb3702f6d6dd8f7d414d9c5d4806973ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16145b80156122ca5750600860008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156123205750600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612364576001601260036101000a81548160ff02191690831515021790555061234861293e565b6000601260036101000a81548160ff0219169083151502179055505b6000601260039054906101000a900460ff16159050600860008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061241a5750600860008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561242457600090505b60008082156125df577f0000000000000000000000006d5d2abb3bacb3702f6d6dd8f7d414d9c5d4806973ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff1614801561248a57506000601054115b156124db576124b760646124a96010548b61296790919063ffffffff16565b61297d90919063ffffffff16565b9150601054600f54836124ca91906131e3565b6124d4919061326c565b9050612586565b7f0000000000000000000000006d5d2abb3bacb3702f6d6dd8f7d414d9c5d4806973ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff1614801561253857506000600d54115b15612585576125656064612557600d548b61296790919063ffffffff16565b61297d90919063ffffffff16565b9150600d54600c548361257891906131e3565b612582919061326c565b90505b5b600082111561259b5761259a8a30846126bd565b5b60008111156125d0576125cf307f0000000000000000000000006d5d2abb3bacb3702f6d6dd8f7d414d9c5d48069836126bd565b5b81886125dc91906139f6565b97505b6125ea8a8a8a6126bd565b505050505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561272d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272490613800565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561279d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279490613892565b60405180910390fd5b6127a8838383612993565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561282e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161282590613a9c565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128c191906130c0565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516129259190612e23565b60405180910390a3612938848484612998565b50505050565b600061294930611111565b9050600081141561295a5750612965565b6129638161299d565b505b565b6000818361297591906131e3565b905092915050565b6000818361298b919061326c565b905092915050565b505050565b505050565b6000600267ffffffffffffffff8111156129ba576129b9613abc565b5b6040519080825280602002602001820160405280156129e85781602001602082028036833780820191505090505b5090503081600081518110612a00576129ff613aeb565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681600181518110612a7157612a70613aeb565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612ad6307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611c17565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff16635c11d79583600084600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b8152600401612b5a959493929190613c13565b600060405180830381600087803b158015612b7457600080fd5b505af1158015612b88573d6000803e3d6000fd5b505050505050565b600080fd5b6000819050919050565b612ba881612b95565b8114612bb357600080fd5b50565b600081359050612bc581612b9f565b92915050565b60008060408385031215612be257612be1612b90565b5b6000612bf085828601612bb6565b9250506020612c0185828601612bb6565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612c45578082015181840152602081019050612c2a565b83811115612c54576000848401525b50505050565b6000601f19601f8301169050919050565b6000612c7682612c0b565b612c808185612c16565b9350612c90818560208601612c27565b612c9981612c5a565b840191505092915050565b60006020820190508181036000830152612cbe8184612c6b565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612cf182612cc6565b9050919050565b612d0181612ce6565b8114612d0c57600080fd5b50565b600081359050612d1e81612cf8565b92915050565b60008060408385031215612d3b57612d3a612b90565b5b6000612d4985828601612d0f565b9250506020612d5a85828601612bb6565b9150509250929050565b60008115159050919050565b612d7981612d64565b82525050565b6000602082019050612d946000830184612d70565b92915050565b6000819050919050565b6000612dbf612dba612db584612cc6565b612d9a565b612cc6565b9050919050565b6000612dd182612da4565b9050919050565b6000612de382612dc6565b9050919050565b612df381612dd8565b82525050565b6000602082019050612e0e6000830184612dea565b92915050565b612e1d81612b95565b82525050565b6000602082019050612e386000830184612e14565b92915050565b600060208284031215612e5457612e53612b90565b5b6000612e6284828501612d0f565b91505092915050565b600060208284031215612e8157612e80612b90565b5b6000612e8f84828501612bb6565b91505092915050565b600080600060608486031215612eb157612eb0612b90565b5b6000612ebf86828701612d0f565b9350506020612ed086828701612d0f565b9250506040612ee186828701612bb6565b9150509250925092565b600060ff82169050919050565b612f0181612eeb565b82525050565b6000602082019050612f1c6000830184612ef8565b92915050565b612f2b81612ce6565b82525050565b6000602082019050612f466000830184612f22565b92915050565b612f5581612d64565b8114612f6057600080fd5b50565b600081359050612f7281612f4c565b92915050565b600060208284031215612f8e57612f8d612b90565b5b6000612f9c84828501612f63565b91505092915050565b60008060408385031215612fbc57612fbb612b90565b5b6000612fca85828601612d0f565b9250506020612fdb85828601612f63565b9150509250929050565b60008060408385031215612ffc57612ffb612b90565b5b600061300a85828601612d0f565b925050602061301b85828601612d0f565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061305b602083612c16565b915061306682613025565b602082019050919050565b6000602082019050818103600083015261308a8161304e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006130cb82612b95565b91506130d683612b95565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561310b5761310a613091565b5b828201905092915050565b7f4d757374206b656570206665657320617420313525206f72206c657373000000600082015250565b600061314c601d83612c16565b915061315782613116565b602082019050919050565b6000602082019050818103600083015261317b8161313f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806131c957607f821691505b602082108114156131dd576131dc613182565b5b50919050565b60006131ee82612b95565b91506131f983612b95565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561323257613231613091565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061327782612b95565b915061328283612b95565b9250826132925761329161323d565b5b828204905092915050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b60006132f9602483612c16565b91506133048261329d565b604082019050919050565b60006020820190508181036000830152613328816132ec565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b600061338b602883612c16565b91506133968261332f565b604082019050919050565b600060208201905081810360008301526133ba8161337e565b9050919050565b6000815190506133d081612b9f565b92915050565b6000602082840312156133ec576133eb612b90565b5b60006133fa848285016133c1565b91505092915050565b60006040820190506134186000830185612f22565b6134256020830184612e14565b9392505050565b60008151905061343b81612f4c565b92915050565b60006020828403121561345757613456612b90565b5b60006134658482850161342c565b91505092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006134ca602583612c16565b91506134d58261346e565b604082019050919050565b600060208201905081810360008301526134f9816134bd565b9050919050565b7f3c20302e3030312520746f74616c20737570706c792e00000000000000000000600082015250565b6000613536601683612c16565b915061354182613500565b602082019050919050565b6000602082019050818103600083015261356581613529565b9050919050565b7f3e20352520746f74616c20737570706c792e0000000000000000000000000000600082015250565b60006135a2601283612c16565b91506135ad8261356c565b602082019050919050565b600060208201905081810360008301526135d181613595565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613634602683612c16565b915061363f826135d8565b604082019050919050565b6000602082019050818103600083015261366381613627565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006136c6602483612c16565b91506136d18261366a565b604082019050919050565b600060208201905081810360008301526136f5816136b9565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613758602283612c16565b9150613763826136fc565b604082019050919050565b600060208201905081810360008301526137878161374b565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006137ea602583612c16565b91506137f58261378e565b604082019050919050565b60006020820190508181036000830152613819816137dd565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061387c602383612c16565b915061388782613820565b604082019050919050565b600060208201905081810360008301526138ab8161386f565b9050919050565b7f54726164696e6720686173206e6f742073746172746564207965740000000000600082015250565b60006138e8601b83612c16565b91506138f3826138b2565b602082019050919050565b60006020820190508181036000830152613917816138db565b9050919050565b7f4d61782077616c6c657420657863656564656420286275792900000000000000600082015250565b6000613954601983612c16565b915061395f8261391e565b602082019050919050565b6000602082019050818103600083015261398381613947565b9050919050565b7f4d61782077616c6c657420657863656564656420287472616e73666572290000600082015250565b60006139c0601e83612c16565b91506139cb8261398a565b602082019050919050565b600060208201905081810360008301526139ef816139b3565b9050919050565b6000613a0182612b95565b9150613a0c83612b95565b925082821015613a1f57613a1e613091565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613a86602683612c16565b9150613a9182613a2a565b604082019050919050565b60006020820190508181036000830152613ab581613a79565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b6000613b3f613b3a613b3584613b1a565b612d9a565b612b95565b9050919050565b613b4f81613b24565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613b8a81612ce6565b82525050565b6000613b9c8383613b81565b60208301905092915050565b6000602082019050919050565b6000613bc082613b55565b613bca8185613b60565b9350613bd583613b71565b8060005b83811015613c06578151613bed8882613b90565b9750613bf883613ba8565b925050600181019050613bd9565b5085935050505092915050565b600060a082019050613c286000830188612e14565b613c356020830187613b46565b8181036040830152613c478186613bb5565b9050613c566060830185612f22565b613c636080830184612e14565b969550505050505056fea26469706673582212207d01dded4c0b410139637190174a686ceeebf579f19a3e9113f7c64f70141f8b64736f6c634300080a0033

Deployed Bytecode Sourcemap

27269:7482:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33121:293;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9739:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11908:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27347:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10861:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32601:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33755:216;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12559:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10703:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13460:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27407:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28002:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34622:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32828:285;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27961:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27893:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34478:136;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11032:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3570:103;;;;;;;;;;;;;:::i;:::-;;32376:217;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33979:81;;;;;;;;;;;;;:::i;:::-;;2919:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27452:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9958:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27721:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27823:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14178:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34068:112;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11372:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27483:64;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28042:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34188:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33422:325;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34328:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27789:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11610:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27681:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27752:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3828:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27855:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27928:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32712:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33121:293;3150:12;:10;:12::i;:::-;3139:23;;:7;:5;:7::i;:::-;:23;;;3131:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33228:7:::1;33215:10;:20;;;;33265:13;33246:16;:32;;;;33318:16;;33305:10;;:29;;;;:::i;:::-;33289:13;:45;;;;33370:2;33353:13;;:19;;33345:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;33121:293:::0;;:::o;9739:100::-;9793:13;9826:5;9819:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9739:100;:::o;11908:169::-;11991:4;12008:39;12017:12;:10;:12::i;:::-;12031:7;12040:6;12008:8;:39::i;:::-;12065:4;12058:11;;11908:169;;;;:::o;27347:51::-;;;:::o;10861:108::-;10922:7;10949:12;;10942:19;;10861:108;:::o;32601:103::-;3150:12;:10;:12::i;:::-;3139:23;;:7;:5;:7::i;:::-;:23;;;3131:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;32687:9:::1;32675;;:21;;;;;;;;;;;;;;;;;;32601:103:::0;:::o;33755:216::-;3150:12;:10;:12::i;:::-;3139:23;;:7;:5;:7::i;:::-;:23;;;3131:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33879:4:::1;33871;33867:1;33851:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:24;;;;:::i;:::-;33850:33;;;;:::i;:::-;33837:9;:46;;33829:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;33959:4;33947:9;:16;;;;:::i;:::-;33935:9;:28;;;;33755:216:::0;:::o;12559:492::-;12699:4;12716:36;12726:6;12734:9;12745:6;12716:9;:36::i;:::-;12765:24;12792:11;:19;12804:6;12792:19;;;;;;;;;;;;;;;:33;12812:12;:10;:12::i;:::-;12792:33;;;;;;;;;;;;;;;;12765:60;;12864:6;12844:16;:26;;12836:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;12951:57;12960:6;12968:12;:10;:12::i;:::-;13001:6;12982:16;:25;12951:8;:57::i;:::-;13039:4;13032:11;;;12559:492;;;;;:::o;10703:93::-;10761:5;10786:2;10779:9;;10703:93;:::o;13460:215::-;13548:4;13565:80;13574:12;:10;:12::i;:::-;13588:7;13634:10;13597:11;:25;13609:12;:10;:12::i;:::-;13597:25;;;;;;;;;;;;;;;:34;13623:7;13597:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;13565:8;:80::i;:::-;13663:4;13656:11;;13460:215;;;;:::o;27407:38::-;;;:::o;28002:33::-;;;;;;;;;;;;;:::o;34622:126::-;34688:4;34712:19;:28;34732:7;34712:28;;;;;;;;;;;;;;;;;;;;;;;;;34705:35;;34622:126;;;:::o;32828:285::-;3150:12;:10;:12::i;:::-;3139:23;;:7;:5;:7::i;:::-;:23;;;3131:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;32932:7:::1;32920:9;:19;;;;32968:13;32950:15;:31;;;;33019:15;;33007:9;;:27;;;;:::i;:::-;32992:12;:42;;;;33069:2;33053:12;;:18;;33045:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;32828:285:::0;;:::o;27961:34::-;;;;;;;;;;;;;:::o;27893:28::-;;;;:::o;34478:136::-;34549:4;34573:24;:33;34598:7;34573:33;;;;;;;;;;;;;;;;;;;;;;;;;34566:40;;34478:136;;;:::o;11032:127::-;11106:7;11133:9;:18;11143:7;11133:18;;;;;;;;;;;;;;;;11126:25;;11032:127;;;:::o;3570:103::-;3150:12;:10;:12::i;:::-;3139:23;;:7;:5;:7::i;:::-;:23;;;3131:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3635:30:::1;3662:1;3635:18;:30::i;:::-;3570:103::o:0;32376:217::-;3150:12;:10;:12::i;:::-;3139:23;;:7;:5;:7::i;:::-;:23;;;3131:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;32435:11:::1;32455:5;32435:26;;32472:15;32490:5;:15;;;32514:4;32490:30;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;32472:48;;32545:1;32535:7;:11;32531:54;;;32548:5;:14;;;32563:12;:10;:12::i;:::-;32577:7;32548:37;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;32531:54;32424:169;;32376:217:::0;:::o;33979:81::-;3150:12;:10;:12::i;:::-;3139:23;;:7;:5;:7::i;:::-;:23;;;3131:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34048:4:::1;34032:13;;:20;;;;;;;;;;;;;;;;;;33979:81::o:0;2919:87::-;2965:7;2992:6;;;;;;;;;;;2985:13;;2919:87;:::o;27452:24::-;;;;;;;;;;;;;:::o;9958:104::-;10014:13;10047:7;10040:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9958:104;:::o;27721:24::-;;;;:::o;27823:25::-;;;;:::o;14178:413::-;14271:4;14288:24;14315:11;:25;14327:12;:10;:12::i;:::-;14315:25;;;;;;;;;;;;;;;:34;14341:7;14315:34;;;;;;;;;;;;;;;;14288:61;;14388:15;14368:16;:35;;14360:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14481:67;14490:12;:10;:12::i;:::-;14504:7;14532:15;14513:16;:34;14481:8;:67::i;:::-;14579:4;14572:11;;;14178:413;;;;:::o;34068:112::-;3150:12;:10;:12::i;:::-;3139:23;;:7;:5;:7::i;:::-;:23;;;3131:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34157:15:::1;34140:14;;:32;;;;;;;;;;;;;;;;;;34068:112:::0;:::o;11372:175::-;11458:4;11475:42;11485:12;:10;:12::i;:::-;11499:9;11510:6;11475:9;:42::i;:::-;11535:4;11528:11;;11372:175;;;;:::o;27483:64::-;;;;;;;;;;;;;:::o;28042:25::-;;;;;;;;;;;;;:::o;34188:132::-;3150:12;:10;:12::i;:::-;3139:23;;:7;:5;:7::i;:::-;:23;;;3131:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34304:8:::1;34273:19;:28;34293:7;34273:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;34188:132:::0;;:::o;33422:325::-;33503:4;3150:12;:10;:12::i;:::-;3139:23;;:7;:5;:7::i;:::-;:23;;;3131:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33563:6:::1;33558:1;33542:13;:11;:13::i;:::-;:17;;;;:::i;:::-;33541:28;;;;:::i;:::-;33528:9;:41;;33520:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;33650:3;33645:1;33629:13;:11;:13::i;:::-;:17;;;;:::i;:::-;33628:25;;;;:::i;:::-;33615:9;:38;;33607:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;33708:9;33687:18;:30;;;;33735:4;33728:11;;33422:325:::0;;;:::o;34328:142::-;3150:12;:10;:12::i;:::-;3139:23;;:7;:5;:7::i;:::-;:23;;;3131:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34454:8:::1;34418:24;:33;34443:7;34418:33;;;;;;;;;;;;;;;;:44;;;;;;;;;;;;;;;;;;34328:142:::0;;:::o;27789:27::-;;;;:::o;11610:151::-;11699:7;11726:11;:18;11738:5;11726:18;;;;;;;;;;;;;;;:27;11745:7;11726:27;;;;;;;;;;;;;;;;11719:34;;11610:151;;;;:::o;27681:33::-;;;;:::o;27752:30::-;;;;:::o;3828:201::-;3150:12;:10;:12::i;:::-;3139:23;;:7;:5;:7::i;:::-;:23;;;3131:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3937:1:::1;3917:22;;:8;:22;;;;3909:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3993:28;4012:8;3993:18;:28::i;:::-;3828:201:::0;:::o;27855:31::-;;;;:::o;27928:24::-;;;;:::o;32712:108::-;3150:12;:10;:12::i;:::-;3139:23;;:7;:5;:7::i;:::-;:23;;;3131:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;32805:7:::1;32787:15;;:25;;;;;;;;;;;;;;;;;;32712:108:::0;:::o;1759:98::-;1812:7;1839:10;1832:17;;1759:98;:::o;17862:380::-;18015:1;17998:19;;:5;:19;;;;17990:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18096:1;18077:21;;:7;:21;;;;18069:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18180:6;18150:11;:18;18162:5;18150:18;;;;;;;;;;;;;;;:27;18169:7;18150:27;;;;;;;;;;;;;;;:36;;;;18218:7;18202:32;;18211:5;18202:32;;;18227:6;18202:32;;;;;;:::i;:::-;;;;;;;;17862:380;;;:::o;29276:2369::-;29424:1;29408:18;;:4;:18;;;;29400:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29501:1;29487:16;;:2;:16;;;;29479:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;29570:1;29560:6;:11;29556:93;;;29588:28;29604:4;29610:2;29614:1;29588:15;:28::i;:::-;29631:7;;29556:93;29661:10;29682:13;29674:21;;:4;:21;;;29661:34;;29706:11;29726:13;29720:19;;:2;:19;;;29706:33;;29757:13;;;;;;;;;;;29756:14;:44;;;;;29775:19;:25;29795:4;29775:25;;;;;;;;;;;;;;;;;;;;;;;;;29774:26;29756:44;:72;;;;;29805:19;:23;29825:2;29805:23;;;;;;;;;;;;;;;;;;;;;;;;;29804:24;29756:72;29752:123;;;29838:5;29830:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;29752:123;29892:14;;;;;;;;;;;:47;;;;;29911:24;:28;29936:2;29911:28;;;;;;;;;;;;;;;;;;;;;;;;;29910:29;29892:47;:60;;;;;29944:8;;;;;;;;;;;29943:9;29892:60;29888:361;;;29973:5;29969:119;;;30033:9;;30016:13;30026:2;30016:9;:13::i;:::-;30007:6;:22;;;;:::i;:::-;:35;;29999:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;29969:119;30107:5;30106:6;:17;;;;;30117:6;30116:7;30106:17;30102:136;;;30178:9;;30161:13;30171:2;30161:9;:13::i;:::-;30152:6;:22;;;;:::i;:::-;:35;;30144:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;30102:136;29888:361;30261:28;30292:24;30310:4;30292:9;:24::i;:::-;30261:55;;30327:12;30366:18;;30342:20;:42;;30327:57;;30399:7;:26;;;;;30410:15;;;;;;;;;;;30399:26;:39;;;;;30430:8;;;;;;;;;;;30429:9;30399:39;:62;;;;;30448:13;30442:19;;:2;:19;;;30399:62;:92;;;;;30466:19;:25;30486:4;30466:25;;;;;;;;;;;;;;;;;;;;;;;;;30465:26;30399:92;:120;;;;;30496:19;:23;30516:2;30496:23;;;;;;;;;;;;;;;;;;;;;;;;;30495:24;30399:120;30395:224;;;30547:4;30536:8;;:15;;;;;;;;;;;;;;;;;;30566:10;:8;:10::i;:::-;30602:5;30591:8;;:16;;;;;;;;;;;;;;;;;;30395:224;30631:12;30647:8;;;;;;;;;;;30646:9;30631:24;;30670:19;:25;30690:4;30670:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;30699:19;:23;30719:2;30699:23;;;;;;;;;;;;;;;;;;;;;;;;;30670:52;30666:100;;;30749:5;30739:15;;30666:100;30778:12;30807:26;30854:7;30850:742;;;30888:13;30882:19;;:2;:19;;;:40;;;;;30921:1;30905:13;;:17;30882:40;30878:423;;;30950:34;30980:3;30950:25;30961:13;;30950:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;30943:41;;31052:13;;31032:16;;31025:4;:23;;;;:::i;:::-;31024:41;;;;:::i;:::-;31003:62;;30878:423;;;31112:13;31104:21;;:4;:21;;;:41;;;;;31144:1;31129:12;;:16;31104:41;31100:201;;;31173:33;31202:3;31173:24;31184:12;;31173:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;31166:40;;31273:12;;31254:15;;31247:4;:22;;;;:::i;:::-;31246:39;;;;:::i;:::-;31225:60;;31100:201;30878:423;31328:1;31321:4;:8;31317:91;;;31350:42;31366:4;31380;31387;31350:15;:42::i;:::-;31317:91;31447:1;31426:18;:22;31422:128;;;31469:65;31493:4;31500:13;31515:18;31469:15;:65::i;:::-;31422:128;31576:4;31566:14;;;;;:::i;:::-;;;30850:742;31604:33;31620:4;31626:2;31630:6;31604:15;:33::i;:::-;29389:2256;;;;;;;29276:2369;;;;:::o;4189:191::-;4263:16;4282:6;;;;;;;;;;;4263:25;;4308:8;4299:6;;:17;;;;;;;;;;;;;;;;;;4363:8;4332:40;;4353:8;4332:40;;;;;;;;;;;;4252:128;4189:191;:::o;15081:733::-;15239:1;15221:20;;:6;:20;;;;15213:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;15323:1;15302:23;;:9;:23;;;;15294:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;15378:47;15399:6;15407:9;15418:6;15378:20;:47::i;:::-;15438:21;15462:9;:17;15472:6;15462:17;;;;;;;;;;;;;;;;15438:41;;15515:6;15498:13;:23;;15490:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;15636:6;15620:13;:22;15600:9;:17;15610:6;15600:17;;;;;;;;;;;;;;;:42;;;;15688:6;15664:9;:20;15674:9;15664:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;15729:9;15712:35;;15721:6;15712:35;;;15740:6;15712:35;;;;;;:::i;:::-;;;;;;;;15760:46;15780:6;15788:9;15799:6;15760:19;:46::i;:::-;15202:612;15081:733;;;:::o;32118:213::-;32157:23;32183:24;32201:4;32183:9;:24::i;:::-;32157:50;;32241:1;32222:15;:20;32218:59;;;32259:7;;;32218:59;32289:34;32307:15;32289:17;:34::i;:::-;32146:185;32118:213;:::o;23180:98::-;23238:7;23269:1;23265;:5;;;;:::i;:::-;23258:12;;23180:98;;;;:::o;23579:::-;23637:7;23668:1;23664;:5;;;;:::i;:::-;23657:12;;23579:98;;;;:::o;18842:125::-;;;;:::o;19571:124::-;;;;:::o;31653:457::-;31720:21;31758:1;31744:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31720:40;;31789:4;31771;31776:1;31771:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;31815:4;;;;;;;;;;;31805;31810:1;31805:7;;;;;;;;:::i;:::-;;;;;;;:14;;;;;;;;;;;31832:62;31849:4;31864:15;31882:11;31832:8;:62::i;:::-;31907:15;:69;;;31991:11;32017:1;32033:4;32052:9;;;;;;;;;;;32076:15;31907:195;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31709:401;31653:457;:::o;88:117:1:-;197:1;194;187:12;334:77;371:7;400:5;389:16;;334:77;;;:::o;417:122::-;490:24;508:5;490:24;:::i;:::-;483:5;480:35;470:63;;529:1;526;519:12;470:63;417:122;:::o;545:139::-;591:5;629:6;616:20;607:29;;645:33;672:5;645:33;:::i;:::-;545:139;;;;:::o;690: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:307::-;1518:1;1528:113;1542:6;1539:1;1536:13;1528:113;;;1627:1;1622:3;1618:11;1612:18;1608:1;1603:3;1599:11;1592:39;1564:2;1561:1;1557:10;1552:15;;1528:113;;;1659:6;1656:1;1653:13;1650:101;;;1739:1;1730:6;1725:3;1721:16;1714:27;1650:101;1499:258;1450:307;;;:::o;1763:102::-;1804:6;1855:2;1851:7;1846:2;1839:5;1835:14;1831:28;1821:38;;1763:102;;;:::o;1871:364::-;1959:3;1987:39;2020:5;1987:39;:::i;:::-;2042:71;2106:6;2101:3;2042:71;:::i;:::-;2035:78;;2122:52;2167:6;2162:3;2155:4;2148:5;2144:16;2122:52;:::i;:::-;2199:29;2221:6;2199:29;:::i;:::-;2194:3;2190:39;2183:46;;1963:272;1871:364;;;;:::o;2241:313::-;2354:4;2392:2;2381:9;2377:18;2369:26;;2441:9;2435:4;2431:20;2427:1;2416:9;2412:17;2405:47;2469:78;2542:4;2533:6;2469:78;:::i;:::-;2461:86;;2241:313;;;;:::o;2560:126::-;2597:7;2637:42;2630:5;2626:54;2615:65;;2560:126;;;:::o;2692:96::-;2729:7;2758:24;2776:5;2758:24;:::i;:::-;2747:35;;2692:96;;;:::o;2794:122::-;2867:24;2885:5;2867:24;:::i;:::-;2860:5;2857:35;2847:63;;2906:1;2903;2896:12;2847:63;2794:122;:::o;2922:139::-;2968:5;3006:6;2993:20;2984:29;;3022:33;3049:5;3022:33;:::i;:::-;2922:139;;;;:::o;3067:474::-;3135:6;3143;3192:2;3180:9;3171:7;3167:23;3163:32;3160:119;;;3198:79;;:::i;:::-;3160:119;3318:1;3343:53;3388:7;3379:6;3368:9;3364:22;3343:53;:::i;:::-;3333:63;;3289:117;3445:2;3471:53;3516:7;3507:6;3496:9;3492:22;3471:53;:::i;:::-;3461:63;;3416:118;3067:474;;;;;:::o;3547:90::-;3581:7;3624:5;3617:13;3610:21;3599:32;;3547:90;;;:::o;3643:109::-;3724:21;3739:5;3724:21;:::i;:::-;3719:3;3712:34;3643:109;;:::o;3758:210::-;3845:4;3883:2;3872:9;3868:18;3860:26;;3896:65;3958:1;3947:9;3943:17;3934:6;3896:65;:::i;:::-;3758:210;;;;:::o;3974:60::-;4002:3;4023:5;4016:12;;3974:60;;;:::o;4040:142::-;4090:9;4123:53;4141:34;4150:24;4168:5;4150:24;:::i;:::-;4141:34;:::i;:::-;4123:53;:::i;:::-;4110:66;;4040:142;;;:::o;4188:126::-;4238:9;4271:37;4302:5;4271:37;:::i;:::-;4258:50;;4188:126;;;:::o;4320:153::-;4397:9;4430:37;4461:5;4430:37;:::i;:::-;4417:50;;4320:153;;;:::o;4479:185::-;4593:64;4651:5;4593:64;:::i;:::-;4588:3;4581:77;4479:185;;:::o;4670:276::-;4790:4;4828:2;4817:9;4813:18;4805:26;;4841:98;4936:1;4925:9;4921:17;4912:6;4841:98;:::i;:::-;4670:276;;;;:::o;4952:118::-;5039:24;5057:5;5039:24;:::i;:::-;5034:3;5027:37;4952:118;;:::o;5076:222::-;5169:4;5207:2;5196:9;5192:18;5184:26;;5220:71;5288:1;5277:9;5273:17;5264:6;5220:71;:::i;:::-;5076:222;;;;:::o;5304:329::-;5363:6;5412:2;5400:9;5391:7;5387:23;5383:32;5380:119;;;5418:79;;:::i;:::-;5380:119;5538:1;5563:53;5608:7;5599:6;5588:9;5584:22;5563:53;:::i;:::-;5553:63;;5509:117;5304:329;;;;:::o;5639:::-;5698:6;5747:2;5735:9;5726:7;5722:23;5718:32;5715:119;;;5753:79;;:::i;:::-;5715:119;5873:1;5898:53;5943:7;5934:6;5923:9;5919:22;5898:53;:::i;:::-;5888:63;;5844:117;5639:329;;;;:::o;5974:619::-;6051:6;6059;6067;6116:2;6104:9;6095:7;6091:23;6087:32;6084:119;;;6122:79;;:::i;:::-;6084:119;6242:1;6267:53;6312:7;6303:6;6292:9;6288:22;6267:53;:::i;:::-;6257:63;;6213:117;6369:2;6395:53;6440:7;6431:6;6420:9;6416:22;6395:53;:::i;:::-;6385:63;;6340:118;6497:2;6523:53;6568:7;6559:6;6548:9;6544:22;6523:53;:::i;:::-;6513:63;;6468:118;5974:619;;;;;:::o;6599:86::-;6634:7;6674:4;6667:5;6663:16;6652:27;;6599:86;;;:::o;6691:112::-;6774:22;6790:5;6774:22;:::i;:::-;6769:3;6762:35;6691:112;;:::o;6809:214::-;6898:4;6936:2;6925:9;6921:18;6913:26;;6949:67;7013:1;7002:9;6998:17;6989:6;6949:67;:::i;:::-;6809:214;;;;:::o;7029:118::-;7116:24;7134:5;7116:24;:::i;:::-;7111:3;7104:37;7029:118;;:::o;7153:222::-;7246:4;7284:2;7273:9;7269:18;7261:26;;7297:71;7365:1;7354:9;7350:17;7341:6;7297:71;:::i;:::-;7153:222;;;;:::o;7381:116::-;7451:21;7466:5;7451:21;:::i;:::-;7444:5;7441:32;7431:60;;7487:1;7484;7477:12;7431:60;7381:116;:::o;7503:133::-;7546:5;7584:6;7571:20;7562:29;;7600:30;7624:5;7600:30;:::i;:::-;7503:133;;;;:::o;7642:323::-;7698:6;7747:2;7735:9;7726:7;7722:23;7718:32;7715:119;;;7753:79;;:::i;:::-;7715:119;7873:1;7898:50;7940:7;7931:6;7920:9;7916:22;7898:50;:::i;:::-;7888:60;;7844:114;7642:323;;;;:::o;7971:468::-;8036:6;8044;8093:2;8081:9;8072:7;8068:23;8064:32;8061:119;;;8099:79;;:::i;:::-;8061:119;8219:1;8244:53;8289:7;8280:6;8269:9;8265:22;8244:53;:::i;:::-;8234:63;;8190:117;8346:2;8372:50;8414:7;8405:6;8394:9;8390:22;8372:50;:::i;:::-;8362:60;;8317:115;7971:468;;;;;:::o;8445:474::-;8513:6;8521;8570:2;8558:9;8549:7;8545:23;8541:32;8538:119;;;8576:79;;:::i;:::-;8538:119;8696:1;8721:53;8766:7;8757:6;8746:9;8742:22;8721:53;:::i;:::-;8711:63;;8667:117;8823:2;8849:53;8894:7;8885:6;8874:9;8870:22;8849:53;:::i;:::-;8839:63;;8794:118;8445:474;;;;;:::o;8925:182::-;9065:34;9061:1;9053:6;9049:14;9042:58;8925:182;:::o;9113:366::-;9255:3;9276:67;9340:2;9335:3;9276:67;:::i;:::-;9269:74;;9352:93;9441:3;9352:93;:::i;:::-;9470:2;9465:3;9461:12;9454:19;;9113:366;;;:::o;9485:419::-;9651:4;9689:2;9678:9;9674:18;9666:26;;9738:9;9732:4;9728:20;9724:1;9713:9;9709:17;9702:47;9766:131;9892:4;9766:131;:::i;:::-;9758:139;;9485:419;;;:::o;9910:180::-;9958:77;9955:1;9948:88;10055:4;10052:1;10045:15;10079:4;10076:1;10069:15;10096:305;10136:3;10155:20;10173:1;10155:20;:::i;:::-;10150:25;;10189:20;10207:1;10189:20;:::i;:::-;10184:25;;10343:1;10275:66;10271:74;10268:1;10265:81;10262:107;;;10349:18;;:::i;:::-;10262:107;10393:1;10390;10386:9;10379:16;;10096:305;;;;:::o;10407:179::-;10547:31;10543:1;10535:6;10531:14;10524:55;10407:179;:::o;10592:366::-;10734:3;10755:67;10819:2;10814:3;10755:67;:::i;:::-;10748:74;;10831:93;10920:3;10831:93;:::i;:::-;10949:2;10944:3;10940:12;10933:19;;10592:366;;;:::o;10964:419::-;11130:4;11168:2;11157:9;11153:18;11145:26;;11217:9;11211:4;11207:20;11203:1;11192:9;11188:17;11181:47;11245:131;11371:4;11245:131;:::i;:::-;11237:139;;10964:419;;;:::o;11389:180::-;11437:77;11434:1;11427:88;11534:4;11531:1;11524:15;11558:4;11555:1;11548:15;11575:320;11619:6;11656:1;11650:4;11646:12;11636:22;;11703:1;11697:4;11693:12;11724:18;11714:81;;11780:4;11772:6;11768:17;11758:27;;11714:81;11842:2;11834:6;11831:14;11811:18;11808:38;11805:84;;;11861:18;;:::i;:::-;11805:84;11626:269;11575:320;;;:::o;11901:348::-;11941:7;11964:20;11982:1;11964:20;:::i;:::-;11959:25;;11998:20;12016:1;11998:20;:::i;:::-;11993:25;;12186:1;12118:66;12114:74;12111:1;12108:81;12103:1;12096:9;12089:17;12085:105;12082:131;;;12193:18;;:::i;:::-;12082:131;12241:1;12238;12234:9;12223:20;;11901:348;;;;:::o;12255:180::-;12303:77;12300:1;12293:88;12400:4;12397:1;12390:15;12424:4;12421:1;12414:15;12441:185;12481:1;12498:20;12516:1;12498:20;:::i;:::-;12493:25;;12532:20;12550:1;12532:20;:::i;:::-;12527:25;;12571:1;12561:35;;12576:18;;:::i;:::-;12561:35;12618:1;12615;12611:9;12606:14;;12441:185;;;;:::o;12632:223::-;12772:34;12768:1;12760:6;12756:14;12749:58;12841:6;12836:2;12828:6;12824:15;12817:31;12632:223;:::o;12861:366::-;13003:3;13024:67;13088:2;13083:3;13024:67;:::i;:::-;13017:74;;13100:93;13189:3;13100:93;:::i;:::-;13218:2;13213:3;13209:12;13202:19;;12861:366;;;:::o;13233:419::-;13399:4;13437:2;13426:9;13422:18;13414:26;;13486:9;13480:4;13476:20;13472:1;13461:9;13457:17;13450:47;13514:131;13640:4;13514:131;:::i;:::-;13506:139;;13233:419;;;:::o;13658:227::-;13798:34;13794:1;13786:6;13782:14;13775:58;13867:10;13862:2;13854:6;13850:15;13843:35;13658:227;:::o;13891:366::-;14033:3;14054:67;14118:2;14113:3;14054:67;:::i;:::-;14047:74;;14130:93;14219:3;14130:93;:::i;:::-;14248:2;14243:3;14239:12;14232:19;;13891:366;;;:::o;14263:419::-;14429:4;14467:2;14456:9;14452:18;14444:26;;14516:9;14510:4;14506:20;14502:1;14491:9;14487:17;14480:47;14544:131;14670:4;14544:131;:::i;:::-;14536:139;;14263:419;;;:::o;14688:143::-;14745:5;14776:6;14770:13;14761:22;;14792:33;14819:5;14792:33;:::i;:::-;14688:143;;;;:::o;14837:351::-;14907:6;14956:2;14944:9;14935:7;14931:23;14927:32;14924:119;;;14962:79;;:::i;:::-;14924:119;15082:1;15107:64;15163:7;15154:6;15143:9;15139:22;15107:64;:::i;:::-;15097:74;;15053:128;14837:351;;;;:::o;15194:332::-;15315:4;15353:2;15342:9;15338:18;15330:26;;15366:71;15434:1;15423:9;15419:17;15410:6;15366:71;:::i;:::-;15447:72;15515:2;15504:9;15500:18;15491:6;15447:72;:::i;:::-;15194:332;;;;;:::o;15532:137::-;15586:5;15617:6;15611:13;15602:22;;15633:30;15657:5;15633:30;:::i;:::-;15532:137;;;;:::o;15675:345::-;15742:6;15791:2;15779:9;15770:7;15766:23;15762:32;15759:119;;;15797:79;;:::i;:::-;15759:119;15917:1;15942:61;15995:7;15986:6;15975:9;15971:22;15942:61;:::i;:::-;15932:71;;15888:125;15675:345;;;;:::o;16026:224::-;16166:34;16162:1;16154:6;16150:14;16143:58;16235:7;16230:2;16222:6;16218:15;16211:32;16026:224;:::o;16256:366::-;16398:3;16419:67;16483:2;16478:3;16419:67;:::i;:::-;16412:74;;16495:93;16584:3;16495:93;:::i;:::-;16613:2;16608:3;16604:12;16597:19;;16256:366;;;:::o;16628:419::-;16794:4;16832:2;16821:9;16817:18;16809:26;;16881:9;16875:4;16871:20;16867:1;16856:9;16852:17;16845:47;16909:131;17035:4;16909:131;:::i;:::-;16901:139;;16628:419;;;:::o;17053:172::-;17193:24;17189:1;17181:6;17177:14;17170:48;17053:172;:::o;17231:366::-;17373:3;17394:67;17458:2;17453:3;17394:67;:::i;:::-;17387:74;;17470:93;17559:3;17470:93;:::i;:::-;17588:2;17583:3;17579:12;17572:19;;17231:366;;;:::o;17603:419::-;17769:4;17807:2;17796:9;17792:18;17784:26;;17856:9;17850:4;17846:20;17842:1;17831:9;17827:17;17820:47;17884:131;18010:4;17884:131;:::i;:::-;17876:139;;17603:419;;;:::o;18028:168::-;18168:20;18164:1;18156:6;18152:14;18145:44;18028:168;:::o;18202:366::-;18344:3;18365:67;18429:2;18424:3;18365:67;:::i;:::-;18358:74;;18441:93;18530:3;18441:93;:::i;:::-;18559:2;18554:3;18550:12;18543:19;;18202:366;;;:::o;18574:419::-;18740:4;18778:2;18767:9;18763:18;18755:26;;18827:9;18821:4;18817:20;18813:1;18802:9;18798:17;18791:47;18855:131;18981:4;18855:131;:::i;:::-;18847:139;;18574:419;;;:::o;18999:225::-;19139:34;19135:1;19127:6;19123:14;19116:58;19208:8;19203:2;19195:6;19191:15;19184:33;18999:225;:::o;19230:366::-;19372:3;19393:67;19457:2;19452:3;19393:67;:::i;:::-;19386:74;;19469:93;19558:3;19469:93;:::i;:::-;19587:2;19582:3;19578:12;19571:19;;19230:366;;;:::o;19602:419::-;19768:4;19806:2;19795:9;19791:18;19783:26;;19855:9;19849:4;19845:20;19841:1;19830:9;19826:17;19819:47;19883:131;20009:4;19883:131;:::i;:::-;19875:139;;19602:419;;;:::o;20027:223::-;20167:34;20163:1;20155:6;20151:14;20144:58;20236:6;20231:2;20223:6;20219:15;20212:31;20027:223;:::o;20256:366::-;20398:3;20419:67;20483:2;20478:3;20419:67;:::i;:::-;20412:74;;20495:93;20584:3;20495:93;:::i;:::-;20613:2;20608:3;20604:12;20597:19;;20256:366;;;:::o;20628:419::-;20794:4;20832:2;20821:9;20817:18;20809:26;;20881:9;20875:4;20871:20;20867:1;20856:9;20852:17;20845:47;20909:131;21035:4;20909:131;:::i;:::-;20901:139;;20628:419;;;:::o;21053:221::-;21193:34;21189:1;21181:6;21177:14;21170:58;21262:4;21257:2;21249:6;21245:15;21238:29;21053:221;:::o;21280:366::-;21422:3;21443:67;21507:2;21502:3;21443:67;:::i;:::-;21436:74;;21519:93;21608:3;21519:93;:::i;:::-;21637:2;21632:3;21628:12;21621:19;;21280:366;;;:::o;21652:419::-;21818:4;21856:2;21845:9;21841:18;21833:26;;21905:9;21899:4;21895:20;21891:1;21880:9;21876:17;21869:47;21933:131;22059:4;21933:131;:::i;:::-;21925:139;;21652:419;;;:::o;22077:224::-;22217:34;22213:1;22205:6;22201:14;22194:58;22286:7;22281:2;22273:6;22269:15;22262:32;22077:224;:::o;22307:366::-;22449:3;22470:67;22534:2;22529:3;22470:67;:::i;:::-;22463:74;;22546:93;22635:3;22546:93;:::i;:::-;22664:2;22659:3;22655:12;22648:19;;22307:366;;;:::o;22679:419::-;22845:4;22883:2;22872:9;22868:18;22860:26;;22932:9;22926:4;22922:20;22918:1;22907:9;22903:17;22896:47;22960:131;23086:4;22960:131;:::i;:::-;22952:139;;22679:419;;;:::o;23104:222::-;23244:34;23240:1;23232:6;23228:14;23221:58;23313:5;23308:2;23300:6;23296:15;23289:30;23104:222;:::o;23332:366::-;23474:3;23495:67;23559:2;23554:3;23495:67;:::i;:::-;23488:74;;23571:93;23660:3;23571:93;:::i;:::-;23689:2;23684:3;23680:12;23673:19;;23332:366;;;:::o;23704:419::-;23870:4;23908:2;23897:9;23893:18;23885:26;;23957:9;23951:4;23947:20;23943:1;23932:9;23928:17;23921:47;23985:131;24111:4;23985:131;:::i;:::-;23977:139;;23704:419;;;:::o;24129:177::-;24269:29;24265:1;24257:6;24253:14;24246:53;24129:177;:::o;24312:366::-;24454:3;24475:67;24539:2;24534:3;24475:67;:::i;:::-;24468:74;;24551:93;24640:3;24551:93;:::i;:::-;24669:2;24664:3;24660:12;24653:19;;24312:366;;;:::o;24684:419::-;24850:4;24888:2;24877:9;24873:18;24865:26;;24937:9;24931:4;24927:20;24923:1;24912:9;24908:17;24901:47;24965:131;25091:4;24965:131;:::i;:::-;24957:139;;24684:419;;;:::o;25109:175::-;25249:27;25245:1;25237:6;25233:14;25226:51;25109:175;:::o;25290:366::-;25432:3;25453:67;25517:2;25512:3;25453:67;:::i;:::-;25446:74;;25529:93;25618:3;25529:93;:::i;:::-;25647:2;25642:3;25638:12;25631:19;;25290:366;;;:::o;25662:419::-;25828:4;25866:2;25855:9;25851:18;25843:26;;25915:9;25909:4;25905:20;25901:1;25890:9;25886:17;25879:47;25943:131;26069:4;25943:131;:::i;:::-;25935:139;;25662:419;;;:::o;26087:180::-;26227:32;26223:1;26215:6;26211:14;26204:56;26087:180;:::o;26273:366::-;26415:3;26436:67;26500:2;26495:3;26436:67;:::i;:::-;26429:74;;26512:93;26601:3;26512:93;:::i;:::-;26630:2;26625:3;26621:12;26614:19;;26273:366;;;:::o;26645:419::-;26811:4;26849:2;26838:9;26834:18;26826:26;;26898:9;26892:4;26888:20;26884:1;26873:9;26869:17;26862:47;26926:131;27052:4;26926:131;:::i;:::-;26918:139;;26645:419;;;:::o;27070:191::-;27110:4;27130:20;27148:1;27130:20;:::i;:::-;27125:25;;27164:20;27182:1;27164:20;:::i;:::-;27159:25;;27203:1;27200;27197:8;27194:34;;;27208:18;;:::i;:::-;27194:34;27253:1;27250;27246:9;27238:17;;27070:191;;;;:::o;27267:225::-;27407:34;27403:1;27395:6;27391:14;27384:58;27476:8;27471:2;27463:6;27459:15;27452:33;27267:225;:::o;27498:366::-;27640:3;27661:67;27725:2;27720:3;27661:67;:::i;:::-;27654:74;;27737:93;27826:3;27737:93;:::i;:::-;27855:2;27850:3;27846:12;27839:19;;27498:366;;;:::o;27870:419::-;28036:4;28074:2;28063:9;28059:18;28051:26;;28123:9;28117:4;28113:20;28109:1;28098:9;28094:17;28087:47;28151:131;28277:4;28151:131;:::i;:::-;28143:139;;27870:419;;;:::o;28295:180::-;28343:77;28340:1;28333:88;28440:4;28437:1;28430:15;28464:4;28461:1;28454:15;28481:180;28529:77;28526:1;28519:88;28626:4;28623:1;28616:15;28650:4;28647:1;28640:15;28667:85;28712:7;28741:5;28730:16;;28667:85;;;:::o;28758:158::-;28816:9;28849:61;28867:42;28876:32;28902:5;28876:32;:::i;:::-;28867:42;:::i;:::-;28849:61;:::i;:::-;28836:74;;28758:158;;;:::o;28922:147::-;29017:45;29056:5;29017:45;:::i;:::-;29012:3;29005:58;28922:147;;:::o;29075:114::-;29142:6;29176:5;29170:12;29160:22;;29075:114;;;:::o;29195:184::-;29294:11;29328:6;29323:3;29316:19;29368:4;29363:3;29359:14;29344:29;;29195:184;;;;:::o;29385:132::-;29452:4;29475:3;29467:11;;29505:4;29500:3;29496:14;29488:22;;29385:132;;;:::o;29523:108::-;29600:24;29618:5;29600:24;:::i;:::-;29595:3;29588:37;29523:108;;:::o;29637:179::-;29706:10;29727:46;29769:3;29761:6;29727:46;:::i;:::-;29805:4;29800:3;29796:14;29782:28;;29637:179;;;;:::o;29822:113::-;29892:4;29924;29919:3;29915:14;29907:22;;29822:113;;;:::o;29971:732::-;30090:3;30119:54;30167:5;30119:54;:::i;:::-;30189:86;30268:6;30263:3;30189:86;:::i;:::-;30182:93;;30299:56;30349:5;30299:56;:::i;:::-;30378:7;30409:1;30394:284;30419:6;30416:1;30413:13;30394:284;;;30495:6;30489:13;30522:63;30581:3;30566:13;30522:63;:::i;:::-;30515:70;;30608:60;30661:6;30608:60;:::i;:::-;30598:70;;30454:224;30441:1;30438;30434:9;30429:14;;30394:284;;;30398:14;30694:3;30687:10;;30095:608;;;29971:732;;;;:::o;30709:831::-;30972:4;31010:3;30999:9;30995:19;30987:27;;31024:71;31092:1;31081:9;31077:17;31068:6;31024:71;:::i;:::-;31105:80;31181:2;31170:9;31166:18;31157:6;31105:80;:::i;:::-;31232:9;31226:4;31222:20;31217:2;31206:9;31202:18;31195:48;31260:108;31363:4;31354:6;31260:108;:::i;:::-;31252:116;;31378:72;31446:2;31435:9;31431:18;31422:6;31378:72;:::i;:::-;31460:73;31528:3;31517:9;31513:19;31504:6;31460:73;:::i;:::-;30709:831;;;;;;;;:::o

Swarm Source

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