ETH Price: $2,604.77 (+0.56%)
Gas: 4.06 Gwei

Token

YUKON (YUKON)
 

Overview

Max Total Supply

1,000,000,000,000 YUKON

Holders

237

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Filtered by Token Holder
Uniswap V2: YUKON 2
Balance
93,671,065,051.359504856 YUKON

Value
$0.00
0xaca52998a3cba700cd9d1f344d9fdfba3eb10ac9
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:
YUKON

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-09-30
*/

// File: contracts/IERC20.sol

// SPDX-License-Identifier: Unlicensed

pragma solidity ^0.6.0;

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

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

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

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

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

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

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

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

// File: contracts/Context.sol

pragma solidity >=0.6.0 <0.8.0;

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

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

// File: contracts/IUniswapV2Router01.sol

pragma solidity >=0.6.2;

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

// File: contracts/IUniswapV2Router02.sol

pragma solidity >=0.6.2;


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

// File: contracts/IUniswapV2Factory.sol

pragma solidity >=0.5.0;

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

    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);

    function getPair(address tokenA, address tokenB) external view returns (address pair);
    function allPairs(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);

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

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}

// File: contracts/IUniswapV2Pair.sol

pragma solidity >=0.5.0;

interface IUniswapV2Pair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint value);

    function name() external pure returns (string memory);
    function symbol() external pure returns (string memory);
    function decimals() external pure returns (uint8);
    function totalSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint value) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);
    function PERMIT_TYPEHASH() external pure returns (bytes32);
    function nonces(address owner) external view returns (uint);

    function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external;

    event Mint(address indexed sender, uint amount0, uint amount1);
    event Burn(address indexed sender, uint amount0, uint amount1, address indexed to);
    event Swap(
        address indexed sender,
        uint amount0In,
        uint amount1In,
        uint amount0Out,
        uint amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    function factory() external view returns (address);
    function token0() external view returns (address);
    function token1() external view returns (address);
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function price0CumulativeLast() external view returns (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

    function mint(address to) external returns (uint liquidity);
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;

    function initialize(address, address) external;
}

// File: contracts/IterableMapping.sol

pragma solidity ^0.6.6;

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

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

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

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



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

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

    function remove(Map storage map, address key) public {
        if (!map.inserted[key]) {
            return;
        }

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

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

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

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

// File: contracts/Ownable.sol

pragma solidity ^0.6.0;


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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () public {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

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

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

// File: contracts/IDividendPayingTokenOptional.sol

pragma solidity ^0.6.0;

/// @title Dividend-Paying Token Optional Interface
/// @author Roger Wu (https://github.com/roger-wu)
/// @dev OPTIONAL functions for a dividend-paying token contract.
interface IDividendPayingTokenOptional {
  /// @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) 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) 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) external view returns(uint256);
}

// File: contracts/IDividendPayingToken.sol

pragma solidity ^0.6.0;

/// @title Dividend-Paying Token Interface
/// @author Roger Wu (https://github.com/roger-wu)
/// @dev An interface for a dividend-paying token contract.
interface IDividendPayingToken {
  /// @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) 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() 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
  );
}

// File: contracts/SafeMathInt.sol

pragma solidity ^0.6.6;

/**
 * @title SafeMathInt
 * @dev Math operations with safety checks that revert on error
 * @dev SafeMath adapted for int256
 * Based on code of  https://github.com/RequestNetwork/requestNetwork/blob/master/packages/requestNetworkSmartContracts/contracts/base/math/SafeMathInt.sol
 */
library SafeMathInt {
  function mul(int256 a, int256 b) internal pure returns (int256) {
    // Prevent overflow when multiplying INT256_MIN with -1
    // https://github.com/RequestNetwork/requestNetwork/issues/43
    require(!(a == - 2**255 && b == -1) && !(b == - 2**255 && a == -1));

    int256 c = a * b;
    require((b == 0) || (c / b == a));
    return c;
  }

  function div(int256 a, int256 b) internal pure returns (int256) {
    // Prevent overflow when dividing INT256_MIN by -1
    // https://github.com/RequestNetwork/requestNetwork/issues/43
    require(!(a == - 2**255 && b == -1) && (b > 0));

    return a / b;
  }

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

    return a - b;
  }

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

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

// File: contracts/SafeMathUint.sol

pragma solidity ^0.6.6;

/**
 * @title SafeMathUint
 * @dev Math operations with safety checks that revert on error
 */
library SafeMathUint {
  function toInt256Safe(uint256 a) internal pure returns (int256) {
    int256 b = int256(a);
    require(b >= 0);
    return b;
  }
}

// File: contracts/SafeMath.sol

pragma solidity ^0.6.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        uint256 c = a + b;
        if (c < a) return (false, 0);
        return (true, c);
    }

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

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

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

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

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        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) {
        require(b <= a, "SafeMath: subtraction overflow");
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        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, reverting 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) {
        require(b > 0, "SafeMath: division by zero");
        return a / b;
    }

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

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

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryDiv}.
     *
     * 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);
        return a / b;
    }

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

// File: contracts/ERC20.sol

pragma solidity ^0.6.0;




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

    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @dev Sets the values for {name} and {symbol}, initializes {decimals} with
     * a default value of 18.
     *
     * To select a different value for {decimals}, use {_setupDecimals}.
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name_, string memory symbol_) public {
        _name = name_;
        _symbol = symbol_;
        _decimals = 9;
    }

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(sender, recipient, amount);

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

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

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

        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }

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

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

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

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

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

    /**
     * @dev Sets {decimals} to a value other than the default one of 18.
     *
     * WARNING: This function should only be called from the constructor. Most
     * applications that interact with token contracts will not expect
     * {decimals} to ever change, and may work incorrectly if it does.
     */
    function _setupDecimals(uint8 decimals_) internal virtual {
        _decimals = decimals_;
    }

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

// File: contracts/DividendPayingToken.sol

pragma solidity ^0.6.6;







/// @title Dividend-Paying Token
/// @author Roger Wu (https://github.com/roger-wu)
/// @dev A mintable ERC20 token that allows anyone to pay and distribute ether
///  to token holders as dividends and allows token holders to withdraw their dividends.
///  Reference: the source code of PoWH3D: https://etherscan.io/address/0xB3775fB83F7D12A36E0475aBdD1FCA35c091efBe#code
contract DividendPayingToken is ERC20, IDividendPayingToken, IDividendPayingTokenOptional {
  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 constant internal magnitude = 2**128;

  uint256 internal magnifiedDividendPerShare;
  uint256 internal lastAmount;
  
  address public RVPToken = address(0x17EF75AA22dD5f6C2763b8304Ab24f40eE54D48a);

  // 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 => int256) internal magnifiedDividendCorrections;
  mapping(address => uint256) internal withdrawnDividends;

  uint256 public totalDividendsDistributed;

  constructor(string memory _name, string memory _symbol) public ERC20(_name, _symbol)  {

  }
  
  /// @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 override payable {
    require(totalSupply() > 0);

    if (msg.value > 0) {
      magnifiedDividendPerShare = magnifiedDividendPerShare.add(
        (msg.value).mul(magnitude) / totalSupply()
      );
      emit DividendsDistributed(msg.sender, msg.value);

      totalDividendsDistributed = totalDividendsDistributed.add(msg.value);
    }
  }
  

  function distributeRVPDividends(uint256 amount) public {
    require(totalSupply() > 0);

    if (amount > 0) {
      magnifiedDividendPerShare = magnifiedDividendPerShare.add(
        (amount).mul(magnitude) / totalSupply()
      );
      emit DividendsDistributed(msg.sender, amount);

      totalDividendsDistributed = totalDividendsDistributed.add(amount);
    }
  }

  /// @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() public virtual override {
    _withdrawDividendOfUser(msg.sender);
  }

  /// @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) internal returns (uint256) {
    uint256 _withdrawableDividend = withdrawableDividendOf(user);
    if (_withdrawableDividend > 0) {
      withdrawnDividends[user] = withdrawnDividends[user].add(_withdrawableDividend);
      emit DividendWithdrawn(user, _withdrawableDividend);
      bool success = IERC20(RVPToken).transfer(user, _withdrawableDividend);

      if(!success) {
        withdrawnDividends[user] = withdrawnDividends[user].sub(_withdrawableDividend);
        return 0;
      }

      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) public view override returns(uint256) {
    return withdrawableDividendOf(_owner);
  }

  /// @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) public view override returns(uint256) {
    return accumulativeDividendOf(_owner).sub(withdrawnDividends[_owner]);
  }

  /// @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) public view override returns(uint256) {
    return withdrawnDividends[_owner];
  }


  /// @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) public view override returns(uint256) {
    return magnifiedDividendPerShare.mul(balanceOf(_owner)).toInt256Safe()
      .add(magnifiedDividendCorrections[_owner]).toUint256Safe() / magnitude;
  }

  /// @dev Internal function that transfer tokens from one address to another.
  /// Update magnifiedDividendCorrections to keep dividends unchanged.
  /// @param from The address to transfer from.
  /// @param to The address to transfer to.
  /// @param value The amount to be transferred.
  function _transfer(address from, address to, uint256 value) internal virtual override {
    require(false);

    int256 _magCorrection = magnifiedDividendPerShare.mul(value).toInt256Safe();
    magnifiedDividendCorrections[from] = magnifiedDividendCorrections[from].add(_magCorrection);
    magnifiedDividendCorrections[to] = magnifiedDividendCorrections[to].sub(_magCorrection);
  }

  /// @dev Internal function that mints 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 _mint(address account, uint256 value) internal override {
    super._mint(account, value);

    magnifiedDividendCorrections[account] = magnifiedDividendCorrections[account]
      .sub( (magnifiedDividendPerShare.mul(value)).toInt256Safe() );
  }

  /// @dev Internal function that burns 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 _burn(address account, uint256 value) internal override {
    super._burn(account, value);

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

  function _setBalance(address account, uint256 newBalance) internal {
    uint256 currentBalance = balanceOf(account);

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

// File: contracts/YukonToken.sol

pragma solidity ^0.6.6;









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

    IUniswapV2Router02 public uniswapV2Router;
    address public uniswapV2Pair;

    address public RVPToken = address(0x17EF75AA22dD5f6C2763b8304Ab24f40eE54D48a);

    bool private swapping;

    YUKONDividendTracker public dividendTracker;

    address public liquidityWallet;

    address public deadWallet = 0x000000000000000000000000000000000000dEaD;

    uint256 public swapTokensAtAmount = 1000000000 * (10**9);
    uint256 public maxBuyTranscationAmount = 10000000000 * (10**9); // 1% of total supply
    uint256 public maxWalletToken = 20000000000 * (10**9); // 2% of total supply

    mapping(address => bool) public _isBlacklisted;

    uint256 public RVPRewardsFee = 6;
    uint256 public liquidityFee = 3;
    uint256 public marketingFee = 6;
    uint256 public totalFees = RVPRewardsFee.add(liquidityFee).add(marketingFee);

    address payable public marketingWallet = 0xFa8FDBE40829a77b87c81dB514F7E79EFA6CB4A2;

    // use by default 300,000 gas to process auto-claiming dividends
    uint256 public gasForProcessing = 300000;

    // exlcude from fees and max transaction amount
    mapping (address => bool) private _isExcludedFromFees;
   
    // 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 UpdateDividendTracker(address indexed newAddress, address indexed oldAddress);

    event UpdateUniswapV2Router(address indexed newAddress, address indexed oldAddress);

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

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

    event LiquidityWalletUpdated(address indexed newLiquidityWallet, address indexed oldLiquidityWallet);

    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() public ERC20("YUKON", "YUKON") {
        dividendTracker = new YUKONDividendTracker();

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

        uniswapV2Router = _uniswapV2Router;
        uniswapV2Pair = _uniswapV2Pair;

        _setAutomatedMarketMakerPair(_uniswapV2Pair, true);

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

        // exclude from paying fees or having max transaction amount
        excludeFromFees(liquidityWallet, true);
        excludeFromFees(marketingWallet, true);
        excludeFromFees(address(this), true);

        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(owner(), 1000000000000 * (10**9));
    }

    receive() external payable {

    }
    
    function setMinTokenBalForDividends(uint256 newTokenBalForDividends) external onlyOwner {
        dividendTracker.setMinimumTokenBalanceForDividends(newTokenBalForDividends);
    }
    
    function excludeFromRewards(address account) external onlyOwner {
        dividendTracker.excludeFromDividends(account);
    }
    
    function setRVPRewardsFee(uint256 newRVPRewardsFee) external onlyOwner {
        RVPRewardsFee = newRVPRewardsFee;
    }
    
    function setLiquidityFee(uint256 newLiquidityFee) external onlyOwner {
        liquidityFee = newLiquidityFee;
    }

    function setMarketingFee(uint256 newMarketingFee) external onlyOwner {
        marketingFee = newMarketingFee;
    }
    
    function changeMarketingWallet(address payable newAddress) external onlyOwner {
        marketingWallet = newAddress;
    }

    function changeSwapTokensAtAmount(uint256 newAmount) external onlyOwner {
        swapTokensAtAmount = newAmount * (10**9);
    }

    function updateDividendTracker(address newAddress) public onlyOwner {
        require(newAddress != address(dividendTracker), "YUKON: The dividend tracker already has that address");

        YUKONDividendTracker newDividendTracker = YUKONDividendTracker(payable(newAddress));

        require(newDividendTracker.owner() == address(this), "YUKON: The new dividend tracker must be owned by the YUKON token contract");

        newDividendTracker.excludeFromDividends(address(newDividendTracker));
        newDividendTracker.excludeFromDividends(address(this));
        newDividendTracker.excludeFromDividends(owner());
        newDividendTracker.excludeFromDividends(address(uniswapV2Router));

        emit UpdateDividendTracker(newAddress, address(dividendTracker));

        dividendTracker = newDividendTracker;
    }

    function setMaxBuyTransaction(uint256 maxTxn) external onlyOwner {
  	    maxBuyTranscationAmount = maxTxn * (10**9);
  	}
  	
  	function setMaxWalletToken(uint256 maxToken) external onlyOwner {
  	    maxWalletToken = maxToken * (10**9);
  	}

    function updateUniswapV2Router(address newAddress) public onlyOwner {
        require(newAddress != address(uniswapV2Router), "YUKON: The router already has that address");
        emit UpdateUniswapV2Router(newAddress, address(uniswapV2Router));
        uniswapV2Router = IUniswapV2Router02(newAddress);
        address _uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory())
            .createPair(address(this), uniswapV2Router.WETH());
        uniswapV2Pair = _uniswapV2Pair;
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        require(_isExcludedFromFees[account] != excluded, "YUKON: Account is already the value of 'excluded'");
        _isExcludedFromFees[account] = excluded;

        emit ExcludeFromFees(account, excluded);
    }

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

        emit ExcludeMultipleAccountsFromFees(accounts, excluded);
    }

    function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner {
        require(pair != uniswapV2Pair, "YUKON: The UNISWAP pair cannot be removed from automatedMarketMakerPairs");

        _setAutomatedMarketMakerPair(pair, value);
    }

    function blacklistAddress(address account, bool value) external onlyOwner {
         _isBlacklisted[account] = value;
    }

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        require(automatedMarketMakerPairs[pair] != value, "YUKON: Automated market maker pair is already set to that value");
        automatedMarketMakerPairs[pair] = value;

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function updateLiquidityWallet(address newLiquidityWallet) public onlyOwner {
        require(newLiquidityWallet != liquidityWallet, "YUKON: The liquidity wallet is already this address");
        excludeFromFees(newLiquidityWallet, true);
        emit LiquidityWalletUpdated(newLiquidityWallet, liquidityWallet);
        liquidityWallet = newLiquidityWallet;
    }

    function updateGasForProcessing(uint256 newValue) public onlyOwner {
        require(newValue >= 200000 && newValue <= 500000, "YUKON: gasForProcessing must be between 200,000 and 500,000");
        require(newValue != gasForProcessing, "YUKON: 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 isExcludedFromRewards(address account) public view returns(bool) {
        return dividendTracker.excludedFromDividends(account);
    }

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

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

    function dividendTokenBalanceOf(address account) public view returns (uint256) {
        return dividendTracker.balanceOf(account);
    }

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

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

    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(msg.sender, false);
    }

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

    function getNumberOfDividendTokenHolders() external view returns(uint256) {
        return dividendTracker.getNumberOfTokenHolders();
    }
    
    function sendETHToMarketing(uint256 amount) private {
        uint256 initialBalance = address(this).balance;
    
        swapTokensForEth(amount);
        uint256 newBalance = address(this).balance.sub(initialBalance);
        marketingWallet.transfer(newBalance);
    }

    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");
        require(!_isBlacklisted[from] && !_isBlacklisted[to], 'Blacklisted address');

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

        if (automatedMarketMakerPairs[from]) {
            require(
                amount <= maxBuyTranscationAmount,
                "Transfer amount exceeds the maxTxAmount."
            );
            
            uint256 contractBalanceRecepient = balanceOf(to);
            require(
                contractBalanceRecepient + amount <= maxWalletToken,
                "Exceeds maximum wallet token amount."
            );
        }

        uint256 contractTokenBalance = balanceOf(address(this));
        
        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if(
            canSwap &&
            !swapping &&
            !automatedMarketMakerPairs[from] &&
            from != liquidityWallet &&
            to != liquidityWallet
        ) {
            swapping = true;

            uint256 marketingTokens = contractTokenBalance.mul(marketingFee).div(totalFees);
            sendETHToMarketing(marketingTokens);

            uint256 swapTokens = contractTokenBalance.mul(liquidityFee).div(totalFees);
            swapAndLiquify(swapTokens);

            uint256 sellTokens = balanceOf(address(this));
            swapAndSendDividends(sellTokens);

            swapping = false;
        }

        bool takeFee = !swapping;

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

        if(takeFee) {
            uint256 fees = amount.mul(totalFees).div(100);

            if(automatedMarketMakerPairs[to]) {
                fees += amount.mul(1).div(100);
            }

            amount = amount.sub(fees);

            super._transfer(from, address(this), fees);
        }

        super._transfer(from, to, amount);

        try dividendTracker.setBalance(payable(from), balanceOf(from)) {} catch {}
        try dividendTracker.setBalance(payable(to), balanceOf(to)) {} catch {}

        if(!swapping) {
            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 swapAndLiquify(uint256 tokens) private {
        // split the contract balance into halves
        uint256 half = tokens.div(2);
        uint256 otherHalf = tokens.sub(half);

        // capture the contract's current ETH balance.
        // this is so that we can capture exactly the amount of ETH that the
        // swap creates, and not make the liquidity event include any ETH that
        // has been manually sent to the contract
        uint256 initialBalance = address(this).balance;

        // swap tokens for ETH
        swapTokensForEth(half); // <- this breaks the ETH -> HATE swap when swap+liquify is triggered

        // how much ETH did we just swap into?
        uint256 newBalance = address(this).balance.sub(initialBalance);

        // add liquidity to uniswap
        addLiquidity(otherHalf, newBalance);
        
        emit SwapAndLiquify(half, newBalance, otherHalf);
    }

    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 swapTokensForRVP(uint256 tokenAmount, address recipient) private {
        // generate the uniswap pair path of weth -> busd
        address[] memory path = new address[](3);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();
        path[2] = RVPToken;

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

        // make the swap
        uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of BUSD
            path,
            recipient,
            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
            liquidityWallet,
            block.timestamp
        );
    }

    function swapAndSendDividends(uint256 tokens) private {
        swapTokensForRVP(tokens, address(this));
        uint256 dividends = IERC20(RVPToken).balanceOf(address(this));
        bool success = IERC20(RVPToken).transfer(address(dividendTracker), dividends);
        
        if (success) {
            dividendTracker.distributeRVPDividends(dividends);
            emit SendDividends(tokens, dividends);
        }
    }

    function bulksendToken(address[] calldata _to, uint256[] calldata _values) public onlyOwner {
        require(_to.length == _values.length);
        for (uint256 i = 0; i < _to.length; i++) {
            _transfer(msg.sender, _to[i], _values[i]);
        }
    }

    // Withdraw ETH that gets stuck in contract by accident
    function emergencyWithdraw() external onlyOwner {
        payable(owner()).transfer(address(this).balance);
    }
}

contract YUKONDividendTracker is DividendPayingToken, Ownable {
    using SafeMath for uint256;
    using SafeMathInt for int256;
    using IterableMapping for IterableMapping.Map;

    IterableMapping.Map private tokenHoldersMap;
    uint256 public lastProcessedIndex;

    mapping (address => bool) public excludedFromDividends;

    mapping (address => uint256) public lastClaimTimes;

    uint256 public claimWait;
    uint256 public minimumTokenBalanceForDividends;

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

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

    constructor() public  DividendPayingToken("YUKON_Dividend_Tracker", "YUKON_Dividend_Tracker") {
        claimWait = 3600;
        minimumTokenBalanceForDividends = 1000000 * (10**9); // must hold 1000000 token atleast to get dividends
    }
    
    function setMinimumTokenBalanceForDividends(uint256 newMinTokenBalForDividends) external onlyOwner {
        minimumTokenBalanceForDividends = newMinTokenBalForDividends * (10**9);
    }

    function _transfer(address, address, uint256) internal override {
        require(false, "YUKON_Dividend_Tracker: No transfers allowed");
    }

    function withdrawDividend() public override {
        require(false, "YUKON_Dividend_Tracker: withdrawDividend disabled. Use the 'claim' function on the main YUKON contract.");
    }

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

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

        emit ExcludeFromDividends(account);
    }

    function updateClaimWait(uint256 newClaimWait) external onlyOwner {
        require(newClaimWait >= 3600 && newClaimWait <= 86400, "YUKON_Dividend_Tracker: claimWait must be updated to between 1 and 24 hours");
        require(newClaimWait != claimWait, "YUKON_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)
        public view returns (
            address account,
            int256 index,
            int256 iterationsUntilProcessed,
            uint256 withdrawableDividends,
            uint256 totalDividends,
            uint256 lastClaimTime,
            uint256 nextClaimTime,
            uint256 secondsUntilAutoClaimAvailable) {
        account = _account;

        index = tokenHoldersMap.getIndexOfKey(account);

        iterationsUntilProcessed = -1;

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


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

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

        lastClaimTime = lastClaimTimes[account];

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

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

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

        address account = tokenHoldersMap.getKeyAtIndex(index);

        return getAccount(account);
    }

    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);
            tokenHoldersMap.set(account, newBalance);
        }
        else {
            _setBalance(account, 0);
            tokenHoldersMap.remove(account);
        }

        processAccount(account, true);
    }

    function process(uint256 gas) public 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 = _withdrawDividendOfUser(account);

        if(amount > 0) {
            lastClaimTimes[account] = block.timestamp;
            emit Claim(account, amount, automatic);
            return true;
        }

        return false;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":"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":"newLiquidityWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldLiquidityWallet","type":"address"}],"name":"LiquidityWalletUpdated","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateDividendTracker","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"inputs":[],"name":"RVPRewardsFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RVPToken","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","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":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"blacklistAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_to","type":"address[]"},{"internalType":"uint256[]","name":"_values","type":"uint256[]"}],"name":"bulksendToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"newAddress","type":"address"}],"name":"changeMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"changeSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"deadWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"dividendTokenBalanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dividendTracker","outputs":[{"internalType":"contract YUKONDividendTracker","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"emergencyWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromRewards","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":[],"name":"gasForProcessing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","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":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getAccountDividendsInfoAtIndex","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":[],"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":"getTotalDividendsDistributed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromRewards","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBuyTranscationAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"gas","type":"uint256"}],"name":"processDividendTracker","outputs":[],"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":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLiquidityFee","type":"uint256"}],"name":"setLiquidityFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMarketingFee","type":"uint256"}],"name":"setMarketingFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxn","type":"uint256"}],"name":"setMaxBuyTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxToken","type":"uint256"}],"name":"setMaxWalletToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newTokenBalForDividends","type":"uint256"}],"name":"setMinTokenBalForDividends","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newRVPRewardsFee","type":"uint256"}],"name":"setRVPRewardsFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"claimWait","type":"uint256"}],"name":"updateClaimWait","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"updateDividendTracker","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newValue","type":"uint256"}],"name":"updateGasForProcessing","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newLiquidityWallet","type":"address"}],"name":"updateLiquidityWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"updateUniswapV2Router","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"withdrawableDividendOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052600880547317ef75aa22dd5f6c2763b8304ab24f40ee54d48a6001600160a01b031991821617909155600b805461dead9216919091179055670de0b6b3a7640000600c55678ac7230489e80000600d556801158e460913d00000600e5560066010819055600360118190556012829055620000a791906200009390829062000663602090811b62002be317901c565b6200066360201b62002be31790919060201c565b601355601480546001600160a01b03191673fa8fdbe40829a77b87c81db514f7e79efa6cb4a2179055620493e0601555348015620000e457600080fd5b506040805180820182526005808252642caaa5a7a760d91b602080840182815285518087019096529285528401528151919291620001259160039162000a5d565b5080516200013b90600490602084019062000a5d565b50506005805460ff1916600917905550600062000157620006c5565b60058054610100600160a81b0319166101006001600160a01b03841690810291909117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350604051620001bb9062000ae2565b604051809103906000f080158015620001d8573d6000803e3d6000fd5b50600980546001600160a01b0319166001600160a01b039290921691909117905562000203620006c9565b600a60006101000a8154816001600160a01b0302191690836001600160a01b031602179055506000737a250d5630b4cf539739df2c5dacb4c659f2488d90506000816001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200027e57600080fd5b505afa15801562000293573d6000803e3d6000fd5b505050506040513d6020811015620002aa57600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039283169263c9c653969230929187169163ad5c464891600480820192602092909190829003018186803b158015620002fb57600080fd5b505afa15801562000310573d6000803e3d6000fd5b505050506040513d60208110156200032757600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b1580156200037a57600080fd5b505af11580156200038f573d6000803e3d6000fd5b505050506040513d6020811015620003a657600080fd5b5051600680546001600160a01b038086166001600160a01b03199283161790925560078054928416929091169190911790559050620003e7816001620006dd565b6009546040805163031e79db60e41b81526001600160a01b0390921660048301819052905190916331e79db091602480830192600092919082900301818387803b1580156200043557600080fd5b505af11580156200044a573d6000803e3d6000fd5b50506009546040805163031e79db60e41b815230600482015290516001600160a01b0390921693506331e79db0925060248082019260009290919082900301818387803b1580156200049b57600080fd5b505af1158015620004b0573d6000803e3d6000fd5b50506009546001600160a01b031691506331e79db09050620004d1620006c9565b6040518263ffffffff1660e01b815260040180826001600160a01b03168152602001915050600060405180830381600087803b1580156200051157600080fd5b505af115801562000526573d6000803e3d6000fd5b5050600954600b546040805163031e79db60e41b81526001600160a01b03928316600482015290519190921693506331e79db09250602480830192600092919082900301818387803b1580156200057c57600080fd5b505af115801562000591573d6000803e3d6000fd5b50506009546040805163031e79db60e41b81526001600160a01b03878116600483015291519190921693506331e79db09250602480830192600092919082900301818387803b158015620005e457600080fd5b505af1158015620005f9573d6000803e3d6000fd5b5050600a546200061792506001600160a01b03169050600162000810565b60145462000630906001600160a01b0316600162000810565b6200063d30600162000810565b6200065b6200064b620006c9565b683635c9adc5dea0000062000949565b505062000b07565b600082820183811015620006be576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b3390565b60055461010090046001600160a01b031690565b6001600160a01b03821660009081526017602052604090205460ff16151581151514156200073d5760405162461bcd60e51b815260040180806020018281038252603f815260200180620072d1603f913960400191505060405180910390fd5b6001600160a01b0382166000908152601760205260409020805460ff19168215801591909117909155620007d4576009546040805163031e79db60e41b81526001600160a01b038581166004830152915191909216916331e79db091602480830192600092919082900301818387803b158015620007ba57600080fd5b505af1158015620007cf573d6000803e3d6000fd5b505050505b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6200081a620006c5565b6001600160a01b03166200082d620006c9565b6001600160a01b03161462000889576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b03821660009081526016602052604090205460ff1615158115151415620008e95760405162461bcd60e51b8152600401808060200182810382526031815260200180620072a06031913960400191505060405180910390fd5b6001600160a01b038216600081815260166020908152604091829020805460ff1916851515908117909155825190815291517f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79281900390910190a25050565b6001600160a01b038216620009a5576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b620009b36000838362000a58565b620009cf816002546200066360201b62002be31790919060201c565b6002556001600160a01b0382166000908152602081815260409091205462000a0291839062002be362000663821b17901c565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1062000aa057805160ff191683800117855562000ad0565b8280016001018555821562000ad0579182015b8281111562000ad057825182559160200191906001019062000ab3565b5062000ade92915062000af0565b5090565b6125c08062004ce083390190565b5b8082111562000ade576000815560010162000af1565b6141c98062000b176000396000f3fe6080604052600436106103bc5760003560e01c806375f0a874116101f2578063ad56c13c1161010d578063dd62ed3e116100a0578063e7841ec01161006f578063e7841ec014610e76578063e98030c714610e8b578063f27fd25414610eb5578063f2fde38b14610edf576103c3565b8063dd62ed3e14610dde578063e2f4560514610e19578063e37ba8f914610e2e578063e6c75f7114610e61576103c3565b8063c0246668116100dc578063c024666814610cfa578063c492f04614610d35578063d469801614610db4578063db2e21bc14610dc9576103c3565b8063ad56c13c14610bec578063b3b5e04314610c6a578063b62496f514610c94578063bb85c6d114610cc7576103c3565b80639a7a23d611610185578063a457c2d711610154578063a457c2d714610b32578063a6b6388814610b6b578063a8b9d24014610b80578063a9059cbb14610bb3576103c3565b80639a7a23d614610aa35780639c1b8af514610ade5780639ff0fe5414610af3578063a26579ad14610b1d576103c3565b80638da5cb5b116101c15780638da5cb5b14610a3a57806391d55f4114610a4f57806395d89b4114610a7957806398118cb414610a8e576103c3565b806375f0a874146109b357806385141a77146109c8578063871c128d146109dd57806388bdd9be14610a07576103c3565b806330bb4cff116102e2578063625e764c116102755780636b67c4df116102445780636b67c4df1461092c578063700bb1911461094157806370a082311461096b578063715018a61461099e576103c3565b8063625e764c1461088757806364b0f653146108b157806365b8dbc0146108c65780636843cd84146108f9576103c3565b8063455a4396116102b1578063455a4396146107ef57806349bd5a5e1461082a5780634e71d92d1461083f5780634fbee19314610854576103c3565b806330bb4cff1461074c578063313ce56714610761578063357bf15c1461078c57806339509351146107b6576103c3565b806318160ddd1161035a57806320e48f001161032957806320e48f00146106b557806323b872dd146106ca5780632bd5201c1461070d5780632c1f521614610737576103c3565b806318160ddd146105895780631cdd3be31461059e5780631d5431bb146105d15780631da3da70146106a0576103c3565b80630e832273116103965780630e832273146104cb578063111e0376146104fe57806313114a9d146105315780631694505e14610558576103c3565b806306fdde03146103c8578063095ea7b31461045257806309d6bf0a1461049f576103c3565b366103c357005b600080fd5b3480156103d457600080fd5b506103dd610f12565b6040805160208082528351818301528351919283929083019185019080838360005b838110156104175781810151838201526020016103ff565b50505050905090810190601f1680156104445780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561045e57600080fd5b5061048b6004803603604081101561047557600080fd5b506001600160a01b038135169060200135610fa8565b604080519115158252519081900360200190f35b3480156104ab57600080fd5b506104c9600480360360208110156104c257600080fd5b5035610fc6565b005b3480156104d757600080fd5b5061048b600480360360208110156104ee57600080fd5b50356001600160a01b0316611033565b34801561050a57600080fd5b506104c96004803603602081101561052157600080fd5b50356001600160a01b03166110b6565b34801561053d57600080fd5b50610546611181565b60408051918252519081900360200190f35b34801561056457600080fd5b5061056d611187565b604080516001600160a01b039092168252519081900360200190f35b34801561059557600080fd5b50610546611196565b3480156105aa57600080fd5b5061048b600480360360208110156105c157600080fd5b50356001600160a01b031661119c565b3480156105dd57600080fd5b506104c9600480360360408110156105f457600080fd5b81019060208101813564010000000081111561060f57600080fd5b82018360208201111561062157600080fd5b8035906020019184602083028401116401000000008311171561064357600080fd5b91939092909160208101903564010000000081111561066157600080fd5b82018360208201111561067357600080fd5b8035906020019184602083028401116401000000008311171561069557600080fd5b5090925090506111b1565b3480156106ac57600080fd5b5061054661126a565b3480156106c157600080fd5b5061056d611270565b3480156106d657600080fd5b5061048b600480360360608110156106ed57600080fd5b506001600160a01b0381358116916020810135909116906040013561127f565b34801561071957600080fd5b506104c96004803603602081101561073057600080fd5b5035611306565b34801561074357600080fd5b5061056d61136d565b34801561075857600080fd5b5061054661137c565b34801561076d57600080fd5b506107766113f2565b6040805160ff9092168252519081900360200190f35b34801561079857600080fd5b506104c9600480360360208110156107af57600080fd5b50356113fb565b3480156107c257600080fd5b5061048b600480360360408110156107d957600080fd5b506001600160a01b038135169060200135611462565b3480156107fb57600080fd5b506104c96004803603604081101561081257600080fd5b506001600160a01b03813516906020013515156114b0565b34801561083657600080fd5b5061056d61153d565b34801561084b57600080fd5b506104c961154c565b34801561086057600080fd5b5061048b6004803603602081101561087757600080fd5b50356001600160a01b03166115d1565b34801561089357600080fd5b506104c9600480360360208110156108aa57600080fd5b50356115ef565b3480156108bd57600080fd5b50610546611656565b3480156108d257600080fd5b506104c9600480360360208110156108e957600080fd5b50356001600160a01b031661169b565b34801561090557600080fd5b506105466004803603602081101561091c57600080fd5b50356001600160a01b031661192a565b34801561093857600080fd5b5061054661197b565b34801561094d57600080fd5b506104c96004803603602081101561096457600080fd5b5035611981565b34801561097757600080fd5b506105466004803603602081101561098e57600080fd5b50356001600160a01b0316611a68565b3480156109aa57600080fd5b506104c9611a83565b3480156109bf57600080fd5b5061056d611b35565b3480156109d457600080fd5b5061056d611b44565b3480156109e957600080fd5b506104c960048036036020811015610a0057600080fd5b5035611b53565b348015610a1357600080fd5b506104c960048036036020811015610a2a57600080fd5b50356001600160a01b0316611c7a565b348015610a4657600080fd5b5061056d611fdb565b348015610a5b57600080fd5b506104c960048036036020811015610a7257600080fd5b5035611fef565b348015610a8557600080fd5b506103dd61205c565b348015610a9a57600080fd5b506105466120bd565b348015610aaf57600080fd5b506104c960048036036040811015610ac657600080fd5b506001600160a01b03813516906020013515156120c3565b348015610aea57600080fd5b5061054661217c565b348015610aff57600080fd5b506104c960048036036020811015610b1657600080fd5b5035612182565b348015610b2957600080fd5b50610546612231565b348015610b3e57600080fd5b5061048b60048036036040811015610b5557600080fd5b506001600160a01b038135169060200135612276565b348015610b7757600080fd5b506105466122de565b348015610b8c57600080fd5b5061054660048036036020811015610ba357600080fd5b50356001600160a01b03166122e4565b348015610bbf57600080fd5b5061048b60048036036040811015610bd657600080fd5b506001600160a01b038135169060200135612335565b348015610bf857600080fd5b50610c1f60048036036020811015610c0f57600080fd5b50356001600160a01b0316612349565b604080516001600160a01b0390991689526020890197909752878701959095526060870193909352608086019190915260a085015260c084015260e083015251908190036101000190f35b348015610c7657600080fd5b506104c960048036036020811015610c8d57600080fd5b5035612429565b348015610ca057600080fd5b5061048b60048036036020811015610cb757600080fd5b50356001600160a01b0316612496565b348015610cd357600080fd5b506104c960048036036020811015610cea57600080fd5b50356001600160a01b03166124ab565b348015610d0657600080fd5b506104c960048036036040811015610d1d57600080fd5b506001600160a01b038135169060200135151561252f565b348015610d4157600080fd5b506104c960048036036040811015610d5857600080fd5b810190602081018135640100000000811115610d7357600080fd5b820183602082011115610d8557600080fd5b80359060200191846020830284011164010000000083111715610da757600080fd5b919350915035151561264f565b348015610dc057600080fd5b5061056d612779565b348015610dd557600080fd5b506104c9612788565b348015610dea57600080fd5b5061054660048036036040811015610e0157600080fd5b506001600160a01b038135811691602001351661282d565b348015610e2557600080fd5b50610546612858565b348015610e3a57600080fd5b506104c960048036036020811015610e5157600080fd5b50356001600160a01b031661285e565b348015610e6d57600080fd5b50610546612975565b348015610e8257600080fd5b5061054661297b565b348015610e9757600080fd5b506104c960048036036020811015610eae57600080fd5b50356129c0565b348015610ec157600080fd5b50610c1f60048036036020811015610ed857600080fd5b5035612a6f565b348015610eeb57600080fd5b506104c960048036036020811015610f0257600080fd5b50356001600160a01b0316612ad5565b60038054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610f9e5780601f10610f7357610100808354040283529160200191610f9e565b820191906000526020600020905b815481529060010190602001808311610f8157829003601f168201915b5050505050905090565b6000610fbc610fb5612c44565b8484612c48565b5060015b92915050565b610fce612c44565b6001600160a01b0316610fdf611fdb565b6001600160a01b031614611028576040805162461bcd60e51b81526020600482018190526024820152600080516020614059833981519152604482015290519081900360640190fd5b633b9aca0002600c55565b60095460408051634e7b827f60e01b81526001600160a01b03848116600483015291516000939290921691634e7b827f91602480820192602092909190829003018186803b15801561108457600080fd5b505afa158015611098573d6000803e3d6000fd5b505050506040513d60208110156110ae57600080fd5b505192915050565b6110be612c44565b6001600160a01b03166110cf611fdb565b6001600160a01b031614611118576040805162461bcd60e51b81526020600482018190526024820152600080516020614059833981519152604482015290519081900360640190fd5b6009546040805163031e79db60e41b81526001600160a01b038481166004830152915191909216916331e79db091602480830192600092919082900301818387803b15801561116657600080fd5b505af115801561117a573d6000803e3d6000fd5b5050505050565b60135481565b6006546001600160a01b031681565b60025490565b600f6020526000908152604090205460ff1681565b6111b9612c44565b6001600160a01b03166111ca611fdb565b6001600160a01b031614611213576040805162461bcd60e51b81526020600482018190526024820152600080516020614059833981519152604482015290519081900360640190fd5b82811461121f57600080fd5b60005b8381101561117a576112623386868481811061123a57fe5b905060200201356001600160a01b031685858581811061125657fe5b90506020020135612d34565b600101611222565b60105481565b6008546001600160a01b031681565b600061128c848484612d34565b6112fc84611298612c44565b6112f785604051806060016040528060288152602001614031602891396001600160a01b038a166000908152600160205260408120906112d6612c44565b6001600160a01b0316815260208101919091526040016000205491906132dc565b612c48565b5060019392505050565b61130e612c44565b6001600160a01b031661131f611fdb565b6001600160a01b031614611368576040805162461bcd60e51b81526020600482018190526024820152600080516020614059833981519152604482015290519081900360640190fd5b601055565b6009546001600160a01b031681565b600954604080516342d359d760e11b815290516000926001600160a01b0316916385a6b3ae916004808301926020929190829003018186803b1580156113c157600080fd5b505afa1580156113d5573d6000803e3d6000fd5b505050506040513d60208110156113eb57600080fd5b5051905090565b60055460ff1690565b611403612c44565b6001600160a01b0316611414611fdb565b6001600160a01b03161461145d576040805162461bcd60e51b81526020600482018190526024820152600080516020614059833981519152604482015290519081900360640190fd5b601155565b6000610fbc61146f612c44565b846112f78560016000611480612c44565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490612be3565b6114b8612c44565b6001600160a01b03166114c9611fdb565b6001600160a01b031614611512576040805162461bcd60e51b81526020600482018190526024820152600080516020614059833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152600f60205260409020805460ff1916911515919091179055565b6007546001600160a01b031681565b6009546040805163bc4c4b3760e01b815233600482015260006024820181905291516001600160a01b039093169263bc4c4b3792604480840193602093929083900390910190829087803b1580156115a357600080fd5b505af11580156115b7573d6000803e3d6000fd5b505050506040513d60208110156115cd57600080fd5b5050565b6001600160a01b031660009081526016602052604090205460ff1690565b6115f7612c44565b6001600160a01b0316611608611fdb565b6001600160a01b031614611651576040805162461bcd60e51b81526020600482018190526024820152600080516020614059833981519152604482015290519081900360640190fd5b601255565b600954604080516304ddf6ef60e11b815290516000926001600160a01b0316916309bbedde916004808301926020929190829003018186803b1580156113c157600080fd5b6116a3612c44565b6001600160a01b03166116b4611fdb565b6001600160a01b0316146116fd576040805162461bcd60e51b81526020600482018190526024820152600080516020614059833981519152604482015290519081900360640190fd5b6006546001600160a01b038281169116141561174a5760405162461bcd60e51b815260040180806020018281038252602a815260200180613f36602a913960400191505060405180910390fd5b6006546040516001600160a01b03918216918316907f8fc842bbd331dfa973645f4ed48b11683d501ebf1352708d77a5da2ab49a576e90600090a3600680546001600160a01b0319166001600160a01b0383811691909117918290556040805163c45a015560e01b815290516000939092169163c45a015591600480820192602092909190829003018186803b1580156117e357600080fd5b505afa1580156117f7573d6000803e3d6000fd5b505050506040513d602081101561180d57600080fd5b5051600654604080516315ab88c960e31b815290516001600160a01b039384169363c9c6539693309391169163ad5c464891600480820192602092909190829003018186803b15801561185f57600080fd5b505afa158015611873573d6000803e3d6000fd5b505050506040513d602081101561188957600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b1580156118db57600080fd5b505af11580156118ef573d6000803e3d6000fd5b505050506040513d602081101561190557600080fd5b5051600780546001600160a01b0319166001600160a01b039092169190911790555050565b600954604080516370a0823160e01b81526001600160a01b038481166004830152915160009392909216916370a0823191602480820192602092909190829003018186803b15801561108457600080fd5b60125481565b600954604080516001624d3b8760e01b03198152600481018490529051600092839283926001600160a01b039092169163ffb2c4799160248082019260609290919082900301818787803b1580156119d857600080fd5b505af11580156119ec573d6000803e3d6000fd5b505050506040513d6060811015611a0257600080fd5b5080516020808301516040938401518451848152928301829052828501819052606083018990529351929650945091925032916000917fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a989181900360800190a350505050565b6001600160a01b031660009081526020819052604090205490565b611a8b612c44565b6001600160a01b0316611a9c611fdb565b6001600160a01b031614611ae5576040805162461bcd60e51b81526020600482018190526024820152600080516020614059833981519152604482015290519081900360640190fd5b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b6014546001600160a01b031681565b600b546001600160a01b031681565b611b5b612c44565b6001600160a01b0316611b6c611fdb565b6001600160a01b031614611bb5576040805162461bcd60e51b81526020600482018190526024820152600080516020614059833981519152604482015290519081900360640190fd5b62030d408110158015611bcb57506207a1208111155b611c065760405162461bcd60e51b815260040180806020018281038252603b8152602001806140c2603b913960400191505060405180910390fd5b601554811415611c475760405162461bcd60e51b8152600401808060200182810382526033815260200180613f886033913960400191505060405180910390fd5b60155460405182907f40d7e40e79af4e8e5a9b3c57030d8ea93f13d669c06d448c4d631d4ae7d23db790600090a3601555565b611c82612c44565b6001600160a01b0316611c93611fdb565b6001600160a01b031614611cdc576040805162461bcd60e51b81526020600482018190526024820152600080516020614059833981519152604482015290519081900360640190fd5b6009546001600160a01b0382811691161415611d295760405162461bcd60e51b8152600401808060200182810382526034815260200180613de06034913960400191505060405180910390fd5b6000819050306001600160a01b0316816001600160a01b0316638da5cb5b6040518163ffffffff1660e01b815260040160206040518083038186803b158015611d7157600080fd5b505afa158015611d85573d6000803e3d6000fd5b505050506040513d6020811015611d9b57600080fd5b50516001600160a01b031614611de25760405162461bcd60e51b8152600401808060200182810382526049815260200180613eed6049913960600191505060405180910390fd5b806001600160a01b03166331e79db0826040518263ffffffff1660e01b815260040180826001600160a01b03168152602001915050600060405180830381600087803b158015611e3157600080fd5b505af1158015611e45573d6000803e3d6000fd5b50506040805163031e79db60e41b815230600482015290516001600160a01b03851693506331e79db09250602480830192600092919082900301818387803b158015611e9057600080fd5b505af1158015611ea4573d6000803e3d6000fd5b50505050806001600160a01b03166331e79db0611ebf611fdb565b6040518263ffffffff1660e01b815260040180826001600160a01b03168152602001915050600060405180830381600087803b158015611efe57600080fd5b505af1158015611f12573d6000803e3d6000fd5b50506006546040805163031e79db60e41b81526001600160a01b039283166004820152905191851693506331e79db0925060248082019260009290919082900301818387803b158015611f6457600080fd5b505af1158015611f78573d6000803e3d6000fd5b50506009546040516001600160a01b03918216935090851691507f90c7d74461c613da5efa97d90740869367d74ab3aa5837aa4ae9a975f954b7a890600090a3600980546001600160a01b0319166001600160a01b039290921691909117905550565b60055461010090046001600160a01b031690565b611ff7612c44565b6001600160a01b0316612008611fdb565b6001600160a01b031614612051576040805162461bcd60e51b81526020600482018190526024820152600080516020614059833981519152604482015290519081900360640190fd5b633b9aca0002600e55565b60048054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610f9e5780601f10610f7357610100808354040283529160200191610f9e565b60115481565b6120cb612c44565b6001600160a01b03166120dc611fdb565b6001600160a01b031614612125576040805162461bcd60e51b81526020600482018190526024820152600080516020614059833981519152604482015290519081900360640190fd5b6007546001600160a01b03838116911614156121725760405162461bcd60e51b8152600401808060200182810382526048815260200180613e7f6048913960600191505060405180910390fd5b6115cd8282613373565b60155481565b61218a612c44565b6001600160a01b031661219b611fdb565b6001600160a01b0316146121e4576040805162461bcd60e51b81526020600482018190526024820152600080516020614059833981519152604482015290519081900360640190fd5b60095460408051635ebf4db960e01b81526004810184905290516001600160a01b0390921691635ebf4db99160248082019260009290919082900301818387803b15801561116657600080fd5b60095460408051631bc9e27b60e21b815290516000926001600160a01b031691636f2789ec916004808301926020929190829003018186803b1580156113c157600080fd5b6000610fbc612283612c44565b846112f78560405180606001604052806025815260200161413060259139600160006122ad612c44565b6001600160a01b03908116825260208083019390935260409182016000908120918d168152925290205491906132dc565b600d5481565b600954604080516302a2e74960e61b81526001600160a01b0384811660048301529151600093929092169163a8b9d24091602480820192602092909190829003018186803b15801561108457600080fd5b6000610fbc612342612c44565b8484612d34565b600080600080600080600080600960009054906101000a90046001600160a01b03166001600160a01b031663fbcbc0f18a6040518263ffffffff1660e01b815260040180826001600160a01b031681526020019150506101006040518083038186803b1580156123b857600080fd5b505afa1580156123cc573d6000803e3d6000fd5b505050506040513d6101008110156123e357600080fd5b508051602082015160408301516060840151608085015160a086015160c087015160e090970151959e50939c50919a509850965094509092509050919395975091939597565b612431612c44565b6001600160a01b0316612442611fdb565b6001600160a01b03161461248b576040805162461bcd60e51b81526020600482018190526024820152600080516020614059833981519152604482015290519081900360640190fd5b633b9aca0002600d55565b60176020526000908152604090205460ff1681565b6124b3612c44565b6001600160a01b03166124c4611fdb565b6001600160a01b03161461250d576040805162461bcd60e51b81526020600482018190526024820152600080516020614059833981519152604482015290519081900360640190fd5b601480546001600160a01b0319166001600160a01b0392909216919091179055565b612537612c44565b6001600160a01b0316612548611fdb565b6001600160a01b031614612591576040805162461bcd60e51b81526020600482018190526024820152600080516020614059833981519152604482015290519081900360640190fd5b6001600160a01b03821660009081526016602052604090205460ff16151581151514156125ef5760405162461bcd60e51b8152600401808060200182810382526031815260200180613fdf6031913960400191505060405180910390fd5b6001600160a01b038216600081815260166020908152604091829020805460ff1916851515908117909155825190815291517f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79281900390910190a25050565b612657612c44565b6001600160a01b0316612668611fdb565b6001600160a01b0316146126b1576040805162461bcd60e51b81526020600482018190526024820152600080516020614059833981519152604482015290519081900360640190fd5b60005b828110156127065781601660008686858181106126cd57fe5b602090810292909201356001600160a01b0316835250810191909152604001600020805460ff19169115159190911790556001016126b4565b507f7fdaf542373fa84f4ee8d662c642f44e4c2276a217d7d29e548b6eb29a233b35838383604051808060200183151581526020018281038252858582818152602001925060200280828437600083820152604051601f909101601f1916909201829003965090945050505050a1505050565b600a546001600160a01b031681565b612790612c44565b6001600160a01b03166127a1611fdb565b6001600160a01b0316146127ea576040805162461bcd60e51b81526020600482018190526024820152600080516020614059833981519152604482015290519081900360640190fd5b6127f2611fdb565b6001600160a01b03166108fc479081150290604051600060405180830381858888f1935050505015801561282a573d6000803e3d6000fd5b50565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b600c5481565b612866612c44565b6001600160a01b0316612877611fdb565b6001600160a01b0316146128c0576040805162461bcd60e51b81526020600482018190526024820152600080516020614059833981519152604482015290519081900360640190fd5b600a546001600160a01b038281169116141561290d5760405162461bcd60e51b81526004018080602001828103825260338152602001806140fd6033913960400191505060405180910390fd5b61291881600161252f565b600a546040516001600160a01b03918216918316907f6080503d1da552ae8eb4b7b8a20245d9fabed014180510e7d1a05ea08fdb0f3e90600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b600e5481565b6009546040805163039e107b60e61b815290516000926001600160a01b03169163e7841ec0916004808301926020929190829003018186803b1580156113c157600080fd5b6129c8612c44565b6001600160a01b03166129d9611fdb565b6001600160a01b031614612a22576040805162461bcd60e51b81526020600482018190526024820152600080516020614059833981519152604482015290519081900360640190fd5b6009546040805163e98030c760e01b81526004810184905290516001600160a01b039092169163e98030c79160248082019260009290919082900301818387803b15801561116657600080fd5b600080600080600080600080600960009054906101000a90046001600160a01b03166001600160a01b0316635183d6fd8a6040518263ffffffff1660e01b8152600401808281526020019150506101006040518083038186803b1580156123b857600080fd5b612add612c44565b6001600160a01b0316612aee611fdb565b6001600160a01b031614612b37576040805162461bcd60e51b81526020600482018190526024820152600080516020614059833981519152604482015290519081900360640190fd5b6001600160a01b038116612b7c5760405162461bcd60e51b8152600401808060200182810382526026815260200180613e376026913960400191505060405180910390fd5b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b600082820183811015612c3d576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b3390565b6001600160a01b038316612c8d5760405162461bcd60e51b815260040180806020018281038252602481526020018061409e6024913960400191505060405180910390fd5b6001600160a01b038216612cd25760405162461bcd60e51b8152600401808060200182810382526022815260200180613e5d6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316612d795760405162461bcd60e51b81526004018080602001828103825260258152602001806140796025913960400191505060405180910390fd5b6001600160a01b038216612dbe5760405162461bcd60e51b8152600401808060200182810382526023815260200180613e146023913960400191505060405180910390fd5b6001600160a01b0383166000908152600f602052604090205460ff16158015612e0057506001600160a01b0382166000908152600f602052604090205460ff16155b612e47576040805162461bcd60e51b8152602060048201526013602482015272426c61636b6c6973746564206164647265737360681b604482015290519081900360640190fd5b80612e5d57612e58838360006134a1565b6132d7565b6001600160a01b03831660009081526017602052604090205460ff1615612f1157600d54811115612ebf5760405162461bcd60e51b8152600401808060200182810382526028815260200180613f606028913960400191505060405180910390fd5b6000612eca83611a68565b9050600e548282011115612f0f5760405162461bcd60e51b8152600401808060200182810382526024815260200180613fbb6024913960400191505060405180910390fd5b505b6000612f1c30611a68565b600c5490915081108015908190612f3d5750600854600160a01b900460ff16155b8015612f6257506001600160a01b03851660009081526017602052604090205460ff16155b8015612f7c5750600a546001600160a01b03868116911614155b8015612f965750600a546001600160a01b03858116911614155b15613026576008805460ff60a01b1916600160a01b179055601354601254600091612fcc91612fc69086906135fc565b90613655565b9050612fd7816136bc565b6000612ff4601354612fc6601154876135fc90919063ffffffff16565b9050612fff81613713565b600061300a30611a68565b905061301581613799565b50506008805460ff60a01b19169055505b6008546001600160a01b03861660009081526016602052604090205460ff600160a01b90920482161591168061307457506001600160a01b03851660009081526016602052604090205460ff165b1561307d575060005b80156130ee57600061309f6064612fc6601354886135fc90919063ffffffff16565b6001600160a01b03871660009081526017602052604090205490915060ff16156130d5576130d36064612fc68760016135fc565b015b6130df8582613951565b94506130ec8730836134a1565b505b6130f98686866134a1565b6009546001600160a01b031663e30443bc8761311481611a68565b6040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050600060405180830381600087803b15801561315a57600080fd5b505af192505050801561316b575060015b506009546001600160a01b031663e30443bc8661318781611a68565b6040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050600060405180830381600087803b1580156131cd57600080fd5b505af19250505080156131de575060015b50600854600160a01b900460ff166132d357601554600954604080516001624d3b8760e01b031981526004810184905290516001600160a01b039092169163ffb2c479916024808201926060929091908290030181600087803b15801561324457600080fd5b505af192505050801561327857506040513d606081101561326457600080fd5b508051602082015160409092015190919060015b613281576132d1565b604080518481526020810184905280820183905260608101869052905132916001917fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a989181900360800190a35050505b505b5050505b505050565b6000818484111561336b5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613330578181015183820152602001613318565b50505050905090810190601f16801561335d5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b03821660009081526017602052604090205460ff16151581151514156133d15760405162461bcd60e51b815260040180806020018281038252603f815260200180614155603f913960400191505060405180910390fd5b6001600160a01b0382166000908152601760205260409020805460ff19168215801591909117909155613465576009546040805163031e79db60e41b81526001600160a01b038581166004830152915191909216916331e79db091602480830192600092919082900301818387803b15801561344c57600080fd5b505af1158015613460573d6000803e3d6000fd5b505050505b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6001600160a01b0383166134e65760405162461bcd60e51b81526004018080602001828103825260258152602001806140796025913960400191505060405180910390fd5b6001600160a01b03821661352b5760405162461bcd60e51b8152600401808060200182810382526023815260200180613e146023913960400191505060405180910390fd5b6135368383836132d7565b61357381604051806060016040528060268152602001613ec7602691396001600160a01b03861660009081526020819052604090205491906132dc565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546135a29082612be3565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008261360b57506000610fc0565b8282028284828161361857fe5b0414612c3d5760405162461bcd60e51b81526004018080602001828103825260218152602001806140106021913960400191505060405180910390fd5b60008082116136ab576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b8183816136b457fe5b049392505050565b476136c6826139ae565b60006136d24783613951565b6014546040519192506001600160a01b03169082156108fc029083906000818181858888f1935050505015801561370d573d6000803e3d6000fd5b50505050565b6000613720826002613655565b9050600061372e8383613951565b90504761373a836139ae565b60006137464783613951565b90506137528382613b54565b604080518581526020810183905280820185905290517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15050505050565b6137a38130613c0c565b600854604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b1580156137ee57600080fd5b505afa158015613802573d6000803e3d6000fd5b505050506040513d602081101561381857600080fd5b50516008546009546040805163a9059cbb60e01b81526001600160a01b039283166004820152602481018590529051939450600093919092169163a9059cbb91604480830192602092919082900301818787803b15801561387857600080fd5b505af115801561388c573d6000803e3d6000fd5b505050506040513d60208110156138a257600080fd5b5051905080156132d757600954604080516329cf3c9b60e11b81526004810185905290516001600160a01b039092169163539e79369160248082019260009290919082900301818387803b1580156138f957600080fd5b505af115801561390d573d6000803e3d6000fd5b5050604080518681526020810186905281517f80195cc573b02cc48460cbca6e6e4cc85ddb91959d946e1c3025ea3d87942dc39450908190039091019150a1505050565b6000828211156139a8576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b604080516002808252606080830184529260208301908036833701905050905030816000815181106139dc57fe5b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b158015613a3057600080fd5b505afa158015613a44573d6000803e3d6000fd5b505050506040513d6020811015613a5a57600080fd5b5051815182906001908110613a6b57fe5b6001600160a01b039283166020918202929092010152600654613a919130911684612c48565b60065460405163791ac94760e01b8152600481018481526000602483018190523060648401819052426084850181905260a060448601908152875160a487015287516001600160a01b039097169663791ac947968a968a9594939092909160c40190602080880191028083838b5b83811015613b17578181015183820152602001613aff565b505050509050019650505050505050600060405180830381600087803b158015613b4057600080fd5b505af11580156132d3573d6000803e3d6000fd5b600654613b6c9030906001600160a01b031684612c48565b600654600a546040805163f305d71960e01b81523060048201526024810186905260006044820181905260648201526001600160a01b0392831660848201524260a48201529051919092169163f305d71991849160c48082019260609290919082900301818588803b158015613be157600080fd5b505af1158015613bf5573d6000803e3d6000fd5b50505050506040513d606081101561370d57600080fd5b604080516003808252608082019092526060916020820183803683370190505090503081600081518110613c3c57fe5b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b158015613c9057600080fd5b505afa158015613ca4573d6000803e3d6000fd5b505050506040513d6020811015613cba57600080fd5b5051815182906001908110613ccb57fe5b6001600160a01b039283166020918202929092010152600854825191169082906002908110613cf657fe5b6001600160a01b039283166020918202929092010152600654613d1c9130911685612c48565b600654604051635c11d79560e01b8152600481018581526000602483018190526001600160a01b038681166064850152426084850181905260a060448601908152875160a487015287519290961695635c11d795958a9589948b9493919260c40190602080880191028083838b5b83811015613da2578181015183820152602001613d8a565b505050509050019650505050505050600060405180830381600087803b158015613dcb57600080fd5b505af11580156132d1573d6000803e3d6000fdfe59554b4f4e3a20546865206469766964656e6420747261636b657220616c7265616479206861732074686174206164647265737345524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737359554b4f4e3a2054686520554e495357415020706169722063616e6e6f742062652072656d6f7665642066726f6d206175746f6d617465644d61726b65744d616b6572506169727345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636559554b4f4e3a20546865206e6577206469766964656e6420747261636b6572206d757374206265206f776e6564206279207468652059554b4f4e20746f6b656e20636f6e747261637459554b4f4e3a2054686520726f7574657220616c726561647920686173207468617420616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e59554b4f4e3a2043616e6e6f742075706461746520676173466f7250726f63657373696e6720746f2073616d652076616c756545786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f756e742e59554b4f4e3a204163636f756e7420697320616c7265616479207468652076616c7565206f6620276578636c7564656427536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737359554b4f4e3a20676173466f7250726f63657373696e67206d757374206265206265747765656e203230302c30303020616e64203530302c30303059554b4f4e3a20546865206c69717569646974792077616c6c657420697320616c72656164792074686973206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f59554b4f4e3a204175746f6d61746564206d61726b6574206d616b6572207061697220697320616c72656164792073657420746f20746861742076616c7565a2646970667358221220741328fee262c80c60cf021a4ba615548a45be805a53250d7e6bcfe710dacd5a64736f6c634300060c00336080604052600880546001600160a01b0319167317ef75aa22dd5f6c2763b8304ab24f40ee54d48a1790553480156200003757600080fd5b5060408051808201825260168082527f59554b4f4e5f4469766964656e645f547261636b65720000000000000000000060208084018281528551808701909652928552840152815191929183918391620000949160039162000133565b508051620000aa90600490602084019062000133565b50506005805460ff191660091790555060009150620000ca90506200012f565b600c80546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350610e1060145566038d7ea4c68000601555620001cf565b3390565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200017657805160ff1916838001178555620001a6565b82800160010185558215620001a6579182015b82811115620001a657825182559160200191906001019062000189565b50620001b4929150620001b8565b5090565b5b80821115620001b45760008155600101620001b9565b6123e180620001df6000396000f3fe6080604052600436106102295760003560e01c806370a0823111610123578063aafd847a116100ab578063e7841ec01161006f578063e7841ec01461085a578063e98030c71461086f578063f2fde38b14610899578063fbcbc0f1146108cc578063ffb2c479146108ff57610238565b8063aafd847a14610763578063bc4c4b3714610796578063be10b614146107d1578063dd62ed3e146107e6578063e30443bc1461082157610238565b806391b89fba116100f257806391b89fba1461067657806395d89b41146106a9578063a457c2d7146106be578063a8b9d240146106f7578063a9059cbb1461072a57610238565b806370a0823114610604578063715018a61461063757806385a6b3ae1461064c5780638da5cb5b1461066157610238565b80633009a609116101b15780635183d6fd116101755780635183d6fd14610511578063539e7936146105865780635ebf4db9146105b05780636a474002146105da5780636f2789ec146105ef57610238565b80633009a60914610432578063313ce5671461044757806331e79db01461047257806339509351146104a55780634e7b827f146104de57610238565b806318160ddd116101f857806318160ddd1461034357806320e48f0014610358578063226cfa3d1461038957806323b872dd146103bc57806327ce0147146103ff57610238565b806303c833021461023d57806306fdde0314610245578063095ea7b3146102cf57806309bbedde1461031c57610238565b3661023857610236610947565b005b600080fd5b610236610947565b34801561025157600080fd5b5061025a6109d8565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561029457818101518382015260200161027c565b50505050905090810190601f1680156102c15780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102db57600080fd5b50610308600480360360408110156102f257600080fd5b506001600160a01b038135169060200135610a6e565b604080519115158252519081900360200190f35b34801561032857600080fd5b50610331610a8c565b60408051918252519081900360200190f35b34801561034f57600080fd5b50610331610a92565b34801561036457600080fd5b5061036d610a98565b604080516001600160a01b039092168252519081900360200190f35b34801561039557600080fd5b50610331600480360360208110156103ac57600080fd5b50356001600160a01b0316610aa7565b3480156103c857600080fd5b50610308600480360360608110156103df57600080fd5b506001600160a01b03813581169160208101359091169060400135610ab9565b34801561040b57600080fd5b506103316004803603602081101561042257600080fd5b50356001600160a01b0316610b40565b34801561043e57600080fd5b50610331610b9f565b34801561045357600080fd5b5061045c610ba5565b6040805160ff9092168252519081900360200190f35b34801561047e57600080fd5b506102366004803603602081101561049557600080fd5b50356001600160a01b0316610bae565b3480156104b157600080fd5b50610308600480360360408110156104c857600080fd5b506001600160a01b038135169060200135610d14565b3480156104ea57600080fd5b506103086004803603602081101561050157600080fd5b50356001600160a01b0316610d62565b34801561051d57600080fd5b5061053b6004803603602081101561053457600080fd5b5035610d77565b604080516001600160a01b0390991689526020890197909752878701959095526060870193909352608086019190915260a085015260c084015260e083015251908190036101000190f35b34801561059257600080fd5b50610236600480360360208110156105a957600080fd5b5035610ed6565b3480156105bc57600080fd5b50610236600480360360208110156105d357600080fd5b5035610f56565b3480156105e657600080fd5b50610236610fc3565b3480156105fb57600080fd5b50610331610ffa565b34801561061057600080fd5b506103316004803603602081101561062757600080fd5b50356001600160a01b0316611000565b34801561064357600080fd5b5061023661101b565b34801561065857600080fd5b506103316110c7565b34801561066d57600080fd5b5061036d6110cd565b34801561068257600080fd5b506103316004803603602081101561069957600080fd5b50356001600160a01b03166110dc565b3480156106b557600080fd5b5061025a6110e7565b3480156106ca57600080fd5b50610308600480360360408110156106e157600080fd5b506001600160a01b038135169060200135611148565b34801561070357600080fd5b506103316004803603602081101561071a57600080fd5b50356001600160a01b03166111b0565b34801561073657600080fd5b506103086004803603604081101561074d57600080fd5b506001600160a01b0381351690602001356111dc565b34801561076f57600080fd5b506103316004803603602081101561078657600080fd5b50356001600160a01b03166111f0565b3480156107a257600080fd5b50610308600480360360408110156107b957600080fd5b506001600160a01b038135169060200135151561120b565b3480156107dd57600080fd5b506103316112ea565b3480156107f257600080fd5b506103316004803603604081101561080957600080fd5b506001600160a01b03813581169160200135166112f0565b34801561082d57600080fd5b506102366004803603604081101561084457600080fd5b506001600160a01b03813516906020013561131b565b34801561086657600080fd5b506103316114d1565b34801561087b57600080fd5b506102366004803603602081101561089257600080fd5b50356114d7565b3480156108a557600080fd5b50610236600480360360208110156108bc57600080fd5b50356001600160a01b03166115fd565b3480156108d857600080fd5b5061053b600480360360208110156108ef57600080fd5b50356001600160a01b0316611700565b34801561090b57600080fd5b506109296004803603602081101561092257600080fd5b5035611873565b60408051938452602084019290925282820152519081900360600190f35b6000610951610a92565b1161095b57600080fd5b34156109d65761098c61096c610a92565b61097a34600160801b611971565b8161098157fe5b6006549190046119d1565b60065560408051348152905133917fa493a9229478c3fcd73f66d2cdeb7f94fd0f341da924d1054236d78454116511919081900360200190a2600b546109d290346119d1565b600b555b565b60038054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610a645780601f10610a3957610100808354040283529160200191610a64565b820191906000526020600020905b815481529060010190602001808311610a4757829003601f168201915b5050505050905090565b6000610a82610a7b611a2b565b8484611a2f565b5060015b92915050565b600d5490565b60025490565b6008546001600160a01b031681565b60136020526000908152604090205481565b6000610ac6848484611b1b565b610b3684610ad2611a2b565b610b31856040518060600160405280602881526020016122fa602891396001600160a01b038a16600090815260016020526040812090610b10611a2b565b6001600160a01b031681526020810191909152604001600020549190611b52565b611a2f565b5060019392505050565b6001600160a01b038116600090815260096020526040812054600160801b90610b8f90610b8a90610b84610b7f610b7688611000565b60065490611971565b611be9565b90611bf9565b611c2c565b81610b9657fe5b0490505b919050565b60115481565b60055460ff1690565b610bb6611a2b565b6001600160a01b0316610bc76110cd565b6001600160a01b031614610c10576040805162461bcd60e51b81526020600482018190526024820152600080516020612322833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526012602052604090205460ff1615610c3657600080fd5b6001600160a01b0381166000908152601260205260408120805460ff19166001179055610c64908290611c3f565b6040805163131836e760e21b8152600d60048201526001600160a01b03831660248201529051734513bda699e7ba672eeea81d49180c77e4449f4e91634c60db9c916044808301926000929190829003018186803b158015610cc557600080fd5b505af4158015610cd9573d6000803e3d6000fd5b50506040516001600160a01b03841692507fa878b31040b2e6d0a9a3d3361209db3908ba62014b0dca52adbaee451d128b259150600090a250565b6000610a82610d21611a2b565b84610b318560016000610d32611a2b565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906119d1565b60126020526000908152604090205460ff1681565b600080600080600080600080600d734513bda699e7ba672eeea81d49180c77e4449f4e63deb3d89690916040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b158015610dd557600080fd5b505af4158015610de9573d6000803e3d6000fd5b505050506040513d6020811015610dff57600080fd5b50518910610e26575060009650600019955085945086935083925082915081905080610ecb565b6000600d734513bda699e7ba672eeea81d49180c77e4449f4e63d1aa9e7e90918c6040518363ffffffff1660e01b8152600401808381526020018281526020019250505060206040518083038186803b158015610e8257600080fd5b505af4158015610e96573d6000803e3d6000fd5b505050506040513d6020811015610eac57600080fd5b50519050610eb981611700565b98509850985098509850985098509850505b919395975091939597565b6000610ee0610a92565b11610eea57600080fd5b8015610f5357610f09610efb610a92565b61097a83600160801b611971565b60065560408051828152905133917fa493a9229478c3fcd73f66d2cdeb7f94fd0f341da924d1054236d78454116511919081900360200190a2600b54610f4f90826119d1565b600b555b50565b610f5e611a2b565b6001600160a01b0316610f6f6110cd565b6001600160a01b031614610fb8576040805162461bcd60e51b81526020600482018190526024820152600080516020612322833981519152604482015290519081900360640190fd5b633b9aca0002601555565b60405162461bcd60e51b81526004018080602001828103825260678152602001806122276067913960800191505060405180910390fd5b60145481565b6001600160a01b031660009081526020819052604090205490565b611023611a2b565b6001600160a01b03166110346110cd565b6001600160a01b03161461107d576040805162461bcd60e51b81526020600482018190526024820152600080516020612322833981519152604482015290519081900360640190fd5b600c546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600c80546001600160a01b0319169055565b600b5481565b600c546001600160a01b031690565b6000610a86826111b0565b60048054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610a645780601f10610a3957610100808354040283529160200191610a64565b6000610a82611155611a2b565b84610b3185604051806060016040528060258152602001612387602591396001600061117f611a2b565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611b52565b6001600160a01b0381166000908152600a6020526040812054610a86906111d684610b40565b90611c98565b6000610a826111e9611a2b565b8484611b1b565b6001600160a01b03166000908152600a602052604090205490565b6000611215611a2b565b6001600160a01b03166112266110cd565b6001600160a01b03161461126f576040805162461bcd60e51b81526020600482018190526024820152600080516020612322833981519152604482015290519081900360640190fd5b600061127a84611cf5565b905080156112e0576001600160a01b0384166000818152601360209081526040918290204290558151848152915186151593927fa2c38e2d2fb7e3e1912d937fd1ca11ed6d51864dee4cfa7a7bf02becd7acf09292908290030190a36001915050610a86565b5060009392505050565b60155481565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b611323611a2b565b6001600160a01b03166113346110cd565b6001600160a01b03161461137d576040805162461bcd60e51b81526020600482018190526024820152600080516020612322833981519152604482015290519081900360640190fd5b6001600160a01b03821660009081526012602052604090205460ff16156113a3576114cd565b601554811061143b576113b68282611c3f565b60408051632f0ad01760e21b8152600d60048201526001600160a01b0384166024820152604481018390529051734513bda699e7ba672eeea81d49180c77e4449f4e9163bc2b405c916064808301926000929190829003018186803b15801561141e57600080fd5b505af4158015611432573d6000803e3d6000fd5b505050506114c0565b611446826000611c3f565b6040805163131836e760e21b8152600d60048201526001600160a01b03841660248201529051734513bda699e7ba672eeea81d49180c77e4449f4e91634c60db9c916044808301926000929190829003018186803b1580156114a757600080fd5b505af41580156114bb573d6000803e3d6000fd5b505050505b6114cb82600161120b565b505b5050565b60115490565b6114df611a2b565b6001600160a01b03166114f06110cd565b6001600160a01b031614611539576040805162461bcd60e51b81526020600482018190526024820152600080516020612322833981519152604482015290519081900360640190fd5b610e10811015801561154e5750620151808111155b6115895760405162461bcd60e51b815260040180806020018281038252604b81526020018061228e604b913960600191505060405180910390fd5b6014548114156115ca5760405162461bcd60e51b815260040180806020018281038252603d8152602001806121ea603d913960400191505060405180910390fd5b60145460405182907f474ea64804364a1e29a4487ddb63c3342a2dd826ccd8acf48825e680a0e6f20f90600090a3601455565b611605611a2b565b6001600160a01b03166116166110cd565b6001600160a01b03161461165f576040805162461bcd60e51b81526020600482018190526024820152600080516020612322833981519152604482015290519081900360640190fd5b6001600160a01b0381166116a45760405162461bcd60e51b81526004018080602001828103825260268152602001806121766026913960400191505060405180910390fd5b600c546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600c80546001600160a01b0319166001600160a01b0392909216919091179055565b600080600080600080600080889750600d734513bda699e7ba672eeea81d49180c77e4449f4e6317e142d190918a6040518363ffffffff1660e01b815260040180838152602001826001600160a01b031681526020019250505060206040518083038186803b15801561177257600080fd5b505af4158015611786573d6000803e3d6000fd5b505050506040513d602081101561179c57600080fd5b50519650600019955060008712611800576011548711156117cc576011546117c5908890611e64565b9550611800565b601154600d54600091106117e15760006117f0565b601154600d546117f091611c98565b90506117fc8882611bf9565b9650505b611809886111b0565b945061181488610b40565b6001600160a01b03891660009081526013602052604090205490945092508261183e57600061184c565b60145461184c9084906119d1565b915042821161185c576000611866565b6118668242611c98565b9050919395975091939597565b600d5460009081908190806118935750506011546000925082915061196a565b6011546000805a90506000805b89841080156118ae57508582105b1561195957600d5460019095019485106118c757600094505b6000600d60000186815481106118d957fe5b60009182526020808320909101546001600160a01b0316808352601390915260409091205490915061190a90611e98565b156119265761191a81600161120b565b15611926576001909101905b60019092019160005a9050808511156119505761194d6119468683611c98565b87906119d1565b95505b93506118a09050565b601185905590975095509193505050505b9193909250565b60008261198057506000610a86565b8282028284828161198d57fe5b04146119ca5760405162461bcd60e51b81526004018080602001828103825260218152602001806122d96021913960400191505060405180910390fd5b9392505050565b6000828201838110156119ca576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b3390565b6001600160a01b038316611a745760405162461bcd60e51b81526004018080602001828103825260248152602001806123636024913960400191505060405180910390fd5b6001600160a01b038216611ab95760405162461bcd60e51b815260040180806020018281038252602281526020018061219c6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b60405162461bcd60e51b815260040180806020018281038252602c8152602001806121be602c913960400191505060405180910390fd5b60008184841115611be15760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611ba6578181015183820152602001611b8e565b50505050905090810190601f168015611bd35780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008181811215610a8657600080fd5b6000828201818312801590611c0e5750838112155b80611c235750600083128015611c2357508381125b6119ca57600080fd5b600080821215611c3b57600080fd5b5090565b6000611c4a83611000565b905080821115611c72576000611c608383611c98565b9050611c6c8482611ebf565b506114cb565b808210156114cb576000611c868284611c98565b9050611c928482611f23565b50505050565b600082821115611cef576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b600080611d01836111b0565b90508015611e5b576001600160a01b0383166000908152600a6020526040902054611d2c90826119d1565b6001600160a01b0384166000818152600a6020908152604091829020939093558051848152905191927fee503bee2bb6a87e57bc57db795f98137327401a0e7b7ce42e37926cc1a9ca4d92918290030190a26008546040805163a9059cbb60e01b81526001600160a01b038681166004830152602482018590529151600093929092169163a9059cbb9160448082019260209290919082900301818787803b158015611dd757600080fd5b505af1158015611deb573d6000803e3d6000fd5b505050506040513d6020811015611e0157600080fd5b5051905080611e53576001600160a01b0384166000908152600a6020526040902054611e2d9083611c98565b6001600160a01b0385166000908152600a60205260408120919091559250610b9a915050565b509050610b9a565b50600092915050565b6000808212158015611e7857508282840313155b80611e8f5750600082128015611e8f575082828403135b611cef57600080fd5b600042821115611eaa57506000610b9a565b601454611eb74284611c98565b101592915050565b611ec98282611f67565b611f03611ee4610b7f8360065461197190919063ffffffff16565b6001600160a01b03841660009081526009602052604090205490611e64565b6001600160a01b0390921660009081526009602052604090209190915550565b611f2d8282612057565b611f03611f48610b7f8360065461197190919063ffffffff16565b6001600160a01b03841660009081526009602052604090205490611bf9565b6001600160a01b038216611fc2576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b611fce600083836114cb565b600254611fdb90826119d1565b6002556001600160a01b03821660009081526020819052604090205461200190826119d1565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b03821661209c5760405162461bcd60e51b81526004018080602001828103825260218152602001806123426021913960400191505060405180910390fd5b6120a8826000836114cb565b6120e581604051806060016040528060228152602001612154602291396001600160a01b0385166000908152602081905260409020549190611b52565b6001600160a01b03831660009081526020819052604090205560025461210b9082611c98565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a3505056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737359554b4f4e5f4469766964656e645f547261636b65723a204e6f207472616e736665727320616c6c6f77656459554b4f4e5f4469766964656e645f547261636b65723a2043616e6e6f742075706461746520636c61696d5761697420746f2073616d652076616c756559554b4f4e5f4469766964656e645f547261636b65723a2077697468647261774469766964656e642064697361626c65642e20557365207468652027636c61696d272066756e6374696f6e206f6e20746865206d61696e2059554b4f4e20636f6e74726163742e59554b4f4e5f4469766964656e645f547261636b65723a20636c61696d57616974206d757374206265207570646174656420746f206265747765656e203120616e6420323420686f757273536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220148dfe941f5c191ee30ef9ddec259ca0dbdfd56ecdcebee533deb899d7d1088864736f6c634300060c003359554b4f4e3a204163636f756e7420697320616c7265616479207468652076616c7565206f6620276578636c756465642759554b4f4e3a204175746f6d61746564206d61726b6574206d616b6572207061697220697320616c72656164792073657420746f20746861742076616c7565

Deployed Bytecode

0x6080604052600436106103bc5760003560e01c806375f0a874116101f2578063ad56c13c1161010d578063dd62ed3e116100a0578063e7841ec01161006f578063e7841ec014610e76578063e98030c714610e8b578063f27fd25414610eb5578063f2fde38b14610edf576103c3565b8063dd62ed3e14610dde578063e2f4560514610e19578063e37ba8f914610e2e578063e6c75f7114610e61576103c3565b8063c0246668116100dc578063c024666814610cfa578063c492f04614610d35578063d469801614610db4578063db2e21bc14610dc9576103c3565b8063ad56c13c14610bec578063b3b5e04314610c6a578063b62496f514610c94578063bb85c6d114610cc7576103c3565b80639a7a23d611610185578063a457c2d711610154578063a457c2d714610b32578063a6b6388814610b6b578063a8b9d24014610b80578063a9059cbb14610bb3576103c3565b80639a7a23d614610aa35780639c1b8af514610ade5780639ff0fe5414610af3578063a26579ad14610b1d576103c3565b80638da5cb5b116101c15780638da5cb5b14610a3a57806391d55f4114610a4f57806395d89b4114610a7957806398118cb414610a8e576103c3565b806375f0a874146109b357806385141a77146109c8578063871c128d146109dd57806388bdd9be14610a07576103c3565b806330bb4cff116102e2578063625e764c116102755780636b67c4df116102445780636b67c4df1461092c578063700bb1911461094157806370a082311461096b578063715018a61461099e576103c3565b8063625e764c1461088757806364b0f653146108b157806365b8dbc0146108c65780636843cd84146108f9576103c3565b8063455a4396116102b1578063455a4396146107ef57806349bd5a5e1461082a5780634e71d92d1461083f5780634fbee19314610854576103c3565b806330bb4cff1461074c578063313ce56714610761578063357bf15c1461078c57806339509351146107b6576103c3565b806318160ddd1161035a57806320e48f001161032957806320e48f00146106b557806323b872dd146106ca5780632bd5201c1461070d5780632c1f521614610737576103c3565b806318160ddd146105895780631cdd3be31461059e5780631d5431bb146105d15780631da3da70146106a0576103c3565b80630e832273116103965780630e832273146104cb578063111e0376146104fe57806313114a9d146105315780631694505e14610558576103c3565b806306fdde03146103c8578063095ea7b31461045257806309d6bf0a1461049f576103c3565b366103c357005b600080fd5b3480156103d457600080fd5b506103dd610f12565b6040805160208082528351818301528351919283929083019185019080838360005b838110156104175781810151838201526020016103ff565b50505050905090810190601f1680156104445780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561045e57600080fd5b5061048b6004803603604081101561047557600080fd5b506001600160a01b038135169060200135610fa8565b604080519115158252519081900360200190f35b3480156104ab57600080fd5b506104c9600480360360208110156104c257600080fd5b5035610fc6565b005b3480156104d757600080fd5b5061048b600480360360208110156104ee57600080fd5b50356001600160a01b0316611033565b34801561050a57600080fd5b506104c96004803603602081101561052157600080fd5b50356001600160a01b03166110b6565b34801561053d57600080fd5b50610546611181565b60408051918252519081900360200190f35b34801561056457600080fd5b5061056d611187565b604080516001600160a01b039092168252519081900360200190f35b34801561059557600080fd5b50610546611196565b3480156105aa57600080fd5b5061048b600480360360208110156105c157600080fd5b50356001600160a01b031661119c565b3480156105dd57600080fd5b506104c9600480360360408110156105f457600080fd5b81019060208101813564010000000081111561060f57600080fd5b82018360208201111561062157600080fd5b8035906020019184602083028401116401000000008311171561064357600080fd5b91939092909160208101903564010000000081111561066157600080fd5b82018360208201111561067357600080fd5b8035906020019184602083028401116401000000008311171561069557600080fd5b5090925090506111b1565b3480156106ac57600080fd5b5061054661126a565b3480156106c157600080fd5b5061056d611270565b3480156106d657600080fd5b5061048b600480360360608110156106ed57600080fd5b506001600160a01b0381358116916020810135909116906040013561127f565b34801561071957600080fd5b506104c96004803603602081101561073057600080fd5b5035611306565b34801561074357600080fd5b5061056d61136d565b34801561075857600080fd5b5061054661137c565b34801561076d57600080fd5b506107766113f2565b6040805160ff9092168252519081900360200190f35b34801561079857600080fd5b506104c9600480360360208110156107af57600080fd5b50356113fb565b3480156107c257600080fd5b5061048b600480360360408110156107d957600080fd5b506001600160a01b038135169060200135611462565b3480156107fb57600080fd5b506104c96004803603604081101561081257600080fd5b506001600160a01b03813516906020013515156114b0565b34801561083657600080fd5b5061056d61153d565b34801561084b57600080fd5b506104c961154c565b34801561086057600080fd5b5061048b6004803603602081101561087757600080fd5b50356001600160a01b03166115d1565b34801561089357600080fd5b506104c9600480360360208110156108aa57600080fd5b50356115ef565b3480156108bd57600080fd5b50610546611656565b3480156108d257600080fd5b506104c9600480360360208110156108e957600080fd5b50356001600160a01b031661169b565b34801561090557600080fd5b506105466004803603602081101561091c57600080fd5b50356001600160a01b031661192a565b34801561093857600080fd5b5061054661197b565b34801561094d57600080fd5b506104c96004803603602081101561096457600080fd5b5035611981565b34801561097757600080fd5b506105466004803603602081101561098e57600080fd5b50356001600160a01b0316611a68565b3480156109aa57600080fd5b506104c9611a83565b3480156109bf57600080fd5b5061056d611b35565b3480156109d457600080fd5b5061056d611b44565b3480156109e957600080fd5b506104c960048036036020811015610a0057600080fd5b5035611b53565b348015610a1357600080fd5b506104c960048036036020811015610a2a57600080fd5b50356001600160a01b0316611c7a565b348015610a4657600080fd5b5061056d611fdb565b348015610a5b57600080fd5b506104c960048036036020811015610a7257600080fd5b5035611fef565b348015610a8557600080fd5b506103dd61205c565b348015610a9a57600080fd5b506105466120bd565b348015610aaf57600080fd5b506104c960048036036040811015610ac657600080fd5b506001600160a01b03813516906020013515156120c3565b348015610aea57600080fd5b5061054661217c565b348015610aff57600080fd5b506104c960048036036020811015610b1657600080fd5b5035612182565b348015610b2957600080fd5b50610546612231565b348015610b3e57600080fd5b5061048b60048036036040811015610b5557600080fd5b506001600160a01b038135169060200135612276565b348015610b7757600080fd5b506105466122de565b348015610b8c57600080fd5b5061054660048036036020811015610ba357600080fd5b50356001600160a01b03166122e4565b348015610bbf57600080fd5b5061048b60048036036040811015610bd657600080fd5b506001600160a01b038135169060200135612335565b348015610bf857600080fd5b50610c1f60048036036020811015610c0f57600080fd5b50356001600160a01b0316612349565b604080516001600160a01b0390991689526020890197909752878701959095526060870193909352608086019190915260a085015260c084015260e083015251908190036101000190f35b348015610c7657600080fd5b506104c960048036036020811015610c8d57600080fd5b5035612429565b348015610ca057600080fd5b5061048b60048036036020811015610cb757600080fd5b50356001600160a01b0316612496565b348015610cd357600080fd5b506104c960048036036020811015610cea57600080fd5b50356001600160a01b03166124ab565b348015610d0657600080fd5b506104c960048036036040811015610d1d57600080fd5b506001600160a01b038135169060200135151561252f565b348015610d4157600080fd5b506104c960048036036040811015610d5857600080fd5b810190602081018135640100000000811115610d7357600080fd5b820183602082011115610d8557600080fd5b80359060200191846020830284011164010000000083111715610da757600080fd5b919350915035151561264f565b348015610dc057600080fd5b5061056d612779565b348015610dd557600080fd5b506104c9612788565b348015610dea57600080fd5b5061054660048036036040811015610e0157600080fd5b506001600160a01b038135811691602001351661282d565b348015610e2557600080fd5b50610546612858565b348015610e3a57600080fd5b506104c960048036036020811015610e5157600080fd5b50356001600160a01b031661285e565b348015610e6d57600080fd5b50610546612975565b348015610e8257600080fd5b5061054661297b565b348015610e9757600080fd5b506104c960048036036020811015610eae57600080fd5b50356129c0565b348015610ec157600080fd5b50610c1f60048036036020811015610ed857600080fd5b5035612a6f565b348015610eeb57600080fd5b506104c960048036036020811015610f0257600080fd5b50356001600160a01b0316612ad5565b60038054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610f9e5780601f10610f7357610100808354040283529160200191610f9e565b820191906000526020600020905b815481529060010190602001808311610f8157829003601f168201915b5050505050905090565b6000610fbc610fb5612c44565b8484612c48565b5060015b92915050565b610fce612c44565b6001600160a01b0316610fdf611fdb565b6001600160a01b031614611028576040805162461bcd60e51b81526020600482018190526024820152600080516020614059833981519152604482015290519081900360640190fd5b633b9aca0002600c55565b60095460408051634e7b827f60e01b81526001600160a01b03848116600483015291516000939290921691634e7b827f91602480820192602092909190829003018186803b15801561108457600080fd5b505afa158015611098573d6000803e3d6000fd5b505050506040513d60208110156110ae57600080fd5b505192915050565b6110be612c44565b6001600160a01b03166110cf611fdb565b6001600160a01b031614611118576040805162461bcd60e51b81526020600482018190526024820152600080516020614059833981519152604482015290519081900360640190fd5b6009546040805163031e79db60e41b81526001600160a01b038481166004830152915191909216916331e79db091602480830192600092919082900301818387803b15801561116657600080fd5b505af115801561117a573d6000803e3d6000fd5b5050505050565b60135481565b6006546001600160a01b031681565b60025490565b600f6020526000908152604090205460ff1681565b6111b9612c44565b6001600160a01b03166111ca611fdb565b6001600160a01b031614611213576040805162461bcd60e51b81526020600482018190526024820152600080516020614059833981519152604482015290519081900360640190fd5b82811461121f57600080fd5b60005b8381101561117a576112623386868481811061123a57fe5b905060200201356001600160a01b031685858581811061125657fe5b90506020020135612d34565b600101611222565b60105481565b6008546001600160a01b031681565b600061128c848484612d34565b6112fc84611298612c44565b6112f785604051806060016040528060288152602001614031602891396001600160a01b038a166000908152600160205260408120906112d6612c44565b6001600160a01b0316815260208101919091526040016000205491906132dc565b612c48565b5060019392505050565b61130e612c44565b6001600160a01b031661131f611fdb565b6001600160a01b031614611368576040805162461bcd60e51b81526020600482018190526024820152600080516020614059833981519152604482015290519081900360640190fd5b601055565b6009546001600160a01b031681565b600954604080516342d359d760e11b815290516000926001600160a01b0316916385a6b3ae916004808301926020929190829003018186803b1580156113c157600080fd5b505afa1580156113d5573d6000803e3d6000fd5b505050506040513d60208110156113eb57600080fd5b5051905090565b60055460ff1690565b611403612c44565b6001600160a01b0316611414611fdb565b6001600160a01b03161461145d576040805162461bcd60e51b81526020600482018190526024820152600080516020614059833981519152604482015290519081900360640190fd5b601155565b6000610fbc61146f612c44565b846112f78560016000611480612c44565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490612be3565b6114b8612c44565b6001600160a01b03166114c9611fdb565b6001600160a01b031614611512576040805162461bcd60e51b81526020600482018190526024820152600080516020614059833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152600f60205260409020805460ff1916911515919091179055565b6007546001600160a01b031681565b6009546040805163bc4c4b3760e01b815233600482015260006024820181905291516001600160a01b039093169263bc4c4b3792604480840193602093929083900390910190829087803b1580156115a357600080fd5b505af11580156115b7573d6000803e3d6000fd5b505050506040513d60208110156115cd57600080fd5b5050565b6001600160a01b031660009081526016602052604090205460ff1690565b6115f7612c44565b6001600160a01b0316611608611fdb565b6001600160a01b031614611651576040805162461bcd60e51b81526020600482018190526024820152600080516020614059833981519152604482015290519081900360640190fd5b601255565b600954604080516304ddf6ef60e11b815290516000926001600160a01b0316916309bbedde916004808301926020929190829003018186803b1580156113c157600080fd5b6116a3612c44565b6001600160a01b03166116b4611fdb565b6001600160a01b0316146116fd576040805162461bcd60e51b81526020600482018190526024820152600080516020614059833981519152604482015290519081900360640190fd5b6006546001600160a01b038281169116141561174a5760405162461bcd60e51b815260040180806020018281038252602a815260200180613f36602a913960400191505060405180910390fd5b6006546040516001600160a01b03918216918316907f8fc842bbd331dfa973645f4ed48b11683d501ebf1352708d77a5da2ab49a576e90600090a3600680546001600160a01b0319166001600160a01b0383811691909117918290556040805163c45a015560e01b815290516000939092169163c45a015591600480820192602092909190829003018186803b1580156117e357600080fd5b505afa1580156117f7573d6000803e3d6000fd5b505050506040513d602081101561180d57600080fd5b5051600654604080516315ab88c960e31b815290516001600160a01b039384169363c9c6539693309391169163ad5c464891600480820192602092909190829003018186803b15801561185f57600080fd5b505afa158015611873573d6000803e3d6000fd5b505050506040513d602081101561188957600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b1580156118db57600080fd5b505af11580156118ef573d6000803e3d6000fd5b505050506040513d602081101561190557600080fd5b5051600780546001600160a01b0319166001600160a01b039092169190911790555050565b600954604080516370a0823160e01b81526001600160a01b038481166004830152915160009392909216916370a0823191602480820192602092909190829003018186803b15801561108457600080fd5b60125481565b600954604080516001624d3b8760e01b03198152600481018490529051600092839283926001600160a01b039092169163ffb2c4799160248082019260609290919082900301818787803b1580156119d857600080fd5b505af11580156119ec573d6000803e3d6000fd5b505050506040513d6060811015611a0257600080fd5b5080516020808301516040938401518451848152928301829052828501819052606083018990529351929650945091925032916000917fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a989181900360800190a350505050565b6001600160a01b031660009081526020819052604090205490565b611a8b612c44565b6001600160a01b0316611a9c611fdb565b6001600160a01b031614611ae5576040805162461bcd60e51b81526020600482018190526024820152600080516020614059833981519152604482015290519081900360640190fd5b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b6014546001600160a01b031681565b600b546001600160a01b031681565b611b5b612c44565b6001600160a01b0316611b6c611fdb565b6001600160a01b031614611bb5576040805162461bcd60e51b81526020600482018190526024820152600080516020614059833981519152604482015290519081900360640190fd5b62030d408110158015611bcb57506207a1208111155b611c065760405162461bcd60e51b815260040180806020018281038252603b8152602001806140c2603b913960400191505060405180910390fd5b601554811415611c475760405162461bcd60e51b8152600401808060200182810382526033815260200180613f886033913960400191505060405180910390fd5b60155460405182907f40d7e40e79af4e8e5a9b3c57030d8ea93f13d669c06d448c4d631d4ae7d23db790600090a3601555565b611c82612c44565b6001600160a01b0316611c93611fdb565b6001600160a01b031614611cdc576040805162461bcd60e51b81526020600482018190526024820152600080516020614059833981519152604482015290519081900360640190fd5b6009546001600160a01b0382811691161415611d295760405162461bcd60e51b8152600401808060200182810382526034815260200180613de06034913960400191505060405180910390fd5b6000819050306001600160a01b0316816001600160a01b0316638da5cb5b6040518163ffffffff1660e01b815260040160206040518083038186803b158015611d7157600080fd5b505afa158015611d85573d6000803e3d6000fd5b505050506040513d6020811015611d9b57600080fd5b50516001600160a01b031614611de25760405162461bcd60e51b8152600401808060200182810382526049815260200180613eed6049913960600191505060405180910390fd5b806001600160a01b03166331e79db0826040518263ffffffff1660e01b815260040180826001600160a01b03168152602001915050600060405180830381600087803b158015611e3157600080fd5b505af1158015611e45573d6000803e3d6000fd5b50506040805163031e79db60e41b815230600482015290516001600160a01b03851693506331e79db09250602480830192600092919082900301818387803b158015611e9057600080fd5b505af1158015611ea4573d6000803e3d6000fd5b50505050806001600160a01b03166331e79db0611ebf611fdb565b6040518263ffffffff1660e01b815260040180826001600160a01b03168152602001915050600060405180830381600087803b158015611efe57600080fd5b505af1158015611f12573d6000803e3d6000fd5b50506006546040805163031e79db60e41b81526001600160a01b039283166004820152905191851693506331e79db0925060248082019260009290919082900301818387803b158015611f6457600080fd5b505af1158015611f78573d6000803e3d6000fd5b50506009546040516001600160a01b03918216935090851691507f90c7d74461c613da5efa97d90740869367d74ab3aa5837aa4ae9a975f954b7a890600090a3600980546001600160a01b0319166001600160a01b039290921691909117905550565b60055461010090046001600160a01b031690565b611ff7612c44565b6001600160a01b0316612008611fdb565b6001600160a01b031614612051576040805162461bcd60e51b81526020600482018190526024820152600080516020614059833981519152604482015290519081900360640190fd5b633b9aca0002600e55565b60048054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610f9e5780601f10610f7357610100808354040283529160200191610f9e565b60115481565b6120cb612c44565b6001600160a01b03166120dc611fdb565b6001600160a01b031614612125576040805162461bcd60e51b81526020600482018190526024820152600080516020614059833981519152604482015290519081900360640190fd5b6007546001600160a01b03838116911614156121725760405162461bcd60e51b8152600401808060200182810382526048815260200180613e7f6048913960600191505060405180910390fd5b6115cd8282613373565b60155481565b61218a612c44565b6001600160a01b031661219b611fdb565b6001600160a01b0316146121e4576040805162461bcd60e51b81526020600482018190526024820152600080516020614059833981519152604482015290519081900360640190fd5b60095460408051635ebf4db960e01b81526004810184905290516001600160a01b0390921691635ebf4db99160248082019260009290919082900301818387803b15801561116657600080fd5b60095460408051631bc9e27b60e21b815290516000926001600160a01b031691636f2789ec916004808301926020929190829003018186803b1580156113c157600080fd5b6000610fbc612283612c44565b846112f78560405180606001604052806025815260200161413060259139600160006122ad612c44565b6001600160a01b03908116825260208083019390935260409182016000908120918d168152925290205491906132dc565b600d5481565b600954604080516302a2e74960e61b81526001600160a01b0384811660048301529151600093929092169163a8b9d24091602480820192602092909190829003018186803b15801561108457600080fd5b6000610fbc612342612c44565b8484612d34565b600080600080600080600080600960009054906101000a90046001600160a01b03166001600160a01b031663fbcbc0f18a6040518263ffffffff1660e01b815260040180826001600160a01b031681526020019150506101006040518083038186803b1580156123b857600080fd5b505afa1580156123cc573d6000803e3d6000fd5b505050506040513d6101008110156123e357600080fd5b508051602082015160408301516060840151608085015160a086015160c087015160e090970151959e50939c50919a509850965094509092509050919395975091939597565b612431612c44565b6001600160a01b0316612442611fdb565b6001600160a01b03161461248b576040805162461bcd60e51b81526020600482018190526024820152600080516020614059833981519152604482015290519081900360640190fd5b633b9aca0002600d55565b60176020526000908152604090205460ff1681565b6124b3612c44565b6001600160a01b03166124c4611fdb565b6001600160a01b03161461250d576040805162461bcd60e51b81526020600482018190526024820152600080516020614059833981519152604482015290519081900360640190fd5b601480546001600160a01b0319166001600160a01b0392909216919091179055565b612537612c44565b6001600160a01b0316612548611fdb565b6001600160a01b031614612591576040805162461bcd60e51b81526020600482018190526024820152600080516020614059833981519152604482015290519081900360640190fd5b6001600160a01b03821660009081526016602052604090205460ff16151581151514156125ef5760405162461bcd60e51b8152600401808060200182810382526031815260200180613fdf6031913960400191505060405180910390fd5b6001600160a01b038216600081815260166020908152604091829020805460ff1916851515908117909155825190815291517f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79281900390910190a25050565b612657612c44565b6001600160a01b0316612668611fdb565b6001600160a01b0316146126b1576040805162461bcd60e51b81526020600482018190526024820152600080516020614059833981519152604482015290519081900360640190fd5b60005b828110156127065781601660008686858181106126cd57fe5b602090810292909201356001600160a01b0316835250810191909152604001600020805460ff19169115159190911790556001016126b4565b507f7fdaf542373fa84f4ee8d662c642f44e4c2276a217d7d29e548b6eb29a233b35838383604051808060200183151581526020018281038252858582818152602001925060200280828437600083820152604051601f909101601f1916909201829003965090945050505050a1505050565b600a546001600160a01b031681565b612790612c44565b6001600160a01b03166127a1611fdb565b6001600160a01b0316146127ea576040805162461bcd60e51b81526020600482018190526024820152600080516020614059833981519152604482015290519081900360640190fd5b6127f2611fdb565b6001600160a01b03166108fc479081150290604051600060405180830381858888f1935050505015801561282a573d6000803e3d6000fd5b50565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b600c5481565b612866612c44565b6001600160a01b0316612877611fdb565b6001600160a01b0316146128c0576040805162461bcd60e51b81526020600482018190526024820152600080516020614059833981519152604482015290519081900360640190fd5b600a546001600160a01b038281169116141561290d5760405162461bcd60e51b81526004018080602001828103825260338152602001806140fd6033913960400191505060405180910390fd5b61291881600161252f565b600a546040516001600160a01b03918216918316907f6080503d1da552ae8eb4b7b8a20245d9fabed014180510e7d1a05ea08fdb0f3e90600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b600e5481565b6009546040805163039e107b60e61b815290516000926001600160a01b03169163e7841ec0916004808301926020929190829003018186803b1580156113c157600080fd5b6129c8612c44565b6001600160a01b03166129d9611fdb565b6001600160a01b031614612a22576040805162461bcd60e51b81526020600482018190526024820152600080516020614059833981519152604482015290519081900360640190fd5b6009546040805163e98030c760e01b81526004810184905290516001600160a01b039092169163e98030c79160248082019260009290919082900301818387803b15801561116657600080fd5b600080600080600080600080600960009054906101000a90046001600160a01b03166001600160a01b0316635183d6fd8a6040518263ffffffff1660e01b8152600401808281526020019150506101006040518083038186803b1580156123b857600080fd5b612add612c44565b6001600160a01b0316612aee611fdb565b6001600160a01b031614612b37576040805162461bcd60e51b81526020600482018190526024820152600080516020614059833981519152604482015290519081900360640190fd5b6001600160a01b038116612b7c5760405162461bcd60e51b8152600401808060200182810382526026815260200180613e376026913960400191505060405180910390fd5b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b600082820183811015612c3d576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b3390565b6001600160a01b038316612c8d5760405162461bcd60e51b815260040180806020018281038252602481526020018061409e6024913960400191505060405180910390fd5b6001600160a01b038216612cd25760405162461bcd60e51b8152600401808060200182810382526022815260200180613e5d6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316612d795760405162461bcd60e51b81526004018080602001828103825260258152602001806140796025913960400191505060405180910390fd5b6001600160a01b038216612dbe5760405162461bcd60e51b8152600401808060200182810382526023815260200180613e146023913960400191505060405180910390fd5b6001600160a01b0383166000908152600f602052604090205460ff16158015612e0057506001600160a01b0382166000908152600f602052604090205460ff16155b612e47576040805162461bcd60e51b8152602060048201526013602482015272426c61636b6c6973746564206164647265737360681b604482015290519081900360640190fd5b80612e5d57612e58838360006134a1565b6132d7565b6001600160a01b03831660009081526017602052604090205460ff1615612f1157600d54811115612ebf5760405162461bcd60e51b8152600401808060200182810382526028815260200180613f606028913960400191505060405180910390fd5b6000612eca83611a68565b9050600e548282011115612f0f5760405162461bcd60e51b8152600401808060200182810382526024815260200180613fbb6024913960400191505060405180910390fd5b505b6000612f1c30611a68565b600c5490915081108015908190612f3d5750600854600160a01b900460ff16155b8015612f6257506001600160a01b03851660009081526017602052604090205460ff16155b8015612f7c5750600a546001600160a01b03868116911614155b8015612f965750600a546001600160a01b03858116911614155b15613026576008805460ff60a01b1916600160a01b179055601354601254600091612fcc91612fc69086906135fc565b90613655565b9050612fd7816136bc565b6000612ff4601354612fc6601154876135fc90919063ffffffff16565b9050612fff81613713565b600061300a30611a68565b905061301581613799565b50506008805460ff60a01b19169055505b6008546001600160a01b03861660009081526016602052604090205460ff600160a01b90920482161591168061307457506001600160a01b03851660009081526016602052604090205460ff165b1561307d575060005b80156130ee57600061309f6064612fc6601354886135fc90919063ffffffff16565b6001600160a01b03871660009081526017602052604090205490915060ff16156130d5576130d36064612fc68760016135fc565b015b6130df8582613951565b94506130ec8730836134a1565b505b6130f98686866134a1565b6009546001600160a01b031663e30443bc8761311481611a68565b6040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050600060405180830381600087803b15801561315a57600080fd5b505af192505050801561316b575060015b506009546001600160a01b031663e30443bc8661318781611a68565b6040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050600060405180830381600087803b1580156131cd57600080fd5b505af19250505080156131de575060015b50600854600160a01b900460ff166132d357601554600954604080516001624d3b8760e01b031981526004810184905290516001600160a01b039092169163ffb2c479916024808201926060929091908290030181600087803b15801561324457600080fd5b505af192505050801561327857506040513d606081101561326457600080fd5b508051602082015160409092015190919060015b613281576132d1565b604080518481526020810184905280820183905260608101869052905132916001917fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a989181900360800190a35050505b505b5050505b505050565b6000818484111561336b5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613330578181015183820152602001613318565b50505050905090810190601f16801561335d5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b03821660009081526017602052604090205460ff16151581151514156133d15760405162461bcd60e51b815260040180806020018281038252603f815260200180614155603f913960400191505060405180910390fd5b6001600160a01b0382166000908152601760205260409020805460ff19168215801591909117909155613465576009546040805163031e79db60e41b81526001600160a01b038581166004830152915191909216916331e79db091602480830192600092919082900301818387803b15801561344c57600080fd5b505af1158015613460573d6000803e3d6000fd5b505050505b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6001600160a01b0383166134e65760405162461bcd60e51b81526004018080602001828103825260258152602001806140796025913960400191505060405180910390fd5b6001600160a01b03821661352b5760405162461bcd60e51b8152600401808060200182810382526023815260200180613e146023913960400191505060405180910390fd5b6135368383836132d7565b61357381604051806060016040528060268152602001613ec7602691396001600160a01b03861660009081526020819052604090205491906132dc565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546135a29082612be3565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008261360b57506000610fc0565b8282028284828161361857fe5b0414612c3d5760405162461bcd60e51b81526004018080602001828103825260218152602001806140106021913960400191505060405180910390fd5b60008082116136ab576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b8183816136b457fe5b049392505050565b476136c6826139ae565b60006136d24783613951565b6014546040519192506001600160a01b03169082156108fc029083906000818181858888f1935050505015801561370d573d6000803e3d6000fd5b50505050565b6000613720826002613655565b9050600061372e8383613951565b90504761373a836139ae565b60006137464783613951565b90506137528382613b54565b604080518581526020810183905280820185905290517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15050505050565b6137a38130613c0c565b600854604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b1580156137ee57600080fd5b505afa158015613802573d6000803e3d6000fd5b505050506040513d602081101561381857600080fd5b50516008546009546040805163a9059cbb60e01b81526001600160a01b039283166004820152602481018590529051939450600093919092169163a9059cbb91604480830192602092919082900301818787803b15801561387857600080fd5b505af115801561388c573d6000803e3d6000fd5b505050506040513d60208110156138a257600080fd5b5051905080156132d757600954604080516329cf3c9b60e11b81526004810185905290516001600160a01b039092169163539e79369160248082019260009290919082900301818387803b1580156138f957600080fd5b505af115801561390d573d6000803e3d6000fd5b5050604080518681526020810186905281517f80195cc573b02cc48460cbca6e6e4cc85ddb91959d946e1c3025ea3d87942dc39450908190039091019150a1505050565b6000828211156139a8576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b604080516002808252606080830184529260208301908036833701905050905030816000815181106139dc57fe5b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b158015613a3057600080fd5b505afa158015613a44573d6000803e3d6000fd5b505050506040513d6020811015613a5a57600080fd5b5051815182906001908110613a6b57fe5b6001600160a01b039283166020918202929092010152600654613a919130911684612c48565b60065460405163791ac94760e01b8152600481018481526000602483018190523060648401819052426084850181905260a060448601908152875160a487015287516001600160a01b039097169663791ac947968a968a9594939092909160c40190602080880191028083838b5b83811015613b17578181015183820152602001613aff565b505050509050019650505050505050600060405180830381600087803b158015613b4057600080fd5b505af11580156132d3573d6000803e3d6000fd5b600654613b6c9030906001600160a01b031684612c48565b600654600a546040805163f305d71960e01b81523060048201526024810186905260006044820181905260648201526001600160a01b0392831660848201524260a48201529051919092169163f305d71991849160c48082019260609290919082900301818588803b158015613be157600080fd5b505af1158015613bf5573d6000803e3d6000fd5b50505050506040513d606081101561370d57600080fd5b604080516003808252608082019092526060916020820183803683370190505090503081600081518110613c3c57fe5b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b158015613c9057600080fd5b505afa158015613ca4573d6000803e3d6000fd5b505050506040513d6020811015613cba57600080fd5b5051815182906001908110613ccb57fe5b6001600160a01b039283166020918202929092010152600854825191169082906002908110613cf657fe5b6001600160a01b039283166020918202929092010152600654613d1c9130911685612c48565b600654604051635c11d79560e01b8152600481018581526000602483018190526001600160a01b038681166064850152426084850181905260a060448601908152875160a487015287519290961695635c11d795958a9589948b9493919260c40190602080880191028083838b5b83811015613da2578181015183820152602001613d8a565b505050509050019650505050505050600060405180830381600087803b158015613dcb57600080fd5b505af11580156132d1573d6000803e3d6000fdfe59554b4f4e3a20546865206469766964656e6420747261636b657220616c7265616479206861732074686174206164647265737345524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737359554b4f4e3a2054686520554e495357415020706169722063616e6e6f742062652072656d6f7665642066726f6d206175746f6d617465644d61726b65744d616b6572506169727345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636559554b4f4e3a20546865206e6577206469766964656e6420747261636b6572206d757374206265206f776e6564206279207468652059554b4f4e20746f6b656e20636f6e747261637459554b4f4e3a2054686520726f7574657220616c726561647920686173207468617420616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e59554b4f4e3a2043616e6e6f742075706461746520676173466f7250726f63657373696e6720746f2073616d652076616c756545786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f756e742e59554b4f4e3a204163636f756e7420697320616c7265616479207468652076616c7565206f6620276578636c7564656427536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737359554b4f4e3a20676173466f7250726f63657373696e67206d757374206265206265747765656e203230302c30303020616e64203530302c30303059554b4f4e3a20546865206c69717569646974792077616c6c657420697320616c72656164792074686973206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f59554b4f4e3a204175746f6d61746564206d61726b6574206d616b6572207061697220697320616c72656164792073657420746f20746861742076616c7565a2646970667358221220741328fee262c80c60cf021a4ba615548a45be805a53250d7e6bcfe710dacd5a64736f6c634300060c0033

Libraries Used


Deployed Bytecode Sourcemap

48530:17943:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30519:91;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32665:169;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;32665:169:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;53422:131;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53422:131:0;;:::i;:::-;;57644:146;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;57644:146:0;-1:-1:-1;;;;;57644:146:0;;:::i;52759:128::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52759:128:0;-1:-1:-1;;;;;52759:128:0;;:::i;49384:76::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;48605:41;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;48605:41:0;;;;;;;;;;;;;;31618:108;;;;;;;;;;;;;:::i;49214:46::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49214:46:0;-1:-1:-1;;;;;49214:46:0;;:::i;66019:267::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;66019:267:0;;-1:-1:-1;66019:267:0;-1:-1:-1;66019:267:0;:::i;49269:32::-;;;;;;;;;;;;;:::i;48690:77::-;;;;;;;;;;;;;:::i;33316:321::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;33316:321:0;;;;;;;;;;;;;;;;;:::i;52899:122::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52899:122:0;;:::i;48806:43::-;;;;;;;;;;;;;:::i;57798:141::-;;;;;;;;;;;;;:::i;31462:91::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;53033:118;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53033:118:0;;:::i;34046:218::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;34046:218:0;;;;;;;;:::i;56053:125::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;56053:125:0;;;;;;;;;;:::i;48653:28::-;;;;;;;;;;;;;:::i;59331:94::-;;;;;;;;;;;;;:::i;57947:125::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;57947:125:0;-1:-1:-1;;;;;57947:125:0;;:::i;53159:118::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53159:118:0;;:::i;59570:141::-;;;;;;;;;;;;;:::i;54662:499::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54662:499:0;-1:-1:-1;;;;;54662:499:0;;:::i;58243:139::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;58243:139:0;-1:-1:-1;;;;;58243:139:0;;:::i;49346:31::-;;;;;;;;;;;;;:::i;59052:271::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;59052:271:0;;:::i;31789:127::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31789:127:0;-1:-1:-1;;;;;31789:127:0;;:::i;15466:148::-;;;;;;;;;;;;;:::i;49469:83::-;;;;;;;;;;;;;:::i;48897:70::-;;;;;;;;;;;;;:::i;56978:406::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;56978:406:0;;:::i;53561:835::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53561:835:0;-1:-1:-1;;;;;53561:835:0;;:::i;14815:87::-;;;;;;;;;;;;;:::i;54538:116::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54538:116:0;;:::i;30729:95::-;;;;;;;;;;;;;:::i;49308:31::-;;;;;;;;;;;;;:::i;55786:259::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;55786:259:0;;;;;;;;;;:::i;49631:40::-;;;;;;;;;;;;;:::i;52565:182::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52565:182:0;;:::i;57524:108::-;;;;;;;;;;;;;:::i;34767:269::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;34767:269:0;;;;;;;;:::i;49039:62::-;;;;;;;;;;;;;:::i;58084:151::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;58084:151:0;-1:-1:-1;;;;;58084:151:0;;:::i;32129:175::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;32129:175:0;;;;;;;;:::i;58390:318::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;58390:318:0;-1:-1:-1;;;;;58390:318:0;;:::i;:::-;;;;-1:-1:-1;;;;;58390:318:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54404:124;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54404:124:0;;:::i;49947:58::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49947:58:0;-1:-1:-1;;;;;49947:58:0;;:::i;53289:125::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53289:125:0;-1:-1:-1;;;;;53289:125:0;;:::i;55169:297::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;55169:297:0;;;;;;;;;;:::i;55474:304::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;55474:304:0;-1:-1:-1;55474:304:0;;;;:::i;48858:30::-;;;;;;;;;;;;;:::i;66355:115::-;;;;;;;;;;;;;:::i;32367:151::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;32367:151:0;;;;;;;;;;:::i;48976:56::-;;;;;;;;;;;;;:::i;56600:370::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;56600:370:0;-1:-1:-1;;;;;56600:370:0;;:::i;49130:53::-;;;;;;;;;;;;;:::i;59433:129::-;;;;;;;;;;;;;:::i;57392:124::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;57392:124:0;;:::i;58716:328::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;58716:328:0;;:::i;15769:244::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;15769:244:0;-1:-1:-1;;;;;15769:244:0;;:::i;30519:91::-;30597:5;30590:12;;;;;;;;-1:-1:-1;;30590:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30564:13;;30590:12;;30597:5;;30590:12;;30597:5;30590:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30519:91;:::o;32665:169::-;32748:4;32765:39;32774:12;:10;:12::i;:::-;32788:7;32797:6;32765:8;:39::i;:::-;-1:-1:-1;32822:4:0;32665:169;;;;;:::o;53422:131::-;15046:12;:10;:12::i;:::-;-1:-1:-1;;;;;15035:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;15035:23:0;;15027:68;;;;;-1:-1:-1;;;15027:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15027:68:0;;;;;;;;;;;;;;;53539:5:::1;53526:19;53505:18;:40:::0;53422:131::o;57644:146::-;57736:15;;:46;;;-1:-1:-1;;;57736:46:0;;-1:-1:-1;;;;;57736:46:0;;;;;;;;;57712:4;;57736:15;;;;;:37;;:46;;;;;;;;;;;;;;;:15;:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;57736:46:0;;57644:146;-1:-1:-1;;57644:146:0:o;52759:128::-;15046:12;:10;:12::i;:::-;-1:-1:-1;;;;;15035:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;15035:23:0;;15027:68;;;;;-1:-1:-1;;;15027:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15027:68:0;;;;;;;;;;;;;;;52834:15:::1;::::0;:45:::1;::::0;;-1:-1:-1;;;52834:45:0;;-1:-1:-1;;;;;52834:45:0;;::::1;;::::0;::::1;::::0;;;:15;;;::::1;::::0;:36:::1;::::0;:45;;;;;:15:::1;::::0;:45;;;;;;;:15;;:45;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;52759:128:::0;:::o;49384:76::-;;;;:::o;48605:41::-;;;-1:-1:-1;;;;;48605:41:0;;:::o;31618:108::-;31706:12;;31618:108;:::o;49214:46::-;;;;;;;;;;;;;;;:::o;66019:267::-;15046:12;:10;:12::i;:::-;-1:-1:-1;;;;;15035:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;15035:23:0;;15027:68;;;;;-1:-1:-1;;;15027:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15027:68:0;;;;;;;;;;;;;;;66130:28;;::::1;66122:37;;;::::0;::::1;;66175:9;66170:109;66190:14:::0;;::::1;66170:109;;;66226:41;66236:10;66248:3;;66252:1;66248:6;;;;;;;;;;;;;-1:-1:-1::0;;;;;66248:6:0::1;66256:7;;66264:1;66256:10;;;;;;;;;;;;;66226:9;:41::i;:::-;66206:3;;66170:109;;49269:32:::0;;;;:::o;48690:77::-;;;-1:-1:-1;;;;;48690:77:0;;:::o;33316:321::-;33422:4;33439:36;33449:6;33457:9;33468:6;33439:9;:36::i;:::-;33486:121;33495:6;33503:12;:10;:12::i;:::-;33517:89;33555:6;33517:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;33517:19:0;;;;;;:11;:19;;;;;;33537:12;:10;:12::i;:::-;-1:-1:-1;;;;;33517:33:0;;;;;;;;;;;;-1:-1:-1;33517:33:0;;;:89;:37;:89::i;:::-;33486:8;:121::i;:::-;-1:-1:-1;33625:4:0;33316:321;;;;;:::o;52899:122::-;15046:12;:10;:12::i;:::-;-1:-1:-1;;;;;15035:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;15035:23:0;;15027:68;;;;;-1:-1:-1;;;15027:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15027:68:0;;;;;;;;;;;;;;;52981:13:::1;:32:::0;52899:122::o;48806:43::-;;;-1:-1:-1;;;;;48806:43:0;;:::o;57798:141::-;57888:15;;:43;;;-1:-1:-1;;;57888:43:0;;;;57861:7;;-1:-1:-1;;;;;57888:15:0;;:41;;:43;;;;;;;;;;;;;;:15;:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;57888:43:0;;-1:-1:-1;57798:141:0;:::o;31462:91::-;31536:9;;;;31462:91;:::o;53033:118::-;15046:12;:10;:12::i;:::-;-1:-1:-1;;;;;15035:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;15035:23:0;;15027:68;;;;;-1:-1:-1;;;15027:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15027:68:0;;;;;;;;;;;;;;;53113:12:::1;:30:::0;53033:118::o;34046:218::-;34134:4;34151:83;34160:12;:10;:12::i;:::-;34174:7;34183:50;34222:10;34183:11;:25;34195:12;:10;:12::i;:::-;-1:-1:-1;;;;;34183:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;34183:25:0;;;:34;;;;;;;;;;;:38;:50::i;56053:125::-;15046:12;:10;:12::i;:::-;-1:-1:-1;;;;;15035:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;15035:23:0;;15027:68;;;;;-1:-1:-1;;;15027:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15027:68:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;56139:23:0;;;::::1;;::::0;;;:14:::1;:23;::::0;;;;:31;;-1:-1:-1;;56139:31:0::1;::::0;::::1;;::::0;;;::::1;::::0;;56053:125::o;48653:28::-;;;-1:-1:-1;;;;;48653:28:0;;:::o;59331:94::-;59368:15;;:49;;;-1:-1:-1;;;59368:49:0;;59399:10;59368:49;;;;:15;:49;;;;;;;;-1:-1:-1;;;;;59368:15:0;;;;:30;;:49;;;;;;;;;;;;;;;;;;:15;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;59331:94:0:o;57947:125::-;-1:-1:-1;;;;;58036:28:0;58012:4;58036:28;;;:19;:28;;;;;;;;;57947:125::o;53159:118::-;15046:12;:10;:12::i;:::-;-1:-1:-1;;;;;15035:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;15035:23:0;;15027:68;;;;;-1:-1:-1;;;15027:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15027:68:0;;;;;;;;;;;;;;;53239:12:::1;:30:::0;53159:118::o;59570:141::-;59662:15;;:41;;;-1:-1:-1;;;59662:41:0;;;;59635:7;;-1:-1:-1;;;;;59662:15:0;;:39;;:41;;;;;;;;;;;;;;:15;:41;;;;;;;;;;54662:499;15046:12;:10;:12::i;:::-;-1:-1:-1;;;;;15035:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;15035:23:0;;15027:68;;;;;-1:-1:-1;;;15027:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15027:68:0;;;;;;;;;;;;;;;54771:15:::1;::::0;-1:-1:-1;;;;;54749:38:0;;::::1;54771:15:::0;::::1;54749:38;;54741:93;;;;-1:-1:-1::0;;;54741:93:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54892:15;::::0;54850:59:::1;::::0;-1:-1:-1;;;;;54892:15:0;;::::1;::::0;54850:59;::::1;::::0;::::1;::::0;54892:15:::1;::::0;54850:59:::1;54920:15;:48:::0;;-1:-1:-1;;;;;;54920:48:0::1;-1:-1:-1::0;;;;;54920:48:0;;::::1;::::0;;;::::1;::::0;;;;55022:25:::1;::::0;;-1:-1:-1;;;55022:25:0;;;;-1:-1:-1;;55022:15:0;;::::1;::::0;:23:::1;::::0;:25:::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;;;:15;:25;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;55022:25:0;55089:15:::1;::::0;:22:::1;::::0;;-1:-1:-1;;;55089:22:0;;;;-1:-1:-1;;;;;55004:69:0;;::::1;::::0;::::1;::::0;55082:4:::1;::::0;55089:15;::::1;::::0;:20:::1;::::0;:22:::1;::::0;;::::1;::::0;55022:25:::1;::::0;55089:22;;;;;;;;:15;:22;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;55089:22:0;55004:108:::1;::::0;;-1:-1:-1;;;;;;55004:108:0::1;::::0;;;;;;-1:-1:-1;;;;;55004:108:0;;::::1;;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;55089:22:::1;::::0;55004:108;;;;;;;-1:-1:-1;55004:108:0;;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;55004:108:0;55123:13:::1;:30:::0;;-1:-1:-1;;;;;;55123:30:0::1;-1:-1:-1::0;;;;;55123:30:0;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;54662:499:0:o;58243:139::-;58340:15;;:34;;;-1:-1:-1;;;58340:34:0;;-1:-1:-1;;;;;58340:34:0;;;;;;;;;58313:7;;58340:15;;;;;:25;;:34;;;;;;;;;;;;;;;:15;:34;;;;;;;;;;49346:31;;;;:::o;59052:271::-;59184:15;;:28;;;-1:-1:-1;;;;;;59184:28:0;;;;;;;;;;59118:18;;;;;;-1:-1:-1;;;;;59184:15:0;;;;:23;;:28;;;;;;;;;;;;;;;59118:18;59184:15;:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;59184:28:0;;;;;;;;;;;;59228:87;;;;;;;;;;;;;;;;;59184:28;59228:87;;;;;;;59184:28;;-1:-1:-1;59184:28:0;-1:-1:-1;59184:28:0;;-1:-1:-1;59305:9:0;;59293:5;;59228:87;;;;;;;;;59052:271;;;;:::o;31789:127::-;-1:-1:-1;;;;;31890:18:0;31863:7;31890:18;;;;;;;;;;;;31789:127::o;15466:148::-;15046:12;:10;:12::i;:::-;-1:-1:-1;;;;;15035:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;15035:23:0;;15027:68;;;;;-1:-1:-1;;;15027:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15027:68:0;;;;;;;;;;;;;;;15557:6:::1;::::0;15536:40:::1;::::0;15573:1:::1;::::0;15557:6:::1;::::0;::::1;-1:-1:-1::0;;;;;15557:6:0::1;::::0;15536:40:::1;::::0;15573:1;;15536:40:::1;15587:6;:19:::0;;-1:-1:-1;;;;;;15587:19:0::1;::::0;;15466:148::o;49469:83::-;;;-1:-1:-1;;;;;49469:83:0;;:::o;48897:70::-;;;-1:-1:-1;;;;;48897:70:0;;:::o;56978:406::-;15046:12;:10;:12::i;:::-;-1:-1:-1;;;;;15035:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;15035:23:0;;15027:68;;;;;-1:-1:-1;;;15027:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15027:68:0;;;;;;;;;;;;;;;57076:6:::1;57064:8;:18;;:40;;;;;57098:6;57086:8;:18;;57064:40;57056:112;;;;-1:-1:-1::0;;;57056:112:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57199:16;;57187:8;:28;;57179:92;;;;-1:-1:-1::0;;;57179:92:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57321:16;::::0;57287:51:::1;::::0;57311:8;;57287:51:::1;::::0;;;::::1;57349:16;:27:::0;56978:406::o;53561:835::-;15046:12;:10;:12::i;:::-;-1:-1:-1;;;;;15035:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;15035:23:0;;15027:68;;;;;-1:-1:-1;;;15027:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15027:68:0;;;;;;;;;;;;;;;53670:15:::1;::::0;-1:-1:-1;;;;;53648:38:0;;::::1;53670:15:::0;::::1;53648:38;;53640:103;;;;-1:-1:-1::0;;;53640:103:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53756:39;53827:10;53756:83;;53898:4;-1:-1:-1::0;;;;;53860:43:0::1;:18;-1:-1:-1::0;;;;;53860:24:0::1;;:26;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;53860:26:0;-1:-1:-1;;;;;53860:43:0::1;;53852:129;;;;-1:-1:-1::0;;;53852:129:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53994:18;-1:-1:-1::0;;;;;53994:39:0::1;;54042:18;53994:68;;;;;;;;;;;;;-1:-1:-1::0;;;;;53994:68:0::1;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;54073:54:0::1;::::0;;-1:-1:-1;;;54073:54:0;;54121:4:::1;54073:54;::::0;::::1;::::0;;;-1:-1:-1;;;;;54073:39:0;::::1;::::0;-1:-1:-1;54073:39:0::1;::::0;-1:-1:-1;54073:54:0;;;;;-1:-1:-1;;54073:54:0;;;;;;;-1:-1:-1;54073:39:0;:54;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;54138:18;-1:-1:-1::0;;;;;54138:39:0::1;;54178:7;:5;:7::i;:::-;54138:48;;;;;;;;;;;;;-1:-1:-1::0;;;;;54138:48:0::1;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;54245:15:0::1;::::0;54197:65:::1;::::0;;-1:-1:-1;;;54197:65:0;;-1:-1:-1;;;;;54245:15:0;;::::1;54197:65;::::0;::::1;::::0;;;:39;;::::1;::::0;-1:-1:-1;54197:39:0::1;::::0;-1:-1:-1;54197:65:0;;;;;54245:15:::1;::::0;54197:65;;;;;;;;54245:15;54197:39;:65;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;54322:15:0::1;::::0;54280:59:::1;::::0;-1:-1:-1;;;;;54322:15:0;;::::1;::::0;-1:-1:-1;54280:59:0;;::::1;::::0;-1:-1:-1;54280:59:0::1;::::0;54322:15:::1;::::0;54280:59:::1;54352:15;:36:::0;;-1:-1:-1;;;;;;54352:36:0::1;-1:-1:-1::0;;;;;54352:36:0;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;53561:835:0:o;14815:87::-;14888:6;;;;;-1:-1:-1;;;;;14888:6:0;;14815:87::o;54538:116::-;15046:12;:10;:12::i;:::-;-1:-1:-1;;;;;15035:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;15035:23:0;;15027:68;;;;;-1:-1:-1;;;15027:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15027:68:0;;;;;;;;;;;;;;;54641:5:::1;54629:18;54612:14;:35:::0;54538:116::o;30729:95::-;30809:7;30802:14;;;;;;;;-1:-1:-1;;30802:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30776:13;;30802:14;;30809:7;;30802:14;;30809:7;30802:14;;;;;;;;;;;;;;;;;;;;;;;;49308:31;;;;:::o;55786:259::-;15046:12;:10;:12::i;:::-;-1:-1:-1;;;;;15035:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;15035:23:0;;15027:68;;;;;-1:-1:-1;;;15027:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15027:68:0;;;;;;;;;;;;;;;55893:13:::1;::::0;-1:-1:-1;;;;;55885:21:0;;::::1;55893:13:::0;::::1;55885:21;;55877:106;;;;-1:-1:-1::0;;;55877:106:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55996:41;56025:4;56031:5;55996:28;:41::i;49631:40::-:0;;;;:::o;52565:182::-;15046:12;:10;:12::i;:::-;-1:-1:-1;;;;;15035:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;15035:23:0;;15027:68;;;;;-1:-1:-1;;;15027:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15027:68:0;;;;;;;;;;;;;;;52664:15:::1;::::0;:75:::1;::::0;;-1:-1:-1;;;52664:75:0;;::::1;::::0;::::1;::::0;;;;;-1:-1:-1;;;;;52664:15:0;;::::1;::::0;:50:::1;::::0;:75;;;;;:15:::1;::::0;:75;;;;;;;;:15;;:75;::::1;;::::0;::::1;;;;::::0;::::1;57524:108:::0;57597:15;;:27;;;-1:-1:-1;;;57597:27:0;;;;57570:7;;-1:-1:-1;;;;;57597:15:0;;:25;;:27;;;;;;;;;;;;;;:15;:27;;;;;;;;;;34767:269;34860:4;34877:129;34886:12;:10;:12::i;:::-;34900:7;34909:96;34948:15;34909:96;;;;;;;;;;;;;;;;;:11;:25;34921:12;:10;:12::i;:::-;-1:-1:-1;;;;;34909:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;34909:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;49039:62::-;;;;:::o;58084:151::-;58180:15;;:47;;;-1:-1:-1;;;58180:47:0;;-1:-1:-1;;;;;58180:47:0;;;;;;;;;58153:7;;58180:15;;;;;:38;;:47;;;;;;;;;;;;;;;:15;:47;;;;;;;;;;32129:175;32215:4;32232:42;32242:12;:10;:12::i;:::-;32256:9;32267:6;32232:9;:42::i;58390:318::-;58486:7;58508:6;58529;58550:7;58572;58594;58616;58638;58665:15;;;;;;;;;-1:-1:-1;;;;;58665:15:0;-1:-1:-1;;;;;58665:26:0;;58692:7;58665:35;;;;;;;;;;;;;-1:-1:-1;;;;;58665:35:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;58665:35:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;58665:35:0;;-1:-1:-1;58665:35:0;;-1:-1:-1;58665:35:0;-1:-1:-1;58665:35:0;-1:-1:-1;58665:35:0;-1:-1:-1;58665:35:0;;-1:-1:-1;58665:35:0;-1:-1:-1;58390:318:0;;;;;;;;;:::o;54404:124::-;15046:12;:10;:12::i;:::-;-1:-1:-1;;;;;15035:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;15035:23:0;;15027:68;;;;;-1:-1:-1;;;15027:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15027:68:0;;;;;;;;;;;;;;;54515:5:::1;54505:16;54479:23;:42:::0;54404:124::o;49947:58::-;;;;;;;;;;;;;;;:::o;53289:125::-;15046:12;:10;:12::i;:::-;-1:-1:-1;;;;;15035:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;15035:23:0;;15027:68;;;;;-1:-1:-1;;;15027:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15027:68:0;;;;;;;;;;;;;;;53378:15:::1;:28:::0;;-1:-1:-1;;;;;;53378:28:0::1;-1:-1:-1::0;;;;;53378:28:0;;;::::1;::::0;;;::::1;::::0;;53289:125::o;55169:297::-;15046:12;:10;:12::i;:::-;-1:-1:-1;;;;;15035:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;15035:23:0;;15027:68;;;;;-1:-1:-1;;;15027:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15027:68:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;55262:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;::::1;;:40;;::::0;::::1;;;;55254:102;;;;-1:-1:-1::0;;;55254:102:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;55367:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;55367:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;55424:34;;;;;;;::::1;::::0;;;;;;;;::::1;55169:297:::0;;:::o;55474:304::-;15046:12;:10;:12::i;:::-;-1:-1:-1;;;;;15035:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;15035:23:0;;15027:68;;;;;-1:-1:-1;;;15027:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15027:68:0;;;;;;;;;;;;;;;55591:9:::1;55587:115;55606:19:::0;;::::1;55587:115;;;55682:8;55647:19;:32;55667:8;;55676:1;55667:11;;;;;;;;::::0;;::::1;::::0;;;::::1;;-1:-1:-1::0;;;;;55667:11:0::1;55647:32:::0;;-1:-1:-1;55647:32:0;::::1;::::0;;;;;;-1:-1:-1;55647:32:0;:43;;-1:-1:-1;;55647:43:0::1;::::0;::::1;;::::0;;;::::1;::::0;;-1:-1:-1;55627:3:0::1;55587:115;;;;55719:51;55751:8;;55761;55719:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;;::::1;::::0;::::1;::::0;::::1;::::0;;::::1;-1:-1:-1::0;;55719:51:0::1;::::0;;::::1;::::0;;::::1;::::0;-1:-1:-1;55719:51:0;;-1:-1:-1;;;;;55719:51:0::1;55474:304:::0;;;:::o;48858:30::-;;;-1:-1:-1;;;;;48858:30:0;;:::o;66355:115::-;15046:12;:10;:12::i;:::-;-1:-1:-1;;;;;15035:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;15035:23:0;;15027:68;;;;;-1:-1:-1;;;15027:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15027:68:0;;;;;;;;;;;;;;;66422:7:::1;:5;:7::i;:::-;-1:-1:-1::0;;;;;66414:25:0::1;:48;66440:21;66414:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;66355:115::o:0;32367:151::-;-1:-1:-1;;;;;32483:18:0;;;32456:7;32483:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;32367:151::o;48976:56::-;;;;:::o;56600:370::-;15046:12;:10;:12::i;:::-;-1:-1:-1;;;;;15035:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;15035:23:0;;15027:68;;;;;-1:-1:-1;;;15027:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15027:68:0;;;;;;;;;;;;;;;56717:15:::1;::::0;-1:-1:-1;;;;;56695:37:0;;::::1;56717:15:::0;::::1;56695:37;;56687:101;;;;-1:-1:-1::0;;;56687:101:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56799:41;56815:18;56835:4;56799:15;:41::i;:::-;56899:15;::::0;56856:59:::1;::::0;-1:-1:-1;;;;;56899:15:0;;::::1;::::0;56856:59;::::1;::::0;::::1;::::0;56899:15:::1;::::0;56856:59:::1;56926:15;:36:::0;;-1:-1:-1;;;;;;56926:36:0::1;-1:-1:-1::0;;;;;56926:36:0;;;::::1;::::0;;;::::1;::::0;;56600:370::o;49130:53::-;;;;:::o;59433:129::-;59515:15;;:39;;;-1:-1:-1;;;59515:39:0;;;;59488:7;;-1:-1:-1;;;;;59515:15:0;;:37;;:39;;;;;;;;;;;;;;:15;:39;;;;;;;;;;57392:124;15046:12;:10;:12::i;:::-;-1:-1:-1;;;;;15035:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;15035:23:0;;15027:68;;;;;-1:-1:-1;;;15027:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15027:68:0;;;;;;;;;;;;;;;57466:15:::1;::::0;:42:::1;::::0;;-1:-1:-1;;;57466:42:0;;::::1;::::0;::::1;::::0;;;;;-1:-1:-1;;;;;57466:15:0;;::::1;::::0;:31:::1;::::0;:42;;;;;:15:::1;::::0;:42;;;;;;;;:15;;:42;::::1;;::::0;::::1;;;;::::0;::::1;58716:328:::0;58817:7;58839:6;58860;58881:7;58903;58925;58947;58969;58996:15;;;;;;;;;-1:-1:-1;;;;;58996:15:0;-1:-1:-1;;;;;58996:33:0;;59030:5;58996:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15769:244;15046:12;:10;:12::i;:::-;-1:-1:-1;;;;;15035:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;15035:23:0;;15027:68;;;;;-1:-1:-1;;;15027:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15027:68:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;15858:22:0;::::1;15850:73;;;;-1:-1:-1::0;;;15850:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15960:6;::::0;15939:38:::1;::::0;-1:-1:-1;;;;;15939:38:0;;::::1;::::0;15960:6:::1;::::0;::::1;;::::0;15939:38:::1;::::0;;;::::1;15988:6;:17:::0;;-1:-1:-1;;;;;15988:17:0;;::::1;;;-1:-1:-1::0;;;;;;15988:17:0;;::::1;::::0;;;::::1;::::0;;15769:244::o;23723:179::-;23781:7;23813:5;;;23837:6;;;;23829:46;;;;;-1:-1:-1;;;23829:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;23893:1;23723:179;-1:-1:-1;;;23723:179:0:o;3427:106::-;3515:10;3427:106;:::o;37914:346::-;-1:-1:-1;;;;;38016:19:0;;38008:68;;;;-1:-1:-1;;;38008:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38095:21:0;;38087:68;;;;-1:-1:-1;;;38087:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38168:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;38220:32;;;;;;;;;;;;;;;;;37914:346;;;:::o;60009:2853::-;-1:-1:-1;;;;;60141:18:0;;60133:68;;;;-1:-1:-1;;;60133:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;60220:16:0;;60212:64;;;;-1:-1:-1;;;60212:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;60296:20:0;;;;;;:14;:20;;;;;;;;60295:21;:44;;;;-1:-1:-1;;;;;;60321:18:0;;;;;;:14;:18;;;;;;;;60320:19;60295:44;60287:76;;;;;-1:-1:-1;;;60287:76:0;;;;;;;;;;;;-1:-1:-1;;;60287:76:0;;;;;;;;;;;;;;;60379:11;60376:92;;60407:28;60423:4;60429:2;60433:1;60407:15;:28::i;:::-;60450:7;;60376:92;-1:-1:-1;;;;;60484:31:0;;;;;;:25;:31;;;;;;;;60480:440;;;60568:23;;60558:6;:33;;60532:135;;;;-1:-1:-1;;;60532:135:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60696:32;60731:13;60741:2;60731:9;:13::i;:::-;60696:48;;60822:14;;60812:6;60785:24;:33;:51;;60759:149;;;;-1:-1:-1;;;60759:149:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60480:440;;60932:28;60963:24;60981:4;60963:9;:24::i;:::-;61047:18;;60932:55;;-1:-1:-1;61023:42:0;;;;;;;61095:33;;-1:-1:-1;61120:8:0;;-1:-1:-1;;;61120:8:0;;;;61119:9;61095:33;:82;;;;-1:-1:-1;;;;;;61146:31:0;;;;;;:25;:31;;;;;;;;61145:32;61095:82;:122;;;;-1:-1:-1;61202:15:0;;-1:-1:-1;;;;;61194:23:0;;;61202:15;;61194:23;;61095:122;:160;;;;-1:-1:-1;61240:15:0;;-1:-1:-1;;;;;61234:21:0;;;61240:15;;61234:21;;61095:160;61078:651;;;61282:8;:15;;-1:-1:-1;;;;61282:15:0;-1:-1:-1;;;61282:15:0;;;61383:9;;61365:12;;61282:15;;61340:53;;:38;;:20;;:24;:38::i;:::-;:42;;:53::i;:::-;61314:79;;61408:35;61427:15;61408:18;:35::i;:::-;61460:18;61481:53;61524:9;;61481:38;61506:12;;61481:20;:24;;:38;;;;:::i;:53::-;61460:74;;61549:26;61564:10;61549:14;:26::i;:::-;61592:18;61613:24;61631:4;61613:9;:24::i;:::-;61592:45;;61652:32;61673:10;61652:20;:32::i;:::-;-1:-1:-1;;61701:8:0;:16;;-1:-1:-1;;;;61701:16:0;;;-1:-1:-1;61078:651:0;61757:8;;-1:-1:-1;;;;;61866:25:0;;61741:12;61866:25;;;:19;:25;;;;;;61757:8;-1:-1:-1;;;61757:8:0;;;;;61756:9;;61866:25;;:52;;-1:-1:-1;;;;;;61895:23:0;;;;;;:19;:23;;;;;;;;61866:52;61863:99;;;-1:-1:-1;61945:5:0;61863:99;61977:7;61974:300;;;62001:12;62016:30;62042:3;62016:21;62027:9;;62016:6;:10;;:21;;;;:::i;:30::-;-1:-1:-1;;;;;62066:29:0;;;;;;:25;:29;;;;;;62001:45;;-1:-1:-1;62066:29:0;;62063:99;;;62124:22;62142:3;62124:13;:6;62135:1;62124:10;:13::i;:22::-;62116:30;62063:99;62187:16;:6;62198:4;62187:10;:16::i;:::-;62178:25;;62220:42;62236:4;62250;62257;62220:15;:42::i;:::-;61974:300;;62286:33;62302:4;62308:2;62312:6;62286:15;:33::i;:::-;62336:15;;-1:-1:-1;;;;;62336:15:0;:26;62371:4;62378:15;62371:4;62378:9;:15::i;:::-;62336:58;;;;;;;;;;;;;-1:-1:-1;;;;;62336:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62332:74;62420:15;;-1:-1:-1;;;;;62420:15:0;:26;62455:2;62460:13;62455:2;62460:9;:13::i;:::-;62420:54;;;;;;;;;;;;;-1:-1:-1;;;;;62420:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62416:70;62502:8;;-1:-1:-1;;;62502:8:0;;;;62498:357;;62541:16;;62578:15;;:28;;;-1:-1:-1;;;;;;62578:28:0;;;;;;;;;;-1:-1:-1;;;;;62578:15:0;;;;:23;;:28;;;;;;;;;;;;;;;62527:11;62578:15;:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;62578:28:0;;;;;;;;;;;;;;;;62574:270;;;;;62704:86;;;;;;;;;;;;;;;;;;;;;;;;;;62780:9;;62769:4;;62704:86;;;;;;;;;62607:199;;;62574:270;62498:357;;60009:2853;;;;;;;:::o;26550:166::-;26636:7;26672:12;26664:6;;;;26656:29;;;;-1:-1:-1;;;26656:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;26703:5:0;;;26550:166::o;56186:406::-;-1:-1:-1;;;;;56277:31:0;;;;;;:25;:31;;;;;;;;:40;;;;;;;56269:116;;;;-1:-1:-1;;;56269:116:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;56396:31:0;;;;;;:25;:31;;;;;:39;;-1:-1:-1;;56396:39:0;;;;;;;;;;;;56448:79;;56473:15;;:42;;;-1:-1:-1;;;56473:42:0;;-1:-1:-1;;;;;56473:42:0;;;;;;;;;:15;;;;;:36;;:42;;;;;:15;;:42;;;;;;;:15;;:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56448:79;56544:40;;;;;;-1:-1:-1;;;;;56544:40:0;;;;;;;;56186:406;;:::o;35526:539::-;-1:-1:-1;;;;;35632:20:0;;35624:70;;;;-1:-1:-1;;;35624:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35713:23:0;;35705:71;;;;-1:-1:-1;;;35705:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35789:47;35810:6;35818:9;35829:6;35789:20;:47::i;:::-;35869:71;35891:6;35869:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35869:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;35849:17:0;;;:9;:17;;;;;;;;;;;:91;;;;35974:20;;;;;;;:32;;35999:6;35974:24;:32::i;:::-;-1:-1:-1;;;;;35951:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;36022:35;;;;;;;35951:20;;36022:35;;;;;;;;;;;;;35526:539;;;:::o;24602:220::-;24660:7;24684:6;24680:20;;-1:-1:-1;24699:1:0;24692:8;;24680:20;24723:5;;;24727:1;24723;:5;:1;24747:5;;;;;:10;24739:56;;;;-1:-1:-1;;;24739:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25300:153;25358:7;25390:1;25386;:5;25378:44;;;;;-1:-1:-1;;;25378:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;25444:1;25440;:5;;;;;;;25300:153;-1:-1:-1;;;25300:153:0:o;59723:278::-;59811:21;59849:24;59866:6;59849:16;:24::i;:::-;59884:18;59905:41;:21;59931:14;59905:25;:41::i;:::-;59957:15;;:36;;59884:62;;-1:-1:-1;;;;;;59957:15:0;;:36;;;;;59884:62;;59957:15;:36;:15;:36;59884:62;59957:15;:36;;;;;;;;;;;;;;;;;;;;;59723:278;;;:::o;62870:931::-;62980:12;62995:13;:6;63006:1;62995:10;:13::i;:::-;62980:28;-1:-1:-1;63019:17:0;63039:16;:6;62980:28;63039:10;:16::i;:::-;63019:36;-1:-1:-1;63358:21:0;63424:22;63441:4;63424:16;:22::i;:::-;63577:18;63598:41;:21;63624:14;63598:25;:41::i;:::-;63577:62;;63689:35;63702:9;63713:10;63689:12;:35::i;:::-;63750:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62870:931;;;;;:::o;65578:433::-;65643:39;65660:6;65676:4;65643:16;:39::i;:::-;65720:8;;65713:41;;;-1:-1:-1;;;65713:41:0;;65748:4;65713:41;;;;;;65693:17;;-1:-1:-1;;;;;65720:8:0;;65713:26;;:41;;;;;;;;;;;;;;65720:8;65713:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;65713:41:0;65787:8;;65814:15;;65780:62;;;-1:-1:-1;;;65780:62:0;;-1:-1:-1;;;;;65814:15:0;;;65780:62;;;;;;;;;;;;65713:41;;-1:-1:-1;65765:12:0;;65787:8;;;;;65780:25;;:62;;;;;65713:41;;65780:62;;;;;;;65765:12;65787:8;65780:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;65780:62:0;;-1:-1:-1;65863:141:0;;;;65891:15;;:49;;;-1:-1:-1;;;65891:49:0;;;;;;;;;;-1:-1:-1;;;;;65891:15:0;;;;:38;;:49;;;;;:15;;:49;;;;;;;;:15;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;65960:32:0;;;;;;;;;;;;;;;;-1:-1:-1;65960:32:0;;;;;;;;-1:-1:-1;65960:32:0;65578:433;;;:::o;24185:158::-;24243:7;24276:1;24271;:6;;24263:49;;;;;-1:-1:-1;;;24263:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;24330:5:0;;;24185:158::o;63809:589::-;63959:16;;;63973:1;63959:16;;;63935:21;63959:16;;;;;63935:21;63959:16;;;;;;;;;;-1:-1:-1;63959:16:0;63935:40;;64004:4;63986;63991:1;63986:7;;;;;;;;-1:-1:-1;;;;;63986:23:0;;;:7;;;;;;;;;;:23;;;;64030:15;;:22;;;-1:-1:-1;;;64030:22:0;;;;:15;;;;;:20;;:22;;;;;63986:7;;64030:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;64030:22:0;64020:7;;:4;;64025:1;;64020:7;;;;;;-1:-1:-1;;;;;64020:32:0;;;:7;;;;;;;;;:32;64097:15;;64065:62;;64082:4;;64097:15;64115:11;64065:8;:62::i;:::-;64166:15;;:224;;-1:-1:-1;;;64166:224:0;;;;;;;;:15;:224;;;;;;64344:4;64166:224;;;;;;64364:15;64166:224;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;64166:15:0;;;;:66;;64247:11;;64317:4;;64344;64364:15;64166:224;;;;;;;;;;;;;;;;:15;:224;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65050:520;65230:15;;65198:62;;65215:4;;-1:-1:-1;;;;;65230:15:0;65248:11;65198:8;:62::i;:::-;65302:15;;65506;;65302:260;;;-1:-1:-1;;;65302:260:0;;65374:4;65302:260;;;;;;;;;;:15;:260;;;;;;;;;;-1:-1:-1;;;;;65506:15:0;;;65302:260;;;;65536:15;65302:260;;;;;;:15;;;;;:31;;65341:9;;65302:260;;;;;;;;;;;;;;;65341:9;65302:15;:260;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64406:636;64574:16;;;64588:1;64574:16;;;;;;;;;64550:21;;64574:16;;;64550:21;;64574:16;;;;;-1:-1:-1;64574:16:0;64550:40;;64619:4;64601;64606:1;64601:7;;;;;;;;-1:-1:-1;;;;;64601:23:0;;;:7;;;;;;;;;;:23;;;;64645:15;;:22;;;-1:-1:-1;;;64645:22:0;;;;:15;;;;;:20;;:22;;;;;64601:7;;64645:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;64645:22:0;64635:7;;:4;;64640:1;;64635:7;;;;;;-1:-1:-1;;;;;64635:32:0;;;:7;;;;;;;;;:32;64688:8;;64678:7;;64688:8;;;64678:4;;64683:1;;64678:7;;;;;;-1:-1:-1;;;;;64678:18:0;;;:7;;;;;;;;;:18;64741:15;;64709:62;;64726:4;;64741:15;64759:11;64709:8;:62::i;:::-;64810:15;;:224;;-1:-1:-1;;;64810:224:0;;;;;;;;:15;:224;;;;;;-1:-1:-1;;;;;64810:224:0;;;;;;;65008:15;64810:224;;;;;;;;;;;;;;;;;;;;;:15;;;;;:69;;64894:11;;64965:4;;64984:9;;65008:15;64810:224;;;;;;;;;;;;;;:15;:224;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

Swarm Source

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