ETH Price: $3,202.49 (+0.63%)
Gas: 3.74 Gwei
 

Overview

Max Total Supply

100,000,000 CJ

Holders

45

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
189,266.488589257805921861 CJ

Value
$0.00
0x5c61f78adc38dface0756f152c5d449554e68731
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:
Cj

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-08-31
*/

/**
 * SPDX-License-Identifier: MIT
 * https://t.me/cjonether
 * https://cjeth.vip
 * https://x.com/cjonether
 */

pragma solidity 0.8.19;

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

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

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

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

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

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

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

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

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

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

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

interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

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

contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

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

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

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

    function allowance(
        address owner,
        address spender
    ) public view virtual 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 transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

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

        return true;
    }

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

    function decreaseAllowance(
        address spender,
        uint256 subtractedValue
    ) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(
            currentAllowance >= subtractedValue,
            "ERC20: decreased allowance below zero"
        );
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

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

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

        emit Transfer(sender, recipient, amount);
    }

    function _createInitialSupply(
        address account,
        uint256 amount
    ) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");
        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);
    }

    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

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

interface DividendPayingTokenOptionalInterface {
    /// @notice View the amount of dividend in wei that an address can withdraw.
    /// @param _owner The address of a token holder.
    /// @return The amount of dividend in wei that `_owner` can withdraw.
    function withdrawableDividendOf(
        address _owner,
        address _rewardToken
    ) external view returns (uint256);

    /// @notice View the amount of dividend in wei that an address has withdrawn.
    /// @param _owner The address of a token holder.
    /// @return The amount of dividend in wei that `_owner` has withdrawn.
    function withdrawnDividendOf(
        address _owner,
        address _rewardToken
    ) external view returns (uint256);

    /// @notice View the amount of dividend in wei that an address has earned in total.
    /// @dev accumulativeDividendOf(_owner) = withdrawableDividendOf(_owner) + withdrawnDividendOf(_owner)
    /// @param _owner The address of a token holder.
    /// @return The amount of dividend in wei that `_owner` has earned in total.
    function accumulativeDividendOf(
        address _owner,
        address _rewardToken
    ) external view returns (uint256);
}

interface DividendPayingTokenInterface {
    /// @notice View the amount of dividend in wei that an address can withdraw.
    /// @param _owner The address of a token holder.
    /// @return The amount of dividend in wei that `_owner` can withdraw.
    function dividendOf(
        address _owner,
        address _rewardToken
    ) external view returns (uint256);

    /// @notice Distributes ether to token holders as dividends.
    /// @dev SHOULD distribute the paid ether to token holders as dividends.
    ///  SHOULD NOT directly transfer ether to token holders in this function.
    ///  MUST emit a `DividendsDistributed` event when the amount of distributed ether is greater than 0.
    function distributeDividends() external payable;

    /// @notice Withdraws the ether distributed to the sender.
    /// @dev SHOULD transfer `dividendOf(msg.sender)` wei to `msg.sender`, and `dividendOf(msg.sender)` SHOULD be 0 after the transfer.
    ///  MUST emit a `DividendWithdrawn` event if the amount of ether transferred is greater than 0.
    function withdrawDividend(address _rewardToken) external;

    /// @dev This event MUST emit when ether is distributed to token holders.
    /// @param from The address which sends ether to this contract.
    /// @param weiAmount The amount of distributed ether in wei.
    event DividendsDistributed(address indexed from, uint256 weiAmount);

    /// @dev This event MUST emit when an address withdraws their dividend.
    /// @param to The address which withdraws ether from this contract.
    /// @param weiAmount The amount of withdrawn ether in wei.
    event DividendWithdrawn(address indexed to, uint256 weiAmount);
}

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

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

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

    /**
     * @dev Multiplies two int256 variables and fails on overflow.
     */
    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;
    }

    /**
     * @dev Division of two int256 variables and fails on overflow.
     */
    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;
    }

    /**
     * @dev Subtracts two int256 variables and fails on overflow.
     */
    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;
    }

    /**
     * @dev Adds two int256 variables and fails on overflow.
     */
    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;
    }

    /**
     * @dev Converts to absolute value, and fails on overflow.
     */
    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;
    }
}

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

    function WETH() external pure returns (address);

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

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

    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);

    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);

    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint amountA, uint amountB);

    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint amountToken, uint amountETH);

    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);

    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);

    function swapExactETHForTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable returns (uint[] memory amounts);

    function swapTokensForExactETH(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);

    function swapExactTokensForETH(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);

    function swapETHForExactTokens(
        uint amountOut,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable returns (uint[] memory amounts);

    function quote(
        uint amountA,
        uint reserveA,
        uint reserveB
    ) external pure returns (uint amountB);

    function getAmountOut(
        uint amountIn,
        uint reserveIn,
        uint reserveOut
    ) external pure returns (uint amountOut);

    function getAmountIn(
        uint amountOut,
        uint reserveIn,
        uint reserveOut
    ) external pure returns (uint amountIn);

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

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

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);

    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        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 swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}

contract DividendPayingToken is
    DividendPayingTokenInterface,
    DividendPayingTokenOptionalInterface,
    Ownable
    {
    using SafeMath for uint256;
    using SafeMathUint for uint256;
    using SafeMathInt for int256;

    // With `magnitude`, we can properly distribute dividends even if the amount of received ether is small.
    // For more discussion about choosing the value of `magnitude`,
    //  see https://github.com/ethereum/EIPs/issues/1726#issuecomment-472352728
    uint256 internal constant magnitude = 2 ** 128;

    mapping(address => uint256) internal magnifiedDividendPerShare;
    address[] public rewardTokens;
    address public nextRewardToken;
    uint256 public rewardTokenCounter;

    IUniswapV2Router02 public immutable uniswapV2Router;

    // About dividendCorrection:
    // If the token balance of a `_user` is never changed, the dividend of `_user` can be computed with:
    //   `dividendOf(_user) = dividendPerShare * balanceOf(_user)`.
    // When `balanceOf(_user)` is changed (via minting/burning/transferring tokens),
    //   `dividendOf(_user)` should not be changed,
    //   but the computed value of `dividendPerShare * balanceOf(_user)` is changed.
    // To keep the `dividendOf(_user)` unchanged, we add a correction term:
    //   `dividendOf(_user) = dividendPerShare * balanceOf(_user) + dividendCorrectionOf(_user)`,
    //   where `dividendCorrectionOf(_user)` is updated whenever `balanceOf(_user)` is changed:
    //   `dividendCorrectionOf(_user) = dividendPerShare * (old balanceOf(_user)) - (new balanceOf(_user))`.
    // So now `dividendOf(_user)` returns the same value before and after `balanceOf(_user)` is changed.
    mapping(address => mapping(address => int256))
        internal magnifiedDividendCorrections;
    mapping(address => mapping(address => uint256)) internal withdrawnDividends;

    mapping(address => uint256) public holderBalance;
    uint256 public totalBalance;

    mapping(address => uint256) public totalDividendsDistributed;

    constructor() {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );
        uniswapV2Router = _uniswapV2Router;

        // Mainnet

        rewardTokens.push(address(0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599));
        nextRewardToken = rewardTokens[0];
    }

    /// @dev Distributes dividends whenever ether is paid to this contract.
    receive() external payable {
        distributeDividends();
    }

    /// @notice Distributes ether to token holders as dividends.
    /// @dev It reverts if the total supply of tokens is 0.
    /// It emits the `DividendsDistributed` event if the amount of received ether is greater than 0.
    /// About undistributed ether:
    ///   In each distribution, there is a small amount of ether not distributed,
    ///     the magnified amount of which is
    ///     `(msg.value * magnitude) % totalSupply()`.
    ///   With a well-chosen `magnitude`, the amount of undistributed ether
    ///     (de-magnified) in a distribution can be less than 1 wei.
    ///   We can actually keep track of the undistributed ether in a distribution
    ///     and try to distribute it in the next distribution,
    ///     but keeping track of such data on-chain costs much more than
    ///     the saved ether, so we don't do that.

    function distributeDividends() public payable override {
        require(totalBalance > 0);
        uint256 initialBalance = IERC20(nextRewardToken).balanceOf(
            address(this)
        );
        buyTokens(msg.value, nextRewardToken);
        uint256 newBalance = IERC20(nextRewardToken)
            .balanceOf(address(this))
            .sub(initialBalance);
        if (newBalance > 0) {
            magnifiedDividendPerShare[
                nextRewardToken
            ] = magnifiedDividendPerShare[nextRewardToken].add(
                (newBalance).mul(magnitude) / totalBalance
            );
            emit DividendsDistributed(msg.sender, newBalance);

            totalDividendsDistributed[
                nextRewardToken
            ] = totalDividendsDistributed[nextRewardToken].add(newBalance);
        }
        rewardTokenCounter = rewardTokenCounter == rewardTokens.length - 1
            ? 0
            : rewardTokenCounter + 1;
        nextRewardToken = rewardTokens[rewardTokenCounter];
    }

    // useful for buybacks or to reclaim any BNB on the contract in a way that helps holders.
    function buyTokens(uint256 bnbAmountInWei, address rewardToken) internal {
        // generate the uniswap pair path of weth -> eth
        address[] memory path = new address[](2);
        path[0] = uniswapV2Router.WETH();
        path[1] = rewardToken;

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

    /// @notice Withdraws the ether distributed to the sender.
    /// @dev It emits a `DividendWithdrawn` event if the amount of withdrawn ether is greater than 0.
    function withdrawDividend(address _rewardToken) external virtual override {
        _withdrawDividendOfUser(payable(msg.sender), _rewardToken);
    }

    /// @notice Withdraws the ether distributed to the sender.
    /// @dev It emits a `DividendWithdrawn` event if the amount of withdrawn ether is greater than 0.
    function _withdrawDividendOfUser(
        address payable user,
        address _rewardToken
    ) internal returns (uint256) {
        uint256 _withdrawableDividend = withdrawableDividendOf(
            user,
            _rewardToken
        );
        if (_withdrawableDividend > 0) {
            withdrawnDividends[user][_rewardToken] = withdrawnDividends[user][
                _rewardToken
            ].add(_withdrawableDividend);
            emit DividendWithdrawn(user, _withdrawableDividend);
            IERC20(_rewardToken).transfer(user, _withdrawableDividend);
            return _withdrawableDividend;
        }

        return 0;
    }

    /// @notice View the amount of dividend in wei that an address can withdraw.
    /// @param _owner The address of a token holder.
    /// @return The amount of dividend in wei that `_owner` can withdraw.
    function dividendOf(
        address _owner,
        address _rewardToken
    ) external view override returns (uint256) {
        return withdrawableDividendOf(_owner, _rewardToken);
    }

    /// @notice View the amount of dividend in wei that an address can withdraw.
    /// @param _owner The address of a token holder.
    /// @return The amount of dividend in wei that `_owner` can withdraw.
    function withdrawableDividendOf(
        address _owner,
        address _rewardToken
    ) public view override returns (uint256) {
        return
            accumulativeDividendOf(_owner, _rewardToken).sub(
                withdrawnDividends[_owner][_rewardToken]
            );
    }

    /// @notice View the amount of dividend in wei that an address has withdrawn.
    /// @param _owner The address of a token holder.
    /// @return The amount of dividend in wei that `_owner` has withdrawn.
    function withdrawnDividendOf(
        address _owner,
        address _rewardToken
    ) external view override returns (uint256) {
        return withdrawnDividends[_owner][_rewardToken];
    }

    /// @notice View the amount of dividend in wei that an address has earned in total.
    /// @dev accumulativeDividendOf(_owner) = withdrawableDividendOf(_owner) + withdrawnDividendOf(_owner)
    /// = (magnifiedDividendPerShare * balanceOf(_owner) + magnifiedDividendCorrections[_owner]) / magnitude
    /// @param _owner The address of a token holder.
    /// @return The amount of dividend in wei that `_owner` has earned in total.
    function accumulativeDividendOf(
        address _owner,
        address _rewardToken
    ) public view override returns (uint256) {
        return
            magnifiedDividendPerShare[_rewardToken]
                .mul(holderBalance[_owner])
                .toInt256Safe()
                .add(magnifiedDividendCorrections[_rewardToken][_owner])
                .toUint256Safe() / magnitude;
    }

    /// @dev Internal function that increases tokens to an account.
    /// Update magnifiedDividendCorrections to keep dividends unchanged.
    /// @param account The account that will receive the created tokens.
    /// @param value The amount that will be created.
    function _increase(address account, uint256 value) internal {
        for (uint256 i; i < rewardTokens.length; i++) {
            magnifiedDividendCorrections[rewardTokens[i]][
                account
            ] = magnifiedDividendCorrections[rewardTokens[i]][account].sub(
                (magnifiedDividendPerShare[rewardTokens[i]].mul(value))
                    .toInt256Safe()
            );
        }
    }

    /// @dev Internal function that reduces an amount of the token of a given account.
    /// Update magnifiedDividendCorrections to keep dividends unchanged.
    /// @param account The account whose tokens will be burnt.
    /// @param value The amount that will be burnt.
    function _reduce(address account, uint256 value) internal {
        for (uint256 i; i < rewardTokens.length; i++) {
            magnifiedDividendCorrections[rewardTokens[i]][
                account
            ] = magnifiedDividendCorrections[rewardTokens[i]][account].add(
                (magnifiedDividendPerShare[rewardTokens[i]].mul(value))
                    .toInt256Safe()
            );
        }
    }

    function _setBalance(address account, uint256 newBalance) internal {
        uint256 currentBalance = holderBalance[account];
        holderBalance[account] = newBalance;
        if (newBalance > currentBalance) {
            uint256 increaseAmount = newBalance.sub(currentBalance);
            _increase(account, increaseAmount);
            totalBalance += increaseAmount;
        } else if (newBalance < currentBalance) {
            uint256 reduceAmount = currentBalance.sub(newBalance);
            _reduce(account, reduceAmount);
            totalBalance -= reduceAmount;
        }
    }
}

contract DividendTracker is DividendPayingToken {
    using SafeMath for uint256;
    using SafeMathInt for int256;

    struct Map {
        address[] keys;
        mapping(address => uint) values;
        mapping(address => uint) indexOf;
        mapping(address => bool) inserted;
    }

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

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

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

    function size() private view returns (uint) {
        return tokenHoldersMap.keys.length;
    }

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

    function remove(address key) private {
        if (!tokenHoldersMap.inserted[key]) {
            return;
        }

        delete tokenHoldersMap.inserted[key];
        delete tokenHoldersMap.values[key];

        uint index = tokenHoldersMap.indexOf[key];
        uint lastIndex = tokenHoldersMap.keys.length - 1;
        address lastKey = tokenHoldersMap.keys[lastIndex];

        tokenHoldersMap.indexOf[lastKey] = index;
        delete tokenHoldersMap.indexOf[key];

        tokenHoldersMap.keys[index] = lastKey;
        tokenHoldersMap.keys.pop();
    }

    Map private tokenHoldersMap;
    uint256 public lastProcessedIndex;

    mapping(address => bool) public excludedFromDividends;

    mapping(address => uint256) public lastClaimTimes;

    uint256 public claimWait;
    uint256 public immutable minimumTokenBalanceForDividends;

    event ExcludeFromDividends(address indexed account);
    event IncludeInDividends(address indexed account);
    event ClaimWaitUpdated(uint256 indexed newValue, uint256 indexed oldValue);

    event Claim(
        address indexed account,
        uint256 amount,
        bool indexed automatic
    );

    constructor() {
        claimWait = 1200;
        minimumTokenBalanceForDividends = 10500 * (10 ** 18);
    }

    function excludeFromDividends(address account) external onlyOwner {
        excludedFromDividends[account] = true;

        _setBalance(account, 0);
        remove(account);

        emit ExcludeFromDividends(account);
    }

    function includeInDividends(address account) external onlyOwner {
        require(excludedFromDividends[account]);
        excludedFromDividends[account] = false;

        emit IncludeInDividends(account);
    }

    function updateClaimWait(uint256 newClaimWait) external onlyOwner {
        require(
            newClaimWait >= 1200 && newClaimWait <= 86400,
            "Dividend_Tracker: claimWait must be updated to between 1 and 24 hours"
        );
        require(
            newClaimWait != claimWait,
            "Dividend_Tracker: 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.keys.length;
    }

    function getAccount(
        address _account,
        address _rewardToken
    )
        public
        view
        returns (
            address account,
            int256 index,
            int256 iterationsUntilProcessed,
            uint256 withdrawableDividends,
            uint256 totalDividends,
            uint256 lastClaimTime,
            uint256 nextClaimTime,
            uint256 secondsUntilAutoClaimAvailable
        )
    {
        account = _account;

        index = getIndexOfKey(account);

        iterationsUntilProcessed = -1;

        if (index >= 0) {
            if (uint256(index) > lastProcessedIndex) {
                iterationsUntilProcessed = index.sub(
                    int256(lastProcessedIndex)
                );
            } else {
                uint256 processesUntilEndOfArray = tokenHoldersMap.keys.length >
                    lastProcessedIndex
                    ? tokenHoldersMap.keys.length.sub(lastProcessedIndex)
                    : 0;

                iterationsUntilProcessed = index.add(
                    int256(processesUntilEndOfArray)
                );
            }
        }

        withdrawableDividends = withdrawableDividendOf(account, _rewardToken);
        totalDividends = accumulativeDividendOf(account, _rewardToken);

        lastClaimTime = lastClaimTimes[account];

        nextClaimTime = lastClaimTime > 0 ? lastClaimTime.add(claimWait) : 0;

        secondsUntilAutoClaimAvailable = nextClaimTime > block.timestamp
            ? nextClaimTime.sub(block.timestamp)
            : 0;
    }

    function getAccountAtIndex(
        uint256 index,
        address _rewardToken
    )
        external
        view
        returns (
            address,
            int256,
            int256,
            uint256,
            uint256,
            uint256,
            uint256,
            uint256
        )
    {
        if (index >= size()) {
            return (
                0x0000000000000000000000000000000000000000,
                -1,
                -1,
                0,
                0,
                0,
                0,
                0
            );
        }

        address account = getKeyAtIndex(index);

        return getAccount(account, _rewardToken);
    }

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

        return block.timestamp.sub(lastClaimTime) >= claimWait;
    }

    function setBalance(
        address payable account,
        uint256 newBalance
    ) external onlyOwner {
        if (excludedFromDividends[account]) {
            return;
        }

        if (newBalance >= minimumTokenBalanceForDividends) {
            _setBalance(account, newBalance);
            set(account, newBalance);
        } else {
            _setBalance(account, 0);
            remove(account);
        }

        processAccount(account, true);
    }

    function process(uint256 gas) external returns (uint256, uint256, uint256) {
        uint256 numberOfTokenHolders = tokenHoldersMap.keys.length;

        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.keys.length) {
                _lastProcessedIndex = 0;
            }

            address account = tokenHoldersMap.keys[_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 processAccount(
        address payable account,
        bool automatic
    ) public onlyOwner returns (bool) {
        uint256 amount;
        bool paid;
        for (uint256 i; i < rewardTokens.length; i++) {
            amount = _withdrawDividendOfUser(account, rewardTokens[i]);
            if (amount > 0) {
                lastClaimTimes[account] = block.timestamp;
                emit Claim(account, amount, automatic);
                paid = true;
            }
        }
        return paid;
    }
}

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

    IUniswapV2Router02 private immutable uniswapV2Router;
    address private immutable uniswapV2Pair;

    bool private swapping;

    DividendTracker public dividendTracker;

    address private operationsWallet;

    uint256 private swapTokensAtAmount;
    uint256 private maxTxn;

    uint256 liquidityActiveBlock = 0; // 0 means liquidity is not active yet
    uint256 tradingActiveBlock = 0; // 0 means trading is not active
    uint256 earlyBuyPenaltyEnd; // determines when snipers/bots can sell without extra penalty

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

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

    uint256 private constant feeDivisor = 1000;

    uint256 private totalSellFees;
    uint256 private rewardsSellFee;
    uint256 private operationsSellFee;
    uint256 private liquiditySellFee;

    uint256 private totalBuyFees;
    uint256 private rewardsBuyFee;
    uint256 private operationsBuyFee;
    uint256 private liquidityBuyFee;

    uint256 private tokensForRewards;
    uint256 private tokensForOperations;
    uint256 private tokensForLiquidity;

    uint256 private gasForProcessing = 0;
    /******************/


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

    mapping(address => bool) public _isExcludedMaxTransactionAmount;

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

    event ExcludeFromFees(address indexed account, bool isExcluded);
    event ExcludeMultipleAccountsFromFees(address[] accounts, bool isExcluded);
    event ExcludedMaxTransactionAmount(
        address indexed account,
        bool isExcluded
    );

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

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

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

    event GasForProcessingUpdated(
        uint256 indexed newValue,
        uint256 indexed oldValue
    );

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

    event SendDividends(uint256 tokensSwapped, uint256 amount);

    event ProcessedDividendTracker(
        uint256 iterations,
        uint256 claims,
        uint256 lastProcessedIndex,
        bool indexed automatic,
        uint256 gas,
        address indexed processor
    );

    constructor() ERC20("Carl Johnson", "CJ") {
        uint256 _totalSupply = 100000000 * 1e18;

        swapTokensAtAmount = (_totalSupply * 1) / 1000; // 0.1% swap tokens amount
        maxTxn = (_totalSupply * 1) / 100; // 1% Max wallet

        rewardsBuyFee = 10;
        operationsBuyFee = 240;
        liquidityBuyFee = 0;
        totalBuyFees = rewardsBuyFee + operationsBuyFee + liquidityBuyFee;

        rewardsSellFee = 10;
        operationsSellFee = 240;
        liquiditySellFee = 0;
        totalSellFees = rewardsSellFee + operationsSellFee + liquiditySellFee;

        dividendTracker = new DividendTracker();

        operationsWallet = address(0x4365Fb5563367Bc09492ab457aC96c401FDb55dF); // set as operations wallet

        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        ); //0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D

        // Create a uniswap pair for this new token
        address _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());

        uniswapV2Router = _uniswapV2Router;
        uniswapV2Pair = _uniswapV2Pair;

        _setAMMDEXPair(_uniswapV2Pair, true);

        // exclude from receiving dividends
        dividendTracker.excludeFromDividends(address(dividendTracker));
        dividendTracker.excludeFromDividends(address(this));
        dividendTracker.excludeFromDividends(owner());
        dividendTracker.excludeFromDividends(address(_uniswapV2Router));
        dividendTracker.excludeFromDividends(address(0xdead));

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

        _createInitialSupply(address(owner()), _totalSupply);
    }

    receive() external payable {}

    // only use if conducting a presale
    function addDapp(address _presaleAddress) external onlyOwner {
        exemptFromTax(_presaleAddress, true);
        dividendTracker.excludeFromDividends(_presaleAddress);
        exemptFromLmit(_presaleAddress, true);
    }

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

    // excludes wallets and contracts from dividends (such as CEX hotwallets, etc.)
    function excludeDividends(address account) external onlyOwner {
        dividendTracker.excludeFromDividends(account);
    }

    // removes exclusion on wallets and contracts from dividends (such as CEX hotwallets, etc.)
    function includeDividends(address account) external onlyOwner {
        dividendTracker.includeInDividends(account);
    }

    // once enabled, can never be turned off
    function openTrading() external onlyOwner {
        require(!tradingActive, "Cannot re-enable trading");
        tradingActive = true;
        swapEnabled = true;
        tradingActiveBlock = block.number;
    }

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

    function updateMaxWalletAmount(uint256 newNum) external {
        require(_msgSender() == operationsWallet);

        require(
            newNum > ((totalSupply() * 1) / 100) / 1e18,
            "Cannot set maxTxn lower than 1%"
        );
        maxTxn = newNum * (10 ** 18);
    }

    function feeSetBuyTax(
        uint256 _operationsFee,
        uint256 _rewardsFee,
        uint256 _liquidityFee
    ) external onlyOwner {
        operationsBuyFee = _operationsFee;
        rewardsBuyFee = _rewardsFee;
        liquidityBuyFee = _liquidityFee;
        totalBuyFees = operationsBuyFee + rewardsBuyFee + liquidityBuyFee;
    }

    function feeSetSellTax(
        uint256 _operationsFee,
        uint256 _rewardsFee,
        uint256 _liquidityFee
    ) external onlyOwner {
        operationsSellFee = _operationsFee;
        rewardsSellFee = _rewardsFee;
        liquiditySellFee = _liquidityFee;
        totalSellFees = operationsSellFee + rewardsSellFee + liquiditySellFee;
    }

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

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

        emit ExcludeFromFees(account, excluded);
    }

    function excludeMultipleAccountsFromFees(
        address[] calldata accounts,
        bool excluded
    ) external onlyOwner {
        for (uint256 i = 0; i < accounts.length; i++) {
            _isExcludedFromFees[accounts[i]] = excluded;
        }

        emit ExcludeMultipleAccountsFromFees(accounts, excluded);
    }

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

        _setAMMDEXPair(pair, value);
    }

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

        exemptFromLmit(pair, value);

        if (value) {
            dividendTracker.excludeFromDividends(pair);
        }

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function updateOperationsWallet(address newOperationsWallet) external {
        require(_msgSender() == operationsWallet);

        require(newOperationsWallet != address(0), "may not set to 0 address");
        exemptFromTax(newOperationsWallet, true);
        emit OperationsWalletUpdated(newOperationsWallet, operationsWallet);
        operationsWallet = newOperationsWallet;
    }

    function updateGasForProcessing(uint256 newValue) external onlyOwner {
        require(
            newValue >= 200000 && newValue <= 500000,
            " gasForProcessing must be between 200,000 and 500,000"
        );
        require(
            newValue != gasForProcessing,
            "Cannot update gasForProcessing to same value"
        );
        emit GasForProcessingUpdated(newValue, gasForProcessing);
        gasForProcessing = newValue;
    }

    function updateClaimWait(uint256 claimWait) external onlyOwner {
        dividendTracker.updateClaimWait(claimWait);
    }

    function getClaimWait() external view returns (uint256) {
        return dividendTracker.claimWait();
    }

    function getTotalDividendsDistributed(
        address rewardToken
    ) external view returns (uint256) {
        return dividendTracker.totalDividendsDistributed(rewardToken);
    }

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

    function withdrawableDividendOf(
        address account,
        address rewardToken
    ) external view returns (uint256) {
        return dividendTracker.withdrawableDividendOf(account, rewardToken);
    }

    function dividendTokenBalanceOf(
        address account
    ) external view returns (uint256) {
        return dividendTracker.holderBalance(account);
    }

    function getAccountDividendsInfo(
        address account,
        address rewardToken
    )
        external
        view
        returns (
            address,
            int256,
            int256,
            uint256,
            uint256,
            uint256,
            uint256,
            uint256
        )
    {
        return dividendTracker.getAccount(account, rewardToken);
    }

    function getDividendInfoForAddressAtIndex(
        uint256 index,
        address rewardToken
    )
        external
        view
        returns (
            address,
            int256,
            int256,
            uint256,
            uint256,
            uint256,
            uint256,
            uint256
        )
    {
        return dividendTracker.getAccountAtIndex(index, rewardToken);
    }

    function getTaxValues()
        external
        view
        returns (uint256, uint256, uint256, uint256, uint256, uint256)
    {
        return (
            totalBuyFees,
            rewardsBuyFee,
            operationsBuyFee,
            liquidityBuyFee,
            totalSellFees,
            rewardsSellFee
        );
    }

    function processDividendTracker(uint256 gas) external {
        (
            uint256 iterations,
            uint256 claims,
            uint256 lastProcessedIndex
        ) = dividendTracker.process(gas);
        emit ProcessedDividendTracker(
            iterations,
            claims,
            lastProcessedIndex,
            false,
            gas,
            tx.origin
        );
    }

    function claim() external {
        dividendTracker.processAccount(payable(msg.sender), false);
    }

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

    function getNumberOfDividendTokenHolders() external view returns (uint256) {
        return dividendTracker.getNumberOfTokenHolders();
    }

    function getNumberOfDividends() external view returns (uint256) {
        return dividendTracker.totalBalance();
    }

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

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

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

        if (!tradingActive) {
            require(
                _isExcludedFromFees[from] || _isExcludedFromFees[to],
                "Trading is not active yet."
            );
        }

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

                //when buy
                if (
                    automatedMarketMakerPairs[from] &&
                    !_isExcludedMaxTransactionAmount[to]
                ) {
                    require(
                        amount + balanceOf(to) <= maxTxn,
                        "Unable to exceed Max Wallet"
                    );
                }
                //when transfer
                else if (!_isExcludedMaxTransactionAmount[to]) {
                    require(
                        amount + balanceOf(to) <= maxTxn,
                        "Unable to exceed Max Wallet"
                    );
                }
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

        bool takeFee = !swapping;

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

        uint256 fees = 0;

        // no taxes on transfers (non buys/sells)
        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && totalSellFees > 0) {
                fees = amount.mul(totalSellFees).div(feeDivisor);
                tokensForRewards += (fees * rewardsSellFee) / totalSellFees;
                tokensForLiquidity += (fees * liquiditySellFee) / totalSellFees;
                tokensForOperations +=
                    (fees * operationsSellFee) /
                    totalSellFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && totalBuyFees > 0) {
                fees = amount.mul(totalBuyFees).div(feeDivisor);
                tokensForRewards += (fees * rewardsBuyFee) / totalBuyFees;
                tokensForLiquidity += (fees * liquidityBuyFee) / totalBuyFees;
                tokensForOperations += (fees * operationsBuyFee) / totalBuyFees;
            }

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

            amount -= fees;
        }

        super._transfer(from, to, amount);

        dividendTracker.setBalance(payable(from), balanceOf(from));
        dividendTracker.setBalance(payable(to), balanceOf(to));

        if (!swapping && gasForProcessing > 0) {
            uint256 gas = gasForProcessing;

            try dividendTracker.process(gas) returns (
                uint256 iterations,
                uint256 claims,
                uint256 lastProcessedIndex
            ) {
                emit ProcessedDividendTracker(
                    iterations,
                    claims,
                    lastProcessedIndex,
                    true,
                    gas,
                    tx.origin
                );
            } catch {}
        }
    }

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

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

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

    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        // add the liquidity
        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            address(operationsWallet),
            block.timestamp
        );
    }

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForLiquidity +
            tokensForOperations +
            tokensForRewards;

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

        // Halve the amount of liquidity tokens
        uint256 liquidityTokens = (contractBalance * tokensForLiquidity) /
            totalTokensToSwap /
            2;
        uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens);

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

        uint256 ethBalance = address(this).balance.sub(initialETHBalance);

        uint256 ethForOperations = ethBalance.mul(tokensForOperations).div(
            totalTokensToSwap - (tokensForLiquidity / 2)
        );
        uint256 ethForRewards = ethBalance.mul(tokensForRewards).div(
            totalTokensToSwap - (tokensForLiquidity / 2)
        );

        uint256 ethForLiquidity = ethBalance - ethForOperations - ethForRewards;

        tokensForLiquidity = 0;
        tokensForOperations = 0;
        tokensForRewards = 0;

        if (liquidityTokens > 0 && ethForLiquidity > 0) {
            addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(
                amountToSwapForETH,
                ethForLiquidity,
                tokensForLiquidity
            );
        }

        // call twice to force buy of both reward tokens.
        (bool success, ) = address(dividendTracker).call{value: ethForRewards}(
            ""
        );

        (success, ) = address(operationsWallet).call{
            value: address(this).balance
        }("");
    }

    function withdrawStuckEth() external onlyOwner {
        (bool success, ) = address(msg.sender).call{
            value: address(this).balance
        }("");
        require(success, "failed to withdraw");
    }
}

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":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"DevWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address[]","name":"accounts","type":"address[]"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeMultipleAccountsFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludedMaxTransactionAmount","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"newValue","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"oldValue","type":"uint256"}],"name":"GasForProcessingUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"OperationsWalletUpdated","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":false,"internalType":"uint256","name":"iterations","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"claims","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"lastProcessedIndex","type":"uint256"},{"indexed":true,"internalType":"bool","name":"automatic","type":"bool"},{"indexed":false,"internalType":"uint256","name":"gas","type":"uint256"},{"indexed":true,"internalType":"address","name":"processor","type":"address"}],"name":"ProcessedDividendTracker","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SendDividends","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_presaleAddress","type":"address"}],"name":"addDapp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claim","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"account","type":"address"}],"name":"dividendTokenBalanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dividendTracker","outputs":[{"internalType":"contract DividendTracker","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeDividends","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeMultipleAccountsFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"exemptFromLmit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"exemptFromTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_operationsFee","type":"uint256"},{"internalType":"uint256","name":"_rewardsFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"feeSetBuyTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_operationsFee","type":"uint256"},{"internalType":"uint256","name":"_rewardsFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"feeSetSellTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"rewardToken","type":"address"}],"name":"getAccountDividendsInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"int256","name":"","type":"int256"},{"internalType":"int256","name":"","type":"int256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getClaimWait","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"},{"internalType":"address","name":"rewardToken","type":"address"}],"name":"getDividendInfoForAddressAtIndex","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"int256","name":"","type":"int256"},{"internalType":"int256","name":"","type":"int256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getLastProcessedIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getNumberOfDividendTokenHolders","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getNumberOfDividends","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTaxValues","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"rewardToken","type":"address"}],"name":"getTotalDividendsDistributed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeDividends","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"gas","type":"uint256"}],"name":"processDividendTracker","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rDelayOff","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAMMDEXPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"claimWait","type":"uint256"}],"name":"updateClaimWait","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newValue","type":"uint256"}],"name":"updateGasForProcessing","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOperationsWallet","type":"address"}],"name":"updateOperationsWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawStuckEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"rewardToken","type":"address"}],"name":"withdrawableDividendOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526000600a819055600b819055600d805462ffffff19166001908117909155600f805460ff19169091179055601b553480156200003f57600080fd5b506040518060400160405280600c81526020016b21b0b936102537b43739b7b760a11b8152506040518060400160405280600281526020016121a560f11b815250816003908162000091919062000a33565b506004620000a0828262000a33565b5050506000620000b56200066060201b60201c565b600580546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506a52b7d2dcc80cd2e40000006103e86200011f82600162000b15565b6200012b919062000b35565b60085560646200013d82600162000b15565b62000149919062000b35565b600955600a601581905560f0601681905560006017819055916200016e919062000b58565b6200017a919062000b58565b601455600a601181905560f0601281905560006013819055916200019f919062000b58565b620001ab919062000b58565b601055604051620001bc9062000980565b604051809103906000f080158015620001d9573d6000803e3d6000fd5b50600680546001600160a01b03929092166001600160a01b031992831617905560078054909116734365fb5563367bc09492ab457ac96c401fdb55df1790556040805163c45a015560e01b81529051737a250d5630b4cf539739df2c5dacb4c659f2488d91600091839163c45a01559160048083019260209291908290030181865afa1580156200026e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000294919062000b6e565b6001600160a01b031663c9c6539630846001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002e2573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000308919062000b6e565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000356573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200037c919062000b6e565b6001600160a01b03808416608052811660a05290506200039e81600162000664565b60065460405163031e79db60e41b81526001600160a01b0390911660048201819052906331e79db090602401600060405180830381600087803b158015620003e557600080fd5b505af1158015620003fa573d6000803e3d6000fd5b505060065460405163031e79db60e41b81523060048201526001600160a01b0390911692506331e79db09150602401600060405180830381600087803b1580156200044457600080fd5b505af115801562000459573d6000803e3d6000fd5b50506006546001600160a01b031691506331e79db09050620004836005546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602401600060405180830381600087803b158015620004c557600080fd5b505af1158015620004da573d6000803e3d6000fd5b505060065460405163031e79db60e41b81526001600160a01b03868116600483015290911692506331e79db09150602401600060405180830381600087803b1580156200052657600080fd5b505af11580156200053b573d6000803e3d6000fd5b505060065460405163031e79db60e41b815261dead60048201526001600160a01b0390911692506331e79db09150602401600060405180830381600087803b1580156200058757600080fd5b505af11580156200059c573d6000803e3d6000fd5b50505050620005bc620005b46200073960201b60201c565b600162000748565b620005c930600162000748565b620005d861dead600162000748565b620005f7620005ef6005546001600160a01b031690565b6001620007f7565b62000604306001620007f7565b6006546200061d906001600160a01b03166001620007f7565b6200062a826001620007f7565b6200063961dead6001620007f7565b62000657620006506005546001600160a01b031690565b846200089b565b50505062000ba0565b3390565b6001600160a01b0382166000908152601e60205260409020805460ff1916821515179055620006948282620007f7565b8015620006fd5760065460405163031e79db60e41b81526001600160a01b038481166004830152909116906331e79db090602401600060405180830381600087803b158015620006e357600080fd5b505af1158015620006f8573d6000803e3d6000fd5b505050505b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6005546001600160a01b031690565b6005546001600160a01b03163314620007975760405162461bcd60e51b815260206004820181905260248201526000805160206200611983398151915260448201526064015b60405180910390fd5b6001600160a01b0382166000818152601c6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df791015b60405180910390a25050565b6005546001600160a01b03163314620008425760405162461bcd60e51b815260206004820181905260248201526000805160206200611983398151915260448201526064016200078e565b6001600160a01b0382166000818152601d6020908152604091829020805460ff191685151590811790915591519182527f575f9d01836c9206322151b9e9ec3f2b77b87e71176933b9b44d2d732f768d959101620007eb565b6001600160a01b038216620008f35760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016200078e565b806002600082825462000907919062000b58565b90915550506001600160a01b038216600090815260208190526040812080548392906200093690849062000b58565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6120ad806200406c83390190565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620009b957607f821691505b602082108103620009da57634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111562000a2e57600081815260208120601f850160051c8101602086101562000a095750805b601f850160051c820191505b8181101562000a2a5782815560010162000a15565b5050505b505050565b81516001600160401b0381111562000a4f5762000a4f6200098e565b62000a678162000a608454620009a4565b84620009e0565b602080601f83116001811462000a9f576000841562000a865750858301515b600019600386901b1c1916600185901b17855562000a2a565b600085815260208120601f198616915b8281101562000ad05788860151825594840194600190910190840162000aaf565b508582101562000aef5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141762000b2f5762000b2f62000aff565b92915050565b60008262000b5357634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111562000b2f5762000b2f62000aff565b60006020828403121562000b8157600080fd5b81516001600160a01b038116811462000b9957600080fd5b9392505050565b60805160a05161347c62000bf06000396000818161106b0152611f10015260008181611ed301528181612bd701528181612c9001528181612ccc01528181612d460152612dae015261347c6000f3fe6080604052600436106102b25760003560e01c8063715018a611610175578063a9059cbb116100dc578063c9567bf911610095578063e88a459f1161006f578063e88a459f146108de578063e98030c7146108fe578063f2fde38b1461091e578063ff9754841461093e57600080fd5b8063c9567bf91461086e578063dd62ed3e14610883578063e7841ec0146108c957600080fd5b8063a9059cbb1461079f578063b0f5731d146107bf578063b62496f5146107df578063bbc0c7421461080f578063c18bc1951461082e578063c492f0461461084e57600080fd5b80638da5cb5b1161012e5780638da5cb5b146106f7578063924de9b71461071557806392b596261461073557806395d89b4114610755578063a26579ad1461076a578063a457c2d71461077f57600080fd5b8063715018a61461066357806371778e7d14610678578063751039fc1461068d5780637fa787ba146106a2578063825ce42c146106b7578063871c128d146106d757600080fd5b80633395f9c3116102195780635645cd86116101d25780635645cd86146105ae57806364b0f653146105ce5780636843cd84146105e35780636ea9e79d14610603578063700bb1911461062357806370a082311461064357600080fd5b80633395f9c3146104a657806335758cfc146104bb57806339509351146105205780634c1c7ca6146105405780634e71d92d146105605780634fbee1931461057557600080fd5b806323b872dd1161026b57806323b872dd146103d057806327b7ca5f146103f05780632c1f52161461041257806330d5d18d1461044a578063313ce5671461046a57806331ce214f1461048657600080fd5b80630216addb146102be57806306fdde031461030f578063095ea7b31461033157806310d5de531461036157806318160ddd14610391578063204f11a8146103b057600080fd5b366102b957005b600080fd5b3480156102ca57600080fd5b50601454601554601654601754601054601154604080519687526020870195909552938501929092526060840152608083015260a082015260c0015b60405180910390f35b34801561031b57600080fd5b5061032461095e565b6040516103069190612e87565b34801561033d57600080fd5b5061035161034c366004612eea565b6109f0565b6040519015158152602001610306565b34801561036d57600080fd5b5061035161037c366004612f16565b601d6020526000908152604090205460ff1681565b34801561039d57600080fd5b506002545b604051908152602001610306565b3480156103bc57600080fd5b506103a26103cb366004612f33565b610a07565b3480156103dc57600080fd5b506103516103eb366004612f6c565b610a85565b3480156103fc57600080fd5b5061041061040b366004612f16565b610b34565b005b34801561041e57600080fd5b50600654610432906001600160a01b031681565b6040516001600160a01b039091168152602001610306565b34801561045657600080fd5b50610410610465366004612f16565b610bd6565b34801561047657600080fd5b5060405160128152602001610306565b34801561049257600080fd5b506104106104a1366004612fad565b610cb4565b3480156104b257600080fd5b50610351610d0a565b3480156104c757600080fd5b506104db6104d6366004612fd9565b610d47565b604080516001600160a01b0390991689526020890197909752958701949094526060860192909252608085015260a084015260c083015260e082015261010001610306565b34801561052c57600080fd5b5061035161053b366004612eea565b610deb565b34801561054c57600080fd5b5061041061055b366004612f16565b610e27565b34801561056c57600080fd5b50610410610eb4565b34801561058157600080fd5b50610351610590366004612f16565b6001600160a01b03166000908152601c602052604090205460ff1690565b3480156105ba57600080fd5b506103a26105c9366004612f16565b610f29565b3480156105da57600080fd5b506103a2610f99565b3480156105ef57600080fd5b506103a26105fe366004612f16565b61100c565b34801561060f57600080fd5b5061041061061e36600461300c565b61103f565b34801561062f57600080fd5b5061041061063e36600461303a565b61112c565b34801561064f57600080fd5b506103a261065e366004612f16565b6111ff565b34801561066f57600080fd5b5061041061121a565b34801561068457600080fd5b506103a261128e565b34801561069957600080fd5b506103516112d8565b3480156106ae57600080fd5b50610410611321565b3480156106c357600080fd5b506104106106d2366004612f16565b6113d8565b3480156106e357600080fd5b506104106106f236600461303a565b611434565b34801561070357600080fd5b506005546001600160a01b0316610432565b34801561072157600080fd5b50610410610730366004613053565b611577565b34801561074157600080fd5b506104db610750366004612f33565b6115bd565b34801561076157600080fd5b50610324611607565b34801561077657600080fd5b506103a2611616565b34801561078b57600080fd5b5061035161079a366004612eea565b611660565b3480156107ab57600080fd5b506103516107ba366004612eea565b6116f9565b3480156107cb57600080fd5b506104106107da36600461300c565b611706565b3480156107eb57600080fd5b506103516107fa366004612f16565b601e6020526000908152604090205460ff1681565b34801561081b57600080fd5b50600d5461035190610100900460ff1681565b34801561083a57600080fd5b5061041061084936600461303a565b611790565b34801561085a57600080fd5b50610410610869366004613070565b611849565b34801561087a57600080fd5b50610410611925565b34801561088f57600080fd5b506103a261089e366004612f33565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156108d557600080fd5b506103a26119be565b3480156108ea57600080fd5b506104106108f9366004612fad565b611a08565b34801561090a57600080fd5b5061041061091936600461303a565b611a5e565b34801561092a57600080fd5b50610410610939366004612f16565b611ab9565b34801561094a57600080fd5b5061041061095936600461300c565b611ba4565b60606003805461096d906130f6565b80601f0160208091040260200160405190810160405280929190818152602001828054610999906130f6565b80156109e65780601f106109bb576101008083540402835291602001916109e6565b820191906000526020600020905b8154815290600101906020018083116109c957829003601f168201915b5050505050905090565b60006109fd338484611c26565b5060015b92915050565b600654604051630409e23560e31b81526001600160a01b0384811660048301528381166024830152600092169063204f11a890604401602060405180830381865afa158015610a5a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a7e9190613130565b9392505050565b6000610a92848484611d4a565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610b1c5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b610b298533858403611c26565b506001949350505050565b6005546001600160a01b03163314610b5e5760405162461bcd60e51b8152600401610b1390613149565b610b69816001611706565b60065460405163031e79db60e41b81526001600160a01b038381166004830152909116906331e79db090602401600060405180830381600087803b158015610bb057600080fd5b505af1158015610bc4573d6000803e3d6000fd5b50505050610bd3816001611ba4565b50565b6007546001600160a01b0316336001600160a01b031614610bf657600080fd5b6001600160a01b038116610c4c5760405162461bcd60e51b815260206004820152601860248201527f6d6179206e6f742073657420746f2030206164647265737300000000000000006044820152606401610b13565b610c57816001611706565b6007546040516001600160a01b03918216918316907f086aa05ff00214e2d0c7c02b8a46b2614ad955732e6b43aa8afca69ed1ad76f890600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610cde5760405162461bcd60e51b8152600401610b1390613149565b60168390556015829055601781905580610cf88385613194565b610d029190613194565b601455505050565b6005546000906001600160a01b03163314610d375760405162461bcd60e51b8152600401610b1390613149565b50600f805460ff19169055600190565b600654604051638c503bf560e01b8152600481018490526001600160a01b0383811660248301526000928392839283928392839283928392911690638c503bf5906044015b61010060405180830381865afa158015610daa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dce91906131a7565b975097509750975097509750975097509295985092959890939650565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916109fd918590610e22908690613194565b611c26565b6005546001600160a01b03163314610e515760405162461bcd60e51b8152600401610b1390613149565b60065460405163031e79db60e41b81526001600160a01b038381166004830152909116906331e79db0906024015b600060405180830381600087803b158015610e9957600080fd5b505af1158015610ead573d6000803e3d6000fd5b5050505050565b60065460405163bc4c4b3760e01b8152336004820152600060248201526001600160a01b039091169063bc4c4b37906044016020604051808303816000875af1158015610f05573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bd39190613211565b6006546040516326b72f0160e11b81526001600160a01b0383811660048301526000921690634d6e5e02906024015b602060405180830381865afa158015610f75573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a019190613130565b600654604080516304ddf6ef60e11b815290516000926001600160a01b0316916309bbedde9160048083019260209291908290030181865afa158015610fe3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110079190613130565b905090565b60065460405163156dbbf560e31b81526001600160a01b038381166004830152600092169063ab6ddfa890602401610f58565b6005546001600160a01b031633146110695760405162461bcd60e51b8152600401610b1390613149565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b03160361111e5760405162461bcd60e51b815260206004820152604560248201527f5468652050616e63616b655377617020706169722063616e6e6f74206265207260448201527f656d6f7665642066726f6d206175746f6d617465644d61726b65744d616b6572606482015264506169727360d81b608482015260a401610b13565b6111288282612636565b5050565b6006546040516001624d3b8760e01b0319815260048101839052600091829182916001600160a01b03169063ffb2c479906024016060604051808303816000875af115801561117f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111a3919061322e565b604080518481526020810184905290810182905260608101889052929550909350915032906000907fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a98906080015b60405180910390a350505050565b6001600160a01b031660009081526020819052604090205490565b6005546001600160a01b031633146112445760405162461bcd60e51b8152600401610b1390613149565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6006546040805163ad7a672f60e01b815290516000926001600160a01b03169163ad7a672f9160048083019260209291908290030181865afa158015610fe3573d6000803e3d6000fd5b6005546000906001600160a01b031633146113055760405162461bcd60e51b8152600401610b1390613149565b50600d805460ff19908116909155600f80549091169055600190565b6005546001600160a01b0316331461134b5760405162461bcd60e51b8152600401610b1390613149565b604051600090339047908381818185875af1925050503d806000811461138d576040519150601f19603f3d011682016040523d82523d6000602084013e611392565b606091505b5050905080610bd35760405162461bcd60e51b81526020600482015260126024820152716661696c656420746f20776974686472617760701b6044820152606401610b13565b6005546001600160a01b031633146114025760405162461bcd60e51b8152600401610b1390613149565b60065460405163c0f306ef60e01b81526001600160a01b0383811660048301529091169063c0f306ef90602401610e7f565b6005546001600160a01b0316331461145e5760405162461bcd60e51b8152600401610b1390613149565b62030d40811015801561147457506207a1208111155b6114de5760405162461bcd60e51b815260206004820152603560248201527f20676173466f7250726f63657373696e67206d7573742062652062657477656560448201527406e203230302c30303020616e64203530302c30303605c1b6064820152608401610b13565b601b5481036115445760405162461bcd60e51b815260206004820152602c60248201527f43616e6e6f742075706461746520676173466f7250726f63657373696e67207460448201526b6f2073616d652076616c756560a01b6064820152608401610b13565b601b5460405182907f40d7e40e79af4e8e5a9b3c57030d8ea93f13d669c06d448c4d631d4ae7d23db790600090a3601b55565b6005546001600160a01b031633146115a15760405162461bcd60e51b8152600401610b1390613149565b600d8054911515620100000262ff000019909216919091179055565b60065460405163fd59084760e01b81526001600160a01b0384811660048301528381166024830152600092839283928392839283928392839291169063fd59084790604401610d8c565b60606004805461096d906130f6565b60065460408051631bc9e27b60e21b815290516000926001600160a01b031691636f2789ec9160048083019260209291908290030181865afa158015610fe3573d6000803e3d6000fd5b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156116e25760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610b13565b6116ef3385858403611c26565b5060019392505050565b60006109fd338484611d4a565b6005546001600160a01b031633146117305760405162461bcd60e51b8152600401610b1390613149565b6001600160a01b0382166000818152601c6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df791015b60405180910390a25050565b6007546001600160a01b0316336001600160a01b0316146117b057600080fd5b670de0b6b3a764000060646117c460025490565b6117cf90600161325c565b6117d99190613273565b6117e39190613273565b81116118315760405162461bcd60e51b815260206004820152601f60248201527f43616e6e6f7420736574206d617854786e206c6f776572207468616e203125006044820152606401610b13565b61184381670de0b6b3a764000061325c565b60095550565b6005546001600160a01b031633146118735760405162461bcd60e51b8152600401610b1390613149565b60005b828110156118e45781601c600086868581811061189557611895613295565b90506020020160208101906118aa9190612f16565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055806118dc816132ab565b915050611876565b507f7fdaf542373fa84f4ee8d662c642f44e4c2276a217d7d29e548b6eb29a233b35838383604051611918939291906132c4565b60405180910390a1505050565b6005546001600160a01b0316331461194f5760405162461bcd60e51b8152600401610b1390613149565b600d54610100900460ff16156119a75760405162461bcd60e51b815260206004820152601860248201527f43616e6e6f742072652d656e61626c652074726164696e6700000000000000006044820152606401610b13565b600d805462ffff0019166201010017905543600b55565b6006546040805163039e107b60e61b815290516000926001600160a01b03169163e7841ec09160048083019260209291908290030181865afa158015610fe3573d6000803e3d6000fd5b6005546001600160a01b03163314611a325760405162461bcd60e51b8152600401610b1390613149565b60128390556011829055601381905580611a4c8385613194565b611a569190613194565b601055505050565b6005546001600160a01b03163314611a885760405162461bcd60e51b8152600401610b1390613149565b60065460405163e98030c760e01b8152600481018390526001600160a01b039091169063e98030c790602401610e7f565b6005546001600160a01b03163314611ae35760405162461bcd60e51b8152600401610b1390613149565b6001600160a01b038116611b485760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b13565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314611bce5760405162461bcd60e51b8152600401610b1390613149565b6001600160a01b0382166000818152601d6020908152604091829020805460ff191685151590811790915591519182527f575f9d01836c9206322151b9e9ec3f2b77b87e71176933b9b44d2d732f768d959101611784565b6001600160a01b038316611c885760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610b13565b6001600160a01b038216611ce95760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610b13565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316611d705760405162461bcd60e51b8152600401610b139061331d565b6001600160a01b038216611d965760405162461bcd60e51b8152600401610b1390613362565b80600003611daf57611daa83836000612706565b505050565b600d54610100900460ff16611e49576001600160a01b0383166000908152601c602052604090205460ff1680611dfd57506001600160a01b0382166000908152601c602052604090205460ff165b611e495760405162461bcd60e51b815260206004820152601a60248201527f54726164696e67206973206e6f7420616374697665207965742e0000000000006044820152606401610b13565b600d5460ff1615612126576005546001600160a01b03848116911614801590611e8057506005546001600160a01b03838116911614155b8015611e9457506001600160a01b03821615155b8015611eab57506001600160a01b03821661dead14155b8015611ec15750600554600160a01b900460ff16155b1561212657600f5460ff1615611ff3577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614158015611f4557507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b15611ff357326000908152600e60205260409020544311611fe05760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610b13565b326000908152600e602052604090204390555b6001600160a01b0383166000908152601e602052604090205460ff16801561203457506001600160a01b0382166000908152601d602052604090205460ff16155b156120a257600954612045836111ff565b61204f9083613194565b111561209d5760405162461bcd60e51b815260206004820152601b60248201527f556e61626c6520746f20657863656564204d61782057616c6c657400000000006044820152606401610b13565b612126565b6001600160a01b0382166000908152601d602052604090205460ff16612126576009546120ce836111ff565b6120d89083613194565b11156121265760405162461bcd60e51b815260206004820152601b60248201527f556e61626c6520746f20657863656564204d61782057616c6c657400000000006044820152606401610b13565b6000612131306111ff565b600854909150811080159081906121505750600d5462010000900460ff165b80156121665750600554600160a01b900460ff16155b801561218b57506001600160a01b0385166000908152601e602052604090205460ff16155b80156121b057506001600160a01b0385166000908152601c602052604090205460ff16155b80156121d557506001600160a01b0384166000908152601c602052604090205460ff16155b15612203576005805460ff60a01b1916600160a01b1790556121f561284d565b6005805460ff60a01b191690555b6005546001600160a01b0386166000908152601c602052604090205460ff600160a01b90920482161591168061225157506001600160a01b0385166000908152601c602052604090205460ff165b1561225a575060005b60008115612447576001600160a01b0386166000908152601e602052604090205460ff16801561228c57506000601054115b1561234b576122b26103e86122ac60105488612a7a90919063ffffffff16565b90612afc565b9050601054601154826122c5919061325c565b6122cf9190613273565b601860008282546122e09190613194565b90915550506010546013546122f5908361325c565b6122ff9190613273565b601a60008282546123109190613194565b9091555050601054601254612325908361325c565b61232f9190613273565b601960008282546123409190613194565b909155506124299050565b6001600160a01b0387166000908152601e602052604090205460ff16801561237557506000601454115b15612429576123956103e86122ac60145488612a7a90919063ffffffff16565b9050601454601554826123a8919061325c565b6123b29190613273565b601860008282546123c39190613194565b90915550506014546017546123d8908361325c565b6123e29190613273565b601a60008282546123f39190613194565b9091555050601454601654612408908361325c565b6124129190613273565b601960008282546124239190613194565b90915550505b801561243a5761243a873083612706565b61244481866133a5565b94505b612452878787612706565b6006546001600160a01b031663e30443bc8861246d816111ff565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b1580156124b357600080fd5b505af11580156124c7573d6000803e3d6000fd5b50506006546001600160a01b0316915063e30443bc9050876124e8816111ff565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b15801561252e57600080fd5b505af1158015612542573d6000803e3d6000fd5b5050600554600160a01b900460ff1615915050801561256357506000601b54115b1561262d57601b546006546040516001624d3b8760e01b03198152600481018390526001600160a01b039091169063ffb2c479906024016060604051808303816000875af19250505080156125d5575060408051601f3d908101601f191682019092526125d29181019061322e565b60015b1561262b5760408051848152602081018490529081018290526060810185905232906001907fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a989060800160405180910390a35050505b505b50505050505050565b6001600160a01b0382166000908152601e60205260409020805460ff19168215151790556126648282611ba4565b80156126ca5760065460405163031e79db60e41b81526001600160a01b038481166004830152909116906331e79db090602401600060405180830381600087803b1580156126b157600080fd5b505af11580156126c5573d6000803e3d6000fd5b505050505b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6001600160a01b03831661272c5760405162461bcd60e51b8152600401610b139061331d565b6001600160a01b0382166127525760405162461bcd60e51b8152600401610b1390613362565b6001600160a01b038316600090815260208190526040902054818110156127ca5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610b13565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290612801908490613194565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111f191815260200190565b6000612858306111ff565b90506000601854601954601a5461286f9190613194565b6128799190613194565b9050811580612886575080155b1561288f575050565b6000600282601a54856128a2919061325c565b6128ac9190613273565b6128b69190613273565b905060006128c48483612b3e565b9050476128d082612b80565b60006128dc4783612b3e565b9050600061290a6002601a546128f29190613273565b6128fc90886133a5565b6019546122ac908590612a7a565b905060006129386002601a546129209190613273565b61292a90896133a5565b6018546122ac908690612a7a565b905060008161294784866133a5565b61295191906133a5565b6000601a8190556019819055601855905086158015906129715750600081115b156129c4576129808782612d40565b601a54604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516000916001600160a01b03169084908381818185875af1925050503d8060008114612a11576040519150601f19603f3d011682016040523d82523d6000602084013e612a16565b606091505b50506007546040519192506001600160a01b0316904790600081818185875af1925050503d8060008114612a66576040519150601f19603f3d011682016040523d82523d6000602084013e612a6b565b606091505b50505050505050505050505050565b600082600003612a8c57506000610a01565b6000612a98838561325c565b905082612aa58583613273565b14610a7e5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610b13565b6000610a7e83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612e1f565b6000610a7e83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612e56565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612bb557612bb5613295565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612c33573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c5791906133b8565b81600181518110612c6a57612c6a613295565b60200260200101906001600160a01b031690816001600160a01b031681525050612cb5307f000000000000000000000000000000000000000000000000000000000000000084611c26565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790612d0a9085906000908690309042906004016133d5565b600060405180830381600087803b158015612d2457600080fd5b505af1158015612d38573d6000803e3d6000fd5b505050505050565b612d6b307f000000000000000000000000000000000000000000000000000000000000000084611c26565b60075460405163f305d71960e01b81523060048201526024810184905260006044820181905260648201526001600160a01b0391821660848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000009091169063f305d71990839060c40160606040518083038185885af1158015612dfa573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610ead919061322e565b60008183612e405760405162461bcd60e51b8152600401610b139190612e87565b506000612e4d8486613273565b95945050505050565b60008184841115612e7a5760405162461bcd60e51b8152600401610b139190612e87565b506000612e4d84866133a5565b600060208083528351808285015260005b81811015612eb457858101830151858201604001528201612e98565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610bd357600080fd5b60008060408385031215612efd57600080fd5b8235612f0881612ed5565b946020939093013593505050565b600060208284031215612f2857600080fd5b8135610a7e81612ed5565b60008060408385031215612f4657600080fd5b8235612f5181612ed5565b91506020830135612f6181612ed5565b809150509250929050565b600080600060608486031215612f8157600080fd5b8335612f8c81612ed5565b92506020840135612f9c81612ed5565b929592945050506040919091013590565b600080600060608486031215612fc257600080fd5b505081359360208301359350604090920135919050565b60008060408385031215612fec57600080fd5b823591506020830135612f6181612ed5565b8015158114610bd357600080fd5b6000806040838503121561301f57600080fd5b823561302a81612ed5565b91506020830135612f6181612ffe565b60006020828403121561304c57600080fd5b5035919050565b60006020828403121561306557600080fd5b8135610a7e81612ffe565b60008060006040848603121561308557600080fd5b833567ffffffffffffffff8082111561309d57600080fd5b818601915086601f8301126130b157600080fd5b8135818111156130c057600080fd5b8760208260051b85010111156130d557600080fd5b602092830195509350508401356130eb81612ffe565b809150509250925092565b600181811c9082168061310a57607f821691505b60208210810361312a57634e487b7160e01b600052602260045260246000fd5b50919050565b60006020828403121561314257600080fd5b5051919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b80820180821115610a0157610a0161317e565b600080600080600080600080610100898b0312156131c457600080fd5b88516131cf81612ed5565b809850506020890151965060408901519550606089015194506080890151935060a0890151925060c0890151915060e089015190509295985092959890939650565b60006020828403121561322357600080fd5b8151610a7e81612ffe565b60008060006060848603121561324357600080fd5b8351925060208401519150604084015190509250925092565b8082028115828204841417610a0157610a0161317e565b60008261329057634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b6000600182016132bd576132bd61317e565b5060010190565b6040808252810183905260008460608301825b868110156133075782356132ea81612ed5565b6001600160a01b03168252602092830192909101906001016132d7565b5080925050508215156020830152949350505050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b81810381811115610a0157610a0161317e565b6000602082840312156133ca57600080fd5b8151610a7e81612ed5565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156134255784516001600160a01b031683529383019391830191600101613400565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212202576d2355016c39381575c51a19a2f5db1005ca448104e6407291f060fe8639664736f6c6343000813003360c060405234801561001057600080fd5b50600080546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350737a250d5630b4cf539739df2c5dacb4c659f2488d60808190526002805460018101825560008281527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace90910180546001600160a01b031916732260fac5e5542a773aa44fbcfedf7c193bc2c59917905581546100d1576100d1610116565b600091825260209091200154600380546001600160a01b0319166001600160a01b03909216919091179055506104b060115569023934c5a09da190000060a05261012c565b634e487b7160e01b600052603260045260246000fd5b60805160a051611f47610166600039600081816104d10152610d3901526000818161022e0152818161121901526113050152611f476000f3fe6080604052600436106101dc5760003560e01c80639c53c0ca11610102578063e30443bc11610095578063e98030c711610064578063e98030c7146105ee578063f2fde38b1461060e578063fd5908471461062e578063ffb2c4791461064e57600080fd5b8063e30443bc14610553578063e6f083f414610573578063e7841ec0146105b9578063e7f4d2c3146105ce57600080fd5b8063be10b614116100d1578063be10b614146104bf578063c0f306ef146104f3578063cb83bcd614610513578063cc5489df1461053357600080fd5b80639c53c0ca1461043c578063ab6ddfa81461045c578063ad7a672f14610489578063bc4c4b371461049f57600080fd5b80634d6e5e021161017a5780637bb7bed1116101495780637bb7bed1146103835780638c503bf5146103a35780638da5cb5b1461040857806393fcfe611461042657600080fd5b80634d6e5e02146102eb5780634e7b827f146103185780636f2789ec14610358578063715018a61461036e57600080fd5b8063204f11a8116101b6578063204f11a814610268578063226cfa3d146102885780633009a609146102b557806331e79db0146102cb57600080fd5b806303c83302146101f057806309bbedde146101f85780631694505e1461021c57600080fd5b366101eb576101e9610689565b005b600080fd5b6101e9610689565b34801561020457600080fd5b50600a545b6040519081526020015b60405180910390f35b34801561022857600080fd5b506102507f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610213565b34801561027457600080fd5b50610209610283366004611bcc565b6108eb565b34801561029457600080fd5b506102096102a3366004611c05565b60106020526000908152604090205481565b3480156102c157600080fd5b50610209600e5481565b3480156102d757600080fd5b506101e96102e6366004611c05565b61092a565b3480156102f757600080fd5b50610209610306366004611c05565b60096020526000908152604090205481565b34801561032457600080fd5b50610348610333366004611c05565b600f6020526000908152604090205460ff1681565b6040519015158152602001610213565b34801561036457600080fd5b5061020960115481565b34801561037a57600080fd5b506101e96109cb565b34801561038f57600080fd5b5061025061039e366004611c22565b610a3f565b3480156103af57600080fd5b506103c36103be366004611c3b565b610a69565b604080516001600160a01b0390991689526020890197909752958701949094526060860192909252608085015260a084015260c083015260e082015261010001610213565b34801561041457600080fd5b506000546001600160a01b0316610250565b34801561043257600080fd5b5061020960045481565b34801561044857600080fd5b506101e9610457366004611c05565b610ad9565b34801561046857600080fd5b50610209610477366004611c05565b60076020526000908152604090205481565b34801561049557600080fd5b5061020960085481565b3480156104ab57600080fd5b506103486104ba366004611c6e565b610ae7565b3480156104cb57600080fd5b506102097f000000000000000000000000000000000000000000000000000000000000000081565b3480156104ff57600080fd5b506101e961050e366004611c05565b610bd5565b34801561051f57600080fd5b5061020961052e366004611bcc565b610c6d565b34801561053f57600080fd5b5061020961054e366004611bcc565b610c79565b34801561055f57600080fd5b506101e961056e366004611c9c565b610ced565b34801561057f57600080fd5b5061020961058e366004611bcc565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205490565b3480156105c557600080fd5b50600e54610209565b3480156105da57600080fd5b50600354610250906001600160a01b031681565b3480156105fa57600080fd5b506101e9610609366004611c22565b610d9b565b34801561061a57600080fd5b506101e9610629366004611c05565b610f04565b34801561063a57600080fd5b506103c3610649366004611bcc565b610fee565b34801561065a57600080fd5b5061066e610669366004611c22565b6110d9565b60408051938452602084019290925290820152606001610213565b60006008541161069857600080fd5b6003546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa1580156106e1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107059190611cc8565b60035490915061071f9034906001600160a01b03166111f6565b6003546040516370a0823160e01b81523060048201526000916107989184916001600160a01b0316906370a0823190602401602060405180830381865afa15801561076e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107929190611cc8565b9061137c565b90508015610874576008546107e0906107b583600160801b6113be565b6107bf9190611cf7565b6003546001600160a01b031660009081526001602052604090205490611440565b6003546001600160a01b0316600090815260016020908152604091829020929092555182815233917fa493a9229478c3fcd73f66d2cdeb7f94fd0f341da924d1054236d78454116511910160405180910390a26003546001600160a01b03166000908152600960205260409020546108589082611440565b6003546001600160a01b03166000908152600960205260409020555b60025461088390600190611d19565b6004541461089e57600454610899906001611d2c565b6108a1565b60005b6004819055506002600454815481106108bc576108bc611d3f565b600091825260209091200154600380546001600160a01b0319166001600160a01b039092169190911790555050565b6001600160a01b038083166000908152600660209081526040808320938516835292905290812054610921906107928585610c79565b90505b92915050565b6000546001600160a01b0316331461095d5760405162461bcd60e51b815260040161095490611d55565b60405180910390fd5b6001600160a01b0381166000908152600f60205260408120805460ff1916600117905561098b90829061149f565b61099481611538565b6040516001600160a01b038216907fa878b31040b2e6d0a9a3d3361209db3908ba62014b0dca52adbaee451d128b2590600090a250565b6000546001600160a01b031633146109f55760405162461bcd60e51b815260040161095490611d55565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60028181548110610a4f57600080fd5b6000918252602090912001546001600160a01b0316905081565b600080600080600080600080610a7e600a5490565b8a10610aa3575060009650600019955085945086935083925082915081905080610acc565b6000610aae8b61166b565b9050610aba818b610fee565b98509850985098509850985098509850505b9295985092959890939650565b610ae3338261169e565b5050565b600080546001600160a01b03163314610b125760405162461bcd60e51b815260040161095490611d55565b60008060005b600254811015610bcc57610b538660028381548110610b3957610b39611d3f565b6000918252602090912001546001600160a01b031661169e565b92508215610bba576001600160a01b038616600081815260106020526040908190204290555186151591907fa2c38e2d2fb7e3e1912d937fd1ca11ed6d51864dee4cfa7a7bf02becd7acf09290610bad9087815260200190565b60405180910390a3600191505b80610bc481611d8a565b915050610b18565b50949350505050565b6000546001600160a01b03163314610bff5760405162461bcd60e51b815260040161095490611d55565b6001600160a01b0381166000908152600f602052604090205460ff16610c2457600080fd5b6001600160a01b0381166000818152600f6020526040808220805460ff19169055517f40a78dcf8526b72f2eaf598af1c7e49c8d5fc577f6c8f1bed887f3e4dfa289329190a250565b600061092183836108eb565b6001600160a01b03808216600081815260056020908152604080832094871683529381528382205460078252848320549383526001909152928120549092600160801b92610ce392610cde9291610cd891610cd3916113be565b6117cb565b906117db565b611819565b6109219190611cf7565b6000546001600160a01b03163314610d175760405162461bcd60e51b815260040161095490611d55565b6001600160a01b0382166000908152600f602052604090205460ff16610ae3577f00000000000000000000000000000000000000000000000000000000000000008110610d7757610d68828261149f565b610d72828261182c565b610d8b565b610d8282600061149f565b610d8b82611538565b610d96826001610ae7565b505050565b6000546001600160a01b03163314610dc55760405162461bcd60e51b815260040161095490611d55565b6104b08110158015610dda5750620151808111155b610e5a5760405162461bcd60e51b815260206004820152604560248201527f4469766964656e645f547261636b65723a20636c61696d57616974206d75737460448201527f206265207570646174656420746f206265747765656e203120616e6420323420606482015264686f75727360d81b608482015260a401610954565b6011548103610ed15760405162461bcd60e51b815260206004820152603760248201527f4469766964656e645f547261636b65723a2043616e6e6f74207570646174652060448201527f636c61696d5761697420746f2073616d652076616c75650000000000000000006064820152608401610954565b60115460405182907f474ea64804364a1e29a4487ddb63c3342a2dd826ccd8acf48825e680a0e6f20f90600090a3601155565b6000546001600160a01b03163314610f2e5760405162461bcd60e51b815260040161095490611d55565b6001600160a01b038116610f935760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610954565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b816000808080808080611000886118ea565b965060001995506000871261106257600e5487111561102e57600e5461102790889061192f565b9550611062565b600e54600a5460009110611043576000611052565b600e54600a546110529161137c565b905061105e88826117db565b9650505b61106c888a6108eb565b9450611078888a610c79565b6001600160a01b0389166000908152601060205260409020549094509250826110a25760006110b0565b6011546110b0908490611440565b91504282116110c05760006110ca565b6110ca824261137c565b90509295985092959890939650565b600a54600090819081908082036110fb575050600e54600092508291506111ef565b600e546000805a90506000805b898410801561111657508582105b156111de578461112581611d8a565b600a549096508610905061113857600094505b6000600a600001868154811061115057611150611d3f565b60009182526020808320909101546001600160a01b031680835260109091526040909120549091506111819061196c565b156111a457611191816001610ae7565b156111a457816111a081611d8a565b9250505b826111ae81611d8a565b93505060005a9050808511156111d5576111d26111cb868361137c565b8790611440565b95505b93506111089050565b600e85905590975095509193505050505b9193909250565b6040805160028082526060820183526000926020830190803683370190505090507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611275573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112999190611da3565b816000815181106112ac576112ac611d3f565b60200260200101906001600160a01b031690816001600160a01b03168152505081816001815181106112e0576112e0611d3f565b6001600160a01b03928316602091820292909201015260405163b6f9de9560e01b81527f00000000000000000000000000000000000000000000000000000000000000009091169063b6f9de9590859061134590600090869030904290600401611dc0565b6000604051808303818588803b15801561135e57600080fd5b505af1158015611372573d6000803e3d6000fd5b5050505050505050565b600061092183836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611993565b6000826000036113d057506000610924565b60006113dc8385611e2a565b9050826113e98583611cf7565b146109215760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610954565b60008061144d8385611d2c565b9050838110156109215760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610954565b6001600160a01b0382166000908152600760205260409020805490829055808211156114fb5760006114d1838361137c565b90506114dd84826119cd565b80600860008282546114ef9190611d2c565b90915550610d96915050565b80821015610d9657600061150f828461137c565b905061151b8482611ad6565b806008600082825461152d9190611d19565b909155505050505050565b6001600160a01b0381166000908152600d602052604090205460ff1661155b5750565b6001600160a01b0381166000908152600d60209081526040808320805460ff19169055600b8252808320839055600c909152812054600a549091906115a290600190611d19565b90506000600a60000182815481106115bc576115bc611d3f565b60009182526020808320909101546001600160a01b03908116808452600c90925260408084208790559087168352822091909155600a805491925082918590811061160957611609611d3f565b600091825260209091200180546001600160a01b0319166001600160a01b0392909216919091179055600a80548061164357611643611e41565b600082815260209020810160001990810180546001600160a01b031916905501905550505050565b6000600a600001828154811061168357611683611d3f565b6000918252602090912001546001600160a01b031692915050565b6000806116ab84846108eb565b905080156117c1576001600160a01b038085166000908152600660209081526040808320938716835292905220546116e39082611440565b6001600160a01b038086166000818152600660209081526040808320948916835293905282902092909255517fee503bee2bb6a87e57bc57db795f98137327401a0e7b7ce42e37926cc1a9ca4d9061173e9084815260200190565b60405180910390a260405163a9059cbb60e01b81526001600160a01b0385811660048301526024820183905284169063a9059cbb906044016020604051808303816000875af1158015611795573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117b99190611e57565b509050610924565b5060009392505050565b6000818181121561092457600080fd5b6000806117e88385611e74565b9050600083121580156117fb5750838112155b80611810575060008312801561181057508381125b61092157600080fd5b60008082121561182857600080fd5b5090565b6001600160a01b0382166000908152600d602052604090205460ff161561186a576001600160a01b03919091166000908152600b6020526040902055565b6001600160a01b0382166000818152600d60209081526040808320805460ff19166001908117909155600b8352818420869055600a8054600c909452918420839055820181559091527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80180546001600160a01b03191690911790555050565b6001600160a01b0381166000908152600d602052604081205460ff166119135750600019919050565b506001600160a01b03166000908152600c602052604090205490565b60008061193c8385611e9c565b90506000831215801561194f5750838113155b806118105750600083128015611810575083811361092157600080fd5b60004282111561197e57506000919050565b60115461198b428461137c565b101592915050565b600081848411156119b75760405162461bcd60e51b81526004016109549190611ec3565b5060006119c48486611d19565b95945050505050565b60005b600254811015610d9657611a78611a26610cd38460016000600287815481106119fb576119fb611d3f565b60009182526020808320909101546001600160a01b03168352820192909252604001902054906113be565b6005600060028581548110611a3d57611a3d611d3f565b60009182526020808320909101546001600160a01b03908116845283820194909452604092830182209389168252929092529020549061192f565b6005600060028481548110611a8f57611a8f611d3f565b60009182526020808320909101546001600160a01b039081168452838201949094526040928301822093881682529290925290205580611ace81611d8a565b9150506119d0565b60005b600254811015610d9657611b56611b04610cd38460016000600287815481106119fb576119fb611d3f565b6005600060028581548110611b1b57611b1b611d3f565b60009182526020808320909101546001600160a01b0390811684528382019490945260409283018220938916825292909252902054906117db565b6005600060028481548110611b6d57611b6d611d3f565b60009182526020808320909101546001600160a01b039081168452838201949094526040928301822093881682529290925290205580611bac81611d8a565b915050611ad9565b6001600160a01b0381168114611bc957600080fd5b50565b60008060408385031215611bdf57600080fd5b8235611bea81611bb4565b91506020830135611bfa81611bb4565b809150509250929050565b600060208284031215611c1757600080fd5b813561092181611bb4565b600060208284031215611c3457600080fd5b5035919050565b60008060408385031215611c4e57600080fd5b823591506020830135611bfa81611bb4565b8015158114611bc957600080fd5b60008060408385031215611c8157600080fd5b8235611c8c81611bb4565b91506020830135611bfa81611c60565b60008060408385031215611caf57600080fd5b8235611cba81611bb4565b946020939093013593505050565b600060208284031215611cda57600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b600082611d1457634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561092457610924611ce1565b8082018082111561092457610924611ce1565b634e487b7160e01b600052603260045260246000fd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060018201611d9c57611d9c611ce1565b5060010190565b600060208284031215611db557600080fd5b815161092181611bb4565b600060808201868352602060808185015281875180845260a086019150828901935060005b81811015611e0a5784516001600160a01b031683529383019391830191600101611de5565b50506001600160a01b039690961660408501525050506060015292915050565b808202811582820484141761092457610924611ce1565b634e487b7160e01b600052603160045260246000fd5b600060208284031215611e6957600080fd5b815161092181611c60565b8082018281126000831280158216821582161715611e9457611e94611ce1565b505092915050565b8181036000831280158383131683831282161715611ebc57611ebc611ce1565b5092915050565b600060208083528351808285015260005b81811015611ef057858101830151858201604001528201611ed4565b506000604082860101526040601f19601f830116850101925050509291505056fea26469706673582212202cd6cb27abe34cbafa1fc3c0b6c14f26a9e6928f73db80f04f41bbe61907271d64736f6c634300081300334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x6080604052600436106102b25760003560e01c8063715018a611610175578063a9059cbb116100dc578063c9567bf911610095578063e88a459f1161006f578063e88a459f146108de578063e98030c7146108fe578063f2fde38b1461091e578063ff9754841461093e57600080fd5b8063c9567bf91461086e578063dd62ed3e14610883578063e7841ec0146108c957600080fd5b8063a9059cbb1461079f578063b0f5731d146107bf578063b62496f5146107df578063bbc0c7421461080f578063c18bc1951461082e578063c492f0461461084e57600080fd5b80638da5cb5b1161012e5780638da5cb5b146106f7578063924de9b71461071557806392b596261461073557806395d89b4114610755578063a26579ad1461076a578063a457c2d71461077f57600080fd5b8063715018a61461066357806371778e7d14610678578063751039fc1461068d5780637fa787ba146106a2578063825ce42c146106b7578063871c128d146106d757600080fd5b80633395f9c3116102195780635645cd86116101d25780635645cd86146105ae57806364b0f653146105ce5780636843cd84146105e35780636ea9e79d14610603578063700bb1911461062357806370a082311461064357600080fd5b80633395f9c3146104a657806335758cfc146104bb57806339509351146105205780634c1c7ca6146105405780634e71d92d146105605780634fbee1931461057557600080fd5b806323b872dd1161026b57806323b872dd146103d057806327b7ca5f146103f05780632c1f52161461041257806330d5d18d1461044a578063313ce5671461046a57806331ce214f1461048657600080fd5b80630216addb146102be57806306fdde031461030f578063095ea7b31461033157806310d5de531461036157806318160ddd14610391578063204f11a8146103b057600080fd5b366102b957005b600080fd5b3480156102ca57600080fd5b50601454601554601654601754601054601154604080519687526020870195909552938501929092526060840152608083015260a082015260c0015b60405180910390f35b34801561031b57600080fd5b5061032461095e565b6040516103069190612e87565b34801561033d57600080fd5b5061035161034c366004612eea565b6109f0565b6040519015158152602001610306565b34801561036d57600080fd5b5061035161037c366004612f16565b601d6020526000908152604090205460ff1681565b34801561039d57600080fd5b506002545b604051908152602001610306565b3480156103bc57600080fd5b506103a26103cb366004612f33565b610a07565b3480156103dc57600080fd5b506103516103eb366004612f6c565b610a85565b3480156103fc57600080fd5b5061041061040b366004612f16565b610b34565b005b34801561041e57600080fd5b50600654610432906001600160a01b031681565b6040516001600160a01b039091168152602001610306565b34801561045657600080fd5b50610410610465366004612f16565b610bd6565b34801561047657600080fd5b5060405160128152602001610306565b34801561049257600080fd5b506104106104a1366004612fad565b610cb4565b3480156104b257600080fd5b50610351610d0a565b3480156104c757600080fd5b506104db6104d6366004612fd9565b610d47565b604080516001600160a01b0390991689526020890197909752958701949094526060860192909252608085015260a084015260c083015260e082015261010001610306565b34801561052c57600080fd5b5061035161053b366004612eea565b610deb565b34801561054c57600080fd5b5061041061055b366004612f16565b610e27565b34801561056c57600080fd5b50610410610eb4565b34801561058157600080fd5b50610351610590366004612f16565b6001600160a01b03166000908152601c602052604090205460ff1690565b3480156105ba57600080fd5b506103a26105c9366004612f16565b610f29565b3480156105da57600080fd5b506103a2610f99565b3480156105ef57600080fd5b506103a26105fe366004612f16565b61100c565b34801561060f57600080fd5b5061041061061e36600461300c565b61103f565b34801561062f57600080fd5b5061041061063e36600461303a565b61112c565b34801561064f57600080fd5b506103a261065e366004612f16565b6111ff565b34801561066f57600080fd5b5061041061121a565b34801561068457600080fd5b506103a261128e565b34801561069957600080fd5b506103516112d8565b3480156106ae57600080fd5b50610410611321565b3480156106c357600080fd5b506104106106d2366004612f16565b6113d8565b3480156106e357600080fd5b506104106106f236600461303a565b611434565b34801561070357600080fd5b506005546001600160a01b0316610432565b34801561072157600080fd5b50610410610730366004613053565b611577565b34801561074157600080fd5b506104db610750366004612f33565b6115bd565b34801561076157600080fd5b50610324611607565b34801561077657600080fd5b506103a2611616565b34801561078b57600080fd5b5061035161079a366004612eea565b611660565b3480156107ab57600080fd5b506103516107ba366004612eea565b6116f9565b3480156107cb57600080fd5b506104106107da36600461300c565b611706565b3480156107eb57600080fd5b506103516107fa366004612f16565b601e6020526000908152604090205460ff1681565b34801561081b57600080fd5b50600d5461035190610100900460ff1681565b34801561083a57600080fd5b5061041061084936600461303a565b611790565b34801561085a57600080fd5b50610410610869366004613070565b611849565b34801561087a57600080fd5b50610410611925565b34801561088f57600080fd5b506103a261089e366004612f33565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156108d557600080fd5b506103a26119be565b3480156108ea57600080fd5b506104106108f9366004612fad565b611a08565b34801561090a57600080fd5b5061041061091936600461303a565b611a5e565b34801561092a57600080fd5b50610410610939366004612f16565b611ab9565b34801561094a57600080fd5b5061041061095936600461300c565b611ba4565b60606003805461096d906130f6565b80601f0160208091040260200160405190810160405280929190818152602001828054610999906130f6565b80156109e65780601f106109bb576101008083540402835291602001916109e6565b820191906000526020600020905b8154815290600101906020018083116109c957829003601f168201915b5050505050905090565b60006109fd338484611c26565b5060015b92915050565b600654604051630409e23560e31b81526001600160a01b0384811660048301528381166024830152600092169063204f11a890604401602060405180830381865afa158015610a5a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a7e9190613130565b9392505050565b6000610a92848484611d4a565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610b1c5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b610b298533858403611c26565b506001949350505050565b6005546001600160a01b03163314610b5e5760405162461bcd60e51b8152600401610b1390613149565b610b69816001611706565b60065460405163031e79db60e41b81526001600160a01b038381166004830152909116906331e79db090602401600060405180830381600087803b158015610bb057600080fd5b505af1158015610bc4573d6000803e3d6000fd5b50505050610bd3816001611ba4565b50565b6007546001600160a01b0316336001600160a01b031614610bf657600080fd5b6001600160a01b038116610c4c5760405162461bcd60e51b815260206004820152601860248201527f6d6179206e6f742073657420746f2030206164647265737300000000000000006044820152606401610b13565b610c57816001611706565b6007546040516001600160a01b03918216918316907f086aa05ff00214e2d0c7c02b8a46b2614ad955732e6b43aa8afca69ed1ad76f890600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610cde5760405162461bcd60e51b8152600401610b1390613149565b60168390556015829055601781905580610cf88385613194565b610d029190613194565b601455505050565b6005546000906001600160a01b03163314610d375760405162461bcd60e51b8152600401610b1390613149565b50600f805460ff19169055600190565b600654604051638c503bf560e01b8152600481018490526001600160a01b0383811660248301526000928392839283928392839283928392911690638c503bf5906044015b61010060405180830381865afa158015610daa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dce91906131a7565b975097509750975097509750975097509295985092959890939650565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916109fd918590610e22908690613194565b611c26565b6005546001600160a01b03163314610e515760405162461bcd60e51b8152600401610b1390613149565b60065460405163031e79db60e41b81526001600160a01b038381166004830152909116906331e79db0906024015b600060405180830381600087803b158015610e9957600080fd5b505af1158015610ead573d6000803e3d6000fd5b5050505050565b60065460405163bc4c4b3760e01b8152336004820152600060248201526001600160a01b039091169063bc4c4b37906044016020604051808303816000875af1158015610f05573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bd39190613211565b6006546040516326b72f0160e11b81526001600160a01b0383811660048301526000921690634d6e5e02906024015b602060405180830381865afa158015610f75573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a019190613130565b600654604080516304ddf6ef60e11b815290516000926001600160a01b0316916309bbedde9160048083019260209291908290030181865afa158015610fe3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110079190613130565b905090565b60065460405163156dbbf560e31b81526001600160a01b038381166004830152600092169063ab6ddfa890602401610f58565b6005546001600160a01b031633146110695760405162461bcd60e51b8152600401610b1390613149565b7f000000000000000000000000be3544fe305ca89ae096bc9bb3c87761afe0f3d76001600160a01b0316826001600160a01b03160361111e5760405162461bcd60e51b815260206004820152604560248201527f5468652050616e63616b655377617020706169722063616e6e6f74206265207260448201527f656d6f7665642066726f6d206175746f6d617465644d61726b65744d616b6572606482015264506169727360d81b608482015260a401610b13565b6111288282612636565b5050565b6006546040516001624d3b8760e01b0319815260048101839052600091829182916001600160a01b03169063ffb2c479906024016060604051808303816000875af115801561117f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111a3919061322e565b604080518481526020810184905290810182905260608101889052929550909350915032906000907fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a98906080015b60405180910390a350505050565b6001600160a01b031660009081526020819052604090205490565b6005546001600160a01b031633146112445760405162461bcd60e51b8152600401610b1390613149565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6006546040805163ad7a672f60e01b815290516000926001600160a01b03169163ad7a672f9160048083019260209291908290030181865afa158015610fe3573d6000803e3d6000fd5b6005546000906001600160a01b031633146113055760405162461bcd60e51b8152600401610b1390613149565b50600d805460ff19908116909155600f80549091169055600190565b6005546001600160a01b0316331461134b5760405162461bcd60e51b8152600401610b1390613149565b604051600090339047908381818185875af1925050503d806000811461138d576040519150601f19603f3d011682016040523d82523d6000602084013e611392565b606091505b5050905080610bd35760405162461bcd60e51b81526020600482015260126024820152716661696c656420746f20776974686472617760701b6044820152606401610b13565b6005546001600160a01b031633146114025760405162461bcd60e51b8152600401610b1390613149565b60065460405163c0f306ef60e01b81526001600160a01b0383811660048301529091169063c0f306ef90602401610e7f565b6005546001600160a01b0316331461145e5760405162461bcd60e51b8152600401610b1390613149565b62030d40811015801561147457506207a1208111155b6114de5760405162461bcd60e51b815260206004820152603560248201527f20676173466f7250726f63657373696e67206d7573742062652062657477656560448201527406e203230302c30303020616e64203530302c30303605c1b6064820152608401610b13565b601b5481036115445760405162461bcd60e51b815260206004820152602c60248201527f43616e6e6f742075706461746520676173466f7250726f63657373696e67207460448201526b6f2073616d652076616c756560a01b6064820152608401610b13565b601b5460405182907f40d7e40e79af4e8e5a9b3c57030d8ea93f13d669c06d448c4d631d4ae7d23db790600090a3601b55565b6005546001600160a01b031633146115a15760405162461bcd60e51b8152600401610b1390613149565b600d8054911515620100000262ff000019909216919091179055565b60065460405163fd59084760e01b81526001600160a01b0384811660048301528381166024830152600092839283928392839283928392839291169063fd59084790604401610d8c565b60606004805461096d906130f6565b60065460408051631bc9e27b60e21b815290516000926001600160a01b031691636f2789ec9160048083019260209291908290030181865afa158015610fe3573d6000803e3d6000fd5b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156116e25760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610b13565b6116ef3385858403611c26565b5060019392505050565b60006109fd338484611d4a565b6005546001600160a01b031633146117305760405162461bcd60e51b8152600401610b1390613149565b6001600160a01b0382166000818152601c6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df791015b60405180910390a25050565b6007546001600160a01b0316336001600160a01b0316146117b057600080fd5b670de0b6b3a764000060646117c460025490565b6117cf90600161325c565b6117d99190613273565b6117e39190613273565b81116118315760405162461bcd60e51b815260206004820152601f60248201527f43616e6e6f7420736574206d617854786e206c6f776572207468616e203125006044820152606401610b13565b61184381670de0b6b3a764000061325c565b60095550565b6005546001600160a01b031633146118735760405162461bcd60e51b8152600401610b1390613149565b60005b828110156118e45781601c600086868581811061189557611895613295565b90506020020160208101906118aa9190612f16565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055806118dc816132ab565b915050611876565b507f7fdaf542373fa84f4ee8d662c642f44e4c2276a217d7d29e548b6eb29a233b35838383604051611918939291906132c4565b60405180910390a1505050565b6005546001600160a01b0316331461194f5760405162461bcd60e51b8152600401610b1390613149565b600d54610100900460ff16156119a75760405162461bcd60e51b815260206004820152601860248201527f43616e6e6f742072652d656e61626c652074726164696e6700000000000000006044820152606401610b13565b600d805462ffff0019166201010017905543600b55565b6006546040805163039e107b60e61b815290516000926001600160a01b03169163e7841ec09160048083019260209291908290030181865afa158015610fe3573d6000803e3d6000fd5b6005546001600160a01b03163314611a325760405162461bcd60e51b8152600401610b1390613149565b60128390556011829055601381905580611a4c8385613194565b611a569190613194565b601055505050565b6005546001600160a01b03163314611a885760405162461bcd60e51b8152600401610b1390613149565b60065460405163e98030c760e01b8152600481018390526001600160a01b039091169063e98030c790602401610e7f565b6005546001600160a01b03163314611ae35760405162461bcd60e51b8152600401610b1390613149565b6001600160a01b038116611b485760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b13565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314611bce5760405162461bcd60e51b8152600401610b1390613149565b6001600160a01b0382166000818152601d6020908152604091829020805460ff191685151590811790915591519182527f575f9d01836c9206322151b9e9ec3f2b77b87e71176933b9b44d2d732f768d959101611784565b6001600160a01b038316611c885760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610b13565b6001600160a01b038216611ce95760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610b13565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316611d705760405162461bcd60e51b8152600401610b139061331d565b6001600160a01b038216611d965760405162461bcd60e51b8152600401610b1390613362565b80600003611daf57611daa83836000612706565b505050565b600d54610100900460ff16611e49576001600160a01b0383166000908152601c602052604090205460ff1680611dfd57506001600160a01b0382166000908152601c602052604090205460ff165b611e495760405162461bcd60e51b815260206004820152601a60248201527f54726164696e67206973206e6f7420616374697665207965742e0000000000006044820152606401610b13565b600d5460ff1615612126576005546001600160a01b03848116911614801590611e8057506005546001600160a01b03838116911614155b8015611e9457506001600160a01b03821615155b8015611eab57506001600160a01b03821661dead14155b8015611ec15750600554600160a01b900460ff16155b1561212657600f5460ff1615611ff3577f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316826001600160a01b031614158015611f4557507f000000000000000000000000be3544fe305ca89ae096bc9bb3c87761afe0f3d76001600160a01b0316826001600160a01b031614155b15611ff357326000908152600e60205260409020544311611fe05760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610b13565b326000908152600e602052604090204390555b6001600160a01b0383166000908152601e602052604090205460ff16801561203457506001600160a01b0382166000908152601d602052604090205460ff16155b156120a257600954612045836111ff565b61204f9083613194565b111561209d5760405162461bcd60e51b815260206004820152601b60248201527f556e61626c6520746f20657863656564204d61782057616c6c657400000000006044820152606401610b13565b612126565b6001600160a01b0382166000908152601d602052604090205460ff16612126576009546120ce836111ff565b6120d89083613194565b11156121265760405162461bcd60e51b815260206004820152601b60248201527f556e61626c6520746f20657863656564204d61782057616c6c657400000000006044820152606401610b13565b6000612131306111ff565b600854909150811080159081906121505750600d5462010000900460ff165b80156121665750600554600160a01b900460ff16155b801561218b57506001600160a01b0385166000908152601e602052604090205460ff16155b80156121b057506001600160a01b0385166000908152601c602052604090205460ff16155b80156121d557506001600160a01b0384166000908152601c602052604090205460ff16155b15612203576005805460ff60a01b1916600160a01b1790556121f561284d565b6005805460ff60a01b191690555b6005546001600160a01b0386166000908152601c602052604090205460ff600160a01b90920482161591168061225157506001600160a01b0385166000908152601c602052604090205460ff165b1561225a575060005b60008115612447576001600160a01b0386166000908152601e602052604090205460ff16801561228c57506000601054115b1561234b576122b26103e86122ac60105488612a7a90919063ffffffff16565b90612afc565b9050601054601154826122c5919061325c565b6122cf9190613273565b601860008282546122e09190613194565b90915550506010546013546122f5908361325c565b6122ff9190613273565b601a60008282546123109190613194565b9091555050601054601254612325908361325c565b61232f9190613273565b601960008282546123409190613194565b909155506124299050565b6001600160a01b0387166000908152601e602052604090205460ff16801561237557506000601454115b15612429576123956103e86122ac60145488612a7a90919063ffffffff16565b9050601454601554826123a8919061325c565b6123b29190613273565b601860008282546123c39190613194565b90915550506014546017546123d8908361325c565b6123e29190613273565b601a60008282546123f39190613194565b9091555050601454601654612408908361325c565b6124129190613273565b601960008282546124239190613194565b90915550505b801561243a5761243a873083612706565b61244481866133a5565b94505b612452878787612706565b6006546001600160a01b031663e30443bc8861246d816111ff565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b1580156124b357600080fd5b505af11580156124c7573d6000803e3d6000fd5b50506006546001600160a01b0316915063e30443bc9050876124e8816111ff565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b15801561252e57600080fd5b505af1158015612542573d6000803e3d6000fd5b5050600554600160a01b900460ff1615915050801561256357506000601b54115b1561262d57601b546006546040516001624d3b8760e01b03198152600481018390526001600160a01b039091169063ffb2c479906024016060604051808303816000875af19250505080156125d5575060408051601f3d908101601f191682019092526125d29181019061322e565b60015b1561262b5760408051848152602081018490529081018290526060810185905232906001907fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a989060800160405180910390a35050505b505b50505050505050565b6001600160a01b0382166000908152601e60205260409020805460ff19168215151790556126648282611ba4565b80156126ca5760065460405163031e79db60e41b81526001600160a01b038481166004830152909116906331e79db090602401600060405180830381600087803b1580156126b157600080fd5b505af11580156126c5573d6000803e3d6000fd5b505050505b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6001600160a01b03831661272c5760405162461bcd60e51b8152600401610b139061331d565b6001600160a01b0382166127525760405162461bcd60e51b8152600401610b1390613362565b6001600160a01b038316600090815260208190526040902054818110156127ca5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610b13565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290612801908490613194565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111f191815260200190565b6000612858306111ff565b90506000601854601954601a5461286f9190613194565b6128799190613194565b9050811580612886575080155b1561288f575050565b6000600282601a54856128a2919061325c565b6128ac9190613273565b6128b69190613273565b905060006128c48483612b3e565b9050476128d082612b80565b60006128dc4783612b3e565b9050600061290a6002601a546128f29190613273565b6128fc90886133a5565b6019546122ac908590612a7a565b905060006129386002601a546129209190613273565b61292a90896133a5565b6018546122ac908690612a7a565b905060008161294784866133a5565b61295191906133a5565b6000601a8190556019819055601855905086158015906129715750600081115b156129c4576129808782612d40565b601a54604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516000916001600160a01b03169084908381818185875af1925050503d8060008114612a11576040519150601f19603f3d011682016040523d82523d6000602084013e612a16565b606091505b50506007546040519192506001600160a01b0316904790600081818185875af1925050503d8060008114612a66576040519150601f19603f3d011682016040523d82523d6000602084013e612a6b565b606091505b50505050505050505050505050565b600082600003612a8c57506000610a01565b6000612a98838561325c565b905082612aa58583613273565b14610a7e5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610b13565b6000610a7e83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612e1f565b6000610a7e83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612e56565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612bb557612bb5613295565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612c33573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c5791906133b8565b81600181518110612c6a57612c6a613295565b60200260200101906001600160a01b031690816001600160a01b031681525050612cb5307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611c26565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790612d0a9085906000908690309042906004016133d5565b600060405180830381600087803b158015612d2457600080fd5b505af1158015612d38573d6000803e3d6000fd5b505050505050565b612d6b307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611c26565b60075460405163f305d71960e01b81523060048201526024810184905260006044820181905260648201526001600160a01b0391821660848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d9091169063f305d71990839060c40160606040518083038185885af1158015612dfa573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610ead919061322e565b60008183612e405760405162461bcd60e51b8152600401610b139190612e87565b506000612e4d8486613273565b95945050505050565b60008184841115612e7a5760405162461bcd60e51b8152600401610b139190612e87565b506000612e4d84866133a5565b600060208083528351808285015260005b81811015612eb457858101830151858201604001528201612e98565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610bd357600080fd5b60008060408385031215612efd57600080fd5b8235612f0881612ed5565b946020939093013593505050565b600060208284031215612f2857600080fd5b8135610a7e81612ed5565b60008060408385031215612f4657600080fd5b8235612f5181612ed5565b91506020830135612f6181612ed5565b809150509250929050565b600080600060608486031215612f8157600080fd5b8335612f8c81612ed5565b92506020840135612f9c81612ed5565b929592945050506040919091013590565b600080600060608486031215612fc257600080fd5b505081359360208301359350604090920135919050565b60008060408385031215612fec57600080fd5b823591506020830135612f6181612ed5565b8015158114610bd357600080fd5b6000806040838503121561301f57600080fd5b823561302a81612ed5565b91506020830135612f6181612ffe565b60006020828403121561304c57600080fd5b5035919050565b60006020828403121561306557600080fd5b8135610a7e81612ffe565b60008060006040848603121561308557600080fd5b833567ffffffffffffffff8082111561309d57600080fd5b818601915086601f8301126130b157600080fd5b8135818111156130c057600080fd5b8760208260051b85010111156130d557600080fd5b602092830195509350508401356130eb81612ffe565b809150509250925092565b600181811c9082168061310a57607f821691505b60208210810361312a57634e487b7160e01b600052602260045260246000fd5b50919050565b60006020828403121561314257600080fd5b5051919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b80820180821115610a0157610a0161317e565b600080600080600080600080610100898b0312156131c457600080fd5b88516131cf81612ed5565b809850506020890151965060408901519550606089015194506080890151935060a0890151925060c0890151915060e089015190509295985092959890939650565b60006020828403121561322357600080fd5b8151610a7e81612ffe565b60008060006060848603121561324357600080fd5b8351925060208401519150604084015190509250925092565b8082028115828204841417610a0157610a0161317e565b60008261329057634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b6000600182016132bd576132bd61317e565b5060010190565b6040808252810183905260008460608301825b868110156133075782356132ea81612ed5565b6001600160a01b03168252602092830192909101906001016132d7565b5080925050508215156020830152949350505050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b81810381811115610a0157610a0161317e565b6000602082840312156133ca57600080fd5b8151610a7e81612ed5565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156134255784516001600160a01b031683529383019391830191600101613400565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212202576d2355016c39381575c51a19a2f5db1005ca448104e6407291f060fe8639664736f6c63430008130033

Deployed Bytecode Sourcemap

44158:21259:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55871:343;;;;;;;;;;-1:-1:-1;56037:12:0;;56064:13;;56092:16;;56123:15;;56153:13;;56181:14;;55871:343;;;301:25:1;;;357:2;342:18;;335:34;;;;385:18;;;378:34;;;;443:2;428:18;;421:34;486:3;471:19;;464:35;530:3;515:19;;508:35;288:3;273:19;55871:343:0;;;;;;;;4268:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;5248:194::-;;;;;;;;;;-1:-1:-1;5248:194:0;;;;;:::i;:::-;;:::i;:::-;;;1728:14:1;;1721:22;1703:41;;1691:2;1676:18;5248:194:0;1563:187:1;45788:63:0;;;;;;;;;;-1:-1:-1;45788:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;4589:108;;;;;;;;;;-1:-1:-1;4677:12:0;;4589:108;;;2153:25:1;;;2141:2;2126:18;4589:108:0;2007:177:1;54633:213:0;;;;;;;;;;-1:-1:-1;54633:213:0;;;;;:::i;:::-;;:::i;5450:529::-;;;;;;;;;;-1:-1:-1;5450:529:0;;;;;:::i;:::-;;:::i;49448:228::-;;;;;;;;;;-1:-1:-1;49448:228:0;;;;;:::i;:::-;;:::i;:::-;;44367:38;;;;;;;;;;-1:-1:-1;44367:38:0;;;;-1:-1:-1;;;;;44367:38:0;;;;;;-1:-1:-1;;;;;3239:32:1;;;3221:51;;3209:2;3194:18;44367:38:0;3043:235:1;53177:391:0;;;;;;;;;;-1:-1:-1;53177:391:0;;;;;:::i;:::-;;:::i;4488:93::-;;;;;;;;;;-1:-1:-1;4488:93:0;;4571:2;3425:36:1;;3413:2;3398:18;4488:93:0;3283:184:1;51083:351:0;;;;;;;;;;-1:-1:-1;51083:351:0;;;;;:::i;:::-;;:::i;49737:124::-;;;;;;;;;;;;;:::i;55441:422::-;;;;;;;;;;-1:-1:-1;55441:422:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;4470:32:1;;;4452:51;;4534:2;4519:18;;4512:34;;;;4562:18;;;4555:34;;;;4620:2;4605:18;;4598:34;;;;4663:3;4648:19;;4641:35;4490:3;4692:19;;4685:35;4751:3;4736:19;;4729:35;4795:3;4780:19;;4773:35;4439:3;4424:19;55441:422:0;4113:701:1;5987:290:0;;;;;;;;;;-1:-1:-1;5987:290:0;;;;;:::i;:::-;;:::i;49954:126::-;;;;;;;;;;-1:-1:-1;49954:126:0;;;;;:::i;:::-;;:::i;56640:103::-;;;;;;;;;;;;;:::i;54497:128::-;;;;;;;;;;-1:-1:-1;54497:128:0;;;;;:::i;:::-;-1:-1:-1;;;;;54589:28:0;54565:4;54589:28;;;:19;:28;;;;;;;;;54497:128;54302:187;;;;;;;;;;-1:-1:-1;54302:187:0;;;;;:::i;:::-;;:::i;56889:142::-;;;;;;;;;;;;;:::i;54854:161::-;;;;;;;;;;-1:-1:-1;54854:161:0;;;;;:::i;:::-;;:::i;52563:292::-;;;;;;;;;;-1:-1:-1;52563:292:0;;;;;:::i;:::-;;:::i;56222:410::-;;;;;;;;;;-1:-1:-1;56222:410:0;;;;;:::i;:::-;;:::i;4705:143::-;;;;;;;;;;-1:-1:-1;4705:143:0;;;;;:::i;:::-;;:::i;17040:148::-;;;;;;;;;;;;;:::i;57039:120::-;;;;;;;;;;;;;:::i;57211:160::-;;;;;;;;;;;;;:::i;65198:216::-;;;;;;;;;;;;;:::i;50185:124::-;;;;;;;;;;-1:-1:-1;50185:124:0;;;;;:::i;:::-;;:::i;53576:469::-;;;;;;;;;;-1:-1:-1;53576:469:0;;;;;:::i;:::-;;:::i;16398:79::-;;;;;;;;;;-1:-1:-1;16463:6:0;;-1:-1:-1;;;;;16463:6:0;16398:79;;50675:100;;;;;;;;;;-1:-1:-1;50675:100:0;;;;;:::i;:::-;;:::i;55023:410::-;;;;;;;;;;-1:-1:-1;55023:410:0;;;;;:::i;:::-;;:::i;4376:104::-;;;;;;;;;;;;;:::i;54185:109::-;;;;;;;;;;;;;:::i;6285:475::-;;;;;;;;;;-1:-1:-1;6285:475:0;;;;;:::i;:::-;;:::i;4856:200::-;;;;;;;;;;-1:-1:-1;4856:200:0;;;;;:::i;:::-;;:::i;52033:182::-;;;;;;;;;;-1:-1:-1;52033:182:0;;;;;:::i;:::-;;:::i;46009:57::-;;;;;;;;;;-1:-1:-1;46009:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;44814:33;;;;;;;;;;-1:-1:-1;44814:33:0;;;;;;;;;;;50783:292;;;;;;;;;;-1:-1:-1;50783:292:0;;;;;:::i;:::-;;:::i;52223:332::-;;;;;;;;;;-1:-1:-1;52223:332:0;;;;;:::i;:::-;;:::i;50363:216::-;;;;;;;;;;;;;:::i;5064:176::-;;;;;;;;;;-1:-1:-1;5064:176:0;;;;;:::i;:::-;-1:-1:-1;;;;;5205:18:0;;;5178:7;5205:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;5064:176;56751:130;;;;;;;;;;;;;:::i;51442:359::-;;;;;;;;;;-1:-1:-1;51442:359:0;;;;;:::i;:::-;;:::i;54053:124::-;;;;;;;;;;-1:-1:-1;54053:124:0;;;;;:::i;:::-;;:::i;17343:281::-;;;;;;;;;;-1:-1:-1;17343:281:0;;;;;:::i;:::-;;:::i;51809:216::-;;;;;;;;;;-1:-1:-1;51809:216:0;;;;;:::i;:::-;;:::i;4268:100::-;4322:13;4355:5;4348:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4268:100;:::o;5248:194::-;5356:4;5373:39;262:10;5396:7;5405:6;5373:8;:39::i;:::-;-1:-1:-1;5430:4:0;5248:194;;;;;:::o;54633:213::-;54778:15;;:60;;-1:-1:-1;;;54778:60:0;;-1:-1:-1;;;;;7338:15:1;;;54778:60:0;;;7320:34:1;7390:15;;;7370:18;;;7363:43;54751:7:0;;54778:15;;:38;;7255:18:1;;54778:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;54771:67;54633:213;-1:-1:-1;;;54633:213:0:o;5450:529::-;5590:4;5607:36;5617:6;5625:9;5636:6;5607:9;:36::i;:::-;-1:-1:-1;;;;;5683:19:0;;5656:24;5683:19;;;:11;:19;;;;;;;;262:10;5683:33;;;;;;;;5749:26;;;;5727:116;;;;-1:-1:-1;;;5727:116:0;;7808:2:1;5727:116:0;;;7790:21:1;7847:2;7827:18;;;7820:30;7886:34;7866:18;;;7859:62;-1:-1:-1;;;7937:18:1;;;7930:38;7985:19;;5727:116:0;;;;;;;;;5879:57;5888:6;262:10;5929:6;5910:16;:25;5879:8;:57::i;:::-;-1:-1:-1;5967:4:0;;5450:529;-1:-1:-1;;;;5450:529:0:o;49448:228::-;16610:6;;-1:-1:-1;;;;;16610:6:0;262:10;16610:22;16602:67;;;;-1:-1:-1;;;16602:67:0;;;;;;;:::i;:::-;49520:36:::1;49534:15;49551:4;49520:13;:36::i;:::-;49567:15;::::0;:53:::1;::::0;-1:-1:-1;;;49567:53:0;;-1:-1:-1;;;;;3239:32:1;;;49567:53:0::1;::::0;::::1;3221:51:1::0;49567:15:0;;::::1;::::0;:36:::1;::::0;3194:18:1;;49567:53:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;49631:37;49646:15;49663:4;49631:14;:37::i;:::-;49448:228:::0;:::o;53177:391::-;53282:16;;-1:-1:-1;;;;;53282:16:0;262:10;-1:-1:-1;;;;;53266:32:0;;53258:41;;;;;;-1:-1:-1;;;;;53320:33:0;;53312:70;;;;-1:-1:-1;;;53312:70:0;;8578:2:1;53312:70:0;;;8560:21:1;8617:2;8597:18;;;8590:30;8656:26;8636:18;;;8629:54;8700:18;;53312:70:0;8376:348:1;53312:70:0;53393:40;53407:19;53428:4;53393:13;:40::i;:::-;53494:16;;53449:62;;-1:-1:-1;;;;;53494:16:0;;;;53449:62;;;;;53494:16;;53449:62;53522:16;:38;;-1:-1:-1;;;;;;53522:38:0;-1:-1:-1;;;;;53522:38:0;;;;;;;;;;53177:391::o;51083:351::-;16610:6;;-1:-1:-1;;;;;16610:6:0;262:10;16610:22;16602:67;;;;-1:-1:-1;;;16602:67:0;;;;;;;:::i;:::-;51237:16:::1;:33:::0;;;51281:13:::1;:27:::0;;;51319:15:::1;:31:::0;;;51337:13;51376:32:::1;51297:11:::0;51256:14;51376:32:::1;:::i;:::-;:50;;;;:::i;:::-;51361:12;:65:::0;-1:-1:-1;;;51083:351:0:o;49737:124::-;16610:6;;49786:4;;-1:-1:-1;;;;;16610:6:0;262:10;16610:22;16602:67;;;;-1:-1:-1;;;16602:67:0;;;;;;;:::i;:::-;-1:-1:-1;49803:20:0::1;:28:::0;;-1:-1:-1;;49803:28:0::1;::::0;;;49737:124;:::o;55441:422::-;55802:15;;:53;;-1:-1:-1;;;55802:53:0;;;;;9165:25:1;;;-1:-1:-1;;;;;9226:32:1;;;9206:18;;;9199:60;55608:7:0;;;;;;;;;;;;;;;;55802:15;;;:33;;9138:18:1;;55802:53:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;55795:60;;;;;;;;;;;;;;;;55441:422;;;;;;;;;;;:::o;5987:290::-;262:10;6100:4;6189:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;6189:34:0;;;;;;;;;;6100:4;;6117:130;;6167:7;;6189:47;;6226:10;;6189:47;:::i;:::-;6117:8;:130::i;49954:126::-;16610:6;;-1:-1:-1;;;;;16610:6:0;262:10;16610:22;16602:67;;;;-1:-1:-1;;;16602:67:0;;;;;;;:::i;:::-;50027:15:::1;::::0;:45:::1;::::0;-1:-1:-1;;;50027:45:0;;-1:-1:-1;;;;;3239:32:1;;;50027:45:0::1;::::0;::::1;3221:51:1::0;50027:15:0;;::::1;::::0;:36:::1;::::0;3194:18:1;;50027:45:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;49954:126:::0;:::o;56640:103::-;56677:15;;:58;;-1:-1:-1;;;56677:58:0;;56716:10;56677:58;;;10140:51:1;56677:15:0;10207:18:1;;;10200:50;-1:-1:-1;;;;;56677:15:0;;;;:30;;10113:18:1;;56677:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;54302:187::-;54427:15;;:54;;-1:-1:-1;;;54427:54:0;;-1:-1:-1;;;;;3239:32:1;;;54427:54:0;;;3221:51:1;54400:7:0;;54427:15;;:41;;3194:18:1;;54427:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;56889:142::-;56982:15;;:41;;;-1:-1:-1;;;56982:41:0;;;;56955:7;;-1:-1:-1;;;;;56982:15:0;;:39;;:41;;;;;;;;;;;;;;:15;:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56975:48;;56889:142;:::o;54854:161::-;54969:15;;:38;;-1:-1:-1;;;54969:38:0;;-1:-1:-1;;;;;3239:32:1;;;54969:38:0;;;3221:51:1;54942:7:0;;54969:15;;:29;;3194:18:1;;54969:38:0;3043:235:1;52563:292:0;16610:6;;-1:-1:-1;;;;;16610:6:0;262:10;16610:22;16602:67;;;;-1:-1:-1;;;16602:67:0;;;;;;;:::i;:::-;52697:13:::1;-1:-1:-1::0;;;;;52689:21:0::1;:4;-1:-1:-1::0;;;;;52689:21:0::1;::::0;52667:140:::1;;;::::0;-1:-1:-1;;;52667:140:0;;10713:2:1;52667:140:0::1;::::0;::::1;10695:21:1::0;10752:2;10732:18;;;10725:30;10791:34;10771:18;;;10764:62;10862:34;10842:18;;;10835:62;-1:-1:-1;;;10913:19:1;;;10906:36;10959:19;;52667:140:0::1;10511:473:1::0;52667:140:0::1;52820:27;52835:4;52841:5;52820:14;:27::i;:::-;52563:292:::0;;:::o;56222:410::-;56404:15;;:28;;-1:-1:-1;;;;;;56404:28:0;;;;;2153:25:1;;;56302:18:0;;;;;;-1:-1:-1;;;;;56404:15:0;;:23;;2126:18:1;;56404:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56448:176;;;11531:25:1;;;11587:2;11572:18;;11565:34;;;11615:18;;;11608:34;;;11673:2;11658:18;;11651:34;;;56287:145:0;;-1:-1:-1;56287:145:0;;-1:-1:-1;56287:145:0;-1:-1:-1;56604:9:0;;56566:5;;56448:176;;11518:3:1;11503:19;56448:176:0;;;;;;;;56276:356;;;56222:410;:::o;4705:143::-;-1:-1:-1;;;;;4822:18:0;4795:7;4822:18;;;;;;;;;;;;4705:143::o;17040:148::-;16610:6;;-1:-1:-1;;;;;16610:6:0;262:10;16610:22;16602:67;;;;-1:-1:-1;;;16602:67:0;;;;;;;:::i;:::-;17131:6:::1;::::0;17110:40:::1;::::0;17147:1:::1;::::0;-1:-1:-1;;;;;17131:6:0::1;::::0;17110:40:::1;::::0;17147:1;;17110:40:::1;17161:6;:19:::0;;-1:-1:-1;;;;;;17161:19:0::1;::::0;;17040:148::o;57039:120::-;57121:15;;:30;;;-1:-1:-1;;;57121:30:0;;;;57094:7;;-1:-1:-1;;;;;57121:15:0;;:28;;:30;;;;;;;;;;;;;;:15;:30;;;;;;;;;;;;;;57211:160;16610:6;;57263:4;;-1:-1:-1;;;;;16610:6:0;262:10;16610:22;16602:67;;;;-1:-1:-1;;;16602:67:0;;;;;;;:::i;:::-;-1:-1:-1;57280:14:0::1;:22:::0;;-1:-1:-1;;57280:22:0;;::::1;::::0;;;57313:20:::1;:28:::0;;;;::::1;::::0;;57280:22;57211:160;:::o;65198:216::-;16610:6;;-1:-1:-1;;;;;16610:6:0;262:10;16610:22;16602:67;;;;-1:-1:-1;;;16602:67:0;;;;;;;:::i;:::-;65275:82:::1;::::0;65257:12:::1;::::0;65283:10:::1;::::0;65321:21:::1;::::0;65257:12;65275:82;65257:12;65275:82;65321:21;65283:10;65275:82:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65256:101;;;65376:7;65368:38;;;::::0;-1:-1:-1;;;65368:38:0;;12108:2:1;65368:38:0::1;::::0;::::1;12090:21:1::0;12147:2;12127:18;;;12120:30;-1:-1:-1;;;12166:18:1;;;12159:48;12224:18;;65368:38:0::1;11906:342:1::0;50185:124:0;16610:6;;-1:-1:-1;;;;;16610:6:0;262:10;16610:22;16602:67;;;;-1:-1:-1;;;16602:67:0;;;;;;;:::i;:::-;50258:15:::1;::::0;:43:::1;::::0;-1:-1:-1;;;50258:43:0;;-1:-1:-1;;;;;3239:32:1;;;50258:43:0::1;::::0;::::1;3221:51:1::0;50258:15:0;;::::1;::::0;:34:::1;::::0;3194:18:1;;50258:43:0::1;3043:235:1::0;53576:469:0;16610:6;;-1:-1:-1;;;;;16610:6:0;262:10;16610:22;16602:67;;;;-1:-1:-1;;;16602:67:0;;;;;;;:::i;:::-;53690:6:::1;53678:8;:18;;:40;;;;;53712:6;53700:8;:18;;53678:40;53656:143;;;::::0;-1:-1:-1;;;53656:143:0;;12455:2:1;53656:143:0::1;::::0;::::1;12437:21:1::0;12494:2;12474:18;;;12467:30;12533:34;12513:18;;;12506:62;-1:-1:-1;;;12584:18:1;;;12577:51;12645:19;;53656:143:0::1;12253:417:1::0;53656:143:0::1;53844:16;;53832:8;:28:::0;53810:122:::1;;;::::0;-1:-1:-1;;;53810:122:0;;12877:2:1;53810:122:0::1;::::0;::::1;12859:21:1::0;12916:2;12896:18;;;12889:30;12955:34;12935:18;;;12928:62;-1:-1:-1;;;13006:18:1;;;12999:42;13058:19;;53810:122:0::1;12675:408:1::0;53810:122:0::1;53982:16;::::0;53948:51:::1;::::0;53972:8;;53948:51:::1;::::0;;;::::1;54010:16;:27:::0;53576:469::o;50675:100::-;16610:6;;-1:-1:-1;;;;;16610:6:0;262:10;16610:22;16602:67;;;;-1:-1:-1;;;16602:67:0;;;;;;;:::i;:::-;50746:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;50746:21:0;;::::1;::::0;;;::::1;::::0;;50675:100::o;55023:410::-;55377:15;;:48;;-1:-1:-1;;;55377:48:0;;-1:-1:-1;;;;;7338:15:1;;;55377:48:0;;;7320:34:1;7390:15;;;7370:18;;;7363:43;55183:7:0;;;;;;;;;;;;;;;;55377:15;;;:26;;7255:18:1;;55377:48:0;7108:304:1;4376:104:0;4432:13;4465:7;4458:14;;;;;:::i;54185:109::-;54259:15;;:27;;;-1:-1:-1;;;54259:27:0;;;;54232:7;;-1:-1:-1;;;;;54259:15:0;;:25;;:27;;;;;;;;;;;;;;:15;:27;;;;;;;;;;;;;;6285:475;262:10;6403:4;6447:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;6447:34:0;;;;;;;;;;6514:35;;;;6492:122;;;;-1:-1:-1;;;6492:122:0;;13290:2:1;6492:122:0;;;13272:21:1;13329:2;13309:18;;;13302:30;13368:34;13348:18;;;13341:62;-1:-1:-1;;;13419:18:1;;;13412:35;13464:19;;6492:122:0;13088:401:1;6492:122:0;6650:67;262:10;6673:7;6701:15;6682:16;:34;6650:8;:67::i;:::-;-1:-1:-1;6748:4:0;;6285:475;-1:-1:-1;;;6285:475:0:o;4856:200::-;4967:4;4984:42;262:10;5008:9;5019:6;4984:9;:42::i;52033:182::-;16610:6;;-1:-1:-1;;;;;16610:6:0;262:10;16610:22;16602:67;;;;-1:-1:-1;;;16602:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;52116:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;52116:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;52173:34;;1703:41:1;;;52173:34:0::1;::::0;1676:18:1;52173:34:0::1;;;;;;;;52033:182:::0;;:::o;50783:292::-;50874:16;;-1:-1:-1;;;;;50874:16:0;262:10;-1:-1:-1;;;;;50858:32:0;;50850:41;;;;;;50965:4;50958:3;50937:13;4677:12;;;4589:108;50937:13;:17;;50953:1;50937:17;:::i;:::-;50936:25;;;;:::i;:::-;50935:34;;;;:::i;:::-;50926:6;:43;50904:124;;;;-1:-1:-1;;;50904:124:0;;14091:2:1;50904:124:0;;;14073:21:1;14130:2;14110:18;;;14103:30;14169:33;14149:18;;;14142:61;14220:18;;50904:124:0;13889:355:1;50904:124:0;51048:19;:6;51058:8;51048:19;:::i;:::-;51039:6;:28;-1:-1:-1;50783:292:0:o;52223:332::-;16610:6;;-1:-1:-1;;;;;16610:6:0;262:10;16610:22;16602:67;;;;-1:-1:-1;;;16602:67:0;;;;;;;:::i;:::-;52368:9:::1;52363:116;52383:19:::0;;::::1;52363:116;;;52459:8;52424:19;:32;52444:8;;52453:1;52444:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;52424:32:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;52424:32:0;:43;;-1:-1:-1;;52424:43:0::1;::::0;::::1;;::::0;;;::::1;::::0;;52404:3;::::1;::::0;::::1;:::i;:::-;;;;52363:116;;;;52496:51;52528:8;;52538;52496:51;;;;;;;;:::i;:::-;;;;;;;;52223:332:::0;;;:::o;50363:216::-;16610:6;;-1:-1:-1;;;;;16610:6:0;262:10;16610:22;16602:67;;;;-1:-1:-1;;;16602:67:0;;;;;;;:::i;:::-;50425:13:::1;::::0;::::1;::::0;::::1;;;50424:14;50416:51;;;::::0;-1:-1:-1;;;50416:51:0;;15522:2:1;50416:51:0::1;::::0;::::1;15504:21:1::0;15561:2;15541:18;;;15534:30;15600:26;15580:18;;;15573:54;15644:18;;50416:51:0::1;15320:348:1::0;50416:51:0::1;50478:13;:20:::0;;-1:-1:-1;;50509:18:0;;;;;50559:12:::1;50538:18;:33:::0;50363:216::o;56751:130::-;56834:15;;:39;;;-1:-1:-1;;;56834:39:0;;;;56807:7;;-1:-1:-1;;;;;56834:15:0;;:37;;:39;;;;;;;;;;;;;;:15;:39;;;;;;;;;;;;;;51442:359;16610:6;;-1:-1:-1;;;;;16610:6:0;262:10;16610:22;16602:67;;;;-1:-1:-1;;;16602:67:0;;;;;;;:::i;:::-;51597:17:::1;:34:::0;;;51642:14:::1;:28:::0;;;51681:16:::1;:32:::0;;;51700:13;51740:34:::1;51659:11:::0;51617:14;51740:34:::1;:::i;:::-;:53;;;;:::i;:::-;51724:13;:69:::0;-1:-1:-1;;;51442:359:0:o;54053:124::-;16610:6;;-1:-1:-1;;;;;16610:6:0;262:10;16610:22;16602:67;;;;-1:-1:-1;;;16602:67:0;;;;;;;:::i;:::-;54127:15:::1;::::0;:42:::1;::::0;-1:-1:-1;;;54127:42:0;;::::1;::::0;::::1;2153:25:1::0;;;-1:-1:-1;;;;;54127:15:0;;::::1;::::0;:31:::1;::::0;2126:18:1;;54127:42:0::1;2007:177:1::0;17343:281:0;16610:6;;-1:-1:-1;;;;;16610:6:0;262:10;16610:22;16602:67;;;;-1:-1:-1;;;16602:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;17446:22:0;::::1;17424:110;;;::::0;-1:-1:-1;;;17424:110:0;;15875:2:1;17424:110:0::1;::::0;::::1;15857:21:1::0;15914:2;15894:18;;;15887:30;15953:34;15933:18;;;15926:62;-1:-1:-1;;;16004:18:1;;;15997:36;16050:19;;17424:110:0::1;15673:402:1::0;17424:110:0::1;17571:6;::::0;17550:38:::1;::::0;-1:-1:-1;;;;;17550:38:0;;::::1;::::0;17571:6:::1;::::0;17550:38:::1;::::0;17571:6:::1;::::0;17550:38:::1;17599:6;:17:::0;;-1:-1:-1;;;;;;17599:17:0::1;-1:-1:-1::0;;;;;17599:17:0;;;::::1;::::0;;;::::1;::::0;;17343:281::o;51809:216::-;16610:6;;-1:-1:-1;;;;;16610:6:0;262:10;16610:22;16602:67;;;;-1:-1:-1;;;16602:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;51913:39:0;::::1;;::::0;;;:31:::1;:39;::::0;;;;;;;;:46;;-1:-1:-1;;51913:46:0::1;::::0;::::1;;::::0;;::::1;::::0;;;51975:42;;1703:41:1;;;51975:42:0::1;::::0;1676:18:1;51975:42:0::1;1563:187:1::0;7749:380:0;-1:-1:-1;;;;;7885:19:0;;7877:68;;;;-1:-1:-1;;;7877:68:0;;16282:2:1;7877:68:0;;;16264:21:1;16321:2;16301:18;;;16294:30;16360:34;16340:18;;;16333:62;-1:-1:-1;;;16411:18:1;;;16404:34;16455:19;;7877:68:0;16080:400:1;7877:68:0;-1:-1:-1;;;;;7964:21:0;;7956:68;;;;-1:-1:-1;;;7956:68:0;;16687:2:1;7956:68:0;;;16669:21:1;16726:2;16706:18;;;16699:30;16765:34;16745:18;;;16738:62;-1:-1:-1;;;16816:18:1;;;16809:32;16858:19;;7956:68:0;16485:398:1;7956:68:0;-1:-1:-1;;;;;8037:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;8089:32;;2153:25:1;;;8089:32:0;;2126:18:1;8089:32:0;;;;;;;7749:380;;;:::o;57379:4859::-;-1:-1:-1;;;;;57511:18:0;;57503:68;;;;-1:-1:-1;;;57503:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;57590:16:0;;57582:64;;;;-1:-1:-1;;;57582:64:0;;;;;;;:::i;:::-;57663:6;57673:1;57663:11;57659:93;;57691:28;57707:4;57713:2;57717:1;57691:15;:28::i;:::-;57379:4859;;;:::o;57659:93::-;57769:13;;;;;;;57764:187;;-1:-1:-1;;;;;57825:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;57854:23:0;;;;;;:19;:23;;;;;;;;57825:52;57799:140;;;;-1:-1:-1;;;57799:140:0;;17900:2:1;57799:140:0;;;17882:21:1;17939:2;17919:18;;;17912:30;17978:28;17958:18;;;17951:56;18024:18;;57799:140:0;17698:350:1;57799:140:0;57967:14;;;;57963:1667;;;16463:6;;-1:-1:-1;;;;;58020:15:0;;;16463:6;;58020:15;;;;:49;;-1:-1:-1;16463:6:0;;-1:-1:-1;;;;;58056:13:0;;;16463:6;;58056:13;;58020:49;:86;;;;-1:-1:-1;;;;;;58090:16:0;;;;58020:86;:128;;;;-1:-1:-1;;;;;;58127:21:0;;58141:6;58127:21;;58020:128;:158;;;;-1:-1:-1;58170:8:0;;-1:-1:-1;;;58170:8:0;;;;58169:9;58020:158;57998:1621;;;58349:20;;;;58345:599;;;58438:15;-1:-1:-1;;;;;58424:30:0;:2;-1:-1:-1;;;;;58424:30:0;;;:87;;;;;58497:13;-1:-1:-1;;;;;58483:28:0;:2;-1:-1:-1;;;;;58483:28:0;;;58424:87;58394:531;;;58629:9;58600:39;;;;:28;:39;;;;;;58675:12;-1:-1:-1;58562:258:0;;;;-1:-1:-1;;;58562:258:0;;18255:2:1;58562:258:0;;;18237:21:1;18294:2;18274:18;;;18267:30;18333:34;18313:18;;;18306:62;18404:34;18384:18;;;18377:62;-1:-1:-1;;;18455:19:1;;;18448:40;18505:19;;58562:258:0;18053:477:1;58562:258:0;58876:9;58847:39;;;;:28;:39;;;;;58889:12;58847:54;;58394:531;-1:-1:-1;;;;;59018:31:0;;;;;;:25;:31;;;;;;;;:92;;;;-1:-1:-1;;;;;;59075:35:0;;;;;;:31;:35;;;;;;;;59074:36;59018:92;58992:612;;;59213:6;;59196:13;59206:2;59196:9;:13::i;:::-;59187:22;;:6;:22;:::i;:::-;:32;;59153:145;;;;-1:-1:-1;;;59153:145:0;;18737:2:1;59153:145:0;;;18719:21:1;18776:2;18756:18;;;18749:30;18815:29;18795:18;;;18788:57;18862:18;;59153:145:0;18535:351:1;59153:145:0;58992:612;;;-1:-1:-1;;;;;59379:35:0;;;;;;:31;:35;;;;;;;;59374:230;;59499:6;;59482:13;59492:2;59482:9;:13::i;:::-;59473:22;;:6;:22;:::i;:::-;:32;;59439:145;;;;-1:-1:-1;;;59439:145:0;;18737:2:1;59439:145:0;;;18719:21:1;18776:2;18756:18;;;18749:30;18815:29;18795:18;;;18788:57;18862:18;;59439:145:0;18535:351:1;59439:145:0;59642:28;59673:24;59691:4;59673:9;:24::i;:::-;59749:18;;59642:55;;-1:-1:-1;59725:42:0;;;;;;;59798:35;;-1:-1:-1;59822:11:0;;;;;;;59798:35;:61;;;;-1:-1:-1;59851:8:0;;-1:-1:-1;;;59851:8:0;;;;59850:9;59798:61;:110;;;;-1:-1:-1;;;;;;59877:31:0;;;;;;:25;:31;;;;;;;;59876:32;59798:110;:153;;;;-1:-1:-1;;;;;;59926:25:0;;;;;;:19;:25;;;;;;;;59925:26;59798:153;:194;;;;-1:-1:-1;;;;;;59969:23:0;;;;;;:19;:23;;;;;;;;59968:24;59798:194;59780:322;;;60019:8;:15;;-1:-1:-1;;;;60019:15:0;-1:-1:-1;;;60019:15:0;;;60049:10;:8;:10::i;:::-;60074:8;:16;;-1:-1:-1;;;;60074:16:0;;;59780:322;60130:8;;-1:-1:-1;;;;;60240:25:0;;60114:12;60240:25;;;:19;:25;;;;;;60130:8;-1:-1:-1;;;60130:8:0;;;;;60129:9;;60240:25;;:52;;-1:-1:-1;;;;;;60269:23:0;;;;;;:19;:23;;;;;;;;60240:52;60236:100;;;-1:-1:-1;60319:5:0;60236:100;60348:12;60432:7;60428:1045;;;-1:-1:-1;;;;;60484:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;60533:1;60517:13;;:17;60484:50;60480:844;;;60562:41;45160:4;60562:25;60573:13;;60562:6;:10;;:25;;;;:::i;:::-;:29;;:41::i;:::-;60555:48;;60668:13;;60650:14;;60643:4;:21;;;;:::i;:::-;60642:39;;;;:::i;:::-;60622:16;;:59;;;;;;;:::i;:::-;;;;-1:-1:-1;;60750:13:0;;60730:16;;60723:23;;:4;:23;:::i;:::-;60722:41;;;;:::i;:::-;60700:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;60876:13:0;;60834:17;;60827:24;;:4;:24;:::i;:::-;60826:63;;;;:::i;:::-;60782:19;;:107;;;;;;;:::i;:::-;;;;-1:-1:-1;60480:844:0;;-1:-1:-1;60480:844:0;;-1:-1:-1;;;;;60951:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;61001:1;60986:12;;:16;60951:51;60947:377;;;61030:40;45160:4;61030:24;61041:12;;61030:6;:10;;:24;;;;:::i;:40::-;61023:47;;61134:12;;61117:13;;61110:4;:20;;;;:::i;:::-;61109:37;;;;:::i;:::-;61089:16;;:57;;;;;;;:::i;:::-;;;;-1:-1:-1;;61214:12:0;;61195:15;;61188:22;;:4;:22;:::i;:::-;61187:39;;;;:::i;:::-;61165:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;61296:12:0;;61276:16;;61269:23;;:4;:23;:::i;:::-;61268:40;;;;:::i;:::-;61245:19;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;60947:377:0;61344:8;;61340:91;;61373:42;61389:4;61403;61410;61373:15;:42::i;:::-;61447:14;61457:4;61447:14;;:::i;:::-;;;60428:1045;61485:33;61501:4;61507:2;61511:6;61485:15;:33::i;:::-;61531:15;;-1:-1:-1;;;;;61531:15:0;:26;61566:4;61573:15;61566:4;61573:9;:15::i;:::-;61531:58;;-1:-1:-1;;;;;;61531:58:0;;;;;;;-1:-1:-1;;;;;19232:32:1;;;61531:58:0;;;19214:51:1;19281:18;;;19274:34;19187:18;;61531:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;61600:15:0;;-1:-1:-1;;;;;61600:15:0;;-1:-1:-1;61600:26:0;;-1:-1:-1;61635:2:0;61640:13;61635:2;61640:9;:13::i;:::-;61600:54;;-1:-1:-1;;;;;;61600:54:0;;;;;;;-1:-1:-1;;;;;19232:32:1;;;61600:54:0;;;19214:51:1;19281:18;;;19274:34;19187:18;;61600:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;61672:8:0;;-1:-1:-1;;;61672:8:0;;;;61671:9;;-1:-1:-1;;61671:33:0;;;;;61703:1;61684:16;;:20;61671:33;61667:564;;;61735:16;;61772:15;;:28;;-1:-1:-1;;;;;;61772:28:0;;;;;2153:25:1;;;-1:-1:-1;;;;;61772:15:0;;;;:23;;2126:18:1;;61772:28:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;61772:28:0;;;;;;;;-1:-1:-1;;61772:28:0;;;;;;;;;;;;:::i;:::-;;;61768:452;;;61964:231;;;11531:25:1;;;11587:2;11572:18;;11565:34;;;11615:18;;;11608:34;;;11673:2;11658:18;;11651:34;;;62167:9:0;;62114:4;;61964:231;;11518:3:1;11503:19;61964:231:0;;;;;;;61801:410;;;61768:452;61706:525;61667:564;57492:4746;;;;57379:4859;;;:::o;52863:306::-;-1:-1:-1;;;;;52932:31:0;;;;;;:25;:31;;;;;:39;;-1:-1:-1;;52932:39:0;;;;;;;52984:27;52932:31;:39;52984:14;:27::i;:::-;53028:5;53024:80;;;53050:15;;:42;;-1:-1:-1;;;53050:42:0;;-1:-1:-1;;;;;3239:32:1;;;53050:42:0;;;3221:51:1;53050:15:0;;;;:36;;3194:18:1;;53050:42:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53024:80;53121:40;;;;;;-1:-1:-1;;;;;53121:40:0;;;;;;;;52863:306;;:::o;6768:651::-;-1:-1:-1;;;;;6908:20:0;;6900:70;;;;-1:-1:-1;;;6900:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6989:23:0;;6981:71;;;;-1:-1:-1;;;6981:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;7089:17:0;;7065:21;7089:17;;;;;;;;;;;7139:23;;;;7117:111;;;;-1:-1:-1;;;7117:111:0;;19521:2:1;7117:111:0;;;19503:21:1;19560:2;19540:18;;;19533:30;19599:34;19579:18;;;19572:62;-1:-1:-1;;;19650:18:1;;;19643:36;19696:19;;7117:111:0;19319:402:1;7117:111:0;-1:-1:-1;;;;;7264:17:0;;;:9;:17;;;;;;;;;;;7284:22;;;7264:42;;7328:20;;;;;;;;:30;;7300:6;;7264:9;7328:30;;7300:6;;7328:30;:::i;:::-;;;;;;;;7393:9;-1:-1:-1;;;;;7376:35:0;7385:6;-1:-1:-1;;;;;7376:35:0;;7404:6;7376:35;;;;2153:25:1;;2141:2;2126:18;;2007:177;63382:1808:0;63421:23;63447:24;63465:4;63447:9;:24::i;:::-;63421:50;;63482:25;63579:16;;63544:19;;63510:18;;:53;;;;:::i;:::-;:85;;;;:::i;:::-;63482:113;-1:-1:-1;63612:20:0;;;:46;;-1:-1:-1;63636:22:0;;63612:46;63608:85;;;63675:7;;63382:1808::o;63608:85::-;63754:23;63867:1;63834:17;63799:18;;63781:15;:36;;;;:::i;:::-;63780:71;;;;:::i;:::-;:88;;;;:::i;:::-;63754:114;-1:-1:-1;63879:26:0;63908:36;:15;63754:114;63908:19;:36::i;:::-;63879:65;-1:-1:-1;63985:21:0;64019:36;63879:65;64019:16;:36::i;:::-;64068:18;64089:44;:21;64115:17;64089:25;:44::i;:::-;64068:65;;64146:24;64173:109;64269:1;64248:18;;:22;;;;:::i;:::-;64227:44;;:17;:44;:::i;:::-;64188:19;;64173:35;;:10;;:14;:35::i;:109::-;64146:136;;64293:21;64317:106;64410:1;64389:18;;:22;;;;:::i;:::-;64368:44;;:17;:44;:::i;:::-;64332:16;;64317:32;;:10;;:14;:32::i;:106::-;64293:130;-1:-1:-1;64436:23:0;64293:130;64462:29;64475:16;64462:10;:29;:::i;:::-;:45;;;;:::i;:::-;64541:1;64520:18;:22;;;64553:19;:23;;;64587:16;:20;64436:71;-1:-1:-1;64624:19:0;;;;;:42;;;64665:1;64647:15;:19;64624:42;64620:278;;;64683:46;64696:15;64713;64683:12;:46::i;:::-;64853:18;;64749:137;;;19928:25:1;;;19984:2;19969:18;;19962:34;;;20012:18;;;20005:34;;;;64749:137:0;;;;;;19916:2:1;64749:137:0;;;64620:278;64996:15;;64988:79;;64970:12;;-1:-1:-1;;;;;64996:15:0;;65025:13;;64970:12;64988:79;64970:12;64988:79;65025:13;64996:15;64988:79;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;65102:16:0;;65094:88;;64969:98;;-1:-1:-1;;;;;;65102:16:0;;65146:21;;65094:88;;;;65146:21;65102:16;65094:88;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;63382:1808:0:o;12708:471::-;12766:7;13011:1;13016;13011:6;13007:47;;-1:-1:-1;13041:1:0;13034:8;;13007:47;13066:9;13078:5;13082:1;13078;:5;:::i;:::-;13066:17;-1:-1:-1;13111:1:0;13102:5;13106:1;13066:17;13102:5;:::i;:::-;:10;13094:56;;;;-1:-1:-1;;;13094:56:0;;20252:2:1;13094:56:0;;;20234:21:1;20291:2;20271:18;;;20264:30;20330:34;20310:18;;;20303:62;-1:-1:-1;;;20381:18:1;;;20374:31;20422:19;;13094:56:0;20050:397:1;13655:132:0;13713:7;13740:39;13744:1;13747;13740:39;;;;;;;;;;;;;;;;;:3;:39::i;11784:136::-;11842:7;11869:43;11873:1;11876;11869:43;;;;;;;;;;;;;;;;;:3;:43::i;62246:589::-;62396:16;;;62410:1;62396:16;;;;;;;;62372:21;;62396:16;;;;;;;;;;-1:-1:-1;62396:16:0;62372:40;;62441:4;62423;62428:1;62423:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;62423:23:0;;;-1:-1:-1;;;;;62423:23:0;;;;;62467:15;-1:-1:-1;;;;;62467:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;62457:4;62462:1;62457:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;62457:32:0;;;-1:-1:-1;;;;;62457:32:0;;;;;62502:62;62519:4;62534:15;62552:11;62502:8;:62::i;:::-;62603:224;;-1:-1:-1;;;62603:224:0;;-1:-1:-1;;;;;62603:15:0;:66;;;;:224;;62684:11;;62710:1;;62754:4;;62781;;62801:15;;62603:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62301:534;62246:589;:::o;62843:531::-;62991:62;63008:4;63023:15;63041:11;62991:8;:62::i;:::-;63308:16;;63096:270;;-1:-1:-1;;;63096:270:0;;63168:4;63096:270;;;22166:34:1;22216:18;;;22209:34;;;63214:1:0;22259:18:1;;;22252:34;;;22302:18;;;22295:34;-1:-1:-1;;;;;63308:16:0;;;22345:19:1;;;22338:44;63340:15:0;22398:19:1;;;22391:35;63096:15:0;:31;;;;;;63135:9;;22100:19:1;;63096:270:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;14283:312::-;14403:7;14438:12;14431:5;14423:28;;;;-1:-1:-1;;;14423:28:0;;;;;;;;:::i;:::-;-1:-1:-1;14462:9:0;14474:5;14478:1;14474;:5;:::i;:::-;14462:17;14283:312;-1:-1:-1;;;;;14283:312:0:o;12223:226::-;12343:7;12379:12;12371:6;;;;12363:29;;;;-1:-1:-1;;;12363:29:0;;;;;;;;:::i;:::-;-1:-1:-1;12403:9:0;12415:5;12419:1;12415;:5;:::i;554:548:1:-;666:4;695:2;724;713:9;706:21;756:6;750:13;799:6;794:2;783:9;779:18;772:34;824:1;834:140;848:6;845:1;842:13;834:140;;;943:14;;;939:23;;933:30;909:17;;;928:2;905:26;898:66;863:10;;834:140;;;838:3;1023:1;1018:2;1009:6;998:9;994:22;990:31;983:42;1093:2;1086;1082:7;1077:2;1069:6;1065:15;1061:29;1050:9;1046:45;1042:54;1034:62;;;;554:548;;;;:::o;1107:131::-;-1:-1:-1;;;;;1182:31:1;;1172:42;;1162:70;;1228:1;1225;1218:12;1243:315;1311:6;1319;1372:2;1360:9;1351:7;1347:23;1343:32;1340:52;;;1388:1;1385;1378:12;1340:52;1427:9;1414:23;1446:31;1471:5;1446:31;:::i;:::-;1496:5;1548:2;1533:18;;;;1520:32;;-1:-1:-1;;;1243:315:1:o;1755:247::-;1814:6;1867:2;1855:9;1846:7;1842:23;1838:32;1835:52;;;1883:1;1880;1873:12;1835:52;1922:9;1909:23;1941:31;1966:5;1941:31;:::i;2189:388::-;2257:6;2265;2318:2;2306:9;2297:7;2293:23;2289:32;2286:52;;;2334:1;2331;2324:12;2286:52;2373:9;2360:23;2392:31;2417:5;2392:31;:::i;:::-;2442:5;-1:-1:-1;2499:2:1;2484:18;;2471:32;2512:33;2471:32;2512:33;:::i;:::-;2564:7;2554:17;;;2189:388;;;;;:::o;2582:456::-;2659:6;2667;2675;2728:2;2716:9;2707:7;2703:23;2699:32;2696:52;;;2744:1;2741;2734:12;2696:52;2783:9;2770:23;2802:31;2827:5;2802:31;:::i;:::-;2852:5;-1:-1:-1;2909:2:1;2894:18;;2881:32;2922:33;2881:32;2922:33;:::i;:::-;2582:456;;2974:7;;-1:-1:-1;;;3028:2:1;3013:18;;;;3000:32;;2582:456::o;3472:316::-;3549:6;3557;3565;3618:2;3606:9;3597:7;3593:23;3589:32;3586:52;;;3634:1;3631;3624:12;3586:52;-1:-1:-1;;3657:23:1;;;3727:2;3712:18;;3699:32;;-1:-1:-1;3778:2:1;3763:18;;;3750:32;;3472:316;-1:-1:-1;3472:316:1:o;3793:315::-;3861:6;3869;3922:2;3910:9;3901:7;3897:23;3893:32;3890:52;;;3938:1;3935;3928:12;3890:52;3974:9;3961:23;3951:33;;4034:2;4023:9;4019:18;4006:32;4047:31;4072:5;4047:31;:::i;4819:118::-;4905:5;4898:13;4891:21;4884:5;4881:32;4871:60;;4927:1;4924;4917:12;4942:382;5007:6;5015;5068:2;5056:9;5047:7;5043:23;5039:32;5036:52;;;5084:1;5081;5074:12;5036:52;5123:9;5110:23;5142:31;5167:5;5142:31;:::i;:::-;5192:5;-1:-1:-1;5249:2:1;5234:18;;5221:32;5262:30;5221:32;5262:30;:::i;5329:180::-;5388:6;5441:2;5429:9;5420:7;5416:23;5412:32;5409:52;;;5457:1;5454;5447:12;5409:52;-1:-1:-1;5480:23:1;;5329:180;-1:-1:-1;5329:180:1:o;5722:241::-;5778:6;5831:2;5819:9;5810:7;5806:23;5802:32;5799:52;;;5847:1;5844;5837:12;5799:52;5886:9;5873:23;5905:28;5927:5;5905:28;:::i;5968:750::-;6060:6;6068;6076;6129:2;6117:9;6108:7;6104:23;6100:32;6097:52;;;6145:1;6142;6135:12;6097:52;6185:9;6172:23;6214:18;6255:2;6247:6;6244:14;6241:34;;;6271:1;6268;6261:12;6241:34;6309:6;6298:9;6294:22;6284:32;;6354:7;6347:4;6343:2;6339:13;6335:27;6325:55;;6376:1;6373;6366:12;6325:55;6416:2;6403:16;6442:2;6434:6;6431:14;6428:34;;;6458:1;6455;6448:12;6428:34;6513:7;6506:4;6496:6;6493:1;6489:14;6485:2;6481:23;6477:34;6474:47;6471:67;;;6534:1;6531;6524:12;6471:67;6565:4;6557:13;;;;-1:-1:-1;6589:6:1;-1:-1:-1;;6630:20:1;;6617:34;6660:28;6617:34;6660:28;:::i;:::-;6707:5;6697:15;;;5968:750;;;;;:::o;6723:380::-;6802:1;6798:12;;;;6845;;;6866:61;;6920:4;6912:6;6908:17;6898:27;;6866:61;6973:2;6965:6;6962:14;6942:18;6939:38;6936:161;;7019:10;7014:3;7010:20;7007:1;7000:31;7054:4;7051:1;7044:15;7082:4;7079:1;7072:15;6936:161;;6723:380;;;:::o;7417:184::-;7487:6;7540:2;7528:9;7519:7;7515:23;7511:32;7508:52;;;7556:1;7553;7546:12;7508:52;-1:-1:-1;7579:16:1;;7417:184;-1:-1:-1;7417:184:1:o;8015:356::-;8217:2;8199:21;;;8236:18;;;8229:30;8295:34;8290:2;8275:18;;8268:62;8362:2;8347:18;;8015:356::o;8729:127::-;8790:10;8785:3;8781:20;8778:1;8771:31;8821:4;8818:1;8811:15;8845:4;8842:1;8835:15;8861:125;8926:9;;;8947:10;;;8944:36;;;8960:18;;:::i;9270:681::-;9401:6;9409;9417;9425;9433;9441;9449;9457;9510:3;9498:9;9489:7;9485:23;9481:33;9478:53;;;9527:1;9524;9517:12;9478:53;9559:9;9553:16;9578:31;9603:5;9578:31;:::i;:::-;9628:5;9618:15;;;9673:2;9662:9;9658:18;9652:25;9642:35;;9717:2;9706:9;9702:18;9696:25;9686:35;;9761:2;9750:9;9746:18;9740:25;9730:35;;9805:3;9794:9;9790:19;9784:26;9774:36;;9850:3;9839:9;9835:19;9829:26;9819:36;;9895:3;9884:9;9880:19;9874:26;9864:36;;9940:3;9929:9;9925:19;9919:26;9909:36;;9270:681;;;;;;;;;;;:::o;10261:245::-;10328:6;10381:2;10369:9;10360:7;10356:23;10352:32;10349:52;;;10397:1;10394;10387:12;10349:52;10429:9;10423:16;10448:28;10470:5;10448:28;:::i;10989:306::-;11077:6;11085;11093;11146:2;11134:9;11125:7;11121:23;11117:32;11114:52;;;11162:1;11159;11152:12;11114:52;11191:9;11185:16;11175:26;;11241:2;11230:9;11226:18;11220:25;11210:35;;11285:2;11274:9;11270:18;11264:25;11254:35;;10989:306;;;;;:::o;13494:168::-;13567:9;;;13598;;13615:15;;;13609:22;;13595:37;13585:71;;13636:18;;:::i;13667:217::-;13707:1;13733;13723:132;;13777:10;13772:3;13768:20;13765:1;13758:31;13812:4;13809:1;13802:15;13840:4;13837:1;13830:15;13723:132;-1:-1:-1;13869:9:1;;13667:217::o;14249:127::-;14310:10;14305:3;14301:20;14298:1;14291:31;14341:4;14338:1;14331:15;14365:4;14362:1;14355:15;14381:135;14420:3;14441:17;;;14438:43;;14461:18;;:::i;:::-;-1:-1:-1;14508:1:1;14497:13;;14381:135::o;14521:794::-;14743:2;14755:21;;;14728:18;;14811:22;;;14695:4;14890:6;14864:2;14849:18;;14695:4;14924:304;14938:6;14935:1;14932:13;14924:304;;;15013:6;15000:20;15033:31;15058:5;15033:31;:::i;:::-;-1:-1:-1;;;;;15089:31:1;15077:44;;15144:4;15203:15;;;;15168:12;;;;15117:1;14953:9;14924:304;;;14928:3;15245;15237:11;;;;15300:6;15293:14;15286:22;15279:4;15268:9;15264:20;15257:52;14521:794;;;;;;:::o;16888:401::-;17090:2;17072:21;;;17129:2;17109:18;;;17102:30;17168:34;17163:2;17148:18;;17141:62;-1:-1:-1;;;17234:2:1;17219:18;;17212:35;17279:3;17264:19;;16888:401::o;17294:399::-;17496:2;17478:21;;;17535:2;17515:18;;;17508:30;17574:34;17569:2;17554:18;;17547:62;-1:-1:-1;;;17640:2:1;17625:18;;17618:33;17683:3;17668:19;;17294:399::o;18891:128::-;18958:9;;;18979:11;;;18976:37;;;18993:18;;:::i;20584:251::-;20654:6;20707:2;20695:9;20686:7;20682:23;20678:32;20675:52;;;20723:1;20720;20713:12;20675:52;20755:9;20749:16;20774:31;20799:5;20774:31;:::i;20840:980::-;21102:4;21150:3;21139:9;21135:19;21181:6;21170:9;21163:25;21207:2;21245:6;21240:2;21229:9;21225:18;21218:34;21288:3;21283:2;21272:9;21268:18;21261:31;21312:6;21347;21341:13;21378:6;21370;21363:22;21416:3;21405:9;21401:19;21394:26;;21455:2;21447:6;21443:15;21429:29;;21476:1;21486:195;21500:6;21497:1;21494:13;21486:195;;;21565:13;;-1:-1:-1;;;;;21561:39:1;21549:52;;21656:15;;;;21621:12;;;;21597:1;21515:9;21486:195;;;-1:-1:-1;;;;;;;21737:32:1;;;;21732:2;21717:18;;21710:60;-1:-1:-1;;;21801:3:1;21786:19;21779:35;21698:3;20840:980;-1:-1:-1;;;20840:980:1:o

Swarm Source

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