ETH Price: $2,984.68 (+4.31%)
Gas: 2 Gwei

Token

World Cup Floki (WCF)
 

Overview

Max Total Supply

100,000,000 WCF

Holders

121

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
88,435.023969811679836188 WCF

Value
$0.00
0x4fc70b5a59bcedc4f6075eb9cbe22b57b005a853
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:
WCF

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 2022-10-17
*/

// t.me/WCFPortal

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    address public pairedToken = 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48;

    bool private swapping;

    address public treasuryWallet;

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

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

    uint256 public buyTotalFees;
    uint256 public buyTreasuryFee;
    uint256 public buyLiquidityFee;

    uint256 public sellTotalFees;
    uint256 public sellTreasuryFee;
    uint256 public sellLiquidityFee;

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


    event ExcludeFromFees(address indexed account, bool isExcluded);

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

    constructor() ERC20("World Cup Floki", "WCF") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

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

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


        uint256 _buyTreasuryFee = 4;
        uint256 _buyLiquidityFee = 1;

        uint256 _sellTreasuryFee = 99;
        uint256 _sellLiquidityFee = 0;

        /**
        Angel number 6 symbolizes finances, material possessions, and the 
        anxieties that we face in our daily lives. Humility and unconditional 
        love are also related.
        If this number has appeared in front of you, it means that all your 
        problems will be solved soon.
        */

        uint256 totalSupply = 100_000_000 * 1e18;

        maxTransactionAmount =  totalSupply * 1 / 100; // 1% 
        maxWallet = totalSupply * 1 / 100; // 1% 
        swapTokensAtAmount = (totalSupply * 20) / 10000; // 0.2%

        buyTreasuryFee = _buyTreasuryFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyTotalFees = buyTreasuryFee + buyLiquidityFee;

        sellTreasuryFee = _sellTreasuryFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellTotalFees = sellTreasuryFee + sellLiquidityFee;

        treasuryWallet = address(0x7Ec32E812B0d4766891de7Fd167cca29664a2206); // set as treasury wallet

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

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

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

    receive() external payable {}

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

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

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

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

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

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

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

    function updateBuyFees(
        uint256 _treasuryFee,
        uint256 _liquidityFee
    ) external onlyOwner {
        buyTreasuryFee = _treasuryFee;
        buyLiquidityFee = _liquidityFee;
        buyTotalFees = buyTreasuryFee + buyLiquidityFee;
        require(buyTotalFees <= 100, "Must keep fees at 10% or less");
    }

    function updateSellFees(
        uint256 _treasuryFee,
        uint256 _liquidityFee
    ) external onlyOwner {
        sellTreasuryFee = _treasuryFee;
        sellLiquidityFee = _liquidityFee;
        sellTotalFees = sellTreasuryFee + sellLiquidityFee;
        require(sellTotalFees <= 100, "Must keep fees at 10% or less");
    }

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

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


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

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

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

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

                // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.
                //when buy
                if (
                    from == uniswapV2Pair &&
                    !_isExcludedMaxTransactionAmount[to]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Buy transfer amount exceeds the maxTransactionAmount."
                    );
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
                else if (!_isExcludedMaxTransactionAmount[to]) {
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

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

        uint256 fees = 0;
        uint256 tokensForLiquidity = 0;
        uint256 tokensForTreasury = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (to == uniswapV2Pair && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
                tokensForLiquidity = (fees * sellLiquidityFee) / sellTotalFees;
                tokensForTreasury = (fees * sellTreasuryFee) / sellTotalFees;
            }
            // on buy
            else if (from == uniswapV2Pair && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity = (fees * buyLiquidityFee) / buyTotalFees; 
                tokensForTreasury = (fees * buyTreasuryFee) / 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 swapTokensForPairedToken(uint256 tokenAmount) private {
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = pairedToken;

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

        // make the swap
        uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of pairedToken
            path,
            treasuryWallet,
            block.timestamp
        );
    }

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

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

        swapTokensForPairedToken(contractBalance);
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"treasuryWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTreasuryFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pairedToken","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTreasuryFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"treasuryWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_treasuryFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_treasuryFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newTreasuryWallet","type":"address"}],"name":"updateTreasuryWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c060405273a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600b60006101000a81548160ff0219169083151502179055506000600b60016101000a81548160ff0219169083151502179055506000600b60026101000a81548160ff021916908315150217905550348015620000b757600080fd5b506040518060400160405280600f81526020017f576f726c642043757020466c6f6b6900000000000000000000000000000000008152506040518060400160405280600381526020017f574346000000000000000000000000000000000000000000000000000000000081525081600390805190602001906200013c929190620009b5565b50806004908051906020019062000155929190620009b5565b505050620001786200016c6200051660201b60201c565b6200051e60201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620001a4816001620005e460201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000224573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200024a919062000acf565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518363ffffffff1660e01b8152600401620002a892919062000b12565b6020604051808303816000875af1158015620002c8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002ee919062000acf565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200033660a0516001620005e460201b60201c565b6000600490506000600190506000606390506000806a52b7d2dcc80cd2e4000000905060646001826200036a919062000b78565b62000376919062000c08565b60088190555060646001826200038d919062000b78565b62000399919062000c08565b600a81905550612710601482620003b1919062000b78565b620003bd919062000c08565b60098190555084600d8190555083600e81905550600e54600d54620003e3919062000c40565b600c81905550826010819055508160118190555060115460105462000409919062000c40565b600f81905550737ec32e812b0d4766891de7fd167cca29664a2206600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200048662000478620006ce60201b60201c565b6001620006f860201b60201c565b62000499306001620006f860201b60201c565b620004ae61dead6001620006f860201b60201c565b620004d0620004c2620006ce60201b60201c565b6001620005e460201b60201c565b620004e3306001620005e460201b60201c565b620004f861dead6001620005e460201b60201c565b6200050a33826200083260201b60201c565b50505050505062000e5f565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620005f46200051660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200061a620006ce60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000673576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200066a9062000cfe565b60405180910390fd5b80601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620007086200051660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200072e620006ce60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000787576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200077e9062000cfe565b60405180910390fd5b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000826919062000d3d565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620008a5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200089c9062000daa565b60405180910390fd5b620008b960008383620009ab60201b60201c565b8060026000828254620008cd919062000c40565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000924919062000c40565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200098b919062000ddd565b60405180910390a3620009a760008383620009b060201b60201c565b5050565b505050565b505050565b828054620009c39062000e29565b90600052602060002090601f016020900481019282620009e7576000855562000a33565b82601f1062000a0257805160ff191683800117855562000a33565b8280016001018555821562000a33579182015b8281111562000a3257825182559160200191906001019062000a15565b5b50905062000a42919062000a46565b5090565b5b8082111562000a6157600081600090555060010162000a47565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000a978262000a6a565b9050919050565b62000aa98162000a8a565b811462000ab557600080fd5b50565b60008151905062000ac98162000a9e565b92915050565b60006020828403121562000ae85762000ae762000a65565b5b600062000af88482850162000ab8565b91505092915050565b62000b0c8162000a8a565b82525050565b600060408201905062000b29600083018562000b01565b62000b38602083018462000b01565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000b858262000b3f565b915062000b928362000b3f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000bce5762000bcd62000b49565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000c158262000b3f565b915062000c228362000b3f565b92508262000c355762000c3462000bd9565b5b828204905092915050565b600062000c4d8262000b3f565b915062000c5a8362000b3f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000c925762000c9162000b49565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000ce660208362000c9d565b915062000cf38262000cae565b602082019050919050565b6000602082019050818103600083015262000d198162000cd7565b9050919050565b60008115159050919050565b62000d378162000d20565b82525050565b600060208201905062000d54600083018462000d2c565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000d92601f8362000c9d565b915062000d9f8262000d5a565b602082019050919050565b6000602082019050818103600083015262000dc58162000d83565b9050919050565b62000dd78162000b3f565b82525050565b600060208201905062000df4600083018462000dcc565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000e4257607f821691505b6020821081141562000e595762000e5862000dfa565b5b50919050565b60805160a051613c2662000eb660003960008181610daf01528181611f38015281816121810152818161238c015281816124570152612541015260008181610b4b01528181612a6f0152612a960152613c266000f3fe60806040526004361061024a5760003560e01c8063751039fc11610139578063c18bc195116100b6578063e2f456051161007a578063e2f456051461088f578063f11a24d3146108ba578063f2fde38b146108e5578063f63743421461090e578063f8b45b0514610939578063ffc94f901461096457610251565b8063c18bc19514610796578063c8c8ebe4146107bf578063d257b34f146107ea578063d85ba06314610827578063dd62ed3e1461085257610251565b8063924de9b7116100fd578063924de9b7146106b157806395d89b41146106da578063a9059cbb14610705578063bbc0c74214610742578063c02466681461076d57610251565b8063751039fc146105f25780637571336a1461061d578063809d458d146106465780638a8c523c1461066f5780638da5cb5b1461068657610251565b806349bd5a5e116101c75780636a486a8e1161018b5780636a486a8e1461051d5780636b2fb124146105485780636ddd17131461057357806370a082311461059e578063715018a6146105db57610251565b806349bd5a5e146104365780634a62bb65146104615780634fbee1931461048c5780635c068a8c146104c957806366ca9b83146104f457610251565b806318160ddd1161020e57806318160ddd1461034f578063203e727e1461037a57806323b872dd146103a3578063313ce567146103e05780634626402b1461040b57610251565b806302dbd8f81461025657806306fdde031461027f578063095ea7b3146102aa57806310d5de53146102e75780631694505e1461032457610251565b3661025157005b600080fd5b34801561026257600080fd5b5061027d60048036038101906102789190612b89565b61098f565b005b34801561028b57600080fd5b50610294610a79565b6040516102a19190612c62565b60405180910390f35b3480156102b657600080fd5b506102d160048036038101906102cc9190612ce2565b610b0b565b6040516102de9190612d3d565b60405180910390f35b3480156102f357600080fd5b5061030e60048036038101906103099190612d58565b610b29565b60405161031b9190612d3d565b60405180910390f35b34801561033057600080fd5b50610339610b49565b6040516103469190612de4565b60405180910390f35b34801561035b57600080fd5b50610364610b6d565b6040516103719190612e0e565b60405180910390f35b34801561038657600080fd5b506103a1600480360381019061039c9190612e29565b610b77565b005b3480156103af57600080fd5b506103ca60048036038101906103c59190612e56565b610c86565b6040516103d79190612d3d565b60405180910390f35b3480156103ec57600080fd5b506103f5610d7e565b6040516104029190612ec5565b60405180910390f35b34801561041757600080fd5b50610420610d87565b60405161042d9190612eef565b60405180910390f35b34801561044257600080fd5b5061044b610dad565b6040516104589190612eef565b60405180910390f35b34801561046d57600080fd5b50610476610dd1565b6040516104839190612d3d565b60405180910390f35b34801561049857600080fd5b506104b360048036038101906104ae9190612d58565b610de4565b6040516104c09190612d3d565b60405180910390f35b3480156104d557600080fd5b506104de610e3a565b6040516104eb9190612e0e565b60405180910390f35b34801561050057600080fd5b5061051b60048036038101906105169190612b89565b610e40565b005b34801561052957600080fd5b50610532610f2a565b60405161053f9190612e0e565b60405180910390f35b34801561055457600080fd5b5061055d610f30565b60405161056a9190612e0e565b60405180910390f35b34801561057f57600080fd5b50610588610f36565b6040516105959190612d3d565b60405180910390f35b3480156105aa57600080fd5b506105c560048036038101906105c09190612d58565b610f49565b6040516105d29190612e0e565b60405180910390f35b3480156105e757600080fd5b506105f0610f91565b005b3480156105fe57600080fd5b50610607611019565b6040516106149190612d3d565b60405180910390f35b34801561062957600080fd5b50610644600480360381019061063f9190612f36565b6110b9565b005b34801561065257600080fd5b5061066d60048036038101906106689190612d58565b611190565b005b34801561067b57600080fd5b506106846112cc565b005b34801561069257600080fd5b5061069b611380565b6040516106a89190612eef565b60405180910390f35b3480156106bd57600080fd5b506106d860048036038101906106d39190612f76565b6113aa565b005b3480156106e657600080fd5b506106ef611443565b6040516106fc9190612c62565b60405180910390f35b34801561071157600080fd5b5061072c60048036038101906107279190612ce2565b6114d5565b6040516107399190612d3d565b60405180910390f35b34801561074e57600080fd5b506107576114f3565b6040516107649190612d3d565b60405180910390f35b34801561077957600080fd5b50610794600480360381019061078f9190612f36565b611506565b005b3480156107a257600080fd5b506107bd60048036038101906107b89190612e29565b61162b565b005b3480156107cb57600080fd5b506107d461173a565b6040516107e19190612e0e565b60405180910390f35b3480156107f657600080fd5b50610811600480360381019061080c9190612e29565b611740565b60405161081e9190612d3d565b60405180910390f35b34801561083357600080fd5b5061083c611895565b6040516108499190612e0e565b60405180910390f35b34801561085e57600080fd5b5061087960048036038101906108749190612fa3565b61189b565b6040516108869190612e0e565b60405180910390f35b34801561089b57600080fd5b506108a4611922565b6040516108b19190612e0e565b60405180910390f35b3480156108c657600080fd5b506108cf611928565b6040516108dc9190612e0e565b60405180910390f35b3480156108f157600080fd5b5061090c60048036038101906109079190612d58565b61192e565b005b34801561091a57600080fd5b50610923611a26565b6040516109309190612e0e565b60405180910390f35b34801561094557600080fd5b5061094e611a2c565b60405161095b9190612e0e565b60405180910390f35b34801561097057600080fd5b50610979611a32565b6040516109869190612eef565b60405180910390f35b610997611a58565b73ffffffffffffffffffffffffffffffffffffffff166109b5611380565b73ffffffffffffffffffffffffffffffffffffffff1614610a0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a029061302f565b60405180910390fd5b8160108190555080601181905550601154601054610a29919061307e565b600f819055506064600f541115610a75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6c90613120565b60405180910390fd5b5050565b606060038054610a889061316f565b80601f0160208091040260200160405190810160405280929190818152602001828054610ab49061316f565b8015610b015780601f10610ad657610100808354040283529160200191610b01565b820191906000526020600020905b815481529060010190602001808311610ae457829003601f168201915b5050505050905090565b6000610b1f610b18611a58565b8484611a60565b6001905092915050565b60136020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610b7f611a58565b73ffffffffffffffffffffffffffffffffffffffff16610b9d611380565b73ffffffffffffffffffffffffffffffffffffffff1614610bf3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bea9061302f565b60405180910390fd5b670de0b6b3a76400006103e86001610c09610b6d565b610c1391906131a1565b610c1d919061322a565b610c27919061322a565b811015610c69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c60906132cd565b60405180910390fd5b670de0b6b3a764000081610c7d91906131a1565b60088190555050565b6000610c93848484611c2b565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610cde611a58565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610d5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d559061335f565b60405180910390fd5b610d7285610d6a611a58565b858403611a60565b60019150509392505050565b60006012905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b600b60009054906101000a900460ff1681565b6000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600d5481565b610e48611a58565b73ffffffffffffffffffffffffffffffffffffffff16610e66611380565b73ffffffffffffffffffffffffffffffffffffffff1614610ebc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb39061302f565b60405180910390fd5b81600d8190555080600e81905550600e54600d54610eda919061307e565b600c819055506064600c541115610f26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1d90613120565b60405180910390fd5b5050565b600f5481565b60105481565b600b60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f99611a58565b73ffffffffffffffffffffffffffffffffffffffff16610fb7611380565b73ffffffffffffffffffffffffffffffffffffffff161461100d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110049061302f565b60405180910390fd5b611017600061258d565b565b6000611023611a58565b73ffffffffffffffffffffffffffffffffffffffff16611041611380565b73ffffffffffffffffffffffffffffffffffffffff1614611097576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108e9061302f565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055506001905090565b6110c1611a58565b73ffffffffffffffffffffffffffffffffffffffff166110df611380565b73ffffffffffffffffffffffffffffffffffffffff1614611135576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112c9061302f565b60405180910390fd5b80601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b611198611a58565b73ffffffffffffffffffffffffffffffffffffffff166111b6611380565b73ffffffffffffffffffffffffffffffffffffffff161461120c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112039061302f565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f02f8a1483978974a6412ba3a67040b4daa4fc0dfe9439a7295f9a9538394f63560405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6112d4611a58565b73ffffffffffffffffffffffffffffffffffffffff166112f2611380565b73ffffffffffffffffffffffffffffffffffffffff1614611348576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133f9061302f565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6113b2611a58565b73ffffffffffffffffffffffffffffffffffffffff166113d0611380565b73ffffffffffffffffffffffffffffffffffffffff1614611426576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141d9061302f565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b6060600480546114529061316f565b80601f016020809104026020016040519081016040528092919081815260200182805461147e9061316f565b80156114cb5780601f106114a0576101008083540402835291602001916114cb565b820191906000526020600020905b8154815290600101906020018083116114ae57829003601f168201915b5050505050905090565b60006114e96114e2611a58565b8484611c2b565b6001905092915050565b600b60019054906101000a900460ff1681565b61150e611a58565b73ffffffffffffffffffffffffffffffffffffffff1661152c611380565b73ffffffffffffffffffffffffffffffffffffffff1614611582576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115799061302f565b60405180910390fd5b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161161f9190612d3d565b60405180910390a25050565b611633611a58565b73ffffffffffffffffffffffffffffffffffffffff16611651611380565b73ffffffffffffffffffffffffffffffffffffffff16146116a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169e9061302f565b60405180910390fd5b670de0b6b3a76400006103e860056116bd610b6d565b6116c791906131a1565b6116d1919061322a565b6116db919061322a565b81101561171d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611714906133f1565b60405180910390fd5b670de0b6b3a76400008161173191906131a1565b600a8190555050565b60085481565b600061174a611a58565b73ffffffffffffffffffffffffffffffffffffffff16611768611380565b73ffffffffffffffffffffffffffffffffffffffff16146117be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b59061302f565b60405180910390fd5b620186a060016117cc610b6d565b6117d691906131a1565b6117e0919061322a565b821015611822576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181990613483565b60405180910390fd5b6103e8600561182f610b6d565b61183991906131a1565b611843919061322a565b821115611885576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187c90613515565b60405180910390fd5b8160098190555060019050919050565b600c5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b600e5481565b611936611a58565b73ffffffffffffffffffffffffffffffffffffffff16611954611380565b73ffffffffffffffffffffffffffffffffffffffff16146119aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a19061302f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a11906135a7565b60405180910390fd5b611a238161258d565b50565b60115481565b600a5481565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611ad0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac790613639565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b37906136cb565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611c1e9190612e0e565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611c9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c929061375d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d02906137ef565b60405180910390fd5b6000811415611d2557611d2083836000612653565b612588565b600b60009054906101000a900460ff161561212f57611d42611380565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611db05750611d80611380565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611de95750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611e23575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611e3c5750600660149054906101000a900460ff16155b1561212e57600b60019054906101000a900460ff16611f3657601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611ef65750601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611f35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2c9061385b565b60405180910390fd5b5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148015611fdb5750601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561208257600854811115612025576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201c906138ed565b60405180910390fd5b600a5461203183610f49565b8261203c919061307e565b111561207d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207490613959565b60405180910390fd5b61212d565b601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661212c57600a546120df83610f49565b826120ea919061307e565b111561212b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212290613959565b60405180910390fd5b5b5b5b5b600061213a30610f49565b90506000600954821015905080801561215f5750600b60029054906101000a900460ff165b80156121785750600660149054906101000a900460ff16155b80156121cf57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b80156122255750601260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561227b5750601260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156122bf576001600660146101000a81548160ff0219169083151502179055506122a36128d4565b6000600660146101000a81548160ff0219169083151502179055505b6000600660149054906101000a900460ff16159050601260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806123755750601260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561237f57600090505b60008060008315612576577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff161480156123e757506000600f54115b15612455576124146064612406600f548a61292590919063ffffffff16565b61293b90919063ffffffff16565b9250600f546011548461242791906131a1565b612431919061322a565b9150600f546010548461244491906131a1565b61244e919061322a565b905061251d565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff161480156124b257506000600c54115b1561251c576124df60646124d1600c548a61292590919063ffffffff16565b61293b90919063ffffffff16565b9250600c54600e54846124f291906131a1565b6124fc919061322a565b9150600c54600d548461250f91906131a1565b612519919061322a565b90505b5b600083111561253257612531893085612653565b5b600082111561256757612566307f000000000000000000000000000000000000000000000000000000000000000084612653565b5b82876125739190613979565b96505b612581898989612653565b5050505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156126c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ba9061375d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612733576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272a906137ef565b60405180910390fd5b61273e838383612951565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156127c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127bb90613a1f565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612857919061307e565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516128bb9190612e0e565b60405180910390a36128ce848484612956565b50505050565b60006128df30610f49565b905060008114156128f05750612923565b60146009546128ff91906131a1565b81111561291857601460095461291591906131a1565b90505b6129218161295b565b505b565b6000818361293391906131a1565b905092915050565b60008183612949919061322a565b905092915050565b505050565b505050565b6000600267ffffffffffffffff81111561297857612977613a3f565b5b6040519080825280602002602001820160405280156129a65781602001602082028036833780820191505090505b50905030816000815181106129be576129bd613a6e565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681600181518110612a2f57612a2e613a6e565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612a94307f000000000000000000000000000000000000000000000000000000000000000084611a60565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16635c11d79583600084600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b8152600401612b18959493929190613b96565b600060405180830381600087803b158015612b3257600080fd5b505af1158015612b46573d6000803e3d6000fd5b505050505050565b600080fd5b6000819050919050565b612b6681612b53565b8114612b7157600080fd5b50565b600081359050612b8381612b5d565b92915050565b60008060408385031215612ba057612b9f612b4e565b5b6000612bae85828601612b74565b9250506020612bbf85828601612b74565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612c03578082015181840152602081019050612be8565b83811115612c12576000848401525b50505050565b6000601f19601f8301169050919050565b6000612c3482612bc9565b612c3e8185612bd4565b9350612c4e818560208601612be5565b612c5781612c18565b840191505092915050565b60006020820190508181036000830152612c7c8184612c29565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612caf82612c84565b9050919050565b612cbf81612ca4565b8114612cca57600080fd5b50565b600081359050612cdc81612cb6565b92915050565b60008060408385031215612cf957612cf8612b4e565b5b6000612d0785828601612ccd565b9250506020612d1885828601612b74565b9150509250929050565b60008115159050919050565b612d3781612d22565b82525050565b6000602082019050612d526000830184612d2e565b92915050565b600060208284031215612d6e57612d6d612b4e565b5b6000612d7c84828501612ccd565b91505092915050565b6000819050919050565b6000612daa612da5612da084612c84565b612d85565b612c84565b9050919050565b6000612dbc82612d8f565b9050919050565b6000612dce82612db1565b9050919050565b612dde81612dc3565b82525050565b6000602082019050612df96000830184612dd5565b92915050565b612e0881612b53565b82525050565b6000602082019050612e236000830184612dff565b92915050565b600060208284031215612e3f57612e3e612b4e565b5b6000612e4d84828501612b74565b91505092915050565b600080600060608486031215612e6f57612e6e612b4e565b5b6000612e7d86828701612ccd565b9350506020612e8e86828701612ccd565b9250506040612e9f86828701612b74565b9150509250925092565b600060ff82169050919050565b612ebf81612ea9565b82525050565b6000602082019050612eda6000830184612eb6565b92915050565b612ee981612ca4565b82525050565b6000602082019050612f046000830184612ee0565b92915050565b612f1381612d22565b8114612f1e57600080fd5b50565b600081359050612f3081612f0a565b92915050565b60008060408385031215612f4d57612f4c612b4e565b5b6000612f5b85828601612ccd565b9250506020612f6c85828601612f21565b9150509250929050565b600060208284031215612f8c57612f8b612b4e565b5b6000612f9a84828501612f21565b91505092915050565b60008060408385031215612fba57612fb9612b4e565b5b6000612fc885828601612ccd565b9250506020612fd985828601612ccd565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613019602083612bd4565b915061302482612fe3565b602082019050919050565b600060208201905081810360008301526130488161300c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061308982612b53565b915061309483612b53565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156130c9576130c861304f565b5b828201905092915050565b7f4d757374206b656570206665657320617420313025206f72206c657373000000600082015250565b600061310a601d83612bd4565b9150613115826130d4565b602082019050919050565b60006020820190508181036000830152613139816130fd565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061318757607f821691505b6020821081141561319b5761319a613140565b5b50919050565b60006131ac82612b53565b91506131b783612b53565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156131f0576131ef61304f565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061323582612b53565b915061324083612b53565b9250826132505761324f6131fb565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b60006132b7602f83612bd4565b91506132c28261325b565b604082019050919050565b600060208201905081810360008301526132e6816132aa565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000613349602883612bd4565b9150613354826132ed565b604082019050919050565b600060208201905081810360008301526133788161333c565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b60006133db602483612bd4565b91506133e68261337f565b604082019050919050565b6000602082019050818103600083015261340a816133ce565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b600061346d603583612bd4565b915061347882613411565b604082019050919050565b6000602082019050818103600083015261349c81613460565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b60006134ff603483612bd4565b915061350a826134a3565b604082019050919050565b6000602082019050818103600083015261352e816134f2565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613591602683612bd4565b915061359c82613535565b604082019050919050565b600060208201905081810360008301526135c081613584565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613623602483612bd4565b915061362e826135c7565b604082019050919050565b6000602082019050818103600083015261365281613616565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006136b5602283612bd4565b91506136c082613659565b604082019050919050565b600060208201905081810360008301526136e4816136a8565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613747602583612bd4565b9150613752826136eb565b604082019050919050565b600060208201905081810360008301526137768161373a565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006137d9602383612bd4565b91506137e48261377d565b604082019050919050565b60006020820190508181036000830152613808816137cc565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000613845601683612bd4565b91506138508261380f565b602082019050919050565b6000602082019050818103600083015261387481613838565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006138d7603583612bd4565b91506138e28261387b565b604082019050919050565b60006020820190508181036000830152613906816138ca565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000613943601383612bd4565b915061394e8261390d565b602082019050919050565b6000602082019050818103600083015261397281613936565b9050919050565b600061398482612b53565b915061398f83612b53565b9250828210156139a2576139a161304f565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613a09602683612bd4565b9150613a14826139ad565b604082019050919050565b60006020820190508181036000830152613a38816139fc565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b6000613ac2613abd613ab884613a9d565b612d85565b612b53565b9050919050565b613ad281613aa7565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613b0d81612ca4565b82525050565b6000613b1f8383613b04565b60208301905092915050565b6000602082019050919050565b6000613b4382613ad8565b613b4d8185613ae3565b9350613b5883613af4565b8060005b83811015613b89578151613b708882613b13565b9750613b7b83613b2b565b925050600181019050613b5c565b5085935050505092915050565b600060a082019050613bab6000830188612dff565b613bb86020830187613ac9565b8181036040830152613bca8186613b38565b9050613bd96060830185612ee0565b613be66080830184612dff565b969550505050505056fea264697066735822122082756384d51846528d33a92a8498e1465acbad40d9de6fd674edd5586741108264736f6c634300080a0033

Deployed Bytecode

0x60806040526004361061024a5760003560e01c8063751039fc11610139578063c18bc195116100b6578063e2f456051161007a578063e2f456051461088f578063f11a24d3146108ba578063f2fde38b146108e5578063f63743421461090e578063f8b45b0514610939578063ffc94f901461096457610251565b8063c18bc19514610796578063c8c8ebe4146107bf578063d257b34f146107ea578063d85ba06314610827578063dd62ed3e1461085257610251565b8063924de9b7116100fd578063924de9b7146106b157806395d89b41146106da578063a9059cbb14610705578063bbc0c74214610742578063c02466681461076d57610251565b8063751039fc146105f25780637571336a1461061d578063809d458d146106465780638a8c523c1461066f5780638da5cb5b1461068657610251565b806349bd5a5e116101c75780636a486a8e1161018b5780636a486a8e1461051d5780636b2fb124146105485780636ddd17131461057357806370a082311461059e578063715018a6146105db57610251565b806349bd5a5e146104365780634a62bb65146104615780634fbee1931461048c5780635c068a8c146104c957806366ca9b83146104f457610251565b806318160ddd1161020e57806318160ddd1461034f578063203e727e1461037a57806323b872dd146103a3578063313ce567146103e05780634626402b1461040b57610251565b806302dbd8f81461025657806306fdde031461027f578063095ea7b3146102aa57806310d5de53146102e75780631694505e1461032457610251565b3661025157005b600080fd5b34801561026257600080fd5b5061027d60048036038101906102789190612b89565b61098f565b005b34801561028b57600080fd5b50610294610a79565b6040516102a19190612c62565b60405180910390f35b3480156102b657600080fd5b506102d160048036038101906102cc9190612ce2565b610b0b565b6040516102de9190612d3d565b60405180910390f35b3480156102f357600080fd5b5061030e60048036038101906103099190612d58565b610b29565b60405161031b9190612d3d565b60405180910390f35b34801561033057600080fd5b50610339610b49565b6040516103469190612de4565b60405180910390f35b34801561035b57600080fd5b50610364610b6d565b6040516103719190612e0e565b60405180910390f35b34801561038657600080fd5b506103a1600480360381019061039c9190612e29565b610b77565b005b3480156103af57600080fd5b506103ca60048036038101906103c59190612e56565b610c86565b6040516103d79190612d3d565b60405180910390f35b3480156103ec57600080fd5b506103f5610d7e565b6040516104029190612ec5565b60405180910390f35b34801561041757600080fd5b50610420610d87565b60405161042d9190612eef565b60405180910390f35b34801561044257600080fd5b5061044b610dad565b6040516104589190612eef565b60405180910390f35b34801561046d57600080fd5b50610476610dd1565b6040516104839190612d3d565b60405180910390f35b34801561049857600080fd5b506104b360048036038101906104ae9190612d58565b610de4565b6040516104c09190612d3d565b60405180910390f35b3480156104d557600080fd5b506104de610e3a565b6040516104eb9190612e0e565b60405180910390f35b34801561050057600080fd5b5061051b60048036038101906105169190612b89565b610e40565b005b34801561052957600080fd5b50610532610f2a565b60405161053f9190612e0e565b60405180910390f35b34801561055457600080fd5b5061055d610f30565b60405161056a9190612e0e565b60405180910390f35b34801561057f57600080fd5b50610588610f36565b6040516105959190612d3d565b60405180910390f35b3480156105aa57600080fd5b506105c560048036038101906105c09190612d58565b610f49565b6040516105d29190612e0e565b60405180910390f35b3480156105e757600080fd5b506105f0610f91565b005b3480156105fe57600080fd5b50610607611019565b6040516106149190612d3d565b60405180910390f35b34801561062957600080fd5b50610644600480360381019061063f9190612f36565b6110b9565b005b34801561065257600080fd5b5061066d60048036038101906106689190612d58565b611190565b005b34801561067b57600080fd5b506106846112cc565b005b34801561069257600080fd5b5061069b611380565b6040516106a89190612eef565b60405180910390f35b3480156106bd57600080fd5b506106d860048036038101906106d39190612f76565b6113aa565b005b3480156106e657600080fd5b506106ef611443565b6040516106fc9190612c62565b60405180910390f35b34801561071157600080fd5b5061072c60048036038101906107279190612ce2565b6114d5565b6040516107399190612d3d565b60405180910390f35b34801561074e57600080fd5b506107576114f3565b6040516107649190612d3d565b60405180910390f35b34801561077957600080fd5b50610794600480360381019061078f9190612f36565b611506565b005b3480156107a257600080fd5b506107bd60048036038101906107b89190612e29565b61162b565b005b3480156107cb57600080fd5b506107d461173a565b6040516107e19190612e0e565b60405180910390f35b3480156107f657600080fd5b50610811600480360381019061080c9190612e29565b611740565b60405161081e9190612d3d565b60405180910390f35b34801561083357600080fd5b5061083c611895565b6040516108499190612e0e565b60405180910390f35b34801561085e57600080fd5b5061087960048036038101906108749190612fa3565b61189b565b6040516108869190612e0e565b60405180910390f35b34801561089b57600080fd5b506108a4611922565b6040516108b19190612e0e565b60405180910390f35b3480156108c657600080fd5b506108cf611928565b6040516108dc9190612e0e565b60405180910390f35b3480156108f157600080fd5b5061090c60048036038101906109079190612d58565b61192e565b005b34801561091a57600080fd5b50610923611a26565b6040516109309190612e0e565b60405180910390f35b34801561094557600080fd5b5061094e611a2c565b60405161095b9190612e0e565b60405180910390f35b34801561097057600080fd5b50610979611a32565b6040516109869190612eef565b60405180910390f35b610997611a58565b73ffffffffffffffffffffffffffffffffffffffff166109b5611380565b73ffffffffffffffffffffffffffffffffffffffff1614610a0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a029061302f565b60405180910390fd5b8160108190555080601181905550601154601054610a29919061307e565b600f819055506064600f541115610a75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6c90613120565b60405180910390fd5b5050565b606060038054610a889061316f565b80601f0160208091040260200160405190810160405280929190818152602001828054610ab49061316f565b8015610b015780601f10610ad657610100808354040283529160200191610b01565b820191906000526020600020905b815481529060010190602001808311610ae457829003601f168201915b5050505050905090565b6000610b1f610b18611a58565b8484611a60565b6001905092915050565b60136020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610b7f611a58565b73ffffffffffffffffffffffffffffffffffffffff16610b9d611380565b73ffffffffffffffffffffffffffffffffffffffff1614610bf3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bea9061302f565b60405180910390fd5b670de0b6b3a76400006103e86001610c09610b6d565b610c1391906131a1565b610c1d919061322a565b610c27919061322a565b811015610c69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c60906132cd565b60405180910390fd5b670de0b6b3a764000081610c7d91906131a1565b60088190555050565b6000610c93848484611c2b565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610cde611a58565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610d5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d559061335f565b60405180910390fd5b610d7285610d6a611a58565b858403611a60565b60019150509392505050565b60006012905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b7f000000000000000000000000f1041731f5d5da50154e6202938a7888e284090b81565b600b60009054906101000a900460ff1681565b6000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600d5481565b610e48611a58565b73ffffffffffffffffffffffffffffffffffffffff16610e66611380565b73ffffffffffffffffffffffffffffffffffffffff1614610ebc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb39061302f565b60405180910390fd5b81600d8190555080600e81905550600e54600d54610eda919061307e565b600c819055506064600c541115610f26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1d90613120565b60405180910390fd5b5050565b600f5481565b60105481565b600b60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f99611a58565b73ffffffffffffffffffffffffffffffffffffffff16610fb7611380565b73ffffffffffffffffffffffffffffffffffffffff161461100d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110049061302f565b60405180910390fd5b611017600061258d565b565b6000611023611a58565b73ffffffffffffffffffffffffffffffffffffffff16611041611380565b73ffffffffffffffffffffffffffffffffffffffff1614611097576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108e9061302f565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055506001905090565b6110c1611a58565b73ffffffffffffffffffffffffffffffffffffffff166110df611380565b73ffffffffffffffffffffffffffffffffffffffff1614611135576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112c9061302f565b60405180910390fd5b80601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b611198611a58565b73ffffffffffffffffffffffffffffffffffffffff166111b6611380565b73ffffffffffffffffffffffffffffffffffffffff161461120c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112039061302f565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f02f8a1483978974a6412ba3a67040b4daa4fc0dfe9439a7295f9a9538394f63560405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6112d4611a58565b73ffffffffffffffffffffffffffffffffffffffff166112f2611380565b73ffffffffffffffffffffffffffffffffffffffff1614611348576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133f9061302f565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6113b2611a58565b73ffffffffffffffffffffffffffffffffffffffff166113d0611380565b73ffffffffffffffffffffffffffffffffffffffff1614611426576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141d9061302f565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b6060600480546114529061316f565b80601f016020809104026020016040519081016040528092919081815260200182805461147e9061316f565b80156114cb5780601f106114a0576101008083540402835291602001916114cb565b820191906000526020600020905b8154815290600101906020018083116114ae57829003601f168201915b5050505050905090565b60006114e96114e2611a58565b8484611c2b565b6001905092915050565b600b60019054906101000a900460ff1681565b61150e611a58565b73ffffffffffffffffffffffffffffffffffffffff1661152c611380565b73ffffffffffffffffffffffffffffffffffffffff1614611582576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115799061302f565b60405180910390fd5b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161161f9190612d3d565b60405180910390a25050565b611633611a58565b73ffffffffffffffffffffffffffffffffffffffff16611651611380565b73ffffffffffffffffffffffffffffffffffffffff16146116a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169e9061302f565b60405180910390fd5b670de0b6b3a76400006103e860056116bd610b6d565b6116c791906131a1565b6116d1919061322a565b6116db919061322a565b81101561171d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611714906133f1565b60405180910390fd5b670de0b6b3a76400008161173191906131a1565b600a8190555050565b60085481565b600061174a611a58565b73ffffffffffffffffffffffffffffffffffffffff16611768611380565b73ffffffffffffffffffffffffffffffffffffffff16146117be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b59061302f565b60405180910390fd5b620186a060016117cc610b6d565b6117d691906131a1565b6117e0919061322a565b821015611822576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181990613483565b60405180910390fd5b6103e8600561182f610b6d565b61183991906131a1565b611843919061322a565b821115611885576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187c90613515565b60405180910390fd5b8160098190555060019050919050565b600c5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b600e5481565b611936611a58565b73ffffffffffffffffffffffffffffffffffffffff16611954611380565b73ffffffffffffffffffffffffffffffffffffffff16146119aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a19061302f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a11906135a7565b60405180910390fd5b611a238161258d565b50565b60115481565b600a5481565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611ad0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac790613639565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b37906136cb565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611c1e9190612e0e565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611c9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c929061375d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d02906137ef565b60405180910390fd5b6000811415611d2557611d2083836000612653565b612588565b600b60009054906101000a900460ff161561212f57611d42611380565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611db05750611d80611380565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611de95750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611e23575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611e3c5750600660149054906101000a900460ff16155b1561212e57600b60019054906101000a900460ff16611f3657601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611ef65750601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611f35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2c9061385b565b60405180910390fd5b5b7f000000000000000000000000f1041731f5d5da50154e6202938a7888e284090b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148015611fdb5750601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561208257600854811115612025576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201c906138ed565b60405180910390fd5b600a5461203183610f49565b8261203c919061307e565b111561207d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207490613959565b60405180910390fd5b61212d565b601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661212c57600a546120df83610f49565b826120ea919061307e565b111561212b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212290613959565b60405180910390fd5b5b5b5b5b600061213a30610f49565b90506000600954821015905080801561215f5750600b60029054906101000a900460ff165b80156121785750600660149054906101000a900460ff16155b80156121cf57507f000000000000000000000000f1041731f5d5da50154e6202938a7888e284090b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b80156122255750601260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561227b5750601260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156122bf576001600660146101000a81548160ff0219169083151502179055506122a36128d4565b6000600660146101000a81548160ff0219169083151502179055505b6000600660149054906101000a900460ff16159050601260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806123755750601260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561237f57600090505b60008060008315612576577f000000000000000000000000f1041731f5d5da50154e6202938a7888e284090b73ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff161480156123e757506000600f54115b15612455576124146064612406600f548a61292590919063ffffffff16565b61293b90919063ffffffff16565b9250600f546011548461242791906131a1565b612431919061322a565b9150600f546010548461244491906131a1565b61244e919061322a565b905061251d565b7f000000000000000000000000f1041731f5d5da50154e6202938a7888e284090b73ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff161480156124b257506000600c54115b1561251c576124df60646124d1600c548a61292590919063ffffffff16565b61293b90919063ffffffff16565b9250600c54600e54846124f291906131a1565b6124fc919061322a565b9150600c54600d548461250f91906131a1565b612519919061322a565b90505b5b600083111561253257612531893085612653565b5b600082111561256757612566307f000000000000000000000000f1041731f5d5da50154e6202938a7888e284090b84612653565b5b82876125739190613979565b96505b612581898989612653565b5050505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156126c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ba9061375d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612733576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272a906137ef565b60405180910390fd5b61273e838383612951565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156127c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127bb90613a1f565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612857919061307e565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516128bb9190612e0e565b60405180910390a36128ce848484612956565b50505050565b60006128df30610f49565b905060008114156128f05750612923565b60146009546128ff91906131a1565b81111561291857601460095461291591906131a1565b90505b6129218161295b565b505b565b6000818361293391906131a1565b905092915050565b60008183612949919061322a565b905092915050565b505050565b505050565b6000600267ffffffffffffffff81111561297857612977613a3f565b5b6040519080825280602002602001820160405280156129a65781602001602082028036833780820191505090505b50905030816000815181106129be576129bd613a6e565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681600181518110612a2f57612a2e613a6e565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612a94307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611a60565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff16635c11d79583600084600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b8152600401612b18959493929190613b96565b600060405180830381600087803b158015612b3257600080fd5b505af1158015612b46573d6000803e3d6000fd5b505050505050565b600080fd5b6000819050919050565b612b6681612b53565b8114612b7157600080fd5b50565b600081359050612b8381612b5d565b92915050565b60008060408385031215612ba057612b9f612b4e565b5b6000612bae85828601612b74565b9250506020612bbf85828601612b74565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612c03578082015181840152602081019050612be8565b83811115612c12576000848401525b50505050565b6000601f19601f8301169050919050565b6000612c3482612bc9565b612c3e8185612bd4565b9350612c4e818560208601612be5565b612c5781612c18565b840191505092915050565b60006020820190508181036000830152612c7c8184612c29565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612caf82612c84565b9050919050565b612cbf81612ca4565b8114612cca57600080fd5b50565b600081359050612cdc81612cb6565b92915050565b60008060408385031215612cf957612cf8612b4e565b5b6000612d0785828601612ccd565b9250506020612d1885828601612b74565b9150509250929050565b60008115159050919050565b612d3781612d22565b82525050565b6000602082019050612d526000830184612d2e565b92915050565b600060208284031215612d6e57612d6d612b4e565b5b6000612d7c84828501612ccd565b91505092915050565b6000819050919050565b6000612daa612da5612da084612c84565b612d85565b612c84565b9050919050565b6000612dbc82612d8f565b9050919050565b6000612dce82612db1565b9050919050565b612dde81612dc3565b82525050565b6000602082019050612df96000830184612dd5565b92915050565b612e0881612b53565b82525050565b6000602082019050612e236000830184612dff565b92915050565b600060208284031215612e3f57612e3e612b4e565b5b6000612e4d84828501612b74565b91505092915050565b600080600060608486031215612e6f57612e6e612b4e565b5b6000612e7d86828701612ccd565b9350506020612e8e86828701612ccd565b9250506040612e9f86828701612b74565b9150509250925092565b600060ff82169050919050565b612ebf81612ea9565b82525050565b6000602082019050612eda6000830184612eb6565b92915050565b612ee981612ca4565b82525050565b6000602082019050612f046000830184612ee0565b92915050565b612f1381612d22565b8114612f1e57600080fd5b50565b600081359050612f3081612f0a565b92915050565b60008060408385031215612f4d57612f4c612b4e565b5b6000612f5b85828601612ccd565b9250506020612f6c85828601612f21565b9150509250929050565b600060208284031215612f8c57612f8b612b4e565b5b6000612f9a84828501612f21565b91505092915050565b60008060408385031215612fba57612fb9612b4e565b5b6000612fc885828601612ccd565b9250506020612fd985828601612ccd565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613019602083612bd4565b915061302482612fe3565b602082019050919050565b600060208201905081810360008301526130488161300c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061308982612b53565b915061309483612b53565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156130c9576130c861304f565b5b828201905092915050565b7f4d757374206b656570206665657320617420313025206f72206c657373000000600082015250565b600061310a601d83612bd4565b9150613115826130d4565b602082019050919050565b60006020820190508181036000830152613139816130fd565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061318757607f821691505b6020821081141561319b5761319a613140565b5b50919050565b60006131ac82612b53565b91506131b783612b53565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156131f0576131ef61304f565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061323582612b53565b915061324083612b53565b9250826132505761324f6131fb565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b60006132b7602f83612bd4565b91506132c28261325b565b604082019050919050565b600060208201905081810360008301526132e6816132aa565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000613349602883612bd4565b9150613354826132ed565b604082019050919050565b600060208201905081810360008301526133788161333c565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b60006133db602483612bd4565b91506133e68261337f565b604082019050919050565b6000602082019050818103600083015261340a816133ce565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b600061346d603583612bd4565b915061347882613411565b604082019050919050565b6000602082019050818103600083015261349c81613460565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b60006134ff603483612bd4565b915061350a826134a3565b604082019050919050565b6000602082019050818103600083015261352e816134f2565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613591602683612bd4565b915061359c82613535565b604082019050919050565b600060208201905081810360008301526135c081613584565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613623602483612bd4565b915061362e826135c7565b604082019050919050565b6000602082019050818103600083015261365281613616565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006136b5602283612bd4565b91506136c082613659565b604082019050919050565b600060208201905081810360008301526136e4816136a8565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613747602583612bd4565b9150613752826136eb565b604082019050919050565b600060208201905081810360008301526137768161373a565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006137d9602383612bd4565b91506137e48261377d565b604082019050919050565b60006020820190508181036000830152613808816137cc565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000613845601683612bd4565b91506138508261380f565b602082019050919050565b6000602082019050818103600083015261387481613838565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006138d7603583612bd4565b91506138e28261387b565b604082019050919050565b60006020820190508181036000830152613906816138ca565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000613943601383612bd4565b915061394e8261390d565b602082019050919050565b6000602082019050818103600083015261397281613936565b9050919050565b600061398482612b53565b915061398f83612b53565b9250828210156139a2576139a161304f565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613a09602683612bd4565b9150613a14826139ad565b604082019050919050565b60006020820190508181036000830152613a38816139fc565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b6000613ac2613abd613ab884613a9d565b612d85565b612b53565b9050919050565b613ad281613aa7565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613b0d81612ca4565b82525050565b6000613b1f8383613b04565b60208301905092915050565b6000602082019050919050565b6000613b4382613ad8565b613b4d8185613ae3565b9350613b5883613af4565b8060005b83811015613b89578151613b708882613b13565b9750613b7b83613b2b565b925050600181019050613b5c565b5085935050505092915050565b600060a082019050613bab6000830188612dff565b613bb86020830187613ac9565b8181036040830152613bca8186613b38565b9050613bd96060830185612ee0565b613be66080830184612dff565b969550505050505056fea264697066735822122082756384d51846528d33a92a8498e1465acbad40d9de6fd674edd5586741108264736f6c634300080a0033

Deployed Bytecode Sourcemap

23352:11147:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28924:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8529:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10696:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24244:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23425:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9649:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27666:275;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11347:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9491:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23638:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23483:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23791:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29695:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23945:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28584:332;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24020:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24055:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23871:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9820:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2441:103;;;;;;;;;;;;;:::i;:::-;;26970:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28213:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29461:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26806:112;;;;;;;;;;;;;:::i;:::-;;1790:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28476:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8748:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10160:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23831:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29271:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27949:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23676:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27161:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23911:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10398:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23718:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23981:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2699:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24092:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23758:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23528:71;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28924:339;2021:12;:10;:12::i;:::-;2010:23;;:7;:5;:7::i;:::-;:23;;;2002:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29066:12:::1;29048:15;:30;;;;29108:13;29089:16;:32;;;;29166:16;;29148:15;;:34;;;;:::i;:::-;29132:13;:50;;;;29218:3;29201:13;;:20;;29193:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;28924:339:::0;;:::o;8529:100::-;8583:13;8616:5;8609:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8529:100;:::o;10696:169::-;10779:4;10796:39;10805:12;:10;:12::i;:::-;10819:7;10828:6;10796:8;:39::i;:::-;10853:4;10846:11;;10696:169;;;;:::o;24244:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;23425:51::-;;;:::o;9649:108::-;9710:7;9737:12;;9730:19;;9649:108;:::o;27666:275::-;2021:12;:10;:12::i;:::-;2010:23;;:7;:5;:7::i;:::-;:23;;;2002:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;27803:4:::1;27795;27790:1;27774:13;:11;:13::i;:::-;:17;;;;:::i;:::-;27773:26;;;;:::i;:::-;27772:35;;;;:::i;:::-;27762:6;:45;;27740:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;27926:6;27916;:17;;;;:::i;:::-;27893:20;:40;;;;27666:275:::0;:::o;11347:492::-;11487:4;11504:36;11514:6;11522:9;11533:6;11504:9;:36::i;:::-;11553:24;11580:11;:19;11592:6;11580:19;;;;;;;;;;;;;;;:33;11600:12;:10;:12::i;:::-;11580:33;;;;;;;;;;;;;;;;11553:60;;11652:6;11632:16;:26;;11624:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;11739:57;11748:6;11756:12;:10;:12::i;:::-;11789:6;11770:16;:25;11739:8;:57::i;:::-;11827:4;11820:11;;;11347:492;;;;;:::o;9491:93::-;9549:5;9574:2;9567:9;;9491:93;:::o;23638:29::-;;;;;;;;;;;;;:::o;23483:38::-;;;:::o;23791:33::-;;;;;;;;;;;;;:::o;29695:126::-;29761:4;29785:19;:28;29805:7;29785:28;;;;;;;;;;;;;;;;;;;;;;;;;29778:35;;29695:126;;;:::o;23945:29::-;;;;:::o;28584:332::-;2021:12;:10;:12::i;:::-;2010:23;;:7;:5;:7::i;:::-;:23;;;2002:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;28724:12:::1;28707:14;:29;;;;28765:13;28747:15;:31;;;;28821:15;;28804:14;;:32;;;;:::i;:::-;28789:12;:47;;;;28871:3;28855:12;;:19;;28847:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;28584:332:::0;;:::o;24020:28::-;;;;:::o;24055:30::-;;;;:::o;23871:31::-;;;;;;;;;;;;;:::o;9820:127::-;9894:7;9921:9;:18;9931:7;9921:18;;;;;;;;;;;;;;;;9914:25;;9820:127;;;:::o;2441:103::-;2021:12;:10;:12::i;:::-;2010:23;;:7;:5;:7::i;:::-;:23;;;2002:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2506:30:::1;2533:1;2506:18;:30::i;:::-;2441:103::o:0;26970:121::-;27022:4;2021:12;:10;:12::i;:::-;2010:23;;:7;:5;:7::i;:::-;:23;;;2002:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;27056:5:::1;27039:14;;:22;;;;;;;;;;;;;;;;;;27079:4;27072:11;;26970:121:::0;:::o;28213:167::-;2021:12;:10;:12::i;:::-;2010:23;;:7;:5;:7::i;:::-;:23;;;2002:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;28368:4:::1;28326:31;:39;28358:6;28326:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;28213:167:::0;;:::o;29461:224::-;2021:12;:10;:12::i;:::-;2010:23;;:7;:5;:7::i;:::-;:23;;;2002:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29617:14:::1;;;;;;;;;;;29576:56;;29598:17;29576:56;;;;;;;;;;;;29660:17;29643:14;;:34;;;;;;;;;;;;;;;;;;29461:224:::0;:::o;26806:112::-;2021:12;:10;:12::i;:::-;2010:23;;:7;:5;:7::i;:::-;:23;;;2002:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;26877:4:::1;26861:13;;:20;;;;;;;;;;;;;;;;;;26906:4;26892:11;;:18;;;;;;;;;;;;;;;;;;26806:112::o:0;1790:87::-;1836:7;1863:6;;;;;;;;;;;1856:13;;1790:87;:::o;28476:100::-;2021:12;:10;:12::i;:::-;2010:23;;:7;:5;:7::i;:::-;:23;;;2002:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;28561:7:::1;28547:11;;:21;;;;;;;;;;;;;;;;;;28476:100:::0;:::o;8748:104::-;8804:13;8837:7;8830:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8748:104;:::o;10160:175::-;10246:4;10263:42;10273:12;:10;:12::i;:::-;10287:9;10298:6;10263:9;:42::i;:::-;10323:4;10316:11;;10160:175;;;;:::o;23831:33::-;;;;;;;;;;;;;:::o;29271:182::-;2021:12;:10;:12::i;:::-;2010:23;;:7;:5;:7::i;:::-;:23;;;2002:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29387:8:::1;29356:19;:28;29376:7;29356:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;29427:7;29411:34;;;29436:8;29411:34;;;;;;:::i;:::-;;;;;;;;29271:182:::0;;:::o;27949:256::-;2021:12;:10;:12::i;:::-;2010:23;;:7;:5;:7::i;:::-;:23;;;2002:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;28089:4:::1;28081;28076:1;28060:13;:11;:13::i;:::-;:17;;;;:::i;:::-;28059:26;;;;:::i;:::-;28058:35;;;;:::i;:::-;28048:6;:45;;28026:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;28190:6;28180;:17;;;;:::i;:::-;28168:9;:29;;;;27949:256:::0;:::o;23676:35::-;;;;:::o;27161:497::-;27269:4;2021:12;:10;:12::i;:::-;2010:23;;:7;:5;:7::i;:::-;:23;;;2002:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;27348:6:::1;27343:1;27327:13;:11;:13::i;:::-;:17;;;;:::i;:::-;27326:28;;;;:::i;:::-;27313:9;:41;;27291:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;27503:4;27498:1;27482:13;:11;:13::i;:::-;:17;;;;:::i;:::-;27481:26;;;;:::i;:::-;27468:9;:39;;27446:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;27619:9;27598:18;:30;;;;27646:4;27639:11;;27161:497:::0;;;:::o;23911:27::-;;;;:::o;10398:151::-;10487:7;10514:11;:18;10526:5;10514:18;;;;;;;;;;;;;;;:27;10533:7;10514:27;;;;;;;;;;;;;;;;10507:34;;10398:151;;;;:::o;23718:33::-;;;;:::o;23981:30::-;;;;:::o;2699:201::-;2021:12;:10;:12::i;:::-;2010:23;;:7;:5;:7::i;:::-;:23;;;2002:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2808:1:::1;2788:22;;:8;:22;;;;2780:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2864:28;2883:8;2864:18;:28::i;:::-;2699:201:::0;:::o;24092:31::-;;;;:::o;23758:24::-;;;;:::o;23528:71::-;;;;;;;;;;;;;:::o;657:98::-;710:7;737:10;730:17;;657:98;:::o;14188:380::-;14341:1;14324:19;;:5;:19;;;;14316:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14422:1;14403:21;;:7;:21;;;;14395:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14506:6;14476:11;:18;14488:5;14476:18;;;;;;;;;;;;;;;:27;14495:7;14476:27;;;;;;;;;;;;;;;:36;;;;14544:7;14528:32;;14537:5;14528:32;;;14553:6;14528:32;;;;;;:::i;:::-;;;;;;;;14188:380;;;:::o;29829:3704::-;29977:1;29961:18;;:4;:18;;;;29953:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30054:1;30040:16;;:2;:16;;;;30032:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;30123:1;30113:6;:11;30109:93;;;30141:28;30157:4;30163:2;30167:1;30141:15;:28::i;:::-;30184:7;;30109:93;30218:14;;;;;;;;;;;30214:1430;;;30279:7;:5;:7::i;:::-;30271:15;;:4;:15;;;;:49;;;;;30313:7;:5;:7::i;:::-;30307:13;;:2;:13;;;;30271:49;:86;;;;;30355:1;30341:16;;:2;:16;;;;30271:86;:128;;;;;30392:6;30378:21;;:2;:21;;;;30271:128;:158;;;;;30421:8;;;;;;;;;;;30420:9;30271:158;30249:1384;;;30469:13;;;;;;;;;;;30464:223;;30541:19;:25;30561:4;30541:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;30570:19;:23;30590:2;30570:23;;;;;;;;;;;;;;;;;;;;;;;;;30541:52;30507:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;30464:223;30901:13;30893:21;;:4;:21;;;:82;;;;;30940:31;:35;30972:2;30940:35;;;;;;;;;;;;;;;;;;;;;;;;;30939:36;30893:82;30867:751;;;31062:20;;31052:6;:30;;31018:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;31270:9;;31253:13;31263:2;31253:9;:13::i;:::-;31244:6;:22;;;;:::i;:::-;:35;;31210:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;30867:751;;;31398:31;:35;31430:2;31398:35;;;;;;;;;;;;;;;;;;;;;;;;;31393:225;;31518:9;;31501:13;31511:2;31501:9;:13::i;:::-;31492:6;:22;;;;:::i;:::-;:35;;31458:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;31393:225;30867:751;30249:1384;30214:1430;31656:28;31687:24;31705:4;31687:9;:24::i;:::-;31656:55;;31724:12;31763:18;;31739:20;:42;;31724:57;;31812:7;:35;;;;;31836:11;;;;;;;;;;;31812:35;:61;;;;;31865:8;;;;;;;;;;;31864:9;31812:61;:97;;;;;31896:13;31890:19;;:2;:19;;;31812:97;:140;;;;;31927:19;:25;31947:4;31927:25;;;;;;;;;;;;;;;;;;;;;;;;;31926:26;31812:140;:181;;;;;31970:19;:23;31990:2;31970:23;;;;;;;;;;;;;;;;;;;;;;;;;31969:24;31812:181;31794:313;;;32031:4;32020:8;;:15;;;;;;;;;;;;;;;;;;32052:10;:8;:10::i;:::-;32090:5;32079:8;;:16;;;;;;;;;;;;;;;;;;31794:313;32119:12;32135:8;;;;;;;;;;;32134:9;32119:24;;32245:19;:25;32265:4;32245:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;32274:19;:23;32294:2;32274:23;;;;;;;;;;;;;;;;;;;;;;;;;32245:52;32241:100;;;32324:5;32314:15;;32241:100;32353:12;32380:26;32421:25;32539:7;32535:945;;;32597:13;32591:19;;:2;:19;;;:40;;;;;32630:1;32614:13;;:17;32591:40;32587:603;;;32659:34;32689:3;32659:25;32670:13;;32659:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;32652:41;;32761:13;;32741:16;;32734:4;:23;;;;:::i;:::-;32733:41;;;;:::i;:::-;32712:62;;32840:13;;32821:15;;32814:4;:22;;;;:::i;:::-;32813:40;;;;:::i;:::-;32793:60;;32587:603;;;32923:13;32915:21;;:4;:21;;;:41;;;;;32955:1;32940:12;;:16;32915:41;32911:279;;;32984:33;33013:3;32984:24;32995:12;;32984:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;32977:40;;33084:12;;33065:15;;33058:4;:22;;;;:::i;:::-;33057:39;;;;:::i;:::-;33036:60;;33162:12;;33144:14;;33137:4;:21;;;;:::i;:::-;33136:38;;;;:::i;:::-;33116:58;;32911:279;32587:603;33216:1;33210:4;:7;33206:90;;;33238:42;33254:4;33268;33275;33238:15;:42::i;:::-;33206:90;33335:1;33314:18;:22;33310:128;;;33357:65;33381:4;33388:13;33403:18;33357:15;:65::i;:::-;33310:128;33464:4;33454:14;;;;;:::i;:::-;;;32535:945;33492:33;33508:4;33514:2;33518:6;33492:15;:33::i;:::-;29942:3591;;;;;;29829:3704;;;;:::o;3060:191::-;3134:16;3153:6;;;;;;;;;;;3134:25;;3179:8;3170:6;;:17;;;;;;;;;;;;;;;;;;3234:8;3203:40;;3224:8;3203:40;;;;;;;;;;;;3123:128;3060:191;:::o;12329:733::-;12487:1;12469:20;;:6;:20;;;;12461:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;12571:1;12550:23;;:9;:23;;;;12542:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;12626:47;12647:6;12655:9;12666:6;12626:20;:47::i;:::-;12686:21;12710:9;:17;12720:6;12710:17;;;;;;;;;;;;;;;;12686:41;;12763:6;12746:13;:23;;12738:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;12884:6;12868:13;:22;12848:9;:17;12858:6;12848:17;;;;;;;;;;;;;;;:42;;;;12936:6;12912:9;:20;12922:9;12912:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;12977:9;12960:35;;12969:6;12960:35;;;12988:6;12960:35;;;;;;:::i;:::-;;;;;;;;13008:46;13028:6;13036:9;13047:6;13008:19;:46::i;:::-;12450:612;12329:733;;;:::o;34147:347::-;34186:23;34212:24;34230:4;34212:9;:24::i;:::-;34186:50;;34270:1;34251:15;:20;34247:59;;;34288:7;;;34247:59;34361:2;34340:18;;:23;;;;:::i;:::-;34322:15;:41;34318:115;;;34419:2;34398:18;;:23;;;;:::i;:::-;34380:41;;34318:115;34445:41;34470:15;34445:24;:41::i;:::-;34175:319;34147:347;:::o;19320:98::-;19378:7;19409:1;19405;:5;;;;:::i;:::-;19398:12;;19320:98;;;;:::o;19719:::-;19777:7;19808:1;19804;:5;;;;:::i;:::-;19797:12;;19719:98;;;;:::o;15168:125::-;;;;:::o;15897:124::-;;;;:::o;33541:598::-;33675:21;33713:1;33699:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33675:40;;33744:4;33726;33731:1;33726:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;33770:11;;;;;;;;;;;33760:4;33765:1;33760:7;;;;;;;;:::i;:::-;;;;;;;:21;;;;;;;;;;;33794:62;33811:4;33826:15;33844:11;33794:8;:62::i;:::-;33895:15;:69;;;33979:11;34005:1;34057:4;34076:14;;;;;;;;;;;34105:15;33895:236;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33604:535;33541:598;:::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:329::-;4033:6;4082:2;4070:9;4061:7;4057:23;4053:32;4050:119;;;4088:79;;:::i;:::-;4050:119;4208:1;4233:53;4278:7;4269:6;4258:9;4254:22;4233:53;:::i;:::-;4223:63;;4179:117;3974:329;;;;:::o;4309:60::-;4337:3;4358:5;4351:12;;4309:60;;;:::o;4375:142::-;4425:9;4458:53;4476:34;4485:24;4503:5;4485:24;:::i;:::-;4476:34;:::i;:::-;4458:53;:::i;:::-;4445:66;;4375:142;;;:::o;4523:126::-;4573:9;4606:37;4637:5;4606:37;:::i;:::-;4593:50;;4523:126;;;:::o;4655:152::-;4731:9;4764:37;4795:5;4764:37;:::i;:::-;4751:50;;4655:152;;;:::o;4813:183::-;4926:63;4983:5;4926:63;:::i;:::-;4921:3;4914:76;4813:183;;:::o;5002:274::-;5121:4;5159:2;5148:9;5144:18;5136:26;;5172:97;5266:1;5255:9;5251:17;5242:6;5172:97;:::i;:::-;5002:274;;;;:::o;5282:118::-;5369:24;5387:5;5369:24;:::i;:::-;5364:3;5357:37;5282:118;;:::o;5406:222::-;5499:4;5537:2;5526:9;5522:18;5514:26;;5550:71;5618:1;5607:9;5603:17;5594:6;5550:71;:::i;:::-;5406:222;;;;:::o;5634:329::-;5693:6;5742:2;5730:9;5721:7;5717:23;5713:32;5710:119;;;5748:79;;:::i;:::-;5710:119;5868:1;5893:53;5938:7;5929:6;5918:9;5914:22;5893:53;:::i;:::-;5883:63;;5839:117;5634:329;;;;:::o;5969:619::-;6046:6;6054;6062;6111:2;6099:9;6090:7;6086:23;6082:32;6079:119;;;6117:79;;:::i;:::-;6079:119;6237:1;6262:53;6307:7;6298:6;6287:9;6283:22;6262:53;:::i;:::-;6252:63;;6208:117;6364:2;6390:53;6435:7;6426:6;6415:9;6411:22;6390:53;:::i;:::-;6380:63;;6335:118;6492:2;6518:53;6563:7;6554:6;6543:9;6539:22;6518:53;:::i;:::-;6508:63;;6463:118;5969:619;;;;;:::o;6594:86::-;6629:7;6669:4;6662:5;6658:16;6647:27;;6594:86;;;:::o;6686:112::-;6769:22;6785:5;6769:22;:::i;:::-;6764:3;6757:35;6686:112;;:::o;6804:214::-;6893:4;6931:2;6920:9;6916:18;6908:26;;6944:67;7008:1;6997:9;6993:17;6984:6;6944:67;:::i;:::-;6804:214;;;;:::o;7024:118::-;7111:24;7129:5;7111:24;:::i;:::-;7106:3;7099:37;7024:118;;:::o;7148:222::-;7241:4;7279:2;7268:9;7264:18;7256:26;;7292:71;7360:1;7349:9;7345:17;7336:6;7292:71;:::i;:::-;7148:222;;;;:::o;7376:116::-;7446:21;7461:5;7446:21;:::i;:::-;7439:5;7436:32;7426:60;;7482:1;7479;7472:12;7426:60;7376:116;:::o;7498:133::-;7541:5;7579:6;7566:20;7557:29;;7595:30;7619:5;7595:30;:::i;:::-;7498:133;;;;:::o;7637:468::-;7702:6;7710;7759:2;7747:9;7738:7;7734:23;7730:32;7727:119;;;7765:79;;:::i;:::-;7727:119;7885:1;7910:53;7955:7;7946:6;7935:9;7931:22;7910:53;:::i;:::-;7900:63;;7856:117;8012:2;8038:50;8080:7;8071:6;8060:9;8056:22;8038:50;:::i;:::-;8028:60;;7983:115;7637:468;;;;;:::o;8111:323::-;8167:6;8216:2;8204:9;8195:7;8191:23;8187:32;8184:119;;;8222:79;;:::i;:::-;8184:119;8342:1;8367:50;8409:7;8400:6;8389:9;8385:22;8367:50;:::i;:::-;8357:60;;8313:114;8111:323;;;;:::o;8440:474::-;8508:6;8516;8565:2;8553:9;8544:7;8540:23;8536:32;8533:119;;;8571:79;;:::i;:::-;8533:119;8691:1;8716:53;8761:7;8752:6;8741:9;8737:22;8716:53;:::i;:::-;8706:63;;8662:117;8818:2;8844:53;8889:7;8880:6;8869:9;8865:22;8844:53;:::i;:::-;8834:63;;8789:118;8440:474;;;;;:::o;8920:182::-;9060:34;9056:1;9048:6;9044:14;9037:58;8920:182;:::o;9108:366::-;9250:3;9271:67;9335:2;9330:3;9271:67;:::i;:::-;9264:74;;9347:93;9436:3;9347:93;:::i;:::-;9465:2;9460:3;9456:12;9449:19;;9108:366;;;:::o;9480:419::-;9646:4;9684:2;9673:9;9669:18;9661:26;;9733:9;9727:4;9723:20;9719:1;9708:9;9704:17;9697:47;9761:131;9887:4;9761:131;:::i;:::-;9753:139;;9480:419;;;:::o;9905:180::-;9953:77;9950:1;9943:88;10050:4;10047:1;10040:15;10074:4;10071:1;10064:15;10091:305;10131:3;10150:20;10168:1;10150:20;:::i;:::-;10145:25;;10184:20;10202:1;10184:20;:::i;:::-;10179:25;;10338:1;10270:66;10266:74;10263:1;10260:81;10257:107;;;10344:18;;:::i;:::-;10257:107;10388:1;10385;10381:9;10374:16;;10091:305;;;;:::o;10402:179::-;10542:31;10538:1;10530:6;10526:14;10519:55;10402:179;:::o;10587:366::-;10729:3;10750:67;10814:2;10809:3;10750:67;:::i;:::-;10743:74;;10826:93;10915:3;10826:93;:::i;:::-;10944:2;10939:3;10935:12;10928:19;;10587:366;;;:::o;10959:419::-;11125:4;11163:2;11152:9;11148:18;11140:26;;11212:9;11206:4;11202:20;11198:1;11187:9;11183:17;11176:47;11240:131;11366:4;11240:131;:::i;:::-;11232:139;;10959:419;;;:::o;11384:180::-;11432:77;11429:1;11422:88;11529:4;11526:1;11519:15;11553:4;11550:1;11543:15;11570:320;11614:6;11651:1;11645:4;11641:12;11631:22;;11698:1;11692:4;11688:12;11719:18;11709:81;;11775:4;11767:6;11763:17;11753:27;;11709:81;11837:2;11829:6;11826:14;11806:18;11803:38;11800:84;;;11856:18;;:::i;:::-;11800:84;11621:269;11570:320;;;:::o;11896:348::-;11936:7;11959:20;11977:1;11959:20;:::i;:::-;11954:25;;11993:20;12011:1;11993:20;:::i;:::-;11988:25;;12181:1;12113:66;12109:74;12106:1;12103:81;12098:1;12091:9;12084:17;12080:105;12077:131;;;12188:18;;:::i;:::-;12077:131;12236:1;12233;12229:9;12218:20;;11896:348;;;;:::o;12250:180::-;12298:77;12295:1;12288:88;12395:4;12392:1;12385:15;12419:4;12416:1;12409:15;12436:185;12476:1;12493:20;12511:1;12493:20;:::i;:::-;12488:25;;12527:20;12545:1;12527:20;:::i;:::-;12522:25;;12566:1;12556:35;;12571:18;;:::i;:::-;12556:35;12613:1;12610;12606:9;12601:14;;12436:185;;;;:::o;12627:234::-;12767:34;12763:1;12755:6;12751:14;12744:58;12836:17;12831:2;12823:6;12819:15;12812:42;12627:234;:::o;12867:366::-;13009:3;13030:67;13094:2;13089:3;13030:67;:::i;:::-;13023:74;;13106:93;13195:3;13106:93;:::i;:::-;13224:2;13219:3;13215:12;13208:19;;12867:366;;;:::o;13239:419::-;13405:4;13443:2;13432:9;13428:18;13420:26;;13492:9;13486:4;13482:20;13478:1;13467:9;13463:17;13456:47;13520:131;13646:4;13520:131;:::i;:::-;13512:139;;13239:419;;;:::o;13664:227::-;13804:34;13800:1;13792:6;13788:14;13781:58;13873:10;13868:2;13860:6;13856:15;13849:35;13664:227;:::o;13897:366::-;14039:3;14060:67;14124:2;14119:3;14060:67;:::i;:::-;14053:74;;14136:93;14225:3;14136:93;:::i;:::-;14254:2;14249:3;14245:12;14238:19;;13897:366;;;:::o;14269:419::-;14435:4;14473:2;14462:9;14458:18;14450:26;;14522:9;14516:4;14512:20;14508:1;14497:9;14493:17;14486:47;14550:131;14676:4;14550:131;:::i;:::-;14542:139;;14269:419;;;:::o;14694:223::-;14834:34;14830:1;14822:6;14818:14;14811:58;14903:6;14898:2;14890:6;14886:15;14879:31;14694:223;:::o;14923:366::-;15065:3;15086:67;15150:2;15145:3;15086:67;:::i;:::-;15079:74;;15162:93;15251:3;15162:93;:::i;:::-;15280:2;15275:3;15271:12;15264:19;;14923:366;;;:::o;15295:419::-;15461:4;15499:2;15488:9;15484:18;15476:26;;15548:9;15542:4;15538:20;15534:1;15523:9;15519:17;15512:47;15576:131;15702:4;15576:131;:::i;:::-;15568:139;;15295:419;;;:::o;15720:240::-;15860:34;15856:1;15848:6;15844:14;15837:58;15929:23;15924:2;15916:6;15912:15;15905:48;15720:240;:::o;15966:366::-;16108:3;16129:67;16193:2;16188:3;16129:67;:::i;:::-;16122:74;;16205:93;16294:3;16205:93;:::i;:::-;16323:2;16318:3;16314:12;16307:19;;15966:366;;;:::o;16338:419::-;16504:4;16542:2;16531:9;16527:18;16519:26;;16591:9;16585:4;16581:20;16577:1;16566:9;16562:17;16555:47;16619:131;16745:4;16619:131;:::i;:::-;16611:139;;16338:419;;;:::o;16763:239::-;16903:34;16899:1;16891:6;16887:14;16880:58;16972:22;16967:2;16959:6;16955:15;16948:47;16763:239;:::o;17008:366::-;17150:3;17171:67;17235:2;17230:3;17171:67;:::i;:::-;17164:74;;17247:93;17336:3;17247:93;:::i;:::-;17365:2;17360:3;17356:12;17349:19;;17008:366;;;:::o;17380:419::-;17546:4;17584:2;17573:9;17569:18;17561:26;;17633:9;17627:4;17623:20;17619:1;17608:9;17604:17;17597:47;17661:131;17787:4;17661:131;:::i;:::-;17653:139;;17380:419;;;:::o;17805:225::-;17945:34;17941:1;17933:6;17929:14;17922:58;18014:8;18009:2;18001:6;17997:15;17990:33;17805:225;:::o;18036:366::-;18178:3;18199:67;18263:2;18258:3;18199:67;:::i;:::-;18192:74;;18275:93;18364:3;18275:93;:::i;:::-;18393:2;18388:3;18384:12;18377:19;;18036:366;;;:::o;18408:419::-;18574:4;18612:2;18601:9;18597:18;18589:26;;18661:9;18655:4;18651:20;18647:1;18636:9;18632:17;18625:47;18689:131;18815:4;18689:131;:::i;:::-;18681:139;;18408:419;;;:::o;18833:223::-;18973:34;18969:1;18961:6;18957:14;18950:58;19042:6;19037:2;19029:6;19025:15;19018:31;18833:223;:::o;19062:366::-;19204:3;19225:67;19289:2;19284:3;19225:67;:::i;:::-;19218:74;;19301:93;19390:3;19301:93;:::i;:::-;19419:2;19414:3;19410:12;19403:19;;19062:366;;;:::o;19434:419::-;19600:4;19638:2;19627:9;19623:18;19615:26;;19687:9;19681:4;19677:20;19673:1;19662:9;19658:17;19651:47;19715:131;19841:4;19715:131;:::i;:::-;19707:139;;19434:419;;;:::o;19859:221::-;19999:34;19995:1;19987:6;19983:14;19976:58;20068:4;20063:2;20055:6;20051:15;20044:29;19859:221;:::o;20086:366::-;20228:3;20249:67;20313:2;20308:3;20249:67;:::i;:::-;20242:74;;20325:93;20414:3;20325:93;:::i;:::-;20443:2;20438:3;20434:12;20427:19;;20086:366;;;:::o;20458:419::-;20624:4;20662:2;20651:9;20647:18;20639:26;;20711:9;20705:4;20701:20;20697:1;20686:9;20682:17;20675:47;20739:131;20865:4;20739:131;:::i;:::-;20731:139;;20458:419;;;:::o;20883:224::-;21023:34;21019:1;21011:6;21007:14;21000:58;21092:7;21087:2;21079:6;21075:15;21068:32;20883:224;:::o;21113:366::-;21255:3;21276:67;21340:2;21335:3;21276:67;:::i;:::-;21269:74;;21352:93;21441:3;21352:93;:::i;:::-;21470:2;21465:3;21461:12;21454:19;;21113:366;;;:::o;21485:419::-;21651:4;21689:2;21678:9;21674:18;21666:26;;21738:9;21732:4;21728:20;21724:1;21713:9;21709:17;21702:47;21766:131;21892:4;21766:131;:::i;:::-;21758:139;;21485:419;;;:::o;21910:222::-;22050:34;22046:1;22038:6;22034:14;22027:58;22119:5;22114:2;22106:6;22102:15;22095:30;21910:222;:::o;22138:366::-;22280:3;22301:67;22365:2;22360:3;22301:67;:::i;:::-;22294:74;;22377:93;22466:3;22377:93;:::i;:::-;22495:2;22490:3;22486:12;22479:19;;22138:366;;;:::o;22510:419::-;22676:4;22714:2;22703:9;22699:18;22691:26;;22763:9;22757:4;22753:20;22749:1;22738:9;22734:17;22727:47;22791:131;22917:4;22791:131;:::i;:::-;22783:139;;22510:419;;;:::o;22935:172::-;23075:24;23071:1;23063:6;23059:14;23052:48;22935:172;:::o;23113:366::-;23255:3;23276:67;23340:2;23335:3;23276:67;:::i;:::-;23269:74;;23352:93;23441:3;23352:93;:::i;:::-;23470:2;23465:3;23461:12;23454:19;;23113:366;;;:::o;23485:419::-;23651:4;23689:2;23678:9;23674:18;23666:26;;23738:9;23732:4;23728:20;23724:1;23713:9;23709:17;23702:47;23766:131;23892:4;23766:131;:::i;:::-;23758:139;;23485:419;;;:::o;23910:240::-;24050:34;24046:1;24038:6;24034:14;24027:58;24119:23;24114:2;24106:6;24102:15;24095:48;23910:240;:::o;24156:366::-;24298:3;24319:67;24383:2;24378:3;24319:67;:::i;:::-;24312:74;;24395:93;24484:3;24395:93;:::i;:::-;24513:2;24508:3;24504:12;24497:19;;24156:366;;;:::o;24528:419::-;24694:4;24732:2;24721:9;24717:18;24709:26;;24781:9;24775:4;24771:20;24767:1;24756:9;24752:17;24745:47;24809:131;24935:4;24809:131;:::i;:::-;24801:139;;24528:419;;;:::o;24953:169::-;25093:21;25089:1;25081:6;25077:14;25070:45;24953:169;:::o;25128:366::-;25270:3;25291:67;25355:2;25350:3;25291:67;:::i;:::-;25284:74;;25367:93;25456:3;25367:93;:::i;:::-;25485:2;25480:3;25476:12;25469:19;;25128:366;;;:::o;25500:419::-;25666:4;25704:2;25693:9;25689:18;25681:26;;25753:9;25747:4;25743:20;25739:1;25728:9;25724:17;25717:47;25781:131;25907:4;25781:131;:::i;:::-;25773:139;;25500:419;;;:::o;25925:191::-;25965:4;25985:20;26003:1;25985:20;:::i;:::-;25980:25;;26019:20;26037:1;26019:20;:::i;:::-;26014:25;;26058:1;26055;26052:8;26049:34;;;26063:18;;:::i;:::-;26049:34;26108:1;26105;26101:9;26093:17;;25925:191;;;;:::o;26122:225::-;26262:34;26258:1;26250:6;26246:14;26239:58;26331:8;26326:2;26318:6;26314:15;26307:33;26122:225;:::o;26353:366::-;26495:3;26516:67;26580:2;26575:3;26516:67;:::i;:::-;26509:74;;26592:93;26681:3;26592:93;:::i;:::-;26710:2;26705:3;26701:12;26694:19;;26353:366;;;:::o;26725:419::-;26891:4;26929:2;26918:9;26914:18;26906:26;;26978:9;26972:4;26968:20;26964:1;26953:9;26949:17;26942:47;27006:131;27132:4;27006:131;:::i;:::-;26998:139;;26725:419;;;:::o;27150:180::-;27198:77;27195:1;27188:88;27295:4;27292:1;27285:15;27319:4;27316:1;27309:15;27336:180;27384:77;27381:1;27374:88;27481:4;27478:1;27471:15;27505:4;27502:1;27495:15;27522:85;27567:7;27596:5;27585:16;;27522:85;;;:::o;27613:158::-;27671:9;27704:61;27722:42;27731:32;27757:5;27731:32;:::i;:::-;27722:42;:::i;:::-;27704:61;:::i;:::-;27691:74;;27613:158;;;:::o;27777:147::-;27872:45;27911:5;27872:45;:::i;:::-;27867:3;27860:58;27777:147;;:::o;27930:114::-;27997:6;28031:5;28025:12;28015:22;;27930:114;;;:::o;28050:184::-;28149:11;28183:6;28178:3;28171:19;28223:4;28218:3;28214:14;28199:29;;28050:184;;;;:::o;28240:132::-;28307:4;28330:3;28322:11;;28360:4;28355:3;28351:14;28343:22;;28240:132;;;:::o;28378:108::-;28455:24;28473:5;28455:24;:::i;:::-;28450:3;28443:37;28378:108;;:::o;28492:179::-;28561:10;28582:46;28624:3;28616:6;28582:46;:::i;:::-;28660:4;28655:3;28651:14;28637:28;;28492:179;;;;:::o;28677:113::-;28747:4;28779;28774:3;28770:14;28762:22;;28677:113;;;:::o;28826:732::-;28945:3;28974:54;29022:5;28974:54;:::i;:::-;29044:86;29123:6;29118:3;29044:86;:::i;:::-;29037:93;;29154:56;29204:5;29154:56;:::i;:::-;29233:7;29264:1;29249:284;29274:6;29271:1;29268:13;29249:284;;;29350:6;29344:13;29377:63;29436:3;29421:13;29377:63;:::i;:::-;29370:70;;29463:60;29516:6;29463:60;:::i;:::-;29453:70;;29309:224;29296:1;29293;29289:9;29284:14;;29249:284;;;29253:14;29549:3;29542:10;;28950:608;;;28826:732;;;;:::o;29564:831::-;29827:4;29865:3;29854:9;29850:19;29842:27;;29879:71;29947:1;29936:9;29932:17;29923:6;29879:71;:::i;:::-;29960:80;30036:2;30025:9;30021:18;30012:6;29960:80;:::i;:::-;30087:9;30081:4;30077:20;30072:2;30061:9;30057:18;30050:48;30115:108;30218:4;30209:6;30115:108;:::i;:::-;30107:116;;30233:72;30301:2;30290:9;30286:18;30277:6;30233:72;:::i;:::-;30315:73;30383:3;30372:9;30368:19;30359:6;30315:73;:::i;:::-;29564:831;;;;;;;;:::o

Swarm Source

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