ETH Price: $3,332.65 (-1.52%)
Gas: 21 Gwei

Token

Ethereum Rewards (ETHETFR)
 

Overview

Max Total Supply

26,000,000,000 ETHETFR

Holders

20

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
1,000,000,000 ETHETFR

Value
$0.00
0xf1b1d57db85c48ae2d895a192a42c7bf635ac0bc
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:
DividendTracker

Compiler Version
v0.8.22+commit.4fc1097e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-11-10
*/

/**
 *Submitted for verification at Etherscan.io on 2023-10-29
*/

/**

🚀 BlackRock Embraces Ethereum! 🚀

Hold on to your hats, ETH enthusiasts! The world's largest asset manager, BlackRock, is diving headfirst into Ethereum,
signaling a paradigm shift in the world of institutional investment. This monumental move by BlackRock isn't just a nod
of approval; it's a thunderous affirmation of Ethereum's undeniable potential and credibility in the financial landscape.

For ETH investors, this is nothing short of a dream come true. BlackRock's embrace of Ethereum is set to turbocharge
institutional interest, bringing a tidal wave of capital influx. As one of the most respected names in global finance,
BlackRock's move could open the floodgates for other institutional giants to join the ETH party.

Get ready, folks! Ethereum's already dazzling trajectory might just have found a new rocket booster. The future's bright,
and it's shimmering in Ether! ✨

ETHETF is a first legitimate ETH ETF (WETH) profit share program.

Ticker: ETHETF
Telegram: https://t.me/EthereumETFF
Website: https://ethetftoken.com/
X: https://twitter.com/ethetf23
Whitepaper: https://eth-eft-fund.gitbook.io/eth-etf-fund/

**/

pragma solidity ^0.8.19;
// SPDX-License-Identifier: Unlicensed
interface IERC20 {

    function totalSupply() external view returns (uint256);

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

    function transfer(address recipient, uint256 amount) external returns (bool);

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

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

    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);

    event Transfer(address indexed from, address indexed to, uint256 value);

    event Approval(address indexed owner, address indexed spender, uint256 value);
}


library SafeMathInt {
    int256 private constant MIN_INT256 = int256(1) << 255;
    int256 private constant MAX_INT256 = ~(int256(1) << 255);

    function mul(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a * b;
        // Detect overflow when multiplying MIN_INT256 with -1
        require(c != MIN_INT256 || (a & MIN_INT256) != (b & MIN_INT256));
        require((b == 0) || (c / b == a));
        return c;
    }

    function div(int256 a, int256 b) internal pure returns (int256) {
        // Prevent overflow when dividing MIN_INT256 by -1
        require(b != - 1 || a != MIN_INT256);
        // Solidity already throws when dividing by 0.
        return a / b;
    }

    function sub(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a - b;
        require((b >= 0 && c <= a) || (b < 0 && c > a));
        return c;
    }

    function add(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a + b;
        require((b >= 0 && c >= a) || (b < 0 && c < a));
        return c;
    }

    function abs(int256 a) internal pure returns (int256) {
        require(a != MIN_INT256);
        return a < 0 ? - a : a;
    }

    function toUint256Safe(int256 a) internal pure returns (uint256) {
        require(a >= 0);
        return uint256(a);
    }
}

library SafeMathUint {
    function toInt256Safe(uint256 a) internal pure returns (int256) {
        int256 b = int256(a);
        require(b >= 0);
        return b;
    }
}
/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */

library SafeMath {
    /**
     * @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) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @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 sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

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

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts 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) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts 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) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts 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 mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message 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, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

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

    function _msgData() internal view virtual returns (bytes memory) {
        this;
        // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}


/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // According to EIP-1052, 0x0 is the value returned for not-yet created accounts
        // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
        // for accounts without code, i.e. `keccak256('')`
        bytes32 codehash;
        bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
        // solhint-disable-next-line no-inline-assembly
        assembly {codehash := extcodehash(account)}
        return (codehash != accountHash && codehash != 0x0);
    }

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

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success,) = recipient.call{value : amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

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

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

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

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

    function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) {
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{value : weiValue}(data);
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

/**
 * @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.
 */
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 () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }

}

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

interface IUniswapV2Router02 {
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;

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

    function factory() external pure returns (address);

    function WETH() external pure returns (address);

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


contract EthETF is Context, IERC20, Ownable {
    using SafeMath for uint256;
    using Address for address;

    event HolderBuySell(address holder, string actionType, uint256 ethAmount, uint256 ethBalance);
    
    event SwapAndLiquifyEnabledUpdated(bool enabled);
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiqudity
    );

    modifier lockTheSwap {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }
    IUniswapV2Router02 public uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
    address public uniswapV2Pair = address(0);
    mapping(address => uint256) private _balances;
    mapping(address => mapping(address => uint256)) private _allowances;
    mapping(address => bool) private botWallets;
    mapping(address => bool) private _isExcludedFromFee;
    mapping(address => bool) private _isExcludedFromRewards;
    string private _name = "Ethereum ETF";
    string private _symbol = "ETHETF";
    uint8 private _decimals = 9;
    uint256 private _tTotal = 121_000_000 * 10 ** _decimals;
    bool inSwapAndLiquify;
    bool public swapAndLiquifyEnabled = true;
    uint256 public ethPriceToSwap = .4 ether;
    uint256 public highSellFeeSwapAmount = 2 ether;
    uint256 public _maxWalletAmount = 2_420_000 * 10 ** _decimals;
    address public ethETFshareAddress = 0x247c3B9401f43dc57462710537b6e6c1ec8b1b0D;
    address ethereumEtfBuybacksAddress = 0x6523A1D398f194F84cFB8d4E87FaA554A5335e8F;
    address public deadWallet = address(0xdead);
    uint256 public gasForProcessing = 50000;
    event ProcessedDividendTracker(uint256 iterations, uint256 claims, uint256 lastProcessedIndex, bool indexed automatic, uint256 gas, address indexed processor);
    event SendDividends(uint256 EthAmount);
    IterableMapping private holderBalanceMap = new IterableMapping();
    
    struct Distribution {
        uint256 ethETFshare;
        uint256 ethereumEtfBuybacks;
        uint256 ethETFDividend;
    }

    struct TaxFees {
        uint256 buyFee;
        uint256 sellFee;
        uint256 highSellFee;
    }

    TaxFees public taxFees;
    DividendTracker public dividendTracker;
    Distribution public distribution = Distribution(40,20,40);

    constructor () {
        _balances[_msgSender()] = _tTotal;
        _isExcludedFromFee[owner()] = true;
        _isExcludedFromRewards[owner()] = true;
        _isExcludedFromRewards[deadWallet] = true;
        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH());
        _isExcludedFromRewards[uniswapV2Pair] = true;
        taxFees = TaxFees(6, 6, 8);
        emit Transfer(address(0), _msgSender(), _tTotal);
    }

    function name() public view returns (string memory) {
        return _name;
    }

    function symbol() public view returns (string memory) {
        return _symbol;
    }

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

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

    function balanceOf(address account) public view override returns (uint256) {
        return _balances[account];
    }

    function transfer(address recipient, uint256 amount) public override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    function allowance(address owner, address spender) public view override returns (uint256) {
        return _allowances[owner][spender];
    }

    function approve(address spender, uint256 amount) public override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        return true;
    }

    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

    function ethHolderBalance(address account) public view returns (uint) {
        return holderBalanceMap.get(account);
    }
    function setMaxWalletAmount(uint256 maxWalletAmount) external onlyOwner() {
        _maxWalletAmount = maxWalletAmount * 10 ** 9;
    }

    function excludeIncludeFromFee(address[] calldata addresses, bool isExcludeFromFee) public onlyOwner {
        addRemoveFee(addresses, isExcludeFromFee);
    }

    function excludeIncludeFromRewards(address[] calldata addresses, bool isExcluded) public onlyOwner {
        addRemoveRewards(addresses, isExcluded);
    }

    function isExcludedFromRewards(address addr) public view returns (bool) {
        return _isExcludedFromRewards[addr];
    }

    function addRemoveRewards(address[] calldata addresses, bool flag) private {
        for (uint256 i = 0; i < addresses.length; i++) {
            address addr = addresses[i];
            _isExcludedFromRewards[addr] = flag;
        }
    }

    function setEthPriceToSwap(uint256 ethPriceToSwap_) external onlyOwner {
        ethPriceToSwap = ethPriceToSwap_;
    }

    function setHighSellFeeSwapAmount(uint256 ethAmount) external onlyOwner {
        highSellFeeSwapAmount = ethAmount;
    }

    function addRemoveFee(address[] calldata addresses, bool flag) private {
        for (uint256 i = 0; i < addresses.length; i++) {
            address addr = addresses[i];
            _isExcludedFromFee[addr] = flag;
        }
    }

    function setTaxFees(uint256 buyFee, uint256 sellFee, uint256 highSellFee) external onlyOwner {
        taxFees.buyFee = buyFee;
        taxFees.sellFee = sellFee;
        taxFees.highSellFee = highSellFee;
    }

    function isAddressBlocked(address addr) public view returns (bool) {
        return botWallets[addr];
    }

    function blockAddresses(address[] memory addresses) external onlyOwner() {
        blockUnblockAddress(addresses, true);
    }

    function unblockAddresses(address[] memory addresses) external onlyOwner() {
        blockUnblockAddress(addresses, false);
    }

    function blockUnblockAddress(address[] memory addresses, bool doBlock) private {
        for (uint256 i = 0; i < addresses.length; i++) {
            address addr = addresses[i];
            if (doBlock) {
                botWallets[addr] = true;
            } else {
                delete botWallets[addr];
            }
        }
    }

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

    receive() external payable {}

    function getTokenAmountByEthPrice() public view returns (uint256)  {
        address[] memory path = new address[](2);
        path[0] = uniswapV2Router.WETH();
        path[1] = address(this);
        return uniswapV2Router.getAmountsOut(ethPriceToSwap, path)[1];
    }

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

    function _approve(address owner, address spender, uint256 amount) private {
        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);
    }

    function _transfer(address from, address to, uint256 amount) private {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");
        bool takeFees = !_isExcludedFromFee[from] && !_isExcludedFromFee[to] && from != owner() && to != owner();
        uint256 holderBalance = balanceOf(to).add(amount);
        uint256 taxAmount = 0;
        //block the bots, but allow them to transfer to dead wallet if they are blocked
        if (from != owner() && to != owner() && to != deadWallet && from != address(this) && to != address(this)) {
            require(!botWallets[from] && !botWallets[to], "bots are not allowed to sell or transfer tokens");

            if (from == uniswapV2Pair) {
                require(holderBalance <= _maxWalletAmount, "Wallet cannot exceed max Wallet limit");
                taxAmount = takeFees ? amount.mul(taxFees.buyFee).div(100) :  0;
                uint ethBuy = getEthValueFromTokens(amount);
                uint newBalance = holderBalanceMap.get(to).add(ethBuy);
                holderBalanceMap.set(to, newBalance);
                emit HolderBuySell(to, "BUY", ethBuy,  newBalance);
            }
            if (from != uniswapV2Pair && to == uniswapV2Pair) {
                taxAmount = takeFees ? amount.mul(taxFees.sellFee).div(100) : 0;
                uint ethSell = getEthValueFromTokens(amount);
                if(taxAmount > 0 && ethSell > highSellFeeSwapAmount) {
                    taxAmount = taxFees.highSellFee;
                }
                int val = int(holderBalanceMap.get(from)) - int(ethSell);
                uint256 newBalance = val <= 0 ? 0 : uint256(val);
                holderBalanceMap.set(from, newBalance);
                emit HolderBuySell(from, "SELL", ethSell,  newBalance);
                swapTokens();
            }
            if (from != uniswapV2Pair && to != uniswapV2Pair) {
                require(holderBalance <= _maxWalletAmount, "Wallet cannot exceed max Wallet limit");
            }

            try dividendTracker.setTokenBalance(from) {} catch{}
            try dividendTracker.setTokenBalance(to) {} catch{}
            try dividendTracker.process(gasForProcessing) returns (uint256 iterations, uint256 claims, uint256 lastProcessedIndex) {
                emit ProcessedDividendTracker(iterations, claims, lastProcessedIndex, true, gasForProcessing, tx.origin);
            }catch {}
        }
        uint256 transferAmount = amount.sub(taxAmount);
        _balances[from] = _balances[from].sub(amount);
        _balances[to] = _balances[to].add(transferAmount);
        _balances[address(this)] = _balances[address(this)].add(taxAmount);
        emit Transfer(from, to, amount);
    }

    function airDrops(address[] calldata holders, uint256[] calldata amounts) external onlyOwner {
        require(holders.length == amounts.length, "Holders and amounts must be the same count");
        address from = _msgSender();
        for(uint256 i=0; i < holders.length; i++) {
            address to = holders[i];
            uint256 amount = amounts[i];
            _balances[from] = _balances[from].sub(amount);
            _balances[to] = _balances[to].add(amount);
            emit Transfer(from, to, amount);
        }
    }

    function swapTokens() private {
        uint256 contractTokenBalance = balanceOf(address(this));
        if (contractTokenBalance > 0) {
            uint256 tokenAmount = getTokenAmountByEthPrice();
            if (contractTokenBalance >= tokenAmount && !inSwapAndLiquify && swapAndLiquifyEnabled) {
                //send eth to wallets investment and dev
                swapTokensForEth(tokenAmount);
                distributeShares();
            }
        }
    }

    function getEthValueFromTokens(uint tokenAmount) public view returns (uint)  {
        address[] memory path = new address[](2);
        path[0] = uniswapV2Router.WETH();
        path[1] = address(this);
        return uniswapV2Router.getAmountsIn(tokenAmount, path)[0];
    }

    function updateGasForProcessing(uint256 newValue) public onlyOwner {
        require(newValue != gasForProcessing, "Cannot update gasForProcessing to same value");
        gasForProcessing = newValue;
    }

    function distributeShares() private lockTheSwap {
        uint256 ethBalance = address(this).balance;
        uint256 ethETFshare = ethBalance.mul(distribution.ethETFshare).div(100);
        uint256 ethereumEtfBuybacks = ethBalance.mul(distribution.ethereumEtfBuybacks).div(100);
        uint256 ethETFDividend = ethBalance.mul(distribution.ethETFDividend).div(100);
        
        payable(ethETFshareAddress).transfer(ethETFshare);
        payable(ethereumEtfBuybacksAddress).transfer(ethereumEtfBuybacks);
        sendEthDividends(ethETFDividend);
    }

    function manualSwap() external {
        uint256 contractTokenBalance = balanceOf(address(this));
        if (contractTokenBalance > 0) {
            if (!inSwapAndLiquify) {
                swapTokensForEth(contractTokenBalance);
                distributeShares();
            }
        }
    }

    function setDistribution(uint256 ethETFshare, uint256 ethereumEtfBuybacks, uint256 ethETFDividend) external onlyOwner {
        distribution.ethETFshare = ethETFshare;
        distribution.ethereumEtfBuybacks = ethereumEtfBuybacks;
        distribution.ethETFDividend = ethETFDividend;
    }

    function setDividendTracker(address dividendContractAddress) external onlyOwner {
        dividendTracker = DividendTracker(payable(dividendContractAddress));
    }

    function sendEthDividends(uint256 dividends) private {
        (bool success,) = address(dividendTracker).call{value : dividends}("");
        if (success) {
            emit SendDividends(dividends);
        }
    }

    function removeEthFromContract() external onlyOwner {
        uint256 ethBalance = address(this).balance;
        payable(owner()).transfer(ethBalance);
    }

    function swapTokensForEth(uint256 tokenAmount) private {
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();
        _approve(address(this), address(uniswapV2Router), tokenAmount);
        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
    }
}

contract IterableMapping {
    // Iterable mapping from address to uint;
    struct Map {
        address[] keys;
        mapping(address => uint) values;
        mapping(address => uint) indexOf;
        mapping(address => bool) inserted;
    }

    Map private map;

    function get(address key) public view returns (uint) {
        return map.values[key];
    }

    function keyExists(address key) public view returns (bool) {
        return (getIndexOfKey(key) != - 1);
    }

    function getIndexOfKey(address key) public view returns (int) {
        if (!map.inserted[key]) {
            return - 1;
        }
        return int(map.indexOf[key]);
    }

    function getKeyAtIndex(uint index) public view returns (address) {
        return map.keys[index];
    }

    function size() public view returns (uint) {
        return map.keys.length;
    }

    function set(address key, uint val) public {
        if (map.inserted[key]) {
            map.values[key] = val;
        } else {
            map.inserted[key] = true;
            map.values[key] = val;
            map.indexOf[key] = map.keys.length;
            map.keys.push(key);
        }
    }

    function remove(address key) public {
        if (!map.inserted[key]) {
            return;
        }
        delete map.inserted[key];
        delete map.values[key];
        uint index = map.indexOf[key];
        uint lastIndex = map.keys.length - 1;
        address lastKey = map.keys[lastIndex];
        map.indexOf[lastKey] = index;
        delete map.indexOf[key];
        map.keys[index] = lastKey;
        map.keys.pop();
    }
}

contract DividendTracker is IERC20, Context, Ownable {
    using SafeMath for uint256;
    using SafeMathUint for uint256;
    using SafeMathInt for int256;
    uint256 constant internal magnitude = 2 ** 128;
    uint256 internal magnifiedDividendPerShare;
    mapping(address => int256) internal magnifiedDividendCorrections;
    mapping(address => uint256) internal withdrawnDividends;
    mapping(address => uint256) internal claimedDividends;
    mapping(address => uint256) private _balances;
    mapping(address => mapping(address => uint256)) private _allowances;
    uint256 private _totalSupply;
    string private _name = "Ethereum Rewards";
    string private _symbol = "ETHETFR";
    uint8 private _decimals = 9;
    uint256 public totalDividendsDistributed;
    IterableMapping private tokenHoldersMap = new IterableMapping();
    EthETF private ethETF;

    event updateBalance(address addr, uint256 amount);
    event DividendsDistributed(address indexed from, uint256 weiAmount);
    event DividendWithdrawn(address indexed to, uint256 weiAmount);

    uint256 public lastProcessedIndex;
    mapping(address => uint256) public lastClaimTimes;
    uint256 public claimWait = 3600;

    event ExcludeFromDividends(address indexed account);
    event ClaimWaitUpdated(uint256 indexed newValue, uint256 indexed oldValue);
    event Claim(address indexed account, uint256 amount, bool indexed automatic);
    IUniswapV2Router02 uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
    IERC20 public ethETFToken = IERC20(0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2); //Ether

    struct ETFDividendTiers {
        uint VIP;
        uint Vitalik;
        uint Elon_Musk;
        uint GigaChad;
        uint SBF;
    }
    ETFDividendTiers public etfDividendTiers;
    constructor() {

        etfDividendTiers = ETFDividendTiers(
            10 ether,
            2 ether,
            1 ether,
            0.5 ether,
            0.25 ether);
    }

    function name() public view returns (string memory) {
        return _name;
    }

    function symbol() public view returns (string memory) {
        return _symbol;
    }

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

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

    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    function getETFTier(uint256 amount) public view returns (uint, string memory) {
        uint tierLevel = 0;
        string memory tier = "Not Eligible";
        if(amount >= etfDividendTiers.SBF) {
            tierLevel = 1 ether;
            tier = "SBF";
        } 
        if(amount >= etfDividendTiers.GigaChad) {
            tierLevel = 3 ether;
            tier = "GigaChad";
        } 
        if(amount >= etfDividendTiers.Elon_Musk) {
            tierLevel = 5 ether;
            tier = "Elon Musk";
        } 
        if(amount >= etfDividendTiers.Vitalik) {
            tierLevel = 10 ether;
            tier = "Vitalik";
        } 
        if(amount >= etfDividendTiers.VIP) {
            tierLevel = 70 ether;
            tier = "VIP";
        } 
        return (tierLevel, tier);
    }

    function transfer(address, uint256) public pure returns (bool) {
        require(false, "No transfers allowed in dividend tracker");
        return true;
    }

    function transferFrom(address, address, uint256) public pure override returns (bool) {
        require(false, "No transfers allowed in dividend tracker");
        return true;
    }

    function allowance(address owner, address spender) public view override returns (uint256) {
        return _allowances[owner][spender];
    }

    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        return true;
    }

    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

    function _approve(address owner, address spender, uint256 amount) private {
        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);
    }

    function setTokenBalance(address account) public {
        uint256 balance = ethETF.ethHolderBalance(account);
        if (!ethETF.isExcludedFromRewards(account)) {
            (uint tierLevel,) = getETFTier(balance);
            if (tierLevel > 0) {
                _setBalance(account, tierLevel);
                tokenHoldersMap.set(account, tierLevel);
            }
            else {
                _setBalance(account, 0);
                tokenHoldersMap.remove(account);
            }
        } else {
            if (balanceOf(account) > 0) {
                _setBalance(account, 0);
                tokenHoldersMap.remove(account);
            }
        }
        processAccount(payable(account), true);
    }

    function updateTokenBalances(address[] memory accounts) external {
        uint256 index = 0;
        while (index < accounts.length) {
            setTokenBalance(accounts[index]);
            index += 1;
        }
    }

    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");
        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
        magnifiedDividendCorrections[account] = magnifiedDividendCorrections[account]
        .sub((magnifiedDividendPerShare.mul(amount)).toInt256Safe());
    }

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

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);

        magnifiedDividendCorrections[account] = magnifiedDividendCorrections[account]
        .add((magnifiedDividendPerShare.mul(amount)).toInt256Safe());
    }

    receive() external payable {
        distributeDividends();
    }

    function setERC20Contract(address contractAddr) external onlyOwner {
        ethETF = EthETF(payable(contractAddr));
    }

    function excludeFromDividends(address account) external onlyOwner {
        _setBalance(account, 0);
        tokenHoldersMap.remove(account);
        emit ExcludeFromDividends(account);
    }

    function distributeDividends() public payable {
        require(totalSupply() > 0);
        uint256 initialBalance = ethETFToken.balanceOf(address(this));
        swapEthForEthETF(msg.value);
        uint256 newBalance = ethETFToken.balanceOf(address(this)).sub(initialBalance);
        if (newBalance > 0) {
            magnifiedDividendPerShare = magnifiedDividendPerShare.add(
                (newBalance).mul(magnitude) / totalSupply()
            );
            emit DividendsDistributed(msg.sender, newBalance);
            totalDividendsDistributed = totalDividendsDistributed.add(newBalance);
        }
    }

    function swapEthForEthETF(uint256 ethAmount) public {
        // generate the uniswap pair path of weth -> eth
        address[] memory path = new address[](2);
        path[0] = uniswapV2Router.WETH();
        path[1] = address(ethETFToken);

        // make the swap
        uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value : ethAmount}(
            0, // accept any amount of Ethereum
            path,
            address(this),
            block.timestamp
        );
    }


    function withdrawDividend() public virtual {
        _withdrawDividendOfUser(payable(msg.sender));
    }

    function _withdrawDividendOfUser(address payable user) internal returns (uint256) {
        uint256 _withdrawableDividend = withdrawableDividendOf(user);
        if (_withdrawableDividend > 0) {
            withdrawnDividends[user] = withdrawnDividends[user].add(_withdrawableDividend);
            emit DividendWithdrawn(user, _withdrawableDividend);
            ethETFToken.transfer(user, _withdrawableDividend);
            return _withdrawableDividend;
        }
        return 0;
    }

    function dividendOf(address _owner) public view returns (uint256) {
        return withdrawableDividendOf(_owner);
    }

    function withdrawableDividendOf(address _owner) public view returns (uint256) {
        return accumulativeDividendOf(_owner).sub(withdrawnDividends[_owner]);
    }

    function withdrawnDividendOf(address _owner) public view returns (uint256) {
        return withdrawnDividends[_owner];
    }

    function accumulativeDividendOf(address _owner) public view returns (uint256) {
        return magnifiedDividendPerShare.mul(balanceOf(_owner)).toInt256Safe()
        .add(magnifiedDividendCorrections[_owner]).toUint256Safe() / magnitude;
    }


    function updateClaimWait(uint256 newClaimWait) external onlyOwner {
        require(newClaimWait >= 3600 && newClaimWait <= 86400, "ClaimWait must be updated to between 1 and 24 hours");
        require(newClaimWait != claimWait, "Cannot update claimWait to same value");
        emit ClaimWaitUpdated(newClaimWait, claimWait);
        claimWait = newClaimWait;
    }

    function getLastProcessedIndex() external view returns (uint256) {
        return lastProcessedIndex;
    }

    function getNumberOfTokenHolders() external view returns (uint256) {
        return tokenHoldersMap.size();
    }

    function getAccount(address _account) public view returns (address account, int256 index, int256 iterationsUntilProcessed,
        uint256 withdrawableDividends, uint256 totalDividends, uint256 lastClaimTime,
        uint256 nextClaimTime, uint256 secondsUntilAutoClaimAvailable) {
        account = _account;
        index = tokenHoldersMap.getIndexOfKey(account);
        iterationsUntilProcessed = - 1;
        if (index >= 0) {
            if (uint256(index) > lastProcessedIndex) {
                iterationsUntilProcessed = index.sub(int256(lastProcessedIndex));
            }
            else {
                uint256 processesUntilEndOfArray = tokenHoldersMap.size() > lastProcessedIndex ?
                tokenHoldersMap.size().sub(lastProcessedIndex) : 0;
                iterationsUntilProcessed = index.add(int256(processesUntilEndOfArray));
            }
        }
        withdrawableDividends = withdrawableDividendOf(account);
        totalDividends = accumulativeDividendOf(account);
        lastClaimTime = lastClaimTimes[account];
        nextClaimTime = lastClaimTime > 0 ? lastClaimTime.add(claimWait) : 0;
        secondsUntilAutoClaimAvailable = nextClaimTime > block.timestamp ? nextClaimTime.sub(block.timestamp) : 0;
    }

    function canAutoClaim(uint256 lastClaimTime) private view returns (bool) {
        if (lastClaimTime > block.timestamp) {
            return false;
        }
        return block.timestamp.sub(lastClaimTime) >= claimWait;
    }

    function _setBalance(address account, uint256 newBalance) internal {
        uint256 currentBalance = balanceOf(account);
        if (newBalance > currentBalance) {
            uint256 mintAmount = newBalance.sub(currentBalance);
            _mint(account, mintAmount);
        } else if (newBalance < currentBalance) {
            uint256 burnAmount = currentBalance.sub(newBalance);
            _burn(account, burnAmount);
        }
    }

    function process(uint256 gas) public returns (uint256, uint256, uint256) {
        uint256 numberOfTokenHolders = tokenHoldersMap.size();

        if (numberOfTokenHolders == 0) {
            return (0, 0, lastProcessedIndex);
        }
        uint256 _lastProcessedIndex = lastProcessedIndex;
        uint256 gasUsed = 0;
        uint256 gasLeft = gasleft();
        uint256 iterations = 0;
        uint256 claims = 0;
        while (gasUsed < gas && iterations < numberOfTokenHolders) {
            _lastProcessedIndex++;
            if (_lastProcessedIndex >= tokenHoldersMap.size()) {
                _lastProcessedIndex = 0;
            }
            address account = tokenHoldersMap.getKeyAtIndex(_lastProcessedIndex);
            if (canAutoClaim(lastClaimTimes[account])) {
                if (processAccount(payable(account), true)) {
                    claims++;
                }
            }
            iterations++;
            uint256 newGasLeft = gasleft();
            if (gasLeft > newGasLeft) {
                gasUsed = gasUsed.add(gasLeft.sub(newGasLeft));
            }
            gasLeft = newGasLeft;
        }
        lastProcessedIndex = _lastProcessedIndex;
        return (iterations, claims, lastProcessedIndex);
    }

    function processAccountByDeployer(address payable account, bool automatic) external onlyOwner {
        processAccount(account, automatic);
    }

    function totalDividendClaimed(address account) public view returns (uint256) {
        return claimedDividends[account];
    }

    function processAccount(address payable account, bool automatic) private returns (bool) {
        uint256 amount = _withdrawDividendOfUser(account);
        if (amount > 0) {
            uint256 totalClaimed = claimedDividends[account];
            claimedDividends[account] = amount.add(totalClaimed);
            lastClaimTimes[account] = block.timestamp;
            emit Claim(account, amount, automatic);
            return true;
        }
        return false;
    }

    //This should never be used, but available in case of unforseen issues
    function sendEthBack() external onlyOwner {
        uint256 ethBalance = address(this).balance;
        payable(owner()).transfer(ethBalance);
    }

    //This should never be used, but available in case of unforseen issues
    function sendEthETFBack() external onlyOwner {
        uint256 ethETFBalance = ethETFToken.balanceOf(address(this));
        ethETFToken.transfer(owner(), ethETFBalance);
    }

}

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":"uint256","name":"amount","type":"uint256"},{"indexed":true,"internalType":"bool","name":"automatic","type":"bool"}],"name":"Claim","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"newValue","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"oldValue","type":"uint256"}],"name":"ClaimWaitUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"weiAmount","type":"uint256"}],"name":"DividendWithdrawn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"weiAmount","type":"uint256"}],"name":"DividendsDistributed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"ExcludeFromDividends","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":false,"internalType":"address","name":"addr","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"updateBalance","type":"event"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"accumulativeDividendOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimWait","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"distributeDividends","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"dividendOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"etfDividendTiers","outputs":[{"internalType":"uint256","name":"VIP","type":"uint256"},{"internalType":"uint256","name":"Vitalik","type":"uint256"},{"internalType":"uint256","name":"Elon_Musk","type":"uint256"},{"internalType":"uint256","name":"GigaChad","type":"uint256"},{"internalType":"uint256","name":"SBF","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ethETFToken","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromDividends","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"getAccount","outputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"int256","name":"index","type":"int256"},{"internalType":"int256","name":"iterationsUntilProcessed","type":"int256"},{"internalType":"uint256","name":"withdrawableDividends","type":"uint256"},{"internalType":"uint256","name":"totalDividends","type":"uint256"},{"internalType":"uint256","name":"lastClaimTime","type":"uint256"},{"internalType":"uint256","name":"nextClaimTime","type":"uint256"},{"internalType":"uint256","name":"secondsUntilAutoClaimAvailable","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"getETFTier","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getLastProcessedIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getNumberOfTokenHolders","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"lastClaimTimes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastProcessedIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"gas","type":"uint256"}],"name":"process","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"},{"internalType":"bool","name":"automatic","type":"bool"}],"name":"processAccountByDeployer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sendEthBack","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sendEthETFBack","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"contractAddr","type":"address"}],"name":"setERC20Contract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"setTokenBalance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"ethAmount","type":"uint256"}],"name":"swapEthForEthETF","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"totalDividendClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalDividendsDistributed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newClaimWait","type":"uint256"}],"name":"updateClaimWait","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"}],"name":"updateTokenBalances","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawDividend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"withdrawableDividendOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"withdrawnDividendOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526040518060400160405280601081526020017f457468657265756d205265776172647300000000000000000000000000000000815250600890816200004a919062000580565b506040518060400160405280600781526020017f45544845544652000000000000000000000000000000000000000000000000008152506009908162000091919062000580565b506009600a5f6101000a81548160ff021916908360ff160217905550604051620000bb906200030e565b604051809103905ff080158015620000d5573d5f803e3d5ffd5b50600c5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610e10601055737a250d5630b4cf539739df2c5dacb4c659f2488d60115f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc260125f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620001cf575f80fd5b505f620001e16200030760201b60201c565b9050805f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506040518060a00160405280678ac7230489e800008152602001671bc16d674ec800008152602001670de0b6b3a764000081526020016706f05b59d3b2000081526020016703782dace9d9000081525060135f820151815f01556020820151816001015560408201518160020155606082015181600301556080820151816004015590505062000664565b5f33905090565b610a968062004f5683390190565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200039857607f821691505b602082108103620003ae57620003ad62000353565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620004127fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620003d5565b6200041e8683620003d5565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f62000468620004626200045c8462000436565b6200043f565b62000436565b9050919050565b5f819050919050565b620004838362000448565b6200049b62000492826200046f565b848454620003e1565b825550505050565b5f90565b620004b1620004a3565b620004be81848462000478565b505050565b5b81811015620004e557620004d95f82620004a7565b600181019050620004c4565b5050565b601f8211156200053457620004fe81620003b4565b6200050984620003c6565b8101602085101562000519578190505b620005316200052885620003c6565b830182620004c3565b50505b505050565b5f82821c905092915050565b5f620005565f198460080262000539565b1980831691505092915050565b5f62000570838362000545565b9150826002028217905092915050565b6200058b826200031c565b67ffffffffffffffff811115620005a757620005a662000326565b5b620005b3825462000380565b620005c0828285620004e9565b5f60209050601f831160018114620005f6575f8415620005e1578287015190505b620005ed858262000563565b8655506200065c565b601f1984166200060686620003b4565b5f5b828110156200062f5784890151825560018201915060208501945060208101905062000608565b868310156200064f57848901516200064b601f89168262000545565b8355505b6001600288020188555050505b505050505050565b6148e480620006725f395ff3fe608060405260043610610249575f3560e01c80637db93b7d11610138578063a9059cbb116100b5578063e0fb0f3511610079578063e0fb0f35146108b3578063e7841ec0146108c9578063e98030c7146108f3578063f2fde38b1461091b578063fbcbc0f114610943578063ffb2c4791461098657610258565b8063a9059cbb146107a9578063aafd847a146107e5578063bcb4691614610821578063cac8d5381461084f578063dd62ed3e1461087757610258565b80638da5cb5b116100fc5780638da5cb5b146106a157806391b89fba146106cb57806395d89b4114610707578063a457c2d714610731578063a8b9d2401461076d57610258565b80637db93b7d146105c1578063804974ea146105eb57806385a6b3ae1461062757806389774282146106515780638ac1320e1461067957610258565b806331e79db0116101c65780636a4740021161018a5780636a474002146105195780636f2789ec1461052f57806370a0823114610559578063715018a614610595578063721e20dd146105ab57610258565b806331e79db01461042857806339509351146104505780633974d3b11461048c5780634b1727ff146104b45780635f9d7cb6146104dc57610258565b8063226cfa3d1161020d578063226cfa3d1461032057806323b872dd1461035c57806327ce0147146103985780633009a609146103d4578063313ce567146103fe57610258565b806303c833021461025c57806306fdde0314610266578063095ea7b31461029057806309bbedde146102cc57806318160ddd146102f657610258565b36610258576102566109c4565b005b5f80fd5b6102646109c4565b005b348015610271575f80fd5b5061027a610bef565b6040516102879190613705565b60405180910390f35b34801561029b575f80fd5b506102b660048036038101906102b191906137c3565b610c7f565b6040516102c3919061381b565b60405180910390f35b3480156102d7575f80fd5b506102e0610c9c565b6040516102ed9190613843565b60405180910390f35b348015610301575f80fd5b5061030a610d30565b6040516103179190613843565b60405180910390f35b34801561032b575f80fd5b506103466004803603810190610341919061385c565b610d39565b6040516103539190613843565b60405180910390f35b348015610367575f80fd5b50610382600480360381019061037d9190613887565b610d4e565b60405161038f919061381b565b60405180910390f35b3480156103a3575f80fd5b506103be60048036038101906103b9919061385c565b610d9a565b6040516103cb9190613843565b60405180910390f35b3480156103df575f80fd5b506103e8610e3a565b6040516103f59190613843565b60405180910390f35b348015610409575f80fd5b50610412610e40565b60405161041f91906138f2565b60405180910390f35b348015610433575f80fd5b5061044e6004803603810190610449919061385c565b610e55565b005b34801561045b575f80fd5b50610476600480360381019061047191906137c3565b610fc0565b604051610483919061381b565b60405180910390f35b348015610497575f80fd5b506104b260048036038101906104ad919061385c565b61106e565b005b3480156104bf575f80fd5b506104da60048036038101906104d59190613a4b565b61139f565b005b3480156104e7575f80fd5b5061050260048036038101906104fd9190613a92565b6113e5565b604051610510929190613abd565b60405180910390f35b348015610524575f80fd5b5061052d6115bf565b005b34801561053a575f80fd5b506105436115cb565b6040516105509190613843565b60405180910390f35b348015610564575f80fd5b5061057f600480360381019061057a919061385c565b6115d1565b60405161058c9190613843565b60405180910390f35b3480156105a0575f80fd5b506105a9611617565b005b3480156105b6575f80fd5b506105bf611765565b005b3480156105cc575f80fd5b506105d561193c565b6040516105e29190613b46565b60405180910390f35b3480156105f6575f80fd5b50610611600480360381019061060c919061385c565b611961565b60405161061e9190613843565b60405180910390f35b348015610632575f80fd5b5061063b6119a7565b6040516106489190613843565b60405180910390f35b34801561065c575f80fd5b5061067760048036038101906106729190613bc4565b6119ad565b005b348015610684575f80fd5b5061069f600480360381019061069a9190613a92565b611a50565b005b3480156106ac575f80fd5b506106b5611c7b565b6040516106c29190613c11565b60405180910390f35b3480156106d6575f80fd5b506106f160048036038101906106ec919061385c565b611ca2565b6040516106fe9190613843565b60405180910390f35b348015610712575f80fd5b5061071b611cb3565b6040516107289190613705565b60405180910390f35b34801561073c575f80fd5b50610757600480360381019061075291906137c3565b611d43565b604051610764919061381b565b60405180910390f35b348015610778575f80fd5b50610793600480360381019061078e919061385c565b611e0b565b6040516107a09190613843565b60405180910390f35b3480156107b4575f80fd5b506107cf60048036038101906107ca91906137c3565b611e6b565b6040516107dc919061381b565b60405180910390f35b3480156107f0575f80fd5b5061080b6004803603810190610806919061385c565b611eb6565b6040516108189190613843565b60405180910390f35b34801561082c575f80fd5b50610835611efc565b604051610846959493929190613c2a565b60405180910390f35b34801561085a575f80fd5b506108756004803603810190610870919061385c565b611f1f565b005b348015610882575f80fd5b5061089d60048036038101906108989190613c7b565b611ff6565b6040516108aa9190613843565b60405180910390f35b3480156108be575f80fd5b506108c7612078565b005b3480156108d4575f80fd5b506108dd61215e565b6040516108ea9190613843565b60405180910390f35b3480156108fe575f80fd5b5061091960048036038101906109149190613a92565b612167565b005b348015610926575f80fd5b50610941600480360381019061093c919061385c565b6122cd565b005b34801561094e575f80fd5b506109696004803603810190610964919061385c565b61248a565b60405161097d989796959493929190613cd1565b60405180910390f35b348015610991575f80fd5b506109ac60048036038101906109a79190613a92565b612783565b6040516109bb93929190613d4d565b60405180910390f35b5f6109cd610d30565b116109d6575f80fd5b5f60125f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610a319190613c11565b602060405180830381865afa158015610a4c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a709190613d96565b9050610a7b34611a50565b5f610b278260125f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610ada9190613c11565b602060405180830381865afa158015610af5573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b199190613d96565b612a6990919063ffffffff16565b90505f811115610beb57610b7b610b3c610d30565b610b6070010000000000000000000000000000000084612ab290919063ffffffff16565b610b6a9190613e1b565b600154612b2990919063ffffffff16565b6001819055503373ffffffffffffffffffffffffffffffffffffffff167fa493a9229478c3fcd73f66d2cdeb7f94fd0f341da924d1054236d7845411651182604051610bc79190613843565b60405180910390a2610be481600b54612b2990919063ffffffff16565b600b819055505b5050565b606060088054610bfe90613e78565b80601f0160208091040260200160405190810160405280929190818152602001828054610c2a90613e78565b8015610c755780601f10610c4c57610100808354040283529160200191610c75565b820191905f5260205f20905b815481529060010190602001808311610c5857829003601f168201915b5050505050905090565b5f610c92610c8b612b86565b8484612b8d565b6001905092915050565b5f600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663949d225d6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d07573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d2b9190613d96565b905090565b5f600754905090565b600f602052805f5260405f205f915090505481565b5f80610d8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8690613f18565b60405180910390fd5b600190509392505050565b5f700100000000000000000000000000000000610e29610e2460025f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610e16610e11610e00886115d1565b600154612ab290919063ffffffff16565b612d50565b612d6a90919063ffffffff16565b612db1565b610e339190613e1b565b9050919050565b600e5481565b5f600a5f9054906101000a900460ff16905090565b610e5d612b86565b73ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610ee9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee090613f80565b60405180910390fd5b610ef3815f612dc6565b600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166329092d0e826040518263ffffffff1660e01b8152600401610f4d9190613c11565b5f604051808303815f87803b158015610f64575f80fd5b505af1158015610f76573d5f803e3d5ffd5b505050508073ffffffffffffffffffffffffffffffffffffffff167fa878b31040b2e6d0a9a3d3361209db3908ba62014b0dca52adbaee451d128b2560405160405180910390a250565b5f611064610fcc612b86565b8461105f8560065f610fdc612b86565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054612b2990919063ffffffff16565b612b8d565b6001905092915050565b5f600d5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663345487d0836040518263ffffffff1660e01b81526004016110c99190613c11565b602060405180830381865afa1580156110e4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111089190613d96565b9050600d5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630e832273836040518263ffffffff1660e01b81526004016111649190613c11565b602060405180830381865afa15801561117f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111a39190613fb2565b6112ec575f6111b1826113e5565b5090505f811115611254576111c68382612dc6565b600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16633825d82884836040518363ffffffff1660e01b8152600401611222929190613fdd565b5f604051808303815f87803b158015611239575f80fd5b505af115801561124b573d5f803e3d5ffd5b505050506112e6565b61125e835f612dc6565b600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166329092d0e846040518263ffffffff1660e01b81526004016112b89190613c11565b5f604051808303815f87803b1580156112cf575f80fd5b505af11580156112e1573d5f803e3d5ffd5b505050505b5061138f565b5f6112f6836115d1565b111561138e57611306825f612dc6565b600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166329092d0e836040518263ffffffff1660e01b81526004016113609190613c11565b5f604051808303815f87803b158015611377575f80fd5b505af1158015611389573d5f803e3d5ffd5b505050505b5b61139a826001612e30565b505050565b5f5b81518110156113e1576113cd8282815181106113c0576113bf614004565b5b602002602001015161106e565b6001816113da9190614031565b90506113a1565b5050565b5f60605f806040518060400160405280600c81526020017f4e6f7420456c696769626c6500000000000000000000000000000000000000008152509050601360040154851061147257670de0b6b3a764000091506040518060400160405280600381526020017f534246000000000000000000000000000000000000000000000000000000000081525090505b60136003015485106114c2576729a2241af62c000091506040518060400160405280600881526020017f476967614368616400000000000000000000000000000000000000000000000081525090505b601360020154851061151257674563918244f4000091506040518060400160405280600981526020017f456c6f6e204d75736b000000000000000000000000000000000000000000000081525090505b601360010154851061156257678ac7230489e8000091506040518060400160405280600781526020017f566974616c696b0000000000000000000000000000000000000000000000000081525090505b60135f015485106115b2576803cb71f51fc558000091506040518060400160405280600381526020017f564950000000000000000000000000000000000000000000000000000000000081525090505b8181935093505050915091565b6115c833612f83565b50565b60105481565b5f60055f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61161f612b86565b73ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146116ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a290613f80565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35f805f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b61176d612b86565b73ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146117f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f090613f80565b60405180910390fd5b5f60125f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016118549190613c11565b602060405180830381865afa15801561186f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118939190613d96565b905060125f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb6118da611c7b565b836040518363ffffffff1660e01b81526004016118f8929190613fdd565b6020604051808303815f875af1158015611914573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119389190613fb2565b5050565b60125f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60045f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b600b5481565b6119b5612b86565b73ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611a41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3890613f80565b60405180910390fd5b611a4b8282612e30565b505050565b5f600267ffffffffffffffff811115611a6c57611a6b61390f565b5b604051908082528060200260200182016040528015611a9a5781602001602082028036833780820191505090505b50905060115f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611b07573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611b2b9190614078565b815f81518110611b3e57611b3d614004565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060125f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681600181518110611bae57611bad614004565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060115f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663b6f9de95835f8430426040518663ffffffff1660e01b8152600401611c499493929190614193565b5f604051808303818588803b158015611c60575f80fd5b505af1158015611c72573d5f803e3d5ffd5b50505050505050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f611cac82611e0b565b9050919050565b606060098054611cc290613e78565b80601f0160208091040260200160405190810160405280929190818152602001828054611cee90613e78565b8015611d395780601f10611d1057610100808354040283529160200191611d39565b820191905f5260205f20905b815481529060010190602001808311611d1c57829003601f168201915b5050505050905090565b5f611e01611d4f612b86565b84611dfc8560405180606001604052806025815260200161488a6025913960065f611d78612b86565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546131279092919063ffffffff16565b612b8d565b6001905092915050565b5f611e6460035f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611e5684610d9a565b612a6990919063ffffffff16565b9050919050565b5f80611eac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea390613f18565b60405180910390fd5b6001905092915050565b5f60035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6013805f0154908060010154908060020154908060030154908060040154905085565b611f27612b86565b73ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611fb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611faa90613f80565b60405180910390fd5b80600d5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f60065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b612080612b86565b73ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461210c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210390613f80565b60405180910390fd5b5f479050612118611c7b565b73ffffffffffffffffffffffffffffffffffffffff166108fc8290811502906040515f60405180830381858888f1935050505015801561215a573d5f803e3d5ffd5b5050565b5f600e54905090565b61216f612b86565b73ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146121fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f290613f80565b60405180910390fd5b610e1081101580156122105750620151808111155b61224f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122469061424d565b60405180910390fd5b6010548103612293576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228a906142db565b60405180910390fd5b601054817f474ea64804364a1e29a4487ddb63c3342a2dd826ccd8acf48825e680a0e6f20f60405160405180910390a38060108190555050565b6122d5612b86565b73ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612361576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235890613f80565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036123cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c690614369565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3805f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f805f805f805f80889750600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663564c8d11896040518263ffffffff1660e01b81526004016124ef9190613c11565b602060405180830381865afa15801561250a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061252e91906143b1565b96507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff95505f87126126da57600e5487111561258057612579600e548861318990919063ffffffff16565b95506126d9565b5f600e54600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663949d225d6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156125ee573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906126129190613d96565b1161261d575f6126c0565b6126bf600e54600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663949d225d6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561268d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906126b19190613d96565b612a6990919063ffffffff16565b5b90506126d58189612d6a90919063ffffffff16565b9650505b5b6126e388611e0b565b94506126ee88610d9a565b9350600f5f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205492505f831161273d575f612753565b61275260105484612b2990919063ffffffff16565b5b9150428211612762575f612776565b6127754283612a6990919063ffffffff16565b5b9050919395975091939597565b5f805f80600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663949d225d6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156127f1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906128159190613d96565b90505f810361282f575f80600e5493509350935050612a62565b5f600e5490505f805a90505f805b898410801561284b57508582105b15612a4957848061285b906143dc565b955050600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663949d225d6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156128c8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906128ec9190613d96565b85106128f6575f94505b5f600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663663037ac876040518263ffffffff1660e01b81526004016129519190613843565b602060405180830381865afa15801561296c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906129909190614078565b90506129d8600f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546131d0565b156129fd576129e8816001612e30565b156129fc5781806129f8906143dc565b9250505b5b8280612a08906143dc565b9350505f5a905080851115612a3f57612a3c612a2d8287612a6990919063ffffffff16565b87612b2990919063ffffffff16565b95505b809450505061283d565b84600e819055508181600e549850985098505050505050505b9193909250565b5f612aaa83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613127565b905092915050565b5f808303612ac2575f9050612b23565b5f8284612acf9190614423565b9050828482612ade9190613e1b565b14612b1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b15906144d4565b60405180910390fd5b809150505b92915050565b5f808284612b379190614031565b905083811015612b7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b739061453c565b60405180910390fd5b8091505092915050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612bfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bf2906145ca565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612c69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c6090614658565b60405180910390fd5b8060065f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612d439190613843565b60405180910390a3505050565b5f808290505f811215612d61575f80fd5b80915050919050565b5f808284612d789190614676565b90505f8312158015612d8a5750838112155b80612d9f57505f83128015612d9e57508381125b5b612da7575f80fd5b8091505092915050565b5f80821215612dbe575f80fd5b819050919050565b5f612dd0836115d1565b905080821115612e00575f612dee8284612a6990919063ffffffff16565b9050612dfa8482613201565b50612e2b565b80821015612e2a575f612e1c8383612a6990919063ffffffff16565b9050612e288482613431565b505b5b505050565b5f80612e3b84612f83565b90505f811115612f78575f60045f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050612e998183612b2990919063ffffffff16565b60045f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555042600f5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508315158573ffffffffffffffffffffffffffffffffffffffff167fa2c38e2d2fb7e3e1912d937fd1ca11ed6d51864dee4cfa7a7bf02becd7acf09284604051612f659190613843565b60405180910390a3600192505050612f7d565b5f9150505b92915050565b5f80612f8e83611e0b565b90505f81111561311d57612fe88160035f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054612b2990919063ffffffff16565b60035f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508273ffffffffffffffffffffffffffffffffffffffff167fee503bee2bb6a87e57bc57db795f98137327401a0e7b7ce42e37926cc1a9ca4d8260405161306f9190613843565b60405180910390a260125f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb84836040518363ffffffff1660e01b81526004016130d39291906146d7565b6020604051808303815f875af11580156130ef573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906131139190613fb2565b5080915050613122565b5f9150505b919050565b5f83831115829061316e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131659190613705565b60405180910390fd5b505f838561317c91906146fe565b9050809150509392505050565b5f8082846131979190614731565b90505f83121580156131a95750838113155b806131be57505f831280156131bd57508381135b5b6131c6575f80fd5b8091505092915050565b5f428211156131e1575f90506131fc565b6010546131f78342612a6990919063ffffffff16565b101590505b919050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361326f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613266906147bb565b60405180910390fd5b61328481600754612b2990919063ffffffff16565b6007819055506132da8160055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054612b2990919063ffffffff16565b60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516133789190613843565b60405180910390a36133ec6133a061339b83600154612ab290919063ffffffff16565b612d50565b60025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461318990919063ffffffff16565b60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361349f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161349690614849565b60405180910390fd5b613509816040518060600160405280602281526020016148686022913960055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546131279092919063ffffffff16565b60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555061355f81600754612a6990919063ffffffff16565b6007819055505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516135c29190613843565b60405180910390a36136366135ea6135e583600154612ab290919063ffffffff16565b612d50565b60025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054612d6a90919063ffffffff16565b60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156136b2578082015181840152602081019050613697565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6136d78261367b565b6136e18185613685565b93506136f1818560208601613695565b6136fa816136bd565b840191505092915050565b5f6020820190508181035f83015261371d81846136cd565b905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61375f82613736565b9050919050565b61376f81613755565b8114613779575f80fd5b50565b5f8135905061378a81613766565b92915050565b5f819050919050565b6137a281613790565b81146137ac575f80fd5b50565b5f813590506137bd81613799565b92915050565b5f80604083850312156137d9576137d861372e565b5b5f6137e68582860161377c565b92505060206137f7858286016137af565b9150509250929050565b5f8115159050919050565b61381581613801565b82525050565b5f60208201905061382e5f83018461380c565b92915050565b61383d81613790565b82525050565b5f6020820190506138565f830184613834565b92915050565b5f602082840312156138715761387061372e565b5b5f61387e8482850161377c565b91505092915050565b5f805f6060848603121561389e5761389d61372e565b5b5f6138ab8682870161377c565b93505060206138bc8682870161377c565b92505060406138cd868287016137af565b9150509250925092565b5f60ff82169050919050565b6138ec816138d7565b82525050565b5f6020820190506139055f8301846138e3565b92915050565b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b613945826136bd565b810181811067ffffffffffffffff821117156139645761396361390f565b5b80604052505050565b5f613976613725565b9050613982828261393c565b919050565b5f67ffffffffffffffff8211156139a1576139a061390f565b5b602082029050602081019050919050565b5f80fd5b5f6139c86139c384613987565b61396d565b905080838252602082019050602084028301858111156139eb576139ea6139b2565b5b835b81811015613a145780613a00888261377c565b8452602084019350506020810190506139ed565b5050509392505050565b5f82601f830112613a3257613a3161390b565b5b8135613a428482602086016139b6565b91505092915050565b5f60208284031215613a6057613a5f61372e565b5b5f82013567ffffffffffffffff811115613a7d57613a7c613732565b5b613a8984828501613a1e565b91505092915050565b5f60208284031215613aa757613aa661372e565b5b5f613ab4848285016137af565b91505092915050565b5f604082019050613ad05f830185613834565b8181036020830152613ae281846136cd565b90509392505050565b5f819050919050565b5f613b0e613b09613b0484613736565b613aeb565b613736565b9050919050565b5f613b1f82613af4565b9050919050565b5f613b3082613b15565b9050919050565b613b4081613b26565b82525050565b5f602082019050613b595f830184613b37565b92915050565b5f613b6982613736565b9050919050565b613b7981613b5f565b8114613b83575f80fd5b50565b5f81359050613b9481613b70565b92915050565b613ba381613801565b8114613bad575f80fd5b50565b5f81359050613bbe81613b9a565b92915050565b5f8060408385031215613bda57613bd961372e565b5b5f613be785828601613b86565b9250506020613bf885828601613bb0565b9150509250929050565b613c0b81613755565b82525050565b5f602082019050613c245f830184613c02565b92915050565b5f60a082019050613c3d5f830188613834565b613c4a6020830187613834565b613c576040830186613834565b613c646060830185613834565b613c716080830184613834565b9695505050505050565b5f8060408385031215613c9157613c9061372e565b5b5f613c9e8582860161377c565b9250506020613caf8582860161377c565b9150509250929050565b5f819050919050565b613ccb81613cb9565b82525050565b5f61010082019050613ce55f83018b613c02565b613cf2602083018a613cc2565b613cff6040830189613cc2565b613d0c6060830188613834565b613d196080830187613834565b613d2660a0830186613834565b613d3360c0830185613834565b613d4060e0830184613834565b9998505050505050505050565b5f606082019050613d605f830186613834565b613d6d6020830185613834565b613d7a6040830184613834565b949350505050565b5f81519050613d9081613799565b92915050565b5f60208284031215613dab57613daa61372e565b5b5f613db884828501613d82565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f613e2582613790565b9150613e3083613790565b925082613e4057613e3f613dc1565b5b828204905092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680613e8f57607f821691505b602082108103613ea257613ea1613e4b565b5b50919050565b7f4e6f207472616e736665727320616c6c6f77656420696e206469766964656e645f8201527f20747261636b6572000000000000000000000000000000000000000000000000602082015250565b5f613f02602883613685565b9150613f0d82613ea8565b604082019050919050565b5f6020820190508181035f830152613f2f81613ef6565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f613f6a602083613685565b9150613f7582613f36565b602082019050919050565b5f6020820190508181035f830152613f9781613f5e565b9050919050565b5f81519050613fac81613b9a565b92915050565b5f60208284031215613fc757613fc661372e565b5b5f613fd484828501613f9e565b91505092915050565b5f604082019050613ff05f830185613c02565b613ffd6020830184613834565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f61403b82613790565b915061404683613790565b925082820190508082111561405e5761405d613dee565b5b92915050565b5f8151905061407281613766565b92915050565b5f6020828403121561408d5761408c61372e565b5b5f61409a84828501614064565b91505092915050565b5f819050919050565b5f6140c66140c16140bc846140a3565b613aeb565b613790565b9050919050565b6140d6816140ac565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b61410e81613755565b82525050565b5f61411f8383614105565b60208301905092915050565b5f602082019050919050565b5f614141826140dc565b61414b81856140e6565b9350614156836140f6565b805f5b8381101561418657815161416d8882614114565b97506141788361412b565b925050600181019050614159565b5085935050505092915050565b5f6080820190506141a65f8301876140cd565b81810360208301526141b88186614137565b90506141c76040830185613c02565b6141d46060830184613834565b95945050505050565b7f436c61696d57616974206d757374206265207570646174656420746f206265745f8201527f7765656e203120616e6420323420686f75727300000000000000000000000000602082015250565b5f614237603383613685565b9150614242826141dd565b604082019050919050565b5f6020820190508181035f8301526142648161422b565b9050919050565b7f43616e6e6f742075706461746520636c61696d5761697420746f2073616d65205f8201527f76616c7565000000000000000000000000000000000000000000000000000000602082015250565b5f6142c5602583613685565b91506142d08261426b565b604082019050919050565b5f6020820190508181035f8301526142f2816142b9565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f614353602683613685565b915061435e826142f9565b604082019050919050565b5f6020820190508181035f83015261438081614347565b9050919050565b61439081613cb9565b811461439a575f80fd5b50565b5f815190506143ab81614387565b92915050565b5f602082840312156143c6576143c561372e565b5b5f6143d38482850161439d565b91505092915050565b5f6143e682613790565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361441857614417613dee565b5b600182019050919050565b5f61442d82613790565b915061443883613790565b925082820261444681613790565b9150828204841483151761445d5761445c613dee565b5b5092915050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f5f8201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b5f6144be602183613685565b91506144c982614464565b604082019050919050565b5f6020820190508181035f8301526144eb816144b2565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f7700000000005f82015250565b5f614526601b83613685565b9150614531826144f2565b602082019050919050565b5f6020820190508181035f8301526145538161451a565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6145b4602483613685565b91506145bf8261455a565b604082019050919050565b5f6020820190508181035f8301526145e1816145a8565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f614642602283613685565b915061464d826145e8565b604082019050919050565b5f6020820190508181035f83015261466f81614636565b9050919050565b5f61468082613cb9565b915061468b83613cb9565b92508282019050828112155f8312168382125f8412151617156146b1576146b0613dee565b5b92915050565b5f6146c182613b15565b9050919050565b6146d1816146b7565b82525050565b5f6040820190506146ea5f8301856146c8565b6146f76020830184613834565b9392505050565b5f61470882613790565b915061471383613790565b925082820390508181111561472b5761472a613dee565b5b92915050565b5f61473b82613cb9565b915061474683613cb9565b925082820390508181125f8412168282135f85121516171561476b5761476a613dee565b5b92915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f6147a5601f83613685565b91506147b082614771565b602082019050919050565b5f6020820190508181035f8301526147d281614799565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f614833602183613685565b915061483e826147d9565b604082019050919050565b5f6020820190508181035f83015261486081614827565b905091905056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220d2f0b2adc7962c42ea4662c0329b0a3b3ca4a1c6ec596dfe6c7a43cbd46e03d764736f6c63430008160033608060405234801561000f575f80fd5b50610a798061001d5f395ff3fe608060405234801561000f575f80fd5b506004361061007b575f3560e01c8063663037ac11610059578063663037ac146100e7578063949d225d14610117578063c2bc2efc14610135578063cd413329146101655761007b565b806329092d0e1461007f5780633825d8281461009b578063564c8d11146100b7575b5f80fd5b6100996004803603810190610094919061080e565b610195565b005b6100b560048036038101906100b0919061086c565b61043c565b005b6100d160048036038101906100cc919061080e565b610621565b6040516100de91906108c2565b60405180910390f35b61010160048036038101906100fc91906108db565b6106e2565b60405161010e9190610915565b60405180910390f35b61011f610727565b60405161012c919061093d565b60405180910390f35b61014f600480360381019061014a919061080e565b610734565b60405161015c919061093d565b60405180910390f35b61017f600480360381019061017a919061080e565b61077c565b60405161018c9190610970565b60405180910390f35b5f6003015f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615610439575f6003015f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81549060ff02191690555f6001015f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f90555f806002015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490505f60015f8001805490506102cd91906109b6565b90505f805f0182815481106102e5576102e46109e9565b5b905f5260205f20015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050825f6002015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505f6002015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9055805f800184815481106103ab576103aa6109e9565b5b905f5260205f20015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505f800180548061040357610402610a16565b5b600190038181905f5260205f20015f6101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905590555050505b50565b5f6003015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16156104d657805f6001015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555061061d565b60015f6003015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550805f6001015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505f8001805490505f6002015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505f800182908060018154018082558091505060019003905f5260205f20015f9091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b5050565b5f806003015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1661069a577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff90506106dd565b5f6002015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490505b919050565b5f805f0182815481106106f8576106f76109e9565b5b905f5260205f20015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f805f0180549050905090565b5f806001015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b5f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6107a783610621565b14159050919050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6107dd826107b4565b9050919050565b6107ed816107d3565b81146107f7575f80fd5b50565b5f81359050610808816107e4565b92915050565b5f60208284031215610823576108226107b0565b5b5f610830848285016107fa565b91505092915050565b5f819050919050565b61084b81610839565b8114610855575f80fd5b50565b5f8135905061086681610842565b92915050565b5f8060408385031215610882576108816107b0565b5b5f61088f858286016107fa565b92505060206108a085828601610858565b9150509250929050565b5f819050919050565b6108bc816108aa565b82525050565b5f6020820190506108d55f8301846108b3565b92915050565b5f602082840312156108f0576108ef6107b0565b5b5f6108fd84828501610858565b91505092915050565b61090f816107d3565b82525050565b5f6020820190506109285f830184610906565b92915050565b61093781610839565b82525050565b5f6020820190506109505f83018461092e565b92915050565b5f8115159050919050565b61096a81610956565b82525050565b5f6020820190506109835f830184610961565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6109c082610839565b91506109cb83610839565b92508282039050818111156109e3576109e2610989565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603160045260245ffdfea264697066735822122052ce4ffa2ab0bad7c12965c0034d5ab61840078527ae1f030f6a46c1499fa9b664736f6c63430008160033

Deployed Bytecode

0x608060405260043610610249575f3560e01c80637db93b7d11610138578063a9059cbb116100b5578063e0fb0f3511610079578063e0fb0f35146108b3578063e7841ec0146108c9578063e98030c7146108f3578063f2fde38b1461091b578063fbcbc0f114610943578063ffb2c4791461098657610258565b8063a9059cbb146107a9578063aafd847a146107e5578063bcb4691614610821578063cac8d5381461084f578063dd62ed3e1461087757610258565b80638da5cb5b116100fc5780638da5cb5b146106a157806391b89fba146106cb57806395d89b4114610707578063a457c2d714610731578063a8b9d2401461076d57610258565b80637db93b7d146105c1578063804974ea146105eb57806385a6b3ae1461062757806389774282146106515780638ac1320e1461067957610258565b806331e79db0116101c65780636a4740021161018a5780636a474002146105195780636f2789ec1461052f57806370a0823114610559578063715018a614610595578063721e20dd146105ab57610258565b806331e79db01461042857806339509351146104505780633974d3b11461048c5780634b1727ff146104b45780635f9d7cb6146104dc57610258565b8063226cfa3d1161020d578063226cfa3d1461032057806323b872dd1461035c57806327ce0147146103985780633009a609146103d4578063313ce567146103fe57610258565b806303c833021461025c57806306fdde0314610266578063095ea7b31461029057806309bbedde146102cc57806318160ddd146102f657610258565b36610258576102566109c4565b005b5f80fd5b6102646109c4565b005b348015610271575f80fd5b5061027a610bef565b6040516102879190613705565b60405180910390f35b34801561029b575f80fd5b506102b660048036038101906102b191906137c3565b610c7f565b6040516102c3919061381b565b60405180910390f35b3480156102d7575f80fd5b506102e0610c9c565b6040516102ed9190613843565b60405180910390f35b348015610301575f80fd5b5061030a610d30565b6040516103179190613843565b60405180910390f35b34801561032b575f80fd5b506103466004803603810190610341919061385c565b610d39565b6040516103539190613843565b60405180910390f35b348015610367575f80fd5b50610382600480360381019061037d9190613887565b610d4e565b60405161038f919061381b565b60405180910390f35b3480156103a3575f80fd5b506103be60048036038101906103b9919061385c565b610d9a565b6040516103cb9190613843565b60405180910390f35b3480156103df575f80fd5b506103e8610e3a565b6040516103f59190613843565b60405180910390f35b348015610409575f80fd5b50610412610e40565b60405161041f91906138f2565b60405180910390f35b348015610433575f80fd5b5061044e6004803603810190610449919061385c565b610e55565b005b34801561045b575f80fd5b50610476600480360381019061047191906137c3565b610fc0565b604051610483919061381b565b60405180910390f35b348015610497575f80fd5b506104b260048036038101906104ad919061385c565b61106e565b005b3480156104bf575f80fd5b506104da60048036038101906104d59190613a4b565b61139f565b005b3480156104e7575f80fd5b5061050260048036038101906104fd9190613a92565b6113e5565b604051610510929190613abd565b60405180910390f35b348015610524575f80fd5b5061052d6115bf565b005b34801561053a575f80fd5b506105436115cb565b6040516105509190613843565b60405180910390f35b348015610564575f80fd5b5061057f600480360381019061057a919061385c565b6115d1565b60405161058c9190613843565b60405180910390f35b3480156105a0575f80fd5b506105a9611617565b005b3480156105b6575f80fd5b506105bf611765565b005b3480156105cc575f80fd5b506105d561193c565b6040516105e29190613b46565b60405180910390f35b3480156105f6575f80fd5b50610611600480360381019061060c919061385c565b611961565b60405161061e9190613843565b60405180910390f35b348015610632575f80fd5b5061063b6119a7565b6040516106489190613843565b60405180910390f35b34801561065c575f80fd5b5061067760048036038101906106729190613bc4565b6119ad565b005b348015610684575f80fd5b5061069f600480360381019061069a9190613a92565b611a50565b005b3480156106ac575f80fd5b506106b5611c7b565b6040516106c29190613c11565b60405180910390f35b3480156106d6575f80fd5b506106f160048036038101906106ec919061385c565b611ca2565b6040516106fe9190613843565b60405180910390f35b348015610712575f80fd5b5061071b611cb3565b6040516107289190613705565b60405180910390f35b34801561073c575f80fd5b50610757600480360381019061075291906137c3565b611d43565b604051610764919061381b565b60405180910390f35b348015610778575f80fd5b50610793600480360381019061078e919061385c565b611e0b565b6040516107a09190613843565b60405180910390f35b3480156107b4575f80fd5b506107cf60048036038101906107ca91906137c3565b611e6b565b6040516107dc919061381b565b60405180910390f35b3480156107f0575f80fd5b5061080b6004803603810190610806919061385c565b611eb6565b6040516108189190613843565b60405180910390f35b34801561082c575f80fd5b50610835611efc565b604051610846959493929190613c2a565b60405180910390f35b34801561085a575f80fd5b506108756004803603810190610870919061385c565b611f1f565b005b348015610882575f80fd5b5061089d60048036038101906108989190613c7b565b611ff6565b6040516108aa9190613843565b60405180910390f35b3480156108be575f80fd5b506108c7612078565b005b3480156108d4575f80fd5b506108dd61215e565b6040516108ea9190613843565b60405180910390f35b3480156108fe575f80fd5b5061091960048036038101906109149190613a92565b612167565b005b348015610926575f80fd5b50610941600480360381019061093c919061385c565b6122cd565b005b34801561094e575f80fd5b506109696004803603810190610964919061385c565b61248a565b60405161097d989796959493929190613cd1565b60405180910390f35b348015610991575f80fd5b506109ac60048036038101906109a79190613a92565b612783565b6040516109bb93929190613d4d565b60405180910390f35b5f6109cd610d30565b116109d6575f80fd5b5f60125f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610a319190613c11565b602060405180830381865afa158015610a4c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a709190613d96565b9050610a7b34611a50565b5f610b278260125f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610ada9190613c11565b602060405180830381865afa158015610af5573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b199190613d96565b612a6990919063ffffffff16565b90505f811115610beb57610b7b610b3c610d30565b610b6070010000000000000000000000000000000084612ab290919063ffffffff16565b610b6a9190613e1b565b600154612b2990919063ffffffff16565b6001819055503373ffffffffffffffffffffffffffffffffffffffff167fa493a9229478c3fcd73f66d2cdeb7f94fd0f341da924d1054236d7845411651182604051610bc79190613843565b60405180910390a2610be481600b54612b2990919063ffffffff16565b600b819055505b5050565b606060088054610bfe90613e78565b80601f0160208091040260200160405190810160405280929190818152602001828054610c2a90613e78565b8015610c755780601f10610c4c57610100808354040283529160200191610c75565b820191905f5260205f20905b815481529060010190602001808311610c5857829003601f168201915b5050505050905090565b5f610c92610c8b612b86565b8484612b8d565b6001905092915050565b5f600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663949d225d6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d07573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d2b9190613d96565b905090565b5f600754905090565b600f602052805f5260405f205f915090505481565b5f80610d8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8690613f18565b60405180910390fd5b600190509392505050565b5f700100000000000000000000000000000000610e29610e2460025f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610e16610e11610e00886115d1565b600154612ab290919063ffffffff16565b612d50565b612d6a90919063ffffffff16565b612db1565b610e339190613e1b565b9050919050565b600e5481565b5f600a5f9054906101000a900460ff16905090565b610e5d612b86565b73ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610ee9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee090613f80565b60405180910390fd5b610ef3815f612dc6565b600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166329092d0e826040518263ffffffff1660e01b8152600401610f4d9190613c11565b5f604051808303815f87803b158015610f64575f80fd5b505af1158015610f76573d5f803e3d5ffd5b505050508073ffffffffffffffffffffffffffffffffffffffff167fa878b31040b2e6d0a9a3d3361209db3908ba62014b0dca52adbaee451d128b2560405160405180910390a250565b5f611064610fcc612b86565b8461105f8560065f610fdc612b86565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054612b2990919063ffffffff16565b612b8d565b6001905092915050565b5f600d5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663345487d0836040518263ffffffff1660e01b81526004016110c99190613c11565b602060405180830381865afa1580156110e4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111089190613d96565b9050600d5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630e832273836040518263ffffffff1660e01b81526004016111649190613c11565b602060405180830381865afa15801561117f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111a39190613fb2565b6112ec575f6111b1826113e5565b5090505f811115611254576111c68382612dc6565b600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16633825d82884836040518363ffffffff1660e01b8152600401611222929190613fdd565b5f604051808303815f87803b158015611239575f80fd5b505af115801561124b573d5f803e3d5ffd5b505050506112e6565b61125e835f612dc6565b600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166329092d0e846040518263ffffffff1660e01b81526004016112b89190613c11565b5f604051808303815f87803b1580156112cf575f80fd5b505af11580156112e1573d5f803e3d5ffd5b505050505b5061138f565b5f6112f6836115d1565b111561138e57611306825f612dc6565b600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166329092d0e836040518263ffffffff1660e01b81526004016113609190613c11565b5f604051808303815f87803b158015611377575f80fd5b505af1158015611389573d5f803e3d5ffd5b505050505b5b61139a826001612e30565b505050565b5f5b81518110156113e1576113cd8282815181106113c0576113bf614004565b5b602002602001015161106e565b6001816113da9190614031565b90506113a1565b5050565b5f60605f806040518060400160405280600c81526020017f4e6f7420456c696769626c6500000000000000000000000000000000000000008152509050601360040154851061147257670de0b6b3a764000091506040518060400160405280600381526020017f534246000000000000000000000000000000000000000000000000000000000081525090505b60136003015485106114c2576729a2241af62c000091506040518060400160405280600881526020017f476967614368616400000000000000000000000000000000000000000000000081525090505b601360020154851061151257674563918244f4000091506040518060400160405280600981526020017f456c6f6e204d75736b000000000000000000000000000000000000000000000081525090505b601360010154851061156257678ac7230489e8000091506040518060400160405280600781526020017f566974616c696b0000000000000000000000000000000000000000000000000081525090505b60135f015485106115b2576803cb71f51fc558000091506040518060400160405280600381526020017f564950000000000000000000000000000000000000000000000000000000000081525090505b8181935093505050915091565b6115c833612f83565b50565b60105481565b5f60055f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61161f612b86565b73ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146116ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a290613f80565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35f805f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b61176d612b86565b73ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146117f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f090613f80565b60405180910390fd5b5f60125f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016118549190613c11565b602060405180830381865afa15801561186f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118939190613d96565b905060125f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb6118da611c7b565b836040518363ffffffff1660e01b81526004016118f8929190613fdd565b6020604051808303815f875af1158015611914573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119389190613fb2565b5050565b60125f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60045f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b600b5481565b6119b5612b86565b73ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611a41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3890613f80565b60405180910390fd5b611a4b8282612e30565b505050565b5f600267ffffffffffffffff811115611a6c57611a6b61390f565b5b604051908082528060200260200182016040528015611a9a5781602001602082028036833780820191505090505b50905060115f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611b07573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611b2b9190614078565b815f81518110611b3e57611b3d614004565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060125f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681600181518110611bae57611bad614004565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060115f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663b6f9de95835f8430426040518663ffffffff1660e01b8152600401611c499493929190614193565b5f604051808303818588803b158015611c60575f80fd5b505af1158015611c72573d5f803e3d5ffd5b50505050505050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f611cac82611e0b565b9050919050565b606060098054611cc290613e78565b80601f0160208091040260200160405190810160405280929190818152602001828054611cee90613e78565b8015611d395780601f10611d1057610100808354040283529160200191611d39565b820191905f5260205f20905b815481529060010190602001808311611d1c57829003601f168201915b5050505050905090565b5f611e01611d4f612b86565b84611dfc8560405180606001604052806025815260200161488a6025913960065f611d78612b86565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546131279092919063ffffffff16565b612b8d565b6001905092915050565b5f611e6460035f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611e5684610d9a565b612a6990919063ffffffff16565b9050919050565b5f80611eac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea390613f18565b60405180910390fd5b6001905092915050565b5f60035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6013805f0154908060010154908060020154908060030154908060040154905085565b611f27612b86565b73ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611fb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611faa90613f80565b60405180910390fd5b80600d5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f60065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b612080612b86565b73ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461210c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210390613f80565b60405180910390fd5b5f479050612118611c7b565b73ffffffffffffffffffffffffffffffffffffffff166108fc8290811502906040515f60405180830381858888f1935050505015801561215a573d5f803e3d5ffd5b5050565b5f600e54905090565b61216f612b86565b73ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146121fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f290613f80565b60405180910390fd5b610e1081101580156122105750620151808111155b61224f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122469061424d565b60405180910390fd5b6010548103612293576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228a906142db565b60405180910390fd5b601054817f474ea64804364a1e29a4487ddb63c3342a2dd826ccd8acf48825e680a0e6f20f60405160405180910390a38060108190555050565b6122d5612b86565b73ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612361576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235890613f80565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036123cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c690614369565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3805f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f805f805f805f80889750600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663564c8d11896040518263ffffffff1660e01b81526004016124ef9190613c11565b602060405180830381865afa15801561250a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061252e91906143b1565b96507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff95505f87126126da57600e5487111561258057612579600e548861318990919063ffffffff16565b95506126d9565b5f600e54600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663949d225d6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156125ee573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906126129190613d96565b1161261d575f6126c0565b6126bf600e54600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663949d225d6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561268d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906126b19190613d96565b612a6990919063ffffffff16565b5b90506126d58189612d6a90919063ffffffff16565b9650505b5b6126e388611e0b565b94506126ee88610d9a565b9350600f5f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205492505f831161273d575f612753565b61275260105484612b2990919063ffffffff16565b5b9150428211612762575f612776565b6127754283612a6990919063ffffffff16565b5b9050919395975091939597565b5f805f80600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663949d225d6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156127f1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906128159190613d96565b90505f810361282f575f80600e5493509350935050612a62565b5f600e5490505f805a90505f805b898410801561284b57508582105b15612a4957848061285b906143dc565b955050600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663949d225d6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156128c8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906128ec9190613d96565b85106128f6575f94505b5f600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663663037ac876040518263ffffffff1660e01b81526004016129519190613843565b602060405180830381865afa15801561296c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906129909190614078565b90506129d8600f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546131d0565b156129fd576129e8816001612e30565b156129fc5781806129f8906143dc565b9250505b5b8280612a08906143dc565b9350505f5a905080851115612a3f57612a3c612a2d8287612a6990919063ffffffff16565b87612b2990919063ffffffff16565b95505b809450505061283d565b84600e819055508181600e549850985098505050505050505b9193909250565b5f612aaa83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613127565b905092915050565b5f808303612ac2575f9050612b23565b5f8284612acf9190614423565b9050828482612ade9190613e1b565b14612b1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b15906144d4565b60405180910390fd5b809150505b92915050565b5f808284612b379190614031565b905083811015612b7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b739061453c565b60405180910390fd5b8091505092915050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612bfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bf2906145ca565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612c69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c6090614658565b60405180910390fd5b8060065f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612d439190613843565b60405180910390a3505050565b5f808290505f811215612d61575f80fd5b80915050919050565b5f808284612d789190614676565b90505f8312158015612d8a5750838112155b80612d9f57505f83128015612d9e57508381125b5b612da7575f80fd5b8091505092915050565b5f80821215612dbe575f80fd5b819050919050565b5f612dd0836115d1565b905080821115612e00575f612dee8284612a6990919063ffffffff16565b9050612dfa8482613201565b50612e2b565b80821015612e2a575f612e1c8383612a6990919063ffffffff16565b9050612e288482613431565b505b5b505050565b5f80612e3b84612f83565b90505f811115612f78575f60045f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050612e998183612b2990919063ffffffff16565b60045f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555042600f5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508315158573ffffffffffffffffffffffffffffffffffffffff167fa2c38e2d2fb7e3e1912d937fd1ca11ed6d51864dee4cfa7a7bf02becd7acf09284604051612f659190613843565b60405180910390a3600192505050612f7d565b5f9150505b92915050565b5f80612f8e83611e0b565b90505f81111561311d57612fe88160035f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054612b2990919063ffffffff16565b60035f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508273ffffffffffffffffffffffffffffffffffffffff167fee503bee2bb6a87e57bc57db795f98137327401a0e7b7ce42e37926cc1a9ca4d8260405161306f9190613843565b60405180910390a260125f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb84836040518363ffffffff1660e01b81526004016130d39291906146d7565b6020604051808303815f875af11580156130ef573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906131139190613fb2565b5080915050613122565b5f9150505b919050565b5f83831115829061316e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131659190613705565b60405180910390fd5b505f838561317c91906146fe565b9050809150509392505050565b5f8082846131979190614731565b90505f83121580156131a95750838113155b806131be57505f831280156131bd57508381135b5b6131c6575f80fd5b8091505092915050565b5f428211156131e1575f90506131fc565b6010546131f78342612a6990919063ffffffff16565b101590505b919050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361326f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613266906147bb565b60405180910390fd5b61328481600754612b2990919063ffffffff16565b6007819055506132da8160055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054612b2990919063ffffffff16565b60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516133789190613843565b60405180910390a36133ec6133a061339b83600154612ab290919063ffffffff16565b612d50565b60025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461318990919063ffffffff16565b60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361349f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161349690614849565b60405180910390fd5b613509816040518060600160405280602281526020016148686022913960055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546131279092919063ffffffff16565b60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555061355f81600754612a6990919063ffffffff16565b6007819055505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516135c29190613843565b60405180910390a36136366135ea6135e583600154612ab290919063ffffffff16565b612d50565b60025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054612d6a90919063ffffffff16565b60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156136b2578082015181840152602081019050613697565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6136d78261367b565b6136e18185613685565b93506136f1818560208601613695565b6136fa816136bd565b840191505092915050565b5f6020820190508181035f83015261371d81846136cd565b905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61375f82613736565b9050919050565b61376f81613755565b8114613779575f80fd5b50565b5f8135905061378a81613766565b92915050565b5f819050919050565b6137a281613790565b81146137ac575f80fd5b50565b5f813590506137bd81613799565b92915050565b5f80604083850312156137d9576137d861372e565b5b5f6137e68582860161377c565b92505060206137f7858286016137af565b9150509250929050565b5f8115159050919050565b61381581613801565b82525050565b5f60208201905061382e5f83018461380c565b92915050565b61383d81613790565b82525050565b5f6020820190506138565f830184613834565b92915050565b5f602082840312156138715761387061372e565b5b5f61387e8482850161377c565b91505092915050565b5f805f6060848603121561389e5761389d61372e565b5b5f6138ab8682870161377c565b93505060206138bc8682870161377c565b92505060406138cd868287016137af565b9150509250925092565b5f60ff82169050919050565b6138ec816138d7565b82525050565b5f6020820190506139055f8301846138e3565b92915050565b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b613945826136bd565b810181811067ffffffffffffffff821117156139645761396361390f565b5b80604052505050565b5f613976613725565b9050613982828261393c565b919050565b5f67ffffffffffffffff8211156139a1576139a061390f565b5b602082029050602081019050919050565b5f80fd5b5f6139c86139c384613987565b61396d565b905080838252602082019050602084028301858111156139eb576139ea6139b2565b5b835b81811015613a145780613a00888261377c565b8452602084019350506020810190506139ed565b5050509392505050565b5f82601f830112613a3257613a3161390b565b5b8135613a428482602086016139b6565b91505092915050565b5f60208284031215613a6057613a5f61372e565b5b5f82013567ffffffffffffffff811115613a7d57613a7c613732565b5b613a8984828501613a1e565b91505092915050565b5f60208284031215613aa757613aa661372e565b5b5f613ab4848285016137af565b91505092915050565b5f604082019050613ad05f830185613834565b8181036020830152613ae281846136cd565b90509392505050565b5f819050919050565b5f613b0e613b09613b0484613736565b613aeb565b613736565b9050919050565b5f613b1f82613af4565b9050919050565b5f613b3082613b15565b9050919050565b613b4081613b26565b82525050565b5f602082019050613b595f830184613b37565b92915050565b5f613b6982613736565b9050919050565b613b7981613b5f565b8114613b83575f80fd5b50565b5f81359050613b9481613b70565b92915050565b613ba381613801565b8114613bad575f80fd5b50565b5f81359050613bbe81613b9a565b92915050565b5f8060408385031215613bda57613bd961372e565b5b5f613be785828601613b86565b9250506020613bf885828601613bb0565b9150509250929050565b613c0b81613755565b82525050565b5f602082019050613c245f830184613c02565b92915050565b5f60a082019050613c3d5f830188613834565b613c4a6020830187613834565b613c576040830186613834565b613c646060830185613834565b613c716080830184613834565b9695505050505050565b5f8060408385031215613c9157613c9061372e565b5b5f613c9e8582860161377c565b9250506020613caf8582860161377c565b9150509250929050565b5f819050919050565b613ccb81613cb9565b82525050565b5f61010082019050613ce55f83018b613c02565b613cf2602083018a613cc2565b613cff6040830189613cc2565b613d0c6060830188613834565b613d196080830187613834565b613d2660a0830186613834565b613d3360c0830185613834565b613d4060e0830184613834565b9998505050505050505050565b5f606082019050613d605f830186613834565b613d6d6020830185613834565b613d7a6040830184613834565b949350505050565b5f81519050613d9081613799565b92915050565b5f60208284031215613dab57613daa61372e565b5b5f613db884828501613d82565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f613e2582613790565b9150613e3083613790565b925082613e4057613e3f613dc1565b5b828204905092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680613e8f57607f821691505b602082108103613ea257613ea1613e4b565b5b50919050565b7f4e6f207472616e736665727320616c6c6f77656420696e206469766964656e645f8201527f20747261636b6572000000000000000000000000000000000000000000000000602082015250565b5f613f02602883613685565b9150613f0d82613ea8565b604082019050919050565b5f6020820190508181035f830152613f2f81613ef6565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f613f6a602083613685565b9150613f7582613f36565b602082019050919050565b5f6020820190508181035f830152613f9781613f5e565b9050919050565b5f81519050613fac81613b9a565b92915050565b5f60208284031215613fc757613fc661372e565b5b5f613fd484828501613f9e565b91505092915050565b5f604082019050613ff05f830185613c02565b613ffd6020830184613834565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f61403b82613790565b915061404683613790565b925082820190508082111561405e5761405d613dee565b5b92915050565b5f8151905061407281613766565b92915050565b5f6020828403121561408d5761408c61372e565b5b5f61409a84828501614064565b91505092915050565b5f819050919050565b5f6140c66140c16140bc846140a3565b613aeb565b613790565b9050919050565b6140d6816140ac565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b61410e81613755565b82525050565b5f61411f8383614105565b60208301905092915050565b5f602082019050919050565b5f614141826140dc565b61414b81856140e6565b9350614156836140f6565b805f5b8381101561418657815161416d8882614114565b97506141788361412b565b925050600181019050614159565b5085935050505092915050565b5f6080820190506141a65f8301876140cd565b81810360208301526141b88186614137565b90506141c76040830185613c02565b6141d46060830184613834565b95945050505050565b7f436c61696d57616974206d757374206265207570646174656420746f206265745f8201527f7765656e203120616e6420323420686f75727300000000000000000000000000602082015250565b5f614237603383613685565b9150614242826141dd565b604082019050919050565b5f6020820190508181035f8301526142648161422b565b9050919050565b7f43616e6e6f742075706461746520636c61696d5761697420746f2073616d65205f8201527f76616c7565000000000000000000000000000000000000000000000000000000602082015250565b5f6142c5602583613685565b91506142d08261426b565b604082019050919050565b5f6020820190508181035f8301526142f2816142b9565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f614353602683613685565b915061435e826142f9565b604082019050919050565b5f6020820190508181035f83015261438081614347565b9050919050565b61439081613cb9565b811461439a575f80fd5b50565b5f815190506143ab81614387565b92915050565b5f602082840312156143c6576143c561372e565b5b5f6143d38482850161439d565b91505092915050565b5f6143e682613790565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361441857614417613dee565b5b600182019050919050565b5f61442d82613790565b915061443883613790565b925082820261444681613790565b9150828204841483151761445d5761445c613dee565b5b5092915050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f5f8201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b5f6144be602183613685565b91506144c982614464565b604082019050919050565b5f6020820190508181035f8301526144eb816144b2565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f7700000000005f82015250565b5f614526601b83613685565b9150614531826144f2565b602082019050919050565b5f6020820190508181035f8301526145538161451a565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6145b4602483613685565b91506145bf8261455a565b604082019050919050565b5f6020820190508181035f8301526145e1816145a8565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f614642602283613685565b915061464d826145e8565b604082019050919050565b5f6020820190508181035f83015261466f81614636565b9050919050565b5f61468082613cb9565b915061468b83613cb9565b92508282019050828112155f8312168382125f8412151617156146b1576146b0613dee565b5b92915050565b5f6146c182613b15565b9050919050565b6146d1816146b7565b82525050565b5f6040820190506146ea5f8301856146c8565b6146f76020830184613834565b9392505050565b5f61470882613790565b915061471383613790565b925082820390508181111561472b5761472a613dee565b5b92915050565b5f61473b82613cb9565b915061474683613cb9565b925082820390508181125f8412168282135f85121516171561476b5761476a613dee565b5b92915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f6147a5601f83613685565b91506147b082614771565b602082019050919050565b5f6020820190508181035f8301526147d281614799565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f614833602183613685565b915061483e826147d9565b604082019050919050565b5f6020820190508181035f83015261486081614827565b905091905056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220d2f0b2adc7962c42ea4662c0329b0a3b3ca4a1c6ec596dfe6c7a43cbd46e03d764736f6c63430008160033

Deployed Bytecode Sourcemap

35189:14965:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42143:21;:19;:21::i;:::-;35189:14965;;;;;42515:628;;;:::i;:::-;;37230:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39094:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45489:115;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37507:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36321:49;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38751:184;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44735:247;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36281:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37416:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42312:195;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39271:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40119:739;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40866:227;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37750:823;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;43675:106;;;;;;;;;;;;;:::i;:::-;;36377:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37615:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17114:148;;;;;;;;;;;;;:::i;:::-;;49970:179;;;;;;;;;;;;;:::i;:::-;;36745:78;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49033:128;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35933:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48878:147;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43151:514;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16478:79;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44296:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37321:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39497:269;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44426:166;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38581:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44600:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36988:40;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;:::i;:::-;;;;;;;;42180:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38943:143;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49735:151;;;;;;;;;;;;;:::i;:::-;;45372:109;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44992:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17417:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45612:1270;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;;;;;;;;47587:1283;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;42515:628;42596:1;42580:13;:11;:13::i;:::-;:17;42572:26;;;;;;42609:22;42634:11;;;;;;;;;;;:21;;;42664:4;42634:36;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;42609:61;;42681:27;42698:9;42681:16;:27::i;:::-;42719:18;42740:56;42781:14;42740:11;;;;;;;;;;;:21;;;42770:4;42740:36;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:40;;:56;;;;:::i;:::-;42719:77;;42824:1;42811:10;:14;42807:329;;;42870:106;42948:13;:11;:13::i;:::-;42918:27;35392:8;42919:10;42918:16;;:27;;;;:::i;:::-;:43;;;;:::i;:::-;42870:25;;:29;;:106;;;;:::i;:::-;42842:25;:134;;;;43017:10;42996:44;;;43029:10;42996:44;;;;;;:::i;:::-;;;;;;;;43083:41;43113:10;43083:25;;:29;;:41;;;;:::i;:::-;43055:25;:69;;;;42807:329;42561:582;;42515:628::o;37230:83::-;37267:13;37300:5;37293:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37230:83;:::o;39094:169::-;39177:4;39194:39;39203:12;:10;:12::i;:::-;39217:7;39226:6;39194:8;:39::i;:::-;39251:4;39244:11;;39094:169;;;;:::o;45489:115::-;45547:7;45574:15;;;;;;;;;;;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;45567:29;;45489:115;:::o;37507:100::-;37560:7;37587:12;;37580:19;;37507:100;:::o;36321:49::-;;;;;;;;;;;;;;;;;:::o;38751:184::-;38830:4;38855:5;38847:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;38923:4;38916:11;;38751:184;;;;;:::o;44735:247::-;44804:7;35392:8;44831:131;:115;44909:28;:36;44938:6;44909:36;;;;;;;;;;;;;;;;44831:63;:48;44861:17;44871:6;44861:9;:17::i;:::-;44831:25;;:29;;:48;;;;:::i;:::-;:61;:63::i;:::-;:77;;:115;;;;:::i;:::-;:129;:131::i;:::-;:143;;;;:::i;:::-;44824:150;;44735:247;;;:::o;36281:33::-;;;;:::o;37416:83::-;37457:5;37482:9;;;;;;;;;;;37475:16;;37416:83;:::o;42312:195::-;16700:12;:10;:12::i;:::-;16690:22;;:6;;;;;;;;;;:22;;;16682:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;42389:23:::1;42401:7;42410:1;42389:11;:23::i;:::-;42423:15;;;;;;;;;;;:22;;;42446:7;42423:31;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;42491:7;42470:29;;;;;;;;;;;;42312:195:::0;:::o;39271:218::-;39359:4;39376:83;39385:12;:10;:12::i;:::-;39399:7;39408:50;39447:10;39408:11;:25;39420:12;:10;:12::i;:::-;39408:25;;;;;;;;;;;;;;;:34;39434:7;39408:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;39376:8;:83::i;:::-;39477:4;39470:11;;39271:218;;;;:::o;40119:739::-;40179:15;40197:6;;;;;;;;;;;:23;;;40221:7;40197:32;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;40179:50;;40245:6;;;;;;;;;;;:28;;;40274:7;40245:37;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;40240:562;;40300:14;40319:19;40330:7;40319:10;:19::i;:::-;40299:39;;;40369:1;40357:9;:13;40353:270;;;40391:31;40403:7;40412:9;40391:11;:31::i;:::-;40441:15;;;;;;;;;;;:19;;;40461:7;40470:9;40441:39;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40353:270;;;40534:23;40546:7;40555:1;40534:11;:23::i;:::-;40576:15;;;;;;;;;;;:22;;;40599:7;40576:31;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40353:270;40284:350;40240:562;;;40680:1;40659:18;40669:7;40659:9;:18::i;:::-;:22;40655:136;;;40702:23;40714:7;40723:1;40702:11;:23::i;:::-;40744:15;;;;;;;;;;;:22;;;40767:7;40744:31;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40655:136;40240:562;40812:38;40835:7;40845:4;40812:14;:38::i;:::-;;40168:690;40119:739;:::o;40866:227::-;40942:13;40970:116;40985:8;:15;40977:5;:23;40970:116;;;41017:32;41033:8;41042:5;41033:15;;;;;;;;:::i;:::-;;;;;;;;41017;:32::i;:::-;41073:1;41064:10;;;;;:::i;:::-;;;40970:116;;;40931:162;40866:227;:::o;37750:823::-;37807:4;37813:13;37839:14;37868:18;:35;;;;;;;;;;;;;;;;;;;37927:16;:20;;;37917:6;:30;37914:108;;37976:7;37964:19;;37998:12;;;;;;;;;;;;;;;;;;;37914:108;38046:16;:25;;;38036:6;:35;38033:118;;38100:7;38088:19;;38122:17;;;;;;;;;;;;;;;;;;;38033:118;38175:16;:26;;;38165:6;:36;38162:120;;38230:7;38218:19;;38252:18;;;;;;;;;;;;;;;;;;;38162:120;38306:16;:24;;;38296:6;:34;38293:117;;38359:8;38347:20;;38382:16;;;;;;;;;;;;;;;;;;;38293:117;38434:16;:20;;;38424:6;:30;38421:109;;38483:8;38471:20;;38506:12;;;;;;;;;;;;;;;;;;;38421:109;38549:9;38560:4;38541:24;;;;;;37750:823;;;:::o;43675:106::-;43729:44;43761:10;43729:23;:44::i;:::-;;43675:106::o;36377:31::-;;;;:::o;37615:127::-;37689:7;37716:9;:18;37726:7;37716:18;;;;;;;;;;;;;;;;37709:25;;37615:127;;;:::o;17114:148::-;16700:12;:10;:12::i;:::-;16690:22;;:6;;;;;;;;;;:22;;;16682:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;17221:1:::1;17184:40;;17205:6;::::0;::::1;;;;;;;;17184:40;;;;;;;;;;;;17252:1;17235:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;17114:148::o:0;49970:179::-;16700:12;:10;:12::i;:::-;16690:22;;:6;;;;;;;;;;:22;;;16682:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;50026:21:::1;50050:11;;;;;;;;;;;:21;;;50080:4;50050:36;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50026:60;;50097:11;;;;;;;;;;;:20;;;50118:7;:5;:7::i;:::-;50127:13;50097:44;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;50015:134;49970:179::o:0;36745:78::-;;;;;;;;;;;;;:::o;49033:128::-;49101:7;49128:16;:25;49145:7;49128:25;;;;;;;;;;;;;;;;49121:32;;49033:128;;;:::o;35933:40::-;;;;:::o;48878:147::-;16700:12;:10;:12::i;:::-;16690:22;;:6;;;;;;;;;;:22;;;16682:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;48983:34:::1;48998:7;49007:9;48983:14;:34::i;:::-;;48878:147:::0;;:::o;43151:514::-;43272:21;43310:1;43296:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43272:40;;43333:15;;;;;;;;;;;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;43323:4;43328:1;43323:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;43384:11;;;;;;;;;;;43366:4;43371:1;43366:7;;;;;;;;:::i;:::-;;;;;;;:30;;;;;;;;;;;43435:15;;;;;;;;;;;:66;;;43510:9;43535:1;43584:4;43611;43631:15;43435:222;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43203:462;43151:514;:::o;16478:79::-;16516:7;16543:6;;;;;;;;;;;16536:13;;16478:79;:::o;44296:122::-;44353:7;44380:30;44403:6;44380:22;:30::i;:::-;44373:37;;44296:122;;;:::o;37321:87::-;37360:13;37393:7;37386:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37321:87;:::o;39497:269::-;39590:4;39607:129;39616:12;:10;:12::i;:::-;39630:7;39639:96;39678:15;39639:96;;;;;;;;;;;;;;;;;:11;:25;39651:12;:10;:12::i;:::-;39639:25;;;;;;;;;;;;;;;:34;39665:7;39639:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;39607:8;:129::i;:::-;39754:4;39747:11;;39497:269;;;;:::o;44426:166::-;44495:7;44522:62;44557:18;:26;44576:6;44557:26;;;;;;;;;;;;;;;;44522:30;44545:6;44522:22;:30::i;:::-;:34;;:62;;;;:::i;:::-;44515:69;;44426:166;;;:::o;38581:162::-;38638:4;38663:5;38655:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;38731:4;38724:11;;38581:162;;;;:::o;44600:127::-;44666:7;44693:18;:26;44712:6;44693:26;;;;;;;;;;;;;;;;44686:33;;44600:127;;;:::o;36988:40::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;42180:124::-;16700:12;:10;:12::i;:::-;16690:22;;:6;;;;;;;;;;:22;;;16682:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;42282:12:::1;42258:6;;:38;;;;;;;;;;;;;;;;;;42180:124:::0;:::o;38943:143::-;39024:7;39051:11;:18;39063:5;39051:18;;;;;;;;;;;;;;;:27;39070:7;39051:27;;;;;;;;;;;;;;;;39044:34;;38943:143;;;;:::o;49735:151::-;16700:12;:10;:12::i;:::-;16690:22;;:6;;;;;;;;;;:22;;;16682:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;49788:18:::1;49809:21;49788:42;;49849:7;:5;:7::i;:::-;49841:25;;:37;49867:10;49841:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;49777:109;49735:151::o:0;45372:109::-;45428:7;45455:18;;45448:25;;45372:109;:::o;44992:372::-;16700:12;:10;:12::i;:::-;16690:22;;:6;;;;;;;;;;:22;;;16682:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;45093:4:::1;45077:12;:20;;:45;;;;;45117:5;45101:12;:21;;45077:45;45069:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;45213:9;;45197:12;:25:::0;45189:75:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;45311:9;;45297:12;45280:41;;;;;;;;;;45344:12;45332:9;:24;;;;44992:372:::0;:::o;17417:244::-;16700:12;:10;:12::i;:::-;16690:22;;:6;;;;;;;;;;:22;;;16682:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;17526:1:::1;17506:22;;:8;:22;;::::0;17498:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;17616:8;17587:38;;17608:6;::::0;::::1;;;;;;;;17587:38;;;;;;;;;;;;17645:8;17636:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;17417:244:::0;:::o;45612:1270::-;45671:15;45688:12;45702:31;45744:29;45775:22;45799:21;45831;45854:38;45915:8;45905:18;;45942:15;;;;;;;;;;;:29;;;45972:7;45942:38;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;45934:46;;46018:3;45991:30;;46045:1;46036:5;:10;46032:473;;46084:18;;46075:5;46067:35;46063:431;;;46150:37;46167:18;;46150:5;:9;;:37;;;;:::i;:::-;46123:64;;46063:431;;;46241:32;46301:18;;46276:15;;;;;;;;;;;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:43;:113;;46388:1;46276:113;;;46339:46;46366:18;;46339:15;;;;;;;;;;;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:26;;:46;;;;:::i;:::-;46276:113;46241:148;;46435:43;46452:24;46435:5;:9;;:43;;;;:::i;:::-;46408:70;;46222:272;46063:431;46032:473;46539:31;46562:7;46539:22;:31::i;:::-;46515:55;;46598:31;46621:7;46598:22;:31::i;:::-;46581:48;;46656:14;:23;46671:7;46656:23;;;;;;;;;;;;;;;;46640:39;;46722:1;46706:13;:17;:52;;46757:1;46706:52;;;46726:28;46744:9;;46726:13;:17;;:28;;;;:::i;:::-;46706:52;46690:68;;46818:15;46802:13;:31;:72;;46873:1;46802:72;;;46836:34;46854:15;46836:13;:17;;:34;;;;:::i;:::-;46802:72;46769:105;;45612:1270;;;;;;;;;:::o;47587:1283::-;47633:7;47642;47651;47671:28;47702:15;;;;;;;;;;;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47671:53;;47765:1;47741:20;:25;47737:91;;47791:1;47794;47797:18;;47783:33;;;;;;;;;47737:91;47838:27;47868:18;;47838:48;;47897:15;47927;47945:9;47927:27;;47965:18;47998:14;48027:727;48044:3;48034:7;:13;:50;;;;;48064:20;48051:10;:33;48034:50;48027:727;;;48101:21;;;;;:::i;:::-;;;;48164:15;;;;;;;;;;;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;48141:19;:45;48137:109;;48229:1;48207:23;;48137:109;48260:15;48278;;;;;;;;;;;:29;;;48308:19;48278:50;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;48260:68;;48347:37;48360:14;:23;48375:7;48360:23;;;;;;;;;;;;;;;;48347:12;:37::i;:::-;48343:172;;;48409:38;48432:7;48442:4;48409:14;:38::i;:::-;48405:95;;;48472:8;;;;;:::i;:::-;;;;48405:95;48343:172;48529:12;;;;;:::i;:::-;;;;48556:18;48577:9;48556:30;;48615:10;48605:7;:20;48601:107;;;48656:36;48668:23;48680:10;48668:7;:11;;:23;;;;:::i;:::-;48656:7;:11;;:36;;;;:::i;:::-;48646:46;;48601:107;48732:10;48722:20;;48086:668;;48027:727;;;48785:19;48764:18;:40;;;;48823:10;48835:6;48843:18;;48815:47;;;;;;;;;;;;47587:1283;;;;;;:::o;4858:136::-;4916:7;4943:43;4947:1;4950;4943:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;4936:50;;4858:136;;;;:::o;5748:471::-;5806:7;6056:1;6051;:6;6047:47;;6081:1;6074:8;;;;6047:47;6106:9;6122:1;6118;:5;;;;:::i;:::-;6106:17;;6151:1;6146;6142;:5;;;;:::i;:::-;:10;6134:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;6210:1;6203:8;;;5748:471;;;;;:::o;4394:181::-;4452:7;4472:9;4488:1;4484;:5;;;;:::i;:::-;4472:17;;4513:1;4508;:6;;4500:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;4566:1;4559:8;;;4394:181;;;;:::o;8966:98::-;9019:7;9046:10;9039:17;;8966:98;:::o;39774:337::-;39884:1;39867:19;;:5;:19;;;39859:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39965:1;39946:21;;:7;:21;;;39938:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40049:6;40019:11;:18;40031:5;40019:18;;;;;;;;;;;;;;;:27;40038:7;40019:27;;;;;;;;;;;;;;;:36;;;;40087:7;40071:32;;40080:5;40071:32;;;40096:6;40071:32;;;;;;:::i;:::-;;;;;;;;39774:337;;;:::o;3399:148::-;3455:6;3474:8;3492:1;3474:20;;3518:1;3513;:6;;3505:15;;;;;;3538:1;3531:8;;;3399:148;;;:::o;2915:176::-;2971:6;2990:8;3005:1;3001;:5;;;;:::i;:::-;2990:16;;3031:1;3026;:6;;:16;;;;;3041:1;3036;:6;;3026:16;3025:38;;;;3052:1;3048;:5;:14;;;;;3061:1;3057;:5;3048:14;3025:38;3017:47;;;;;;3082:1;3075:8;;;2915:176;;;;:::o;3237:127::-;3293:7;3326:1;3321;:6;;3313:15;;;;;;3354:1;3339:17;;3237:127;;;:::o;47130:449::-;47208:22;47233:18;47243:7;47233:9;:18::i;:::-;47208:43;;47279:14;47266:10;:27;47262:310;;;47310:18;47331:30;47346:14;47331:10;:14;;:30;;;;:::i;:::-;47310:51;;47376:26;47382:7;47391:10;47376:5;:26::i;:::-;47295:119;47262:310;;;47437:14;47424:10;:27;47420:152;;;47468:18;47489:30;47508:10;47489:14;:18;;:30;;;;:::i;:::-;47468:51;;47534:26;47540:7;47549:10;47534:5;:26::i;:::-;47453:119;47420:152;47262:310;47197:382;47130:449;;:::o;49169:482::-;49251:4;49268:14;49285:32;49309:7;49285:23;:32::i;:::-;49268:49;;49341:1;49332:6;:10;49328:293;;;49359:20;49382:16;:25;49399:7;49382:25;;;;;;;;;;;;;;;;49359:48;;49450:24;49461:12;49450:6;:10;;:24;;;;:::i;:::-;49422:16;:25;49439:7;49422:25;;;;;;;;;;;;;;;:52;;;;49515:15;49489:14;:23;49504:7;49489:23;;;;;;;;;;;;;;;:41;;;;49573:9;49550:33;;49556:7;49550:33;;;49565:6;49550:33;;;;;;:::i;:::-;;;;;;;;49605:4;49598:11;;;;;;49328:293;49638:5;49631:12;;;49169:482;;;;;:::o;43789:499::-;43862:7;43882:29;43914:28;43937:4;43914:22;:28::i;:::-;43882:60;;43981:1;43957:21;:25;43953:309;;;44026:51;44055:21;44026:18;:24;44045:4;44026:24;;;;;;;;;;;;;;;;:28;;:51;;;;:::i;:::-;43999:18;:24;44018:4;43999:24;;;;;;;;;;;;;;;:78;;;;44115:4;44097:46;;;44121:21;44097:46;;;;;;:::i;:::-;;;;;;;;44158:11;;;;;;;;;;;:20;;;44179:4;44185:21;44158:49;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;44229:21;44222:28;;;;;43953:309;44279:1;44272:8;;;43789:499;;;;:::o;5297:192::-;5383:7;5416:1;5411;:6;;5419:12;5403:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;5443:9;5459:1;5455;:5;;;;:::i;:::-;5443:17;;5480:1;5473:8;;;5297:192;;;;;:::o;2731:176::-;2787:6;2806:8;2821:1;2817;:5;;;;:::i;:::-;2806:16;;2847:1;2842;:6;;:16;;;;;2857:1;2852;:6;;2842:16;2841:38;;;;2868:1;2864;:5;:14;;;;;2877:1;2873;:5;2864:14;2841:38;2833:47;;;;;;2898:1;2891:8;;;2731:176;;;;:::o;46890:232::-;46957:4;46994:15;46978:13;:31;46974:76;;;47033:5;47026:12;;;;46974:76;47105:9;;47067:34;47087:13;47067:15;:19;;:34;;;;:::i;:::-;:47;;47060:54;;46890:232;;;;:::o;41101:472::-;41204:1;41185:21;;:7;:21;;;41177:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;41268:24;41285:6;41268:12;;:16;;:24;;;;:::i;:::-;41253:12;:39;;;;41324:30;41347:6;41324:9;:18;41334:7;41324:18;;;;;;;;;;;;;;;;:22;;:30;;;;:::i;:::-;41303:9;:18;41313:7;41303:18;;;;;;;;;;;;;;;:51;;;;41391:7;41370:37;;41387:1;41370:37;;;41400:6;41370:37;;;;;;:::i;:::-;;;;;;;;41458:107;41510:54;41511:37;41541:6;41511:25;;:29;;:37;;;;:::i;:::-;41510:52;:54::i;:::-;41458:28;:37;41487:7;41458:37;;;;;;;;;;;;;;;;:51;;:107;;;;:::i;:::-;41418:28;:37;41447:7;41418:37;;;;;;;;;;;;;;;:147;;;;41101:472;;:::o;41581:516::-;41684:1;41665:21;;:7;:21;;;41657:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;41758:68;41781:6;41758:68;;;;;;;;;;;;;;;;;:9;:18;41768:7;41758:18;;;;;;;;;;;;;;;;:22;;:68;;;;;:::i;:::-;41737:9;:18;41747:7;41737:18;;;;;;;;;;;;;;;:89;;;;41852:24;41869:6;41852:12;;:16;;:24;;;;:::i;:::-;41837:12;:39;;;;41918:1;41892:37;;41901:7;41892:37;;;41922:6;41892:37;;;;;;:::i;:::-;;;;;;;;41982:107;42034:54;42035:37;42065:6;42035:25;;:29;;:37;;;;:::i;:::-;42034:52;:54::i;:::-;41982:28;:37;42011:7;41982:37;;;;;;;;;;;;;;;;:51;;:107;;;;:::i;:::-;41942:28;:37;41971:7;41942:37;;;;;;;;;;;;;;;:147;;;;41581:516;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1349:75::-;1382:6;1415:2;1409:9;1399:19;;1349:75;:::o;1430:117::-;1539:1;1536;1529:12;1553:117;1662:1;1659;1652:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:329::-;3857:6;3906:2;3894:9;3885:7;3881:23;3877:32;3874:119;;;3912:79;;:::i;:::-;3874:119;4032:1;4057:53;4102:7;4093:6;4082:9;4078:22;4057:53;:::i;:::-;4047:63;;4003:117;3798:329;;;;:::o;4133:619::-;4210:6;4218;4226;4275:2;4263:9;4254:7;4250:23;4246:32;4243:119;;;4281:79;;:::i;:::-;4243:119;4401:1;4426:53;4471:7;4462:6;4451:9;4447:22;4426:53;:::i;:::-;4416:63;;4372:117;4528:2;4554:53;4599:7;4590:6;4579:9;4575:22;4554:53;:::i;:::-;4544:63;;4499:118;4656:2;4682:53;4727:7;4718:6;4707:9;4703:22;4682:53;:::i;:::-;4672:63;;4627:118;4133:619;;;;;:::o;4758:86::-;4793:7;4833:4;4826:5;4822:16;4811:27;;4758:86;;;:::o;4850:112::-;4933:22;4949:5;4933:22;:::i;:::-;4928:3;4921:35;4850:112;;:::o;4968:214::-;5057:4;5095:2;5084:9;5080:18;5072:26;;5108:67;5172:1;5161:9;5157:17;5148:6;5108:67;:::i;:::-;4968:214;;;;:::o;5188:117::-;5297:1;5294;5287:12;5311:180;5359:77;5356:1;5349:88;5456:4;5453:1;5446:15;5480:4;5477:1;5470:15;5497:281;5580:27;5602:4;5580:27;:::i;:::-;5572:6;5568:40;5710:6;5698:10;5695:22;5674:18;5662:10;5659:34;5656:62;5653:88;;;5721:18;;:::i;:::-;5653:88;5761:10;5757:2;5750:22;5540:238;5497:281;;:::o;5784:129::-;5818:6;5845:20;;:::i;:::-;5835:30;;5874:33;5902:4;5894:6;5874:33;:::i;:::-;5784:129;;;:::o;5919:311::-;5996:4;6086:18;6078:6;6075:30;6072:56;;;6108:18;;:::i;:::-;6072:56;6158:4;6150:6;6146:17;6138:25;;6218:4;6212;6208:15;6200:23;;5919:311;;;:::o;6236:117::-;6345:1;6342;6335:12;6376:710;6472:5;6497:81;6513:64;6570:6;6513:64;:::i;:::-;6497:81;:::i;:::-;6488:90;;6598:5;6627:6;6620:5;6613:21;6661:4;6654:5;6650:16;6643:23;;6714:4;6706:6;6702:17;6694:6;6690:30;6743:3;6735:6;6732:15;6729:122;;;6762:79;;:::i;:::-;6729:122;6877:6;6860:220;6894:6;6889:3;6886:15;6860:220;;;6969:3;6998:37;7031:3;7019:10;6998:37;:::i;:::-;6993:3;6986:50;7065:4;7060:3;7056:14;7049:21;;6936:144;6920:4;6915:3;6911:14;6904:21;;6860:220;;;6864:21;6478:608;;6376:710;;;;;:::o;7109:370::-;7180:5;7229:3;7222:4;7214:6;7210:17;7206:27;7196:122;;7237:79;;:::i;:::-;7196:122;7354:6;7341:20;7379:94;7469:3;7461:6;7454:4;7446:6;7442:17;7379:94;:::i;:::-;7370:103;;7186:293;7109:370;;;;:::o;7485:539::-;7569:6;7618:2;7606:9;7597:7;7593:23;7589:32;7586:119;;;7624:79;;:::i;:::-;7586:119;7772:1;7761:9;7757:17;7744:31;7802:18;7794:6;7791:30;7788:117;;;7824:79;;:::i;:::-;7788:117;7929:78;7999:7;7990:6;7979:9;7975:22;7929:78;:::i;:::-;7919:88;;7715:302;7485:539;;;;:::o;8030:329::-;8089:6;8138:2;8126:9;8117:7;8113:23;8109:32;8106:119;;;8144:79;;:::i;:::-;8106:119;8264:1;8289:53;8334:7;8325:6;8314:9;8310:22;8289:53;:::i;:::-;8279:63;;8235:117;8030:329;;;;:::o;8365:423::-;8506:4;8544:2;8533:9;8529:18;8521:26;;8557:71;8625:1;8614:9;8610:17;8601:6;8557:71;:::i;:::-;8675:9;8669:4;8665:20;8660:2;8649:9;8645:18;8638:48;8703:78;8776:4;8767:6;8703:78;:::i;:::-;8695:86;;8365:423;;;;;:::o;8794:60::-;8822:3;8843:5;8836:12;;8794:60;;;:::o;8860:142::-;8910:9;8943:53;8961:34;8970:24;8988:5;8970:24;:::i;:::-;8961:34;:::i;:::-;8943:53;:::i;:::-;8930:66;;8860:142;;;:::o;9008:126::-;9058:9;9091:37;9122:5;9091:37;:::i;:::-;9078:50;;9008:126;;;:::o;9140:139::-;9203:9;9236:37;9267:5;9236:37;:::i;:::-;9223:50;;9140:139;;;:::o;9285:157::-;9385:50;9429:5;9385:50;:::i;:::-;9380:3;9373:63;9285:157;;:::o;9448:248::-;9554:4;9592:2;9581:9;9577:18;9569:26;;9605:84;9686:1;9675:9;9671:17;9662:6;9605:84;:::i;:::-;9448:248;;;;:::o;9702:104::-;9747:7;9776:24;9794:5;9776:24;:::i;:::-;9765:35;;9702:104;;;:::o;9812:138::-;9893:32;9919:5;9893:32;:::i;:::-;9886:5;9883:43;9873:71;;9940:1;9937;9930:12;9873:71;9812:138;:::o;9956:155::-;10010:5;10048:6;10035:20;10026:29;;10064:41;10099:5;10064:41;:::i;:::-;9956:155;;;;:::o;10117:116::-;10187:21;10202:5;10187:21;:::i;:::-;10180:5;10177:32;10167:60;;10223:1;10220;10213:12;10167:60;10117:116;:::o;10239:133::-;10282:5;10320:6;10307:20;10298:29;;10336:30;10360:5;10336:30;:::i;:::-;10239:133;;;;:::o;10378:484::-;10451:6;10459;10508:2;10496:9;10487:7;10483:23;10479:32;10476:119;;;10514:79;;:::i;:::-;10476:119;10634:1;10659:61;10712:7;10703:6;10692:9;10688:22;10659:61;:::i;:::-;10649:71;;10605:125;10769:2;10795:50;10837:7;10828:6;10817:9;10813:22;10795:50;:::i;:::-;10785:60;;10740:115;10378:484;;;;;:::o;10868:118::-;10955:24;10973:5;10955:24;:::i;:::-;10950:3;10943:37;10868:118;;:::o;10992:222::-;11085:4;11123:2;11112:9;11108:18;11100:26;;11136:71;11204:1;11193:9;11189:17;11180:6;11136:71;:::i;:::-;10992:222;;;;:::o;11220:664::-;11425:4;11463:3;11452:9;11448:19;11440:27;;11477:71;11545:1;11534:9;11530:17;11521:6;11477:71;:::i;:::-;11558:72;11626:2;11615:9;11611:18;11602:6;11558:72;:::i;:::-;11640;11708:2;11697:9;11693:18;11684:6;11640:72;:::i;:::-;11722;11790:2;11779:9;11775:18;11766:6;11722:72;:::i;:::-;11804:73;11872:3;11861:9;11857:19;11848:6;11804:73;:::i;:::-;11220:664;;;;;;;;:::o;11890:474::-;11958:6;11966;12015:2;12003:9;11994:7;11990:23;11986:32;11983:119;;;12021:79;;:::i;:::-;11983:119;12141:1;12166:53;12211:7;12202:6;12191:9;12187:22;12166:53;:::i;:::-;12156:63;;12112:117;12268:2;12294:53;12339:7;12330:6;12319:9;12315:22;12294:53;:::i;:::-;12284:63;;12239:118;11890:474;;;;;:::o;12370:76::-;12406:7;12435:5;12424:16;;12370:76;;;:::o;12452:115::-;12537:23;12554:5;12537:23;:::i;:::-;12532:3;12525:36;12452:115;;:::o;12573:989::-;12858:4;12896:3;12885:9;12881:19;12873:27;;12910:71;12978:1;12967:9;12963:17;12954:6;12910:71;:::i;:::-;12991:70;13057:2;13046:9;13042:18;13033:6;12991:70;:::i;:::-;13071;13137:2;13126:9;13122:18;13113:6;13071:70;:::i;:::-;13151:72;13219:2;13208:9;13204:18;13195:6;13151:72;:::i;:::-;13233:73;13301:3;13290:9;13286:19;13277:6;13233:73;:::i;:::-;13316;13384:3;13373:9;13369:19;13360:6;13316:73;:::i;:::-;13399;13467:3;13456:9;13452:19;13443:6;13399:73;:::i;:::-;13482;13550:3;13539:9;13535:19;13526:6;13482:73;:::i;:::-;12573:989;;;;;;;;;;;:::o;13568:442::-;13717:4;13755:2;13744:9;13740:18;13732:26;;13768:71;13836:1;13825:9;13821:17;13812:6;13768:71;:::i;:::-;13849:72;13917:2;13906:9;13902:18;13893:6;13849:72;:::i;:::-;13931;13999:2;13988:9;13984:18;13975:6;13931:72;:::i;:::-;13568:442;;;;;;:::o;14016:143::-;14073:5;14104:6;14098:13;14089:22;;14120:33;14147:5;14120:33;:::i;:::-;14016:143;;;;:::o;14165:351::-;14235:6;14284:2;14272:9;14263:7;14259:23;14255:32;14252:119;;;14290:79;;:::i;:::-;14252:119;14410:1;14435:64;14491:7;14482:6;14471:9;14467:22;14435:64;:::i;:::-;14425:74;;14381:128;14165:351;;;;:::o;14522:180::-;14570:77;14567:1;14560:88;14667:4;14664:1;14657:15;14691:4;14688:1;14681:15;14708:180;14756:77;14753:1;14746:88;14853:4;14850:1;14843:15;14877:4;14874:1;14867:15;14894:185;14934:1;14951:20;14969:1;14951:20;:::i;:::-;14946:25;;14985:20;15003:1;14985:20;:::i;:::-;14980:25;;15024:1;15014:35;;15029:18;;:::i;:::-;15014:35;15071:1;15068;15064:9;15059:14;;14894:185;;;;:::o;15085:180::-;15133:77;15130:1;15123:88;15230:4;15227:1;15220:15;15254:4;15251:1;15244:15;15271:320;15315:6;15352:1;15346:4;15342:12;15332:22;;15399:1;15393:4;15389:12;15420:18;15410:81;;15476:4;15468:6;15464:17;15454:27;;15410:81;15538:2;15530:6;15527:14;15507:18;15504:38;15501:84;;15557:18;;:::i;:::-;15501:84;15322:269;15271:320;;;:::o;15597:227::-;15737:34;15733:1;15725:6;15721:14;15714:58;15806:10;15801:2;15793:6;15789:15;15782:35;15597:227;:::o;15830:366::-;15972:3;15993:67;16057:2;16052:3;15993:67;:::i;:::-;15986:74;;16069:93;16158:3;16069:93;:::i;:::-;16187:2;16182:3;16178:12;16171:19;;15830:366;;;:::o;16202:419::-;16368:4;16406:2;16395:9;16391:18;16383:26;;16455:9;16449:4;16445:20;16441:1;16430:9;16426:17;16419:47;16483:131;16609:4;16483:131;:::i;:::-;16475:139;;16202:419;;;:::o;16627:182::-;16767:34;16763:1;16755:6;16751:14;16744:58;16627:182;:::o;16815:366::-;16957:3;16978:67;17042:2;17037:3;16978:67;:::i;:::-;16971:74;;17054:93;17143:3;17054:93;:::i;:::-;17172:2;17167:3;17163:12;17156:19;;16815:366;;;:::o;17187:419::-;17353:4;17391:2;17380:9;17376:18;17368:26;;17440:9;17434:4;17430:20;17426:1;17415:9;17411:17;17404:47;17468:131;17594:4;17468:131;:::i;:::-;17460:139;;17187:419;;;:::o;17612:137::-;17666:5;17697:6;17691:13;17682:22;;17713:30;17737:5;17713:30;:::i;:::-;17612:137;;;;:::o;17755:345::-;17822:6;17871:2;17859:9;17850:7;17846:23;17842:32;17839:119;;;17877:79;;:::i;:::-;17839:119;17997:1;18022:61;18075:7;18066:6;18055:9;18051:22;18022:61;:::i;:::-;18012:71;;17968:125;17755:345;;;;:::o;18106:332::-;18227:4;18265:2;18254:9;18250:18;18242:26;;18278:71;18346:1;18335:9;18331:17;18322:6;18278:71;:::i;:::-;18359:72;18427:2;18416:9;18412:18;18403:6;18359:72;:::i;:::-;18106:332;;;;;:::o;18444:180::-;18492:77;18489:1;18482:88;18589:4;18586:1;18579:15;18613:4;18610:1;18603:15;18630:191;18670:3;18689:20;18707:1;18689:20;:::i;:::-;18684:25;;18723:20;18741:1;18723:20;:::i;:::-;18718:25;;18766:1;18763;18759:9;18752:16;;18787:3;18784:1;18781:10;18778:36;;;18794:18;;:::i;:::-;18778:36;18630:191;;;;:::o;18827:143::-;18884:5;18915:6;18909:13;18900:22;;18931:33;18958:5;18931:33;:::i;:::-;18827:143;;;;:::o;18976:351::-;19046:6;19095:2;19083:9;19074:7;19070:23;19066:32;19063:119;;;19101:79;;:::i;:::-;19063:119;19221:1;19246:64;19302:7;19293:6;19282:9;19278:22;19246:64;:::i;:::-;19236:74;;19192:128;18976:351;;;;:::o;19333:85::-;19378:7;19407:5;19396:16;;19333:85;;;:::o;19424:158::-;19482:9;19515:61;19533:42;19542:32;19568:5;19542:32;:::i;:::-;19533:42;:::i;:::-;19515:61;:::i;:::-;19502:74;;19424:158;;;:::o;19588:147::-;19683:45;19722:5;19683:45;:::i;:::-;19678:3;19671:58;19588:147;;:::o;19741:114::-;19808:6;19842:5;19836:12;19826:22;;19741:114;;;:::o;19861:184::-;19960:11;19994:6;19989:3;19982:19;20034:4;20029:3;20025:14;20010:29;;19861:184;;;;:::o;20051:132::-;20118:4;20141:3;20133:11;;20171:4;20166:3;20162:14;20154:22;;20051:132;;;:::o;20189:108::-;20266:24;20284:5;20266:24;:::i;:::-;20261:3;20254:37;20189:108;;:::o;20303:179::-;20372:10;20393:46;20435:3;20427:6;20393:46;:::i;:::-;20471:4;20466:3;20462:14;20448:28;;20303:179;;;;:::o;20488:113::-;20558:4;20590;20585:3;20581:14;20573:22;;20488:113;;;:::o;20637:732::-;20756:3;20785:54;20833:5;20785:54;:::i;:::-;20855:86;20934:6;20929:3;20855:86;:::i;:::-;20848:93;;20965:56;21015:5;20965:56;:::i;:::-;21044:7;21075:1;21060:284;21085:6;21082:1;21079:13;21060:284;;;21161:6;21155:13;21188:63;21247:3;21232:13;21188:63;:::i;:::-;21181:70;;21274:60;21327:6;21274:60;:::i;:::-;21264:70;;21120:224;21107:1;21104;21100:9;21095:14;;21060:284;;;21064:14;21360:3;21353:10;;20761:608;;;20637:732;;;;:::o;21375:720::-;21610:4;21648:3;21637:9;21633:19;21625:27;;21662:79;21738:1;21727:9;21723:17;21714:6;21662:79;:::i;:::-;21788:9;21782:4;21778:20;21773:2;21762:9;21758:18;21751:48;21816:108;21919:4;21910:6;21816:108;:::i;:::-;21808:116;;21934:72;22002:2;21991:9;21987:18;21978:6;21934:72;:::i;:::-;22016;22084:2;22073:9;22069:18;22060:6;22016:72;:::i;:::-;21375:720;;;;;;;:::o;22101:238::-;22241:34;22237:1;22229:6;22225:14;22218:58;22310:21;22305:2;22297:6;22293:15;22286:46;22101:238;:::o;22345:366::-;22487:3;22508:67;22572:2;22567:3;22508:67;:::i;:::-;22501:74;;22584:93;22673:3;22584:93;:::i;:::-;22702:2;22697:3;22693:12;22686:19;;22345:366;;;:::o;22717:419::-;22883:4;22921:2;22910:9;22906:18;22898:26;;22970:9;22964:4;22960:20;22956:1;22945:9;22941:17;22934:47;22998:131;23124:4;22998:131;:::i;:::-;22990:139;;22717:419;;;:::o;23142:224::-;23282:34;23278:1;23270:6;23266:14;23259:58;23351:7;23346:2;23338:6;23334:15;23327:32;23142:224;:::o;23372:366::-;23514:3;23535:67;23599:2;23594:3;23535:67;:::i;:::-;23528:74;;23611:93;23700:3;23611:93;:::i;:::-;23729:2;23724:3;23720:12;23713:19;;23372:366;;;:::o;23744:419::-;23910:4;23948:2;23937:9;23933:18;23925:26;;23997:9;23991:4;23987:20;23983:1;23972:9;23968:17;23961:47;24025:131;24151:4;24025:131;:::i;:::-;24017:139;;23744:419;;;:::o;24169:225::-;24309:34;24305:1;24297:6;24293:14;24286:58;24378:8;24373:2;24365:6;24361:15;24354:33;24169:225;:::o;24400:366::-;24542:3;24563:67;24627:2;24622:3;24563:67;:::i;:::-;24556:74;;24639:93;24728:3;24639:93;:::i;:::-;24757:2;24752:3;24748:12;24741:19;;24400:366;;;:::o;24772:419::-;24938:4;24976:2;24965:9;24961:18;24953:26;;25025:9;25019:4;25015:20;25011:1;25000:9;24996:17;24989:47;25053:131;25179:4;25053:131;:::i;:::-;25045:139;;24772:419;;;:::o;25197:120::-;25269:23;25286:5;25269:23;:::i;:::-;25262:5;25259:34;25249:62;;25307:1;25304;25297:12;25249:62;25197:120;:::o;25323:141::-;25379:5;25410:6;25404:13;25395:22;;25426:32;25452:5;25426:32;:::i;:::-;25323:141;;;;:::o;25470:349::-;25539:6;25588:2;25576:9;25567:7;25563:23;25559:32;25556:119;;;25594:79;;:::i;:::-;25556:119;25714:1;25739:63;25794:7;25785:6;25774:9;25770:22;25739:63;:::i;:::-;25729:73;;25685:127;25470:349;;;;:::o;25825:233::-;25864:3;25887:24;25905:5;25887:24;:::i;:::-;25878:33;;25933:66;25926:5;25923:77;25920:103;;26003:18;;:::i;:::-;25920:103;26050:1;26043:5;26039:13;26032:20;;25825:233;;;:::o;26064:410::-;26104:7;26127:20;26145:1;26127:20;:::i;:::-;26122:25;;26161:20;26179:1;26161:20;:::i;:::-;26156:25;;26216:1;26213;26209:9;26238:30;26256:11;26238:30;:::i;:::-;26227:41;;26417:1;26408:7;26404:15;26401:1;26398:22;26378:1;26371:9;26351:83;26328:139;;26447:18;;:::i;:::-;26328:139;26112:362;26064:410;;;;:::o;26480:220::-;26620:34;26616:1;26608:6;26604:14;26597:58;26689:3;26684:2;26676:6;26672:15;26665:28;26480:220;:::o;26706:366::-;26848:3;26869:67;26933:2;26928:3;26869:67;:::i;:::-;26862:74;;26945:93;27034:3;26945:93;:::i;:::-;27063:2;27058:3;27054:12;27047:19;;26706:366;;;:::o;27078:419::-;27244:4;27282:2;27271:9;27267:18;27259:26;;27331:9;27325:4;27321:20;27317:1;27306:9;27302:17;27295:47;27359:131;27485:4;27359:131;:::i;:::-;27351:139;;27078:419;;;:::o;27503:177::-;27643:29;27639:1;27631:6;27627:14;27620:53;27503:177;:::o;27686:366::-;27828:3;27849:67;27913:2;27908:3;27849:67;:::i;:::-;27842:74;;27925:93;28014:3;27925:93;:::i;:::-;28043:2;28038:3;28034:12;28027:19;;27686:366;;;:::o;28058:419::-;28224:4;28262:2;28251:9;28247:18;28239:26;;28311:9;28305:4;28301:20;28297:1;28286:9;28282:17;28275:47;28339:131;28465:4;28339:131;:::i;:::-;28331:139;;28058:419;;;:::o;28483:223::-;28623:34;28619:1;28611:6;28607:14;28600:58;28692:6;28687:2;28679:6;28675:15;28668:31;28483:223;:::o;28712:366::-;28854:3;28875:67;28939:2;28934:3;28875:67;:::i;:::-;28868:74;;28951:93;29040:3;28951:93;:::i;:::-;29069:2;29064:3;29060:12;29053:19;;28712:366;;;:::o;29084:419::-;29250:4;29288:2;29277:9;29273:18;29265:26;;29337:9;29331:4;29327:20;29323:1;29312:9;29308:17;29301:47;29365:131;29491:4;29365:131;:::i;:::-;29357:139;;29084:419;;;:::o;29509:221::-;29649:34;29645:1;29637:6;29633:14;29626:58;29718:4;29713:2;29705:6;29701:15;29694:29;29509:221;:::o;29736:366::-;29878:3;29899:67;29963:2;29958:3;29899:67;:::i;:::-;29892:74;;29975:93;30064:3;29975:93;:::i;:::-;30093:2;30088:3;30084:12;30077:19;;29736:366;;;:::o;30108:419::-;30274:4;30312:2;30301:9;30297:18;30289:26;;30361:9;30355:4;30351:20;30347:1;30336:9;30332:17;30325:47;30389:131;30515:4;30389:131;:::i;:::-;30381:139;;30108:419;;;:::o;30533:375::-;30572:3;30591:19;30608:1;30591:19;:::i;:::-;30586:24;;30624:19;30641:1;30624:19;:::i;:::-;30619:24;;30666:1;30663;30659:9;30652:16;;30864:1;30859:3;30855:11;30848:19;30844:1;30841;30837:9;30833:35;30816:1;30811:3;30807:11;30802:1;30799;30795:9;30788:17;30784:35;30768:110;30765:136;;;30881:18;;:::i;:::-;30765:136;30533:375;;;;:::o;30914:134::-;30972:9;31005:37;31036:5;31005:37;:::i;:::-;30992:50;;30914:134;;;:::o;31054:147::-;31149:45;31188:5;31149:45;:::i;:::-;31144:3;31137:58;31054:147;;:::o;31207:348::-;31336:4;31374:2;31363:9;31359:18;31351:26;;31387:79;31463:1;31452:9;31448:17;31439:6;31387:79;:::i;:::-;31476:72;31544:2;31533:9;31529:18;31520:6;31476:72;:::i;:::-;31207:348;;;;;:::o;31561:194::-;31601:4;31621:20;31639:1;31621:20;:::i;:::-;31616:25;;31655:20;31673:1;31655:20;:::i;:::-;31650:25;;31699:1;31696;31692:9;31684:17;;31723:1;31717:4;31714:11;31711:37;;;31728:18;;:::i;:::-;31711:37;31561:194;;;;:::o;31761:372::-;31800:4;31820:19;31837:1;31820:19;:::i;:::-;31815:24;;31853:19;31870:1;31853:19;:::i;:::-;31848:24;;31896:1;31893;31889:9;31881:17;;32090:1;32084:4;32080:12;32076:1;32073;32069:9;32065:28;32048:1;32042:4;32038:12;32033:1;32030;32026:9;32019:17;32015:36;31999:104;31996:130;;;32106:18;;:::i;:::-;31996:130;31761:372;;;;:::o;32139:181::-;32279:33;32275:1;32267:6;32263:14;32256:57;32139:181;:::o;32326:366::-;32468:3;32489:67;32553:2;32548:3;32489:67;:::i;:::-;32482:74;;32565:93;32654:3;32565:93;:::i;:::-;32683:2;32678:3;32674:12;32667:19;;32326:366;;;:::o;32698:419::-;32864:4;32902:2;32891:9;32887:18;32879:26;;32951:9;32945:4;32941:20;32937:1;32926:9;32922:17;32915:47;32979:131;33105:4;32979:131;:::i;:::-;32971:139;;32698:419;;;:::o;33123:220::-;33263:34;33259:1;33251:6;33247:14;33240:58;33332:3;33327:2;33319:6;33315:15;33308:28;33123:220;:::o;33349:366::-;33491:3;33512:67;33576:2;33571:3;33512:67;:::i;:::-;33505:74;;33588:93;33677:3;33588:93;:::i;:::-;33706:2;33701:3;33697:12;33690:19;;33349:366;;;:::o;33721:419::-;33887:4;33925:2;33914:9;33910:18;33902:26;;33974:9;33968:4;33964:20;33960:1;33949:9;33945:17;33938:47;34002:131;34128:4;34002:131;:::i;:::-;33994:139;;33721:419;;;:::o

Swarm Source

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