ETH Price: $3,309.42 (-2.98%)
Gas: 12 Gwei

Token

Shiwa (SHIWA)
 

Overview

Max Total Supply

1,000,000,000,000,000 SHIWA

Holders

339

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
819,691,720,250.251629923 SHIWA

Value
$0.00
0xceb31dcaf08cf5ea3437bd3c0d669837673ca1d6
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:
Shiwa

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-01-18
*/

// File: @utils/math/SafeMathUint.sol



pragma solidity ^0.8.1;

/**
 * @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: @utils/math/SafeMathInt.sol



pragma solidity ^0.8.1;

/**
 * @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: @uniswap/interfaces/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: @uniswap/interfaces/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: @uniswap/interfaces/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: @uniswap/interfaces/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: @openzeppelin/contracts/utils/structs/EnumerableSet.sol



// OpenZeppelin Contracts (last updated v4.8.0) (utils/structs/EnumerableSet.sol)

// This file was procedurally generated from scripts/generate/templates/EnumerableSet.js.



pragma solidity ^0.8.0;



/**

 * @dev Library for managing

 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive

 * types.

 *

 * Sets have the following properties:

 *

 * - Elements are added, removed, and checked for existence in constant time

 * (O(1)).

 * - Elements are enumerated in O(n). No guarantees are made on the ordering.

 *

 * ```

 * contract Example {

 *     // Add the library methods

 *     using EnumerableSet for EnumerableSet.AddressSet;

 *

 *     // Declare a set state variable

 *     EnumerableSet.AddressSet private mySet;

 * }

 * ```

 *

 * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)

 * and `uint256` (`UintSet`) are supported.

 *

 * [WARNING]

 * ====

 * Trying to delete such a structure from storage will likely result in data corruption, rendering the structure

 * unusable.

 * See https://github.com/ethereum/solidity/pull/11843[ethereum/solidity#11843] for more info.

 *

 * In order to clean an EnumerableSet, you can either remove all elements one by one or create a fresh instance using an

 * array of EnumerableSet.

 * ====

 */

library EnumerableSet {

    // To implement this library for multiple types with as little code

    // repetition as possible, we write it in terms of a generic Set type with

    // bytes32 values.

    // The Set implementation uses private functions, and user-facing

    // implementations (such as AddressSet) are just wrappers around the

    // underlying Set.

    // This means that we can only create new EnumerableSets for types that fit

    // in bytes32.



    struct Set {

        // Storage of set values

        bytes32[] _values;

        // Position of the value in the `values` array, plus 1 because index 0

        // means a value is not in the set.

        mapping(bytes32 => uint256) _indexes;

    }



    /**

     * @dev Add a value to a set. O(1).

     *

     * Returns true if the value was added to the set, that is if it was not

     * already present.

     */

    function _add(Set storage set, bytes32 value) private returns (bool) {

        if (!_contains(set, value)) {

            set._values.push(value);

            // The value is stored at length-1, but we add 1 to all indexes

            // and use 0 as a sentinel value

            set._indexes[value] = set._values.length;

            return true;

        } else {

            return false;

        }

    }



    /**

     * @dev Removes a value from a set. O(1).

     *

     * Returns true if the value was removed from the set, that is if it was

     * present.

     */

    function _remove(Set storage set, bytes32 value) private returns (bool) {

        // We read and store the value's index to prevent multiple reads from the same storage slot

        uint256 valueIndex = set._indexes[value];



        if (valueIndex != 0) {

            // Equivalent to contains(set, value)

            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in

            // the array, and then remove the last element (sometimes called as 'swap and pop').

            // This modifies the order of the array, as noted in {at}.



            uint256 toDeleteIndex = valueIndex - 1;

            uint256 lastIndex = set._values.length - 1;



            if (lastIndex != toDeleteIndex) {

                bytes32 lastValue = set._values[lastIndex];



                // Move the last value to the index where the value to delete is

                set._values[toDeleteIndex] = lastValue;

                // Update the index for the moved value

                set._indexes[lastValue] = valueIndex; // Replace lastValue's index to valueIndex

            }



            // Delete the slot where the moved value was stored

            set._values.pop();



            // Delete the index for the deleted slot

            delete set._indexes[value];



            return true;

        } else {

            return false;

        }

    }



    /**

     * @dev Returns true if the value is in the set. O(1).

     */

    function _contains(Set storage set, bytes32 value) private view returns (bool) {

        return set._indexes[value] != 0;

    }



    /**

     * @dev Returns the number of values on the set. O(1).

     */

    function _length(Set storage set) private view returns (uint256) {

        return set._values.length;

    }



    /**

     * @dev Returns the value stored at position `index` in the set. O(1).

     *

     * Note that there are no guarantees on the ordering of values inside the

     * array, and it may change when more values are added or removed.

     *

     * Requirements:

     *

     * - `index` must be strictly less than {length}.

     */

    function _at(Set storage set, uint256 index) private view returns (bytes32) {

        return set._values[index];

    }



    /**

     * @dev Return the entire set in an array

     *

     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed

     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that

     * this function has an unbounded cost, and using it as part of a state-changing function may render the function

     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.

     */

    function _values(Set storage set) private view returns (bytes32[] memory) {

        return set._values;

    }



    // Bytes32Set



    struct Bytes32Set {

        Set _inner;

    }



    /**

     * @dev Add a value to a set. O(1).

     *

     * Returns true if the value was added to the set, that is if it was not

     * already present.

     */

    function add(Bytes32Set storage set, bytes32 value) internal returns (bool) {

        return _add(set._inner, value);

    }



    /**

     * @dev Removes a value from a set. O(1).

     *

     * Returns true if the value was removed from the set, that is if it was

     * present.

     */

    function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) {

        return _remove(set._inner, value);

    }



    /**

     * @dev Returns true if the value is in the set. O(1).

     */

    function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) {

        return _contains(set._inner, value);

    }



    /**

     * @dev Returns the number of values in the set. O(1).

     */

    function length(Bytes32Set storage set) internal view returns (uint256) {

        return _length(set._inner);

    }



    /**

     * @dev Returns the value stored at position `index` in the set. O(1).

     *

     * Note that there are no guarantees on the ordering of values inside the

     * array, and it may change when more values are added or removed.

     *

     * Requirements:

     *

     * - `index` must be strictly less than {length}.

     */

    function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) {

        return _at(set._inner, index);

    }



    /**

     * @dev Return the entire set in an array

     *

     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed

     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that

     * this function has an unbounded cost, and using it as part of a state-changing function may render the function

     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.

     */

    function values(Bytes32Set storage set) internal view returns (bytes32[] memory) {

        bytes32[] memory store = _values(set._inner);

        bytes32[] memory result;



        /// @solidity memory-safe-assembly

        assembly {

            result := store

        }



        return result;

    }



    // AddressSet



    struct AddressSet {

        Set _inner;

    }



    /**

     * @dev Add a value to a set. O(1).

     *

     * Returns true if the value was added to the set, that is if it was not

     * already present.

     */

    function add(AddressSet storage set, address value) internal returns (bool) {

        return _add(set._inner, bytes32(uint256(uint160(value))));

    }



    /**

     * @dev Removes a value from a set. O(1).

     *

     * Returns true if the value was removed from the set, that is if it was

     * present.

     */

    function remove(AddressSet storage set, address value) internal returns (bool) {

        return _remove(set._inner, bytes32(uint256(uint160(value))));

    }



    /**

     * @dev Returns true if the value is in the set. O(1).

     */

    function contains(AddressSet storage set, address value) internal view returns (bool) {

        return _contains(set._inner, bytes32(uint256(uint160(value))));

    }



    /**

     * @dev Returns the number of values in the set. O(1).

     */

    function length(AddressSet storage set) internal view returns (uint256) {

        return _length(set._inner);

    }



    /**

     * @dev Returns the value stored at position `index` in the set. O(1).

     *

     * Note that there are no guarantees on the ordering of values inside the

     * array, and it may change when more values are added or removed.

     *

     * Requirements:

     *

     * - `index` must be strictly less than {length}.

     */

    function at(AddressSet storage set, uint256 index) internal view returns (address) {

        return address(uint160(uint256(_at(set._inner, index))));

    }



    /**

     * @dev Return the entire set in an array

     *

     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed

     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that

     * this function has an unbounded cost, and using it as part of a state-changing function may render the function

     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.

     */

    function values(AddressSet storage set) internal view returns (address[] memory) {

        bytes32[] memory store = _values(set._inner);

        address[] memory result;



        /// @solidity memory-safe-assembly

        assembly {

            result := store

        }



        return result;

    }



    // UintSet



    struct UintSet {

        Set _inner;

    }



    /**

     * @dev Add a value to a set. O(1).

     *

     * Returns true if the value was added to the set, that is if it was not

     * already present.

     */

    function add(UintSet storage set, uint256 value) internal returns (bool) {

        return _add(set._inner, bytes32(value));

    }



    /**

     * @dev Removes a value from a set. O(1).

     *

     * Returns true if the value was removed from the set, that is if it was

     * present.

     */

    function remove(UintSet storage set, uint256 value) internal returns (bool) {

        return _remove(set._inner, bytes32(value));

    }



    /**

     * @dev Returns true if the value is in the set. O(1).

     */

    function contains(UintSet storage set, uint256 value) internal view returns (bool) {

        return _contains(set._inner, bytes32(value));

    }



    /**

     * @dev Returns the number of values in the set. O(1).

     */

    function length(UintSet storage set) internal view returns (uint256) {

        return _length(set._inner);

    }



    /**

     * @dev Returns the value stored at position `index` in the set. O(1).

     *

     * Note that there are no guarantees on the ordering of values inside the

     * array, and it may change when more values are added or removed.

     *

     * Requirements:

     *

     * - `index` must be strictly less than {length}.

     */

    function at(UintSet storage set, uint256 index) internal view returns (uint256) {

        return uint256(_at(set._inner, index));

    }



    /**

     * @dev Return the entire set in an array

     *

     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed

     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that

     * this function has an unbounded cost, and using it as part of a state-changing function may render the function

     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.

     */

    function values(UintSet storage set) internal view returns (uint256[] memory) {

        bytes32[] memory store = _values(set._inner);

        uint256[] memory result;



        /// @solidity memory-safe-assembly

        assembly {

            result := store

        }



        return result;

    }

}
// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

    /**
     * @dev 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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from,
        address to,
        uint256 amount
    ) external returns (bool);
}

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol


// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;




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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, 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}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, 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}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

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

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

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

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

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

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

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

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

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

// File: Shiwa.sol

/*

     _______. __    __   __  ____    __    ____  ___  V2    

    /       ||  |  |  | |  | \   \  /  \  /   / /   \     

   |   (----`|  |__|  | |  |  \   \/    \/   / /  ^  \    

    \   \    |   __   | |  |   \            / /  /_\  \   

.----)   |   |  |  |  | |  |    \    /\    / /  _____  \  

|_______/    |__|  |__| |__|     \__/  \__/ /__/     \__\ 

                   The King is Back 



-Website: https://shiwa.finance

-Telegram: https://t.me/shiwaportal

-Telegram announcements: https://t.me/shiwaAnnouncements

-Twitter: https://twitter.com/shiwa_finance

-Facebook: https://www.facebook.com/OFFICIALSHIWA/

-Github: https://github.com/Shiwa-Finance

-OpenSea: https://opensea.io/ShiwaOfficial



SHIWA is a true decentralized utility meme token. Our mission is to empower the community via the Dao Governance,

We are a constantly evolving decentralised ecosystem that puts its destiny in the hands of its holders. 

SHIWA is a token that combines the power of a Wolf meme with real utility in the blockchain, including NFT Collections,

Web3 Marketplace & DAO Governance utility. Our goal is a honourable one, we want to improve transparency, honour,

trust & success in the cryptocurrency industry thus making SHIWA a safe haven for all our investors!



Shiwa Version II go live at 19/01/22 12:00 UTC

Visit our website to migrate from Shiwa version 1 to Shiwa version 2.



The King of the both Ethereums is back, renewed and more KING than ever!

Shiwa V2 is the first contract on the entire blockchain to deliver dynamic rewards to all holders that

will be voted in our DAO. The token of the moment will be in your wallet just for holding Shiwa!

*/


pragma solidity ^0.8.9;











contract Shiwa is ERC20, Ownable {

    using SafeMathUint for uint256;

    using SafeMathInt for int256;

    using EnumerableSet for EnumerableSet.AddressSet;



    mapping(address => bool) public isExcludedFromFees;

    mapping(address => bool) public isExemptedFromHeld;

    mapping(address => bool) public isExcludedFromReward;

    address[] public ExclusionRewardList;

    uint256 constant private MAGNITUDE = 2**165;

    mapping(address => uint256) private magnifiedDividendPerShareMap; //token=>amount

    mapping(address => mapping(address => int256)) private magnifiedDividendCorrectionsMap; //token=>user=>amount

    mapping(address => mapping(address => uint256)) private withdrawnDividendsMap; //token=>user=>amount

    mapping(address => bool) public pairMap;

    EnumerableSet.AddressSet private _dividendTokenSet; //div-addressSet



    uint256 public currentTXCount;

    uint256 public SWAP_MIN_TOKEN = 1000000000000000000000;

    uint256 public SWAP_MIN_TX = 20;

    bool public SHOULD_SWAP = true;

    bool public TAKE_FEE = true;

    uint256 public MAX_RATIO = 500; //5% of total supply() at the time of tx

    uint256 public BUY_TX_FEE = 700; //7% Max fee allowed

    uint256 public SELL_TX_FEE = 700; //7% Max fee allowed

    uint256 public USUAL_TX_FEE = 700; //7% Max fee allowed

    uint256 public MARK_FEE = 9000;

    uint256 public DEV_FEE = 100;

    uint256 public LPR_FEE = 1000;

    uint256 public swapTokensAmount; //total tokens to be swapped

    address public currentRewardToken;

    uint256 private constant maxTokenLen = 5; //max dividend tokens

    //Fee in basis points (BP) 1%=100 points, min 0.1% = 10bp

    //amount.mul(fee).div(10000::10k) := fee

    //amount.sub(fee) = rest

    uint256 private constant BASE_DIVIDER = 10000; // constant 100%

    uint256 private constant MIN_DIVIDER = 100; // constant min 1%

    address payable private constant BURN_WALLET = payable(0x000000000000000000000000000000000000dEaD);

    address payable public MARK_WALLET = payable(0x9D38F6581Cb7635CD5bf031Af1E1635b42db74fe);

    address payable public DEV_WALLET = payable(0x9D38F6581Cb7635CD5bf031Af1E1635b42db74fe);



    IUniswapV2Router02 public UniswapV2Router;

    address public uniswapV2Pair;



    event DividendsDistributed(

        address token,

        uint256 weiAmount

    );

    event DividendWithdrawn(

        address to,

        address token,

        uint256 weiAmount

    );



    receive() external payable {}



    constructor(address router) ERC20("Shiwa", "SHIWA") {

        uint256 amount = (1000000000000000 * 10 ** decimals());

        _mint(_msgSender(), amount);

        UniswapV2Router = IUniswapV2Router02(router);

        _initPairCreationHook();

        isExcludedFromFees[_msgSender()] = true;

        isExcludedFromFees[MARK_WALLET] = true;

        isExcludedFromFees[DEV_WALLET] = true;

        isExcludedFromFees[BURN_WALLET] = true;

        isExcludedFromFees[address(0)] = true;

        isExcludedFromFees[address(this)] = true;

        isExemptedFromHeld[router] = true;

        isExcludedFromReward[_msgSender()] = true;

        ExclusionRewardList.push(_msgSender());

        pairMap[router] = true;

        _dividendTokenSet.add(address(this));

        currentRewardToken = address(this);

    }



    /**

     * liquid guard for potential <SWC-107>.

     */

    bool public isNowLiquid;



    /**

     * @dev get total token supply - excluded

     * @notice extension of the following implementations for Dividends:

     * https://github.com/ethereum/EIPs/issues/1726

     * https://github.com/Roger-Wu/erc1726-dividend-paying-token/blob/master/contracts

     * https://github.com/Alexander-Herranz/ERC20DividendPayingToken

     * deduct the supply from excluded reward since those will be distributed.

     */

    function getReducedSupply() public view returns(uint256) {

        uint256 deductSupply = 0;

        uint256 eLen = ExclusionRewardList.length;

        if (eLen > 0) {

            for (uint256 i = 0; i < eLen; i++) {

                deductSupply += balanceOf(ExclusionRewardList[i]);

            }

        }

        deductSupply += balanceOf(BURN_WALLET) + 

                        balanceOf(address(0)) + 

                        balanceOf(address(this)) + 

                        balanceOf(address(UniswapV2Router));

        uint256 supply = totalSupply();

        uint256 netSupply = (supply - deductSupply) == 0 ? (1000 * 10 ** decimals()) : (supply - deductSupply);

        return netSupply;

    }



    /**

     * @dev See {IERC20-transfer}.

     *

     * Requirements:

     *

     * - `to` cannot be the zero address.

     * - the caller must have a balance of at least `amount`.

     */

    function transfer(address to, uint256 amount) public override(ERC20) returns (bool) {

        address owner = _msgSender();

        _preTransferHook(owner, to, 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}.

     *

     * NOTE: Does not update the allowance if the current allowance

     * is the maximum `uint256`.

     *

     * Requirements:

     *

     * - `from` and `to` cannot be the zero address.

     * - `from` must have a balance of at least `amount`.

     * - the caller must have allowance for ``from``'s tokens of at least

     * `amount`.

     */

    function transferFrom(

        address from,

        address to,

        uint256 amount

    ) public override(ERC20) returns (bool) {

        address spender = _msgSender();

        _spendAllowance(from, spender, amount);

        _preTransferHook(from, to, amount);

        return true;

    }



    /**

     * @dev handles token liquidity and distributions

     * - swap fees to ETH

     * - provide liquidity

     * - distribute tokens

     * - doesn't revert on failure <SWC-113>.

     */

    function liquidSwapProvider(uint256 tokens) private returns (bool) {

        if (isNowLiquid == false) {

            isNowLiquid = true;

            uint256 prevTokens = balanceOf(address(this));

            uint256 lprTokens = (tokens * LPR_FEE) / BASE_DIVIDER;

            uint256 tokensToSwap = tokens - lprTokens;



            if (currentRewardToken == address(this)) { //this_token

                //distribute rewards

                uint256 splitTokens = tokensToSwap / 2;

                _selfDistributeDividends(currentRewardToken, splitTokens);

                tokensToSwap -= splitTokens;

            }



            uint256 prevRewardBal = IERC20(currentRewardToken).balanceOf(address(this));

            _SwapDefinitionHook(tokensToSwap,currentRewardToken);



            if (currentRewardToken != address(this)) { //different_token

                uint256 currentRewardBal = IERC20(currentRewardToken).balanceOf(address(this));

                uint256 rewardBal = currentRewardBal != 0 && prevRewardBal != 0 ? currentRewardBal - prevRewardBal : 0;



                if (rewardBal > 0) {

                    //distribute rewards

                    _selfDistributeDividends(currentRewardToken, rewardBal);

                }

            }



            uint256 contractETHBalance = address(this).balance;

            if (contractETHBalance > 0) {

                uint256 splitMarkTokens = (contractETHBalance * MARK_FEE) / BASE_DIVIDER;

                uint256 splitDevTokens = (contractETHBalance * DEV_FEE) / BASE_DIVIDER;

                uint256 splitLprTokens = (contractETHBalance * LPR_FEE) / BASE_DIVIDER;



                if (lprTokens > 0 && splitLprTokens > 0) {

                    addLiquidity(lprTokens, splitLprTokens);

                }



                _sendValueHook(MARK_WALLET, splitMarkTokens);

                _sendValueHook(DEV_WALLET, splitDevTokens);

            }



            uint256 currentTokens = balanceOf(address(this));

            if (currentTokens < prevTokens) {

                swapTokensAmount = 0;

            }



            isNowLiquid = false;

            return true;

        } else {

            return false;

        }

    }



    /**

     * @dev swap fee tokens to ETH

     * doesn't revert on failure <SWC-113>.

     */

    function _ethSwapHook(uint256 tokenAmount) private returns (bool) {

        bool isSuccess = false;

        address[] memory path = new address[](2);

        path[0] = address(this);

        path[1] = UniswapV2Router.WETH();

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



        try UniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(

            tokenAmount,

            0,

            path,

            address(this),

            block.timestamp

        ) {

            isSuccess = true;

        } catch Error(string memory /*reason*/) {

            isSuccess = false;

        } catch (bytes memory /*lowLevelData*/) {

            isSuccess = false;

        }

        return isSuccess;

    }



    /**

     * @dev swap ETH fee to tokens

     * doesn't revert on failure <SWC-113>.

     */

    function _tokenSwapHook(uint256 ethAmount, address token) private returns (bool) {

        bool isSuccess = false;

        address[] memory path = new address[](2);

        path[0] = UniswapV2Router.WETH();

        path[1] = token;



        try UniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: ethAmount}(

            0, 

            path, 

            address(this), 

            block.timestamp

        ) {

            isSuccess = true;

        } catch Error(string memory /*reason*/) {

            isSuccess = false;

        } catch (bytes memory /*lowLevelData*/) {

            isSuccess = false;

        }

        return isSuccess;

    }



    /**

     * @dev _SwapDefinitionHook handle token swaps

     */

    function _SwapDefinitionHook(uint256 tokenAmount, address token) private {

        if (tokenAmount > 0) {

            if (token == address(this)) {

                _ethSwapHook(tokenAmount);

            } else {

                _ethSwapHook(tokenAmount);

                uint256 contractETHBalance = address(this).balance;

                uint256 splitTokens = contractETHBalance / 2;

                if (splitTokens > 0) {

                    _tokenSwapHook(splitTokens, token);

                }

            }

        }

    }



    /**

     * @dev add liquidity to pair

     * doesn't revert on failure <SWC-113>.

     */

    function addLiquidity(uint256 tokenAmount, uint256 ETHAmount) private returns (bool) {

        if (tokenAmount > 0 && ETHAmount > 0) {

            bool isSuccess = false;

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



            try UniswapV2Router.addLiquidityETH{value: ETHAmount}(

                address(this),

                tokenAmount,

                0,

                0,

                BURN_WALLET,

                block.timestamp

            ) {

                isSuccess = true;

            } catch Error(string memory /*reason*/) {

                isSuccess = false;

            } catch (bytes memory /*lowLevelData*/) {

                isSuccess = false;

            }

            return isSuccess;

        } else {

            return false;

        }

    }



    /**

     * @dev set minimum amount of tokens before the `liquidSwapProvider` is called.

     */

    function setSwapMinToken(uint256 amount) public onlyOwner {

        require(amount > 0,"ERC20: amount is zero");

        SWAP_MIN_TOKEN = amount;

    }



    /**

     * @dev set whether there should be fees on transactions.

     */

    function setFeeStatus(bool state) public onlyOwner {

        TAKE_FEE = state;

    }



    /**

     * @dev set isNowLiquid for liquidSwapProvider.

     */

    function setIsNowLiquid(bool state) public onlyOwner {

        isNowLiquid = state;

    }



    /**

     * @dev set minimum tx count for liquidSwapProvider.

     */

    function setMinTX(uint256 count) public onlyOwner {

        SWAP_MIN_TX = count;

    }



    /**

     * @dev set current tx count for liquidSwapProvider.

     */

    function setTXCount(uint256 count) public onlyOwner {

        currentTXCount = count;

    }



    /**

     * @dev set whether `liquidSwapProvider` should be called if the requirements are met.

     */

    function setSwapStatus(bool state) public onlyOwner {

        SHOULD_SWAP = state;

    }



    /**

     * @dev set maximum percentage of tokens one wallet can have.

     */

    function setMaxRatio(uint256 ratio) public onlyOwner {

        require((ratio >= MIN_DIVIDER) && (ratio <= BASE_DIVIDER), "ERC20: ratio is zero");

        MAX_RATIO = ratio;

    }



    /**

     * @dev exempt wallet from maximum held limit such is UniswapV2Pair.

     */

    function setExemptHeldList(address[] memory wallets, bool state) public onlyOwner {

        uint256 len = wallets.length;



        for (uint256 i = 0; i < len; i++) {

            isExemptedFromHeld[wallets[i]] = state;

        }

    }



    /**

     * @dev set transaction fee.

     */

    function setTXFee(

        uint256 buyFee,

        uint256 sellFee,

        uint256 usualFee

    ) public onlyOwner {

        require(buyFee <= 700 && sellFee <= 700 && usualFee <= 700, "ERC20: amount exceeds maximum allowed");

        BUY_TX_FEE = buyFee;

        SELL_TX_FEE = sellFee;

        USUAL_TX_FEE = usualFee;

    }



    /**

     * @dev set provider fees.

     */

    function setProviderFee(

        uint256[] memory fees

    ) public onlyOwner {

        uint256 totalFees;

        uint256 len = 4;



        for (uint256 i = 0; i < len; i++) {

            totalFees += fees[i];

        }

        require(totalFees == BASE_DIVIDER, "ERC20: fee is out of scope");



        MARK_FEE = fees[0];

        DEV_FEE = fees[1];

        LPR_FEE = fees[2];

    }



    /**

     * @dev set pair maps for uniswap router or pair.

     */

    function setPairMapList(address[] memory pairs, bool state) public onlyOwner {

        uint256 len = pairs.length;



        for (uint256 i = 0; i < len; i++) {

            address pair = pairs[i];

            if (pair != uniswapV2Pair && pair != address(UniswapV2Router)) {

                pairMap[pair] = state;

            }

        }

    }



    /**

     * @dev set fee wallet for inclusion or exclusion of fees.

     */

    function setFeeWalletList(address[] memory wallets, bool state) public onlyOwner {

        _feeWalletHook(wallets, state);

    }



    /**

     * @dev set provider wallets.

     */

    function setProviderWallets(address payable markWallet, address payable devWallet) public onlyOwner {

        require(_walletVerifyHook(MARK_WALLET) && _walletVerifyHook(DEV_WALLET), "ERC20: wallet not allowed");

        MARK_WALLET = markWallet;

        DEV_WALLET = devWallet;

        address[] memory wallets = new address[](2);

        wallets[0] = markWallet;

        wallets[1] = devWallet;

        _feeWalletHook(wallets, true);

    }



    /**

     * @dev _feeWalletHook to include or exclude wallets for fees.

     */

    function _feeWalletHook(address[] memory wallets, bool state) private {

        uint256 len = wallets.length;



        for (uint256 i = 0; i < len; i++) {

            address wallet = wallets[i];

            isExcludedFromFees[wallet] = state;

        }

    }



    /**

     * @dev Transfers ownership of the contract to a new account (`newOwner`).

     * Can only be called by the current owner.

     */

    function transferOwnership(address newOwner) public override(Ownable) onlyOwner {

        require(_walletVerifyHook(newOwner), "Ownable: new owner is the zero address");

        _transferOwnership(newOwner);

    }



    /**

     * @dev overrides the `renounceOwnership`.

     */

    function renounceOwnership() public override(Ownable) onlyOwner {

        _transferOwnership(owner());

    }



    /// @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()`. or

    ///     `(token * 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(address token, uint256 dividendTokenAmount) public onlyOwner {

        require(_dividendTokenSet.contains(token), "ERC20: invalid token");

        require(getReducedSupply() > 0 && dividendTokenAmount > 0, "ERC20: zero value transfer");

        if (token == address(this)) {

            _transfer(_msgSender(), address(this), dividendTokenAmount);

        } else {

            IERC20(token).transferFrom(_msgSender(), address(this), dividendTokenAmount);

        }

        _selfDistributeDividends(token, dividendTokenAmount);

    }



    /**

     * @dev set current reward token for dividends.

     */

    function setCurrentRewardToken(address token) public onlyOwner {

        require(_dividendTokenSet.contains(token) || _dividendTokenSet.length() <= maxTokenLen, "ERC20: token not found reached maxLen");

        if (!_dividendTokenSet.contains(token)) {

            _dividendTokenSet.add(token);

        }

        currentRewardToken = token;

    }



    /**

     * @dev recover ERC20 tokens.

     */

    function recoverERC20(address token, uint256 amount) public onlyOwner {

        IERC20(token).transfer(_msgSender(), amount);

    }



    /**

     * @dev _preTransferHook: used for pre_transfer actions.

     */

    function _preTransferHook(

        address from, 

        address to, 

        uint256 amount

    ) private returns (bool) {

        require(amount > 0, "ERC20: transfer amount is zero");

        require(from != address(0) && to != address(0), "ERC20: transfer address is zero");

        uint256 actualAmount = amount;

        //anyone who's excludedFromFees = no held limit

        //anyone who's exemptedFromHeld = no held limit

        //no exclusion on router as I see

        //no exclusion on pair (should be exempted) && router?

        if (!isExcludedFromFees[to] && !isExemptedFromHeld[to]) {

            //not excluded or exempted

            require((balanceOf(to) + amount) <= ((totalSupply() * MAX_RATIO) / BASE_DIVIDER), "ERC20: exceeds max holding");

        }



        if (!pairMap[from]) {

            //not a uniswap pair

            _swapProviderHook(); //performs swap and dist if needed

        }



        if (TAKE_FEE && !isExcludedFromFees[from] && !isExcludedFromFees[to]) {

            //take fee

            uint256 feeAmount;

            if (pairMap[from]) {

                //@isBuy=true

                feeAmount = (amount * BUY_TX_FEE) / BASE_DIVIDER;

            } else if (pairMap[to]) {

                //@isSell=true

                feeAmount = (amount * SELL_TX_FEE) / BASE_DIVIDER;

            }

            else {

                //@isUsual=true

                feeAmount = (amount * USUAL_TX_FEE) / BASE_DIVIDER;

            }

            amount = amount - feeAmount;

            _transfer(from, address(this), feeAmount);

            swapTokensAmount += feeAmount;

        }

        _transfer(from, to, amount); //ordinary transfer

        _postTransferHook(from, to, actualAmount);

        currentTXCount++;

        return true;

    }



    /**

     * @dev _postTransferHook for handling dividends.

     */

    function _postTransferHook(address from, address to, uint256 value) private {

        if (!isExcludedFromReward[from]) {

            _multiTransferHook(from, to, value); //usual correction

        }

    }



    /**

     * @dev _multiTransferHook for handling postTransfer dividends.

     */

    function _multiTransferHook(address from, address to, uint256 value) private {

        address[] memory tokenArray = getDividendTokenList();

        uint256 len = tokenArray.length;



        for (uint256 i = 0; i < len; i++) {

            address token = tokenArray[i];

            int256 _magCorrection = (magnifiedDividendPerShareMap[token] * value).toInt256Safe();

            magnifiedDividendCorrectionsMap[token][from] = magnifiedDividendCorrectionsMap[token][from].add(_magCorrection);

            magnifiedDividendCorrectionsMap[token][to] = magnifiedDividendCorrectionsMap[token][to].sub(_magCorrection);

        }

    }



    /**

     * @dev _initPairCreationHook: create UniswapV2Pair for <Native>:<WETH>.

     */

    function _initPairCreationHook() private returns (bool) {

        uniswapV2Pair = IUniswapV2Factory(UniswapV2Router.factory()).createPair(

            address(this), 

            UniswapV2Router.WETH()

        );

        isExemptedFromHeld[uniswapV2Pair] = true;

        pairMap[uniswapV2Pair] = true;

        return true;

    }



    /**

     * @dev _sendValueHook: doesn't revert on failed ether transfer <SWC-113>.

     */

    function _sendValueHook(address payable recipient, uint256 amount) private returns (bool) {

        bool success = false;

        if (_walletVerifyHook(recipient) && amount > 0) {

            (success, ) = recipient.call{value: amount, gas: 5000}("");

        }

        return success;

    }



    /**

     * @dev _walletVerifyHook: check for potential invalid address.

     */

    function _walletVerifyHook(address wallet) private view returns (bool) {

        return wallet != address(0) &&

               wallet != address(BURN_WALLET) &&

               wallet != address(this) &&

               wallet != address(UniswapV2Router);

    }



    /**

     * @dev _swapProviderHook: check for swap requirements.

     */

    function _swapProviderHook() private returns (bool) {

        if (SHOULD_SWAP && currentTXCount >= SWAP_MIN_TX && swapTokensAmount >= SWAP_MIN_TOKEN) {

            liquidSwapProvider(swapTokensAmount);

        }

        return true;

    }



    /**

     * @dev exclude wallets such as initial from acquiring fees.

     */

    function excludeRewardWallet(address wallet) public onlyOwner {

        if (!isExcludedFromReward[wallet]) {

            isExcludedFromReward[wallet] = true;

            ExclusionRewardList.push(wallet);

        }

    }



    /// @dev internal distributeDividend tokens.

    function _selfDistributeDividends(address token, uint256 dividendTokenAmount) private {

        magnifiedDividendPerShareMap[token] = magnifiedDividendPerShareMap[token] + (

            (dividendTokenAmount) * (MAGNITUDE) / getReducedSupply()        

        );

        emit DividendsDistributed(token, dividendTokenAmount);

    }



    /// @notice Withdraws the ether distributed to the sender.

    /// @dev It emits a `DividendWithdrawn` event if the amount of withdrawn ether is greater than 0.

    function withdrawDividend(address token) public {

        require(!isExcludedFromReward[_msgSender()], "ERC20: excluded from reward");

        require(_dividendTokenSet.contains(token), "ERC20: invalid token");

        uint256 _withdrawableDividend = withdrawableDividendOf(_msgSender(), token);



        if (_withdrawableDividend > 0) {

            withdrawnDividendsMap[token][_msgSender()] = withdrawnDividendsMap[token][_msgSender()] + (_withdrawableDividend);

            emit DividendWithdrawn(_msgSender(), token, _withdrawableDividend);

            if (token == address(this)) {

                _transfer(address(this), _msgSender(), _withdrawableDividend);

            } else {

                IERC20(token).transfer(_msgSender(), _withdrawableDividend);

            }

        }

    }



    /// @dev get dividend token list

    function getDividendTokenList() public view returns (address[] memory) {

        uint256 len = _dividendTokenSet.length();

        address[] memory tokenArray = new address[](len);



        for (uint256 i = 0; i < len; i++) {

            tokenArray[i] = _dividendTokenSet.at(i);

        }



        return tokenArray;

    }



    /// @dev withdrawDividend for all tokens

    function multiWithdrawDividend() public {

        require(!isExcludedFromReward[_msgSender()], "ERC20: excluded from reward");

        address[] memory tokenArray = getDividendTokenList();

        uint256 len = tokenArray.length;



        for (uint256 i = 0; i < len; i++) {

            withdrawDividend(tokenArray[i]);

        }

    }



    /// @notice View the amount of dividend in wei that an address can withdraw.

    /// @param _owner The address of a token holder.

    /// @return The amount of dividend in wei that `_owner` can withdraw.

    function dividendOf(address _owner, address _token) public view returns(uint256) {

        return !isExcludedFromReward[_owner] ? withdrawableDividendOf(_owner, _token) : 0;

    }



    /// @dev dividendOf for all tokens

    function dividendOfAll(address _owner) public view returns(uint256[] memory) {

        address[] memory tokenArray = getDividendTokenList();

        uint256 len = tokenArray.length;

        uint256[] memory variableArray = new uint256[](len);



        for (uint256 i = 0; i < len; i++) {

            address _token = tokenArray[i];

            variableArray[i] = dividendOf(_owner, _token);

        }



        return variableArray;

    }



    /// @notice View the amount of dividend in wei that an address can withdraw.

    /// @param _owner The address of a token holder.

    /// @return The amount of dividend in wei that `_owner` can withdraw.

    function withdrawableDividendOf(address _owner, address _token) public view returns(uint256) {

        return !isExcludedFromReward[_owner] ? accumulativeDividendOf(_owner, _token) - (withdrawnDividendsMap[_token][_owner]) : 0;

    }



    /// @notice View the amount of dividend in wei that an address has withdrawn.

    /// @param _owner The address of a token holder.

    /// @return The amount of dividend in wei that `_owner` has withdrawn.

    function withdrawnDividendOf(address _owner, address _token) public view returns(uint256) {

        return withdrawnDividendsMap[_token][_owner];

    }



    /// @dev withdrawnDividendOf for all tokens

    function withdrawnDividendOfAll(address _owner) public view returns(uint256[] memory) {

        address[] memory tokenArray = getDividendTokenList();

        uint256 len = tokenArray.length;

        uint256[] memory variableArray = new uint256[](len);



        for (uint256 i = 0; i < len; i++) {

            address _token = tokenArray[i];

            variableArray[i] = withdrawnDividendOf(_owner, _token);

        }



        return variableArray;

    }



    /// @notice View the amount of dividend in wei that an address has earned in total.

    /// @dev accumulativeDividendOf(_owner) = withdrawableDividendOf(_owner) + withdrawnDividendOf(_owner)

    /// = (magnifiedDividendPerShare * balanceOf(_owner) + magnifiedDividendCorrections[_owner]) / magnitude

    /// @param _owner The address of a token holder.

    /// @return The amount of dividend in wei that `_owner` has earned in total.

    function accumulativeDividendOf(address _owner, address _token) public view returns(uint256) {    

        return !isExcludedFromReward[_owner] ? magnifiedDividendPerShareMap[_token] * (balanceOf(_owner)).toInt256Safe()

                .add(magnifiedDividendCorrectionsMap[_token][_owner]).toUint256Safe() / MAGNITUDE : 0;

    }



}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"router","type":"address"}],"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":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"weiAmount","type":"uint256"}],"name":"DividendWithdrawn","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"weiAmount","type":"uint256"}],"name":"DividendsDistributed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"BUY_TX_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEV_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEV_WALLET","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"ExclusionRewardList","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LPR_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MARK_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MARK_WALLET","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_RATIO","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SELL_TX_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SHOULD_SWAP","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SWAP_MIN_TOKEN","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SWAP_MIN_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TAKE_FEE","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"USUAL_TX_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"UniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"_token","type":"address"}],"name":"accumulativeDividendOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentRewardToken","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentTXCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"dividendTokenAmount","type":"uint256"}],"name":"distributeDividends","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"_token","type":"address"}],"name":"dividendOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"dividendOfAll","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"excludeRewardWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getDividendTokenList","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getReducedSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromReward","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExemptedFromHeld","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isNowLiquid","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"multiWithdrawDividend","outputs":[],"stateMutability":"nonpayable","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":"address","name":"","type":"address"}],"name":"pairMap","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"recoverERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"setCurrentRewardToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"wallets","type":"address[]"},{"internalType":"bool","name":"state","type":"bool"}],"name":"setExemptHeldList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"state","type":"bool"}],"name":"setFeeStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"wallets","type":"address[]"},{"internalType":"bool","name":"state","type":"bool"}],"name":"setFeeWalletList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"state","type":"bool"}],"name":"setIsNowLiquid","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"ratio","type":"uint256"}],"name":"setMaxRatio","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"setMinTX","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"pairs","type":"address[]"},{"internalType":"bool","name":"state","type":"bool"}],"name":"setPairMapList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"fees","type":"uint256[]"}],"name":"setProviderFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"markWallet","type":"address"},{"internalType":"address payable","name":"devWallet","type":"address"}],"name":"setProviderWallets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setSwapMinToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"state","type":"bool"}],"name":"setSwapStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"setTXCount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"buyFee","type":"uint256"},{"internalType":"uint256","name":"sellFee","type":"uint256"},{"internalType":"uint256","name":"usualFee","type":"uint256"}],"name":"setTXFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapTokensAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","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":[{"internalType":"address","name":"token","type":"address"}],"name":"withdrawDividend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"_token","type":"address"}],"name":"withdrawableDividendOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"_token","type":"address"}],"name":"withdrawnDividendOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"withdrawnDividendOfAll","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052683635c9adc5dea00000601155601460128190556013805461ffff19166101011790556101f490556102bc6015819055601681905560175561232860185560646019556103e8601a55601d8054739d38f6581cb7635cd5bf031af1e1635b42db74fe6001600160a01b03199182168117909255601e805490911690911790553480156200009057600080fd5b50604051620042e9380380620042e9833981016040819052620000b39162000639565b60405180604001604052806005815260200164536869776160d81b81525060405180604001604052806005815260200164534849574160d81b81525081600390816200010091906200070f565b5060046200010f82826200070f565b5050506200012c62000126620002df60201b60201c565b620002e3565b60006200013c6012600a620008ee565b6200014f9066038d7ea4c68000620008ff565b90506200015d338262000335565b601f80546001600160a01b0319166001600160a01b03841617905562000182620003fb565b503360008181526006602090815260408083208054600160ff199182168117909255601d546001600160a01b0390811686528386208054831684179055601e548116865283862080548316841790557f1aecba4ebe7a4e0673e4891b2b092b2228e4322380b579fb494fad3da8586e2280548316841790557f54cdd369e4e8a8515e52ca72ec816c2101831ad1f18bf44102ed171459c9b4f88054831684179055308087528487208054841685179055908916808752600786528487208054841685179055878752600886528487208054841685179055600980548086019091557f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0180546001600160a01b031916909817909755958552600d8452919093208054909116909217909155620002c491600e91620005c2811b62001e0117901c565b5050601c80546001600160a01b03191630179055506200092f565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620003905760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060026000828254620003a4919062000919565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b601f546040805163c45a015560e01b815290516000926001600160a01b03169163c45a01559160048083019260209291908290030181865afa15801562000446573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200046c919062000639565b6001600160a01b031663c9c6539630601f60009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620004cf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004f5919062000639565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000543573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000569919062000639565b602080546001600160a01b0319166001600160a01b0392831690811782556000908152600782526040808220805460ff19908116600190811790925584549095168352600d909352902080549092168117909155919050565b6000620005d9836001600160a01b038416620005e7565b90505b92915050565b505050565b60008181526001830160205260408120546200063057508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155620005dc565b506000620005dc565b6000602082840312156200064c57600080fd5b81516001600160a01b03811681146200066457600080fd5b9392505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200069657607f821691505b602082108103620006b757634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620005e257600081815260208120601f850160051c81016020861015620006e65750805b601f850160051c820191505b818110156200070757828155600101620006f2565b505050505050565b81516001600160401b038111156200072b576200072b6200066b565b62000743816200073c845462000681565b84620006bd565b602080601f8311600181146200077b5760008415620007625750858301515b600019600386901b1c1916600185901b17855562000707565b600085815260208120601f198616915b82811015620007ac578886015182559484019460019091019084016200078b565b5085821015620007cb5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b8085111562000832578160001904821115620008165762000816620007db565b808516156200082457918102915b93841c9390800290620007f6565b509250929050565b6000826200084b57506001620005dc565b816200085a57506000620005dc565b81600181146200087357600281146200087e576200089e565b6001915050620005dc565b60ff841115620008925762000892620007db565b50506001821b620005dc565b5060208310610133831016604e8410600b8410161715620008c3575081810a620005dc565b620008cf8383620007f1565b8060001904821115620008e657620008e6620007db565b029392505050565b6000620005d960ff8416836200083a565b8082028115828204841417620005dc57620005dc620007db565b80820180821115620005dc57620005dc620007db565b6139aa806200093f6000396000f3fe6080604052600436106103d25760003560e01c8063715018a6116101fd578063a9059cbb11610118578063cf6c7aad116100ab578063e6f083f41161007a578063e6f083f414610b4e578063e7598e6614610b95578063ea30b1a614610bab578063ef31e2ab14610bc1578063f2fde38b14610be257600080fd5b8063cf6c7aad14610ad8578063d66e1cef14610aee578063dd62ed3e14610b0e578063df3b3ac814610b2e57600080fd5b8063bbd67ef7116100e7578063bbd67ef714610a62578063c6c040df14610a78578063cb83bcd614610a98578063cc5489df14610ab857600080fd5b8063a9059cbb146109e3578063b360620414610a03578063b9aa59f314610a23578063ba18187e14610a4257600080fd5b80639151ee77116101905780639cf09f3f1161015f5780639cf09f3f146109785780639d3701b61461098d578063a457c2d7146109ad578063a83b22fd146109cd57600080fd5b80639151ee771461091457806395d89b411461092e5780639b11ca9f146109435780639c53c0ca1461095857600080fd5b806388f82020116101cc57806388f82020146108865780638980f11f146108b65780638bffb8d6146108d65780638da5cb5b146108f657600080fd5b8063715018a61461080b5780637c57a3f31461082057806381decf4814610850578063841d51a51461087057600080fd5b806335ed71a8116102ed5780634fbee193116102805780635f1c31821161024f5780635f1c31821461079f578063630eb8ab146107b557806364b7571f146107cb57806370a08231146107eb57600080fd5b80634fbee1931461070957806351f6ac03146107395780635a02d620146107595780635f053b5c1461078957600080fd5b806343086ebe116102bc57806343086ebe14610693578063436a88c1146106b357806343f17836146106c957806349bd5a5e146106e957600080fd5b806335ed71a81461061357806339509351146106335780633e8406b7146106535780633ee5aa971461067357600080fd5b806318160ddd1161036557806323b872dd1161033457806323b872dd146105975780632968f761146105b75780632d04f820146105d7578063313ce567146105f757600080fd5b806318160ddd14610520578063204f11a814610535578063206e967b14610555578063226511b41461057557600080fd5b8063095ea7b3116103a1578063095ea7b31461048e5780630c23a53a146104be5780630cfe3269146104e057806311f22ae31461050057600080fd5b806302670181146103de578063040d3b1a14610407578063055add0d1461043457806306fdde031461046c57600080fd5b366103d957005b600080fd5b3480156103ea57600080fd5b506103f460165481565b6040519081526020015b60405180910390f35b34801561041357600080fd5b506104276104223660046131ed565b610c02565b6040516103fe919061320a565b34801561044057600080fd5b50601f54610454906001600160a01b031681565b6040516001600160a01b0390911681526020016103fe565b34801561047857600080fd5b50610481610cc6565b6040516103fe919061324e565b34801561049a57600080fd5b506104ae6104a936600461329c565b610d58565b60405190151581526020016103fe565b3480156104ca57600080fd5b506104de6104d93660046131ed565b610d72565b005b3480156104ec57600080fd5b506104de6104fb3660046132e1565b610e03565b34801561050c57600080fd5b506104de61051b3660046132fe565b610e29565b34801561052c57600080fd5b506002546103f4565b34801561054157600080fd5b506103f4610550366004613317565b610e91565b34801561056157600080fd5b506104de6105703660046131ed565b610efa565b34801561058157600080fd5b5061058a610fba565b6040516103fe9190613394565b3480156105a357600080fd5b506104ae6105b23660046133a7565b61106a565b3480156105c357600080fd5b506104de6105d236600461344f565b61108f565b3480156105e357600080fd5b50601e54610454906001600160a01b031681565b34801561060357600080fd5b50604051601281526020016103fe565b34801561061f57600080fd5b506104de61062e3660046132e1565b611198565b34801561063f57600080fd5b506104ae61064e36600461329c565b6111b3565b34801561065f57600080fd5b506104de61066e3660046134eb565b6111d5565b34801561067f57600080fd5b506104de61068e3660046134eb565b61127b565b34801561069f57600080fd5b506104de6106ae366004613317565b6112eb565b3480156106bf57600080fd5b506103f460195481565b3480156106d557600080fd5b50601c54610454906001600160a01b031681565b3480156106f557600080fd5b50602054610454906001600160a01b031681565b34801561071557600080fd5b506104ae6107243660046131ed565b60066020526000908152604090205460ff1681565b34801561074557600080fd5b506104de6107543660046132fe565b611439565b34801561076557600080fd5b506104ae6107743660046131ed565b600d6020526000908152604090205460ff1681565b34801561079557600080fd5b506103f460185481565b3480156107ab57600080fd5b506103f4601b5481565b3480156107c157600080fd5b506103f460145481565b3480156107d757600080fd5b506104de6107e636600461329c565b611446565b3480156107f757600080fd5b506103f46108063660046131ed565b6115b6565b34801561081757600080fd5b506104de6115d1565b34801561082c57600080fd5b506104ae61083b3660046131ed565b60076020526000908152604090205460ff1681565b34801561085c57600080fd5b50601d54610454906001600160a01b031681565b34801561087c57600080fd5b506103f460115481565b34801561089257600080fd5b506104ae6108a13660046131ed565b60086020526000908152604090205460ff1681565b3480156108c257600080fd5b506104de6108d136600461329c565b6115f5565b3480156108e257600080fd5b506104de6108f13660046132e1565b61167e565b34801561090257600080fd5b506005546001600160a01b0316610454565b34801561092057600080fd5b506013546104ae9060ff1681565b34801561093a57600080fd5b506104816116a0565b34801561094f57600080fd5b506103f46116af565b34801561096457600080fd5b506104de6109733660046131ed565b6117c3565b34801561098457600080fd5b506104de611936565b34801561099957600080fd5b506104276109a83660046131ed565b6119e4565b3480156109b957600080fd5b506104ae6109c836600461329c565b611ac6565b3480156109d957600080fd5b506103f460155481565b3480156109ef57600080fd5b506104ae6109fe36600461329c565b611b4c565b348015610a0f57600080fd5b506104de610a1e3660046132fe565b611b5a565b348015610a2f57600080fd5b506013546104ae90610100900460ff1681565b348015610a4e57600080fd5b506104de610a5d3660046135a2565b611baf565b348015610a6e57600080fd5b506103f4601a5481565b348015610a8457600080fd5b50610454610a933660046132fe565b611c41565b348015610aa457600080fd5b506103f4610ab3366004613317565b611c6b565b348015610ac457600080fd5b506103f4610ad3366004613317565b611c9d565b348015610ae457600080fd5b506103f460105481565b348015610afa57600080fd5b506104de610b093660046134eb565b611d42565b348015610b1a57600080fd5b506103f4610b29366004613317565b611d54565b348015610b3a57600080fd5b506104de610b493660046132fe565b611d7f565b348015610b5a57600080fd5b506103f4610b69366004613317565b6001600160a01b038082166000908152600c602090815260408083209386168352929052205492915050565b348015610ba157600080fd5b506103f460125481565b348015610bb757600080fd5b506103f460175481565b348015610bcd57600080fd5b506020546104ae90600160a01b900460ff1681565b348015610bee57600080fd5b506104de610bfd3660046131ed565b611d8c565b60606000610c0e610fba565b805190915060008167ffffffffffffffff811115610c2e57610c2e6133e8565b604051908082528060200260200182016040528015610c57578160200160208202803683370190505b50905060005b82811015610cbd576000848281518110610c7957610c796135ce565b60200260200101519050610c8d8782611c6b565b838381518110610c9f57610c9f6135ce565b60209081029190910101525080610cb5816135fa565b915050610c5d565b50949350505050565b606060038054610cd590613613565b80601f0160208091040260200160405190810160405280929190818152602001828054610d0190613613565b8015610d4e5780601f10610d2357610100808354040283529160200191610d4e565b820191906000526020600020905b815481529060010190602001808311610d3157829003601f168201915b5050505050905090565b600033610d66818585611e16565b60019150505b92915050565b610d7a611f3a565b6001600160a01b03811660009081526008602052604090205460ff16610e00576001600160a01b0381166000818152600860205260408120805460ff191660019081179091556009805491820181559091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0180546001600160a01b03191690911790555b50565b610e0b611f3a565b60208054911515600160a01b0260ff60a01b19909216919091179055565b610e31611f3a565b60648110158015610e4457506127108111155b610e8c5760405162461bcd60e51b815260206004820152601460248201527345524332303a20726174696f206973207a65726f60601b60448201526064015b60405180910390fd5b601455565b6001600160a01b03821660009081526008602052604081205460ff1615610eb9576000610ef3565b6001600160a01b038083166000908152600c6020908152604080832093871683529290522054610ee98484611c9d565b610ef3919061364d565b9392505050565b610f02611f3a565b610f0d600e82611f94565b80610f2257506005610f1f600e611fb6565b11155b610f7c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a20746f6b656e206e6f7420666f756e642072656163686564206d60448201526430bc2632b760d91b6064820152608401610e83565b610f87600e82611f94565b610f9857610f96600e82611e01565b505b601c80546001600160a01b0319166001600160a01b0392909216919091179055565b60606000610fc8600e611fb6565b905060008167ffffffffffffffff811115610fe557610fe56133e8565b60405190808252806020026020018201604052801561100e578160200160208202803683370190505b50905060005b8281101561106357611027600e82611fc0565b828281518110611039576110396135ce565b6001600160a01b03909216602092830291909101909101528061105b816135fa565b915050611014565b5092915050565b600033611078858285611fcc565b611083858585612040565b50600195945050505050565b611097611f3a565b60006004815b818110156110de578381815181106110b7576110b76135ce565b6020026020010151836110ca9190613660565b9250806110d6816135fa565b91505061109d565b5061271082146111305760405162461bcd60e51b815260206004820152601a60248201527f45524332303a20666565206973206f7574206f662073636f70650000000000006044820152606401610e83565b82600081518110611143576111436135ce565b602002602001015160188190555082600181518110611164576111646135ce565b602002602001015160198190555082600281518110611185576111856135ce565b6020026020010151601a81905550505050565b6111a0611f3a565b6013805460ff1916911515919091179055565b600033610d668185856111c68383611d54565b6111d09190613660565b611e16565b6111dd611f3a565b815160005b818110156112755760008482815181106111fe576111fe6135ce565b60209081029190910181015190549091506001600160a01b038083169116148015906112385750601f546001600160a01b03828116911614155b15611262576001600160a01b0381166000908152600d60205260409020805460ff19168515151790555b508061126d816135fa565b9150506111e2565b50505050565b611283611f3a565b815160005b818110156112755782600760008684815181106112a7576112a76135ce565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806112e3816135fa565b915050611288565b6112f3611f3a565b601d54611308906001600160a01b0316612348565b80156113245750601e54611324906001600160a01b0316612348565b6113705760405162461bcd60e51b815260206004820152601960248201527f45524332303a2077616c6c6574206e6f7420616c6c6f776564000000000000006044820152606401610e83565b601d80546001600160a01b038481166001600160a01b031992831617909255601e80549284169290911691909117905560408051600280825260608201835260009260208301908036833701905050905082816000815181106113d5576113d56135ce565b60200260200101906001600160a01b031690816001600160a01b0316815250508181600181518110611409576114096135ce565b60200260200101906001600160a01b031690816001600160a01b03168152505061143481600161239f565b505050565b611441611f3a565b601255565b61144e611f3a565b611459600e83611f94565b61149c5760405162461bcd60e51b815260206004820152601460248201527322a92199181d1034b73b30b634b2103a37b5b2b760611b6044820152606401610e83565b60006114a66116af565b1180156114b35750600081115b6114ff5760405162461bcd60e51b815260206004820152601a60248201527f45524332303a207a65726f2076616c7565207472616e736665720000000000006044820152606401610e83565b306001600160a01b0383160361151f5761151a333083612402565b6115a8565b6001600160a01b0382166323b872dd336040516001600160e01b031960e084901b1681526001600160a01b039091166004820152306024820152604481018490526064016020604051808303816000875af1158015611582573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115a69190613673565b505b6115b282826125a6565b5050565b6001600160a01b031660009081526020819052604090205490565b6115d9611f3a565b6115f36115ee6005546001600160a01b031690565b612643565b565b6115fd611f3a565b6001600160a01b03821663a9059cbb336040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602481018490526044016020604051808303816000875af115801561165a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114349190613673565b611686611f3a565b601380549115156101000261ff0019909216919091179055565b606060048054610cd590613613565b600954600090819080156117185760005b81811015611716576116f8600982815481106116de576116de6135ce565b6000918252602090912001546001600160a01b03166115b6565b6117029084613660565b92508061170e816135fa565b9150506116c0565b505b601f5461172d906001600160a01b03166115b6565b611736306115b6565b61174060006115b6565b61174b61dead6115b6565b6117559190613660565b61175f9190613660565b6117699190613660565b6117739083613660565b9150600061178060025490565b9050600061178e848361364d565b156117a25761179d848361364d565b6117ba565b6117ae6012600a613774565b6117ba906103e8613783565b95945050505050565b3360009081526008602052604090205460ff16156118235760405162461bcd60e51b815260206004820152601b60248201527f45524332303a206578636c756465642066726f6d2072657761726400000000006044820152606401610e83565b61182e600e82611f94565b6118715760405162461bcd60e51b815260206004820152601460248201527322a92199181d1034b73b30b634b2103a37b5b2b760611b6044820152606401610e83565b600061187d3383610e91565b905080156115b2576001600160a01b0382166000908152600c602090815260408083203384529091529020546118b4908290613660565b6001600160a01b0383166000818152600c60209081526040808320338085529083529281902094909455835191825281019190915280820183905290517f98ac917b3f7ecc0d3809f54fde7c0a493c376774dce018d93640a7574313ee779181900360600190a1306001600160a01b038316036115fd576115b2303383612402565b3360009081526008602052604090205460ff16156119965760405162461bcd60e51b815260206004820152601b60248201527f45524332303a206578636c756465642066726f6d2072657761726400000000006044820152606401610e83565b60006119a0610fba565b805190915060005b81811015611434576119d28382815181106119c5576119c56135ce565b60200260200101516117c3565b806119dc816135fa565b9150506119a8565b606060006119f0610fba565b805190915060008167ffffffffffffffff811115611a1057611a106133e8565b604051908082528060200260200182016040528015611a39578160200160208202803683370190505b50905060005b82811015610cbd576000848281518110611a5b57611a5b6135ce565b60200260200101519050611a9687826001600160a01b038082166000908152600c602090815260408083209386168352929052205492915050565b838381518110611aa857611aa86135ce565b60209081029190910101525080611abe816135fa565b915050611a3f565b60003381611ad48286611d54565b905083811015611b345760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610e83565b611b418286868403611e16565b506001949350505050565b600033611b41818585612040565b611b62611f3a565b60008111611baa5760405162461bcd60e51b815260206004820152601560248201527445524332303a20616d6f756e74206973207a65726f60581b6044820152606401610e83565b601155565b611bb7611f3a565b6102bc8311158015611bcb57506102bc8211155b8015611bd957506102bc8111155b611c335760405162461bcd60e51b815260206004820152602560248201527f45524332303a20616d6f756e742065786365656473206d6178696d756d20616c6044820152641b1bddd95960da1b6064820152608401610e83565b601592909255601655601755565b60098181548110611c5157600080fd5b6000918252602090912001546001600160a01b0316905081565b6001600160a01b03821660009081526008602052604081205460ff1615611c93576000610ef3565b610ef38383610e91565b6001600160a01b03821660009081526008602052604081205460ff1615611cc5576000610ef3565b6001600160a01b038083166000908152600b6020908152604080832093871683529290522054600160a51b90611d1590611d1090611d0a611d05886115b6565b612695565b906126a5565b6126e3565b6001600160a01b0384166000908152600a6020526040902054611d389190613783565b610ef3919061379a565b611d4a611f3a565b6115b2828261239f565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b611d87611f3a565b601055565b611d94611f3a565b611d9d81612348565b611df85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610e83565b610e0081612643565b6000610ef3836001600160a01b0384166126f6565b6001600160a01b038316611e785760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610e83565b6001600160a01b038216611ed95760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610e83565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b031633146115f35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e83565b6001600160a01b03811660009081526001830160205260408120541515610ef3565b6000610d6c825490565b6000610ef38383612745565b6000611fd88484611d54565b9050600019811461127557818110156120335760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610e83565b6112758484848403611e16565b60008082116120915760405162461bcd60e51b815260206004820152601e60248201527f45524332303a207472616e7366657220616d6f756e74206973207a65726f00006044820152606401610e83565b6001600160a01b038416158015906120b157506001600160a01b03831615155b6120fd5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a207472616e736665722061646472657373206973207a65726f006044820152606401610e83565b6001600160a01b038316600090815260066020526040902054829060ff1615801561214157506001600160a01b03841660009081526007602052604090205460ff16155b156121cb5761271060145461215560025490565b61215f9190613783565b612169919061379a565b83612173866115b6565b61217d9190613660565b11156121cb5760405162461bcd60e51b815260206004820152601a60248201527f45524332303a2065786365656473206d617820686f6c64696e670000000000006044820152606401610e83565b6001600160a01b0385166000908152600d602052604090205460ff166121f5576121f361276f565b505b601354610100900460ff16801561222557506001600160a01b03851660009081526006602052604090205460ff16155b801561224a57506001600160a01b03841660009081526006602052604090205460ff16155b15612312576001600160a01b0385166000908152600d602052604081205460ff161561229257612710601554856122819190613783565b61228b919061379a565b90506122e2565b6001600160a01b0385166000908152600d602052604090205460ff16156122c457612710601654856122819190613783565b612710601754856122d59190613783565b6122df919061379a565b90505b6122ec818561364d565b93506122f9863083612402565b80601b600082825461230b9190613660565b9091555050505b61231d858585612402565b6123288585836127b0565b60108054906000612338836135fa565b9091555060019695505050505050565b60006001600160a01b0382161580159061236d57506001600160a01b03821661dead14155b801561238257506001600160a01b0382163014155b8015610d6c575050601f546001600160a01b039081169116141590565b815160005b818110156112755760008482815181106123c0576123c06135ce565b6020908102919091018101516001600160a01b03166000908152600690915260409020805460ff191685151517905550806123fa816135fa565b9150506123a4565b6001600160a01b0383166124665760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610e83565b6001600160a01b0382166124c85760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610e83565b6001600160a01b038316600090815260208190526040902054818110156125405760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610e83565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3611275565b6125ae6116af565b6125bc600160a51b83613783565b6125c6919061379a565b6001600160a01b0383166000908152600a60205260409020546125e99190613660565b6001600160a01b0383166000818152600a60209081526040918290209390935580519182529181018390527fa493a9229478c3fcd73f66d2cdeb7f94fd0f341da924d1054236d78454116511910160405180910390a15050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60008181811215610d6c57600080fd5b6000806126b283856137bc565b9050600083121580156126c55750838112155b806126da57506000831280156126da57508381125b610ef357600080fd5b6000808212156126f257600080fd5b5090565b600081815260018301602052604081205461273d57508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610d6c565b506000610d6c565b600082600001828154811061275c5761275c6135ce565b9060005260206000200154905092915050565b60135460009060ff168015612788575060125460105410155b80156127985750601154601b5410155b156127aa576127a8601b546127db565b505b50600190565b6001600160a01b03831660009081526008602052604090205460ff1661143457611434838383612ad1565b602054600090600160a01b900460ff1615158103612ac4576020805460ff60a01b1916600160a01b1790556000612811306115b6565b90506000612710601a54856128269190613783565b612830919061379a565b9050600061283e828661364d565b601c54909150306001600160a01b039091160361288957600061286260028361379a565b601c5490915061287b906001600160a01b0316826125a6565b612885818361364d565b9150505b601c546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa1580156128d2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128f691906137e4565b601c549091506129109083906001600160a01b0316612bf5565b601c546001600160a01b031630146129d757601c546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa15801561296b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061298f91906137e4565b9050600081158015906129a157508215155b6129ac5760006129b6565b6129b6838361364d565b905080156129d457601c546129d4906001600160a01b0316826125a6565b50505b478015612a8e576000612710601854836129f19190613783565b6129fb919061379a565b9050600061271060195484612a109190613783565b612a1a919061379a565b90506000612710601a5485612a2f9190613783565b612a39919061379a565b9050600087118015612a4b5750600081115b15612a5c57612a5a8782612c45565b505b601d54612a72906001600160a01b031684612d81565b50601e54612a89906001600160a01b031683612d81565b505050505b6000612a99306115b6565b905085811015612aa9576000601b555b50506020805460ff60a01b1916905550600195945050505050565b506000919050565b919050565b6000612adb610fba565b805190915060005b81811015612bed576000838281518110612aff57612aff6135ce565b602002602001015190506000612b3f86600a6000856001600160a01b03166001600160a01b0316815260200190815260200160002054611d059190613783565b6001600160a01b038084166000908152600b60209081526040808320938d1683529290522054909150612b7290826126a5565b6001600160a01b038381166000908152600b602090815260408083208d851684529091528082209390935590891681522054612bae9082612dfc565b6001600160a01b039283166000908152600b60209081526040808320958b16835294905292909220919091555080612be5816135fa565b915050612ae3565b505050505050565b81156115b257306001600160a01b03821603612c145761143482612e48565b612c1d82612e48565b50476000612c2c60028361379a565b9050801561127557612c3e818461300e565b5050505050565b60008083118015612c565750600082115b1561273d57601f54600090612c769030906001600160a01b031686611e16565b601f5460405163f305d71960e01b815230600482015260248101869052600060448201819052606482015261dead60848201524260a48201526001600160a01b039091169063f305d71990859060c40160606040518083038185885af193505050508015612d01575060408051601f3d908101601f19168201909252612cfe918101906137fd565b60015b612d7257612d0d61382b565b806308c379a003612d365750612d21613847565b80612d2c5750612d38565b6000915050612d7a565b505b3d808015612d62576040519150601f19603f3d011682016040523d82523d6000602084013e612d67565b606091505b506000915050612d7a565b505050600190505b9050610d6c565b600080612d8d84612348565b8015612d995750600083115b15610ef3576040516001600160a01b038516906113889085906000818181858888f193505050503d8060008114612dec576040519150601f19603f3d011682016040523d82523d6000602084013e612df1565b606091505b509095945050505050565b6000808212158015612e17575082612e1483826138c6565b13155b80612e355750600082128015612e35575082612e3383826138c6565b135b612e3e57600080fd5b610ef382846138c6565b6040805160028082526060820183526000928392839290916020830190803683370190505090503081600081518110612e8357612e836135ce565b6001600160a01b03928316602091820292909201810191909152601f54604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015612edc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f0091906138e6565b81600181518110612f1357612f136135ce565b6001600160a01b039283166020918202929092010152601f54612f399130911686611e16565b601f5460405163791ac94760e01b81526001600160a01b039091169063791ac94790612f72908790600090869030904290600401613903565b600060405180830381600087803b158015612f8c57600080fd5b505af1925050508015612f9d575060015b610d6657612fa961382b565b806308c379a003612fd25750612fbd613847565b80612fc85750612fd4565b6000925050611063565b505b3d808015612ffe576040519150601f19603f3d011682016040523d82523d6000602084013e613003565b606091505b506000925050611063565b6040805160028082526060820183526000928392839290916020830190803683375050601f54604080516315ab88c960e31b815290519394506001600160a01b039091169263ad5c4648925060048083019260209291908290030181865afa15801561307e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906130a291906138e6565b816000815181106130b5576130b56135ce565b60200260200101906001600160a01b031690816001600160a01b03168152505083816001815181106130e9576130e96135ce565b6001600160a01b039283166020918202929092010152601f5460405163b6f9de9560e01b815291169063b6f9de9590879061312f9060009086903090429060040161393f565b6000604051808303818588803b15801561314857600080fd5b505af19350505050801561315a575060015b6131cb5761316661382b565b806308c379a00361318f575061317a613847565b806131855750613191565b60009250506131d0565b505b3d8080156131bb576040519150601f19603f3d011682016040523d82523d6000602084013e6131c0565b606091505b5060009250506131d0565b600191505b509392505050565b6001600160a01b0381168114610e0057600080fd5b6000602082840312156131ff57600080fd5b8135610ef3816131d8565b6020808252825182820181905260009190848201906040850190845b8181101561324257835183529284019291840191600101613226565b50909695505050505050565b600060208083528351808285015260005b8181101561327b5785810183015185820160400152820161325f565b506000604082860101526040601f19601f8301168501019250505092915050565b600080604083850312156132af57600080fd5b82356132ba816131d8565b946020939093013593505050565b8015158114610e0057600080fd5b8035612acc816132c8565b6000602082840312156132f357600080fd5b8135610ef3816132c8565b60006020828403121561331057600080fd5b5035919050565b6000806040838503121561332a57600080fd5b8235613335816131d8565b91506020830135613345816131d8565b809150509250929050565b600081518084526020808501945080840160005b838110156133895781516001600160a01b031687529582019590820190600101613364565b509495945050505050565b602081526000610ef36020830184613350565b6000806000606084860312156133bc57600080fd5b83356133c7816131d8565b925060208401356133d7816131d8565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b601f8201601f1916810167ffffffffffffffff81118282101715613424576134246133e8565b6040525050565b600067ffffffffffffffff821115613445576134456133e8565b5060051b60200190565b6000602080838503121561346257600080fd5b823567ffffffffffffffff81111561347957600080fd5b8301601f8101851361348a57600080fd5b80356134958161342b565b6040516134a282826133fe565b82815260059290921b83018401918481019150878311156134c257600080fd5b928401925b828410156134e0578335825292840192908401906134c7565b979650505050505050565b600080604083850312156134fe57600080fd5b823567ffffffffffffffff81111561351557600080fd5b8301601f8101851361352657600080fd5b803560206135338261342b565b60405161354082826133fe565b83815260059390931b840182019282810191508884111561356057600080fd5b938201935b83851015613587578435613578816131d8565b82529382019390820190613565565b955061359690508682016132d6565b93505050509250929050565b6000806000606084860312156135b757600080fd5b505081359360208301359350604090920135919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006001820161360c5761360c6135e4565b5060010190565b600181811c9082168061362757607f821691505b60208210810361364757634e487b7160e01b600052602260045260246000fd5b50919050565b81810381811115610d6c57610d6c6135e4565b80820180821115610d6c57610d6c6135e4565b60006020828403121561368557600080fd5b8151610ef3816132c8565b600181815b808511156136cb5781600019048211156136b1576136b16135e4565b808516156136be57918102915b93841c9390800290613695565b509250929050565b6000826136e257506001610d6c565b816136ef57506000610d6c565b8160018114613705576002811461370f5761372b565b6001915050610d6c565b60ff841115613720576137206135e4565b50506001821b610d6c565b5060208310610133831016604e8410600b841016171561374e575081810a610d6c565b6137588383613690565b806000190482111561376c5761376c6135e4565b029392505050565b6000610ef360ff8416836136d3565b8082028115828204841417610d6c57610d6c6135e4565b6000826137b757634e487b7160e01b600052601260045260246000fd5b500490565b80820182811260008312801582168215821617156137dc576137dc6135e4565b505092915050565b6000602082840312156137f657600080fd5b5051919050565b60008060006060848603121561381257600080fd5b8351925060208401519150604084015190509250925092565b600060033d11156138445760046000803e5060005160e01c5b90565b600060443d10156138555790565b6040516003193d81016004833e81513d67ffffffffffffffff816024840111818411171561388557505050505090565b828501915081518181111561389d5750505050505090565b843d87010160208285010111156138b75750505050505090565b612df1602082860101876133fe565b8181036000831280158383131683831282161715611063576110636135e4565b6000602082840312156138f857600080fd5b8151610ef3816131d8565b85815284602082015260a06040820152600061392260a0830186613350565b6001600160a01b0394909416606083015250608001529392505050565b8481526080602082015260006139586080830186613350565b6001600160a01b0394909416604083015250606001529291505056fea2646970667358221220e577cf11210fb0df6cee60f4df6a770b862ae77d689db5c0846ba8d2a26456aa64736f6c634300081100330000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d

Deployed Bytecode

0x6080604052600436106103d25760003560e01c8063715018a6116101fd578063a9059cbb11610118578063cf6c7aad116100ab578063e6f083f41161007a578063e6f083f414610b4e578063e7598e6614610b95578063ea30b1a614610bab578063ef31e2ab14610bc1578063f2fde38b14610be257600080fd5b8063cf6c7aad14610ad8578063d66e1cef14610aee578063dd62ed3e14610b0e578063df3b3ac814610b2e57600080fd5b8063bbd67ef7116100e7578063bbd67ef714610a62578063c6c040df14610a78578063cb83bcd614610a98578063cc5489df14610ab857600080fd5b8063a9059cbb146109e3578063b360620414610a03578063b9aa59f314610a23578063ba18187e14610a4257600080fd5b80639151ee77116101905780639cf09f3f1161015f5780639cf09f3f146109785780639d3701b61461098d578063a457c2d7146109ad578063a83b22fd146109cd57600080fd5b80639151ee771461091457806395d89b411461092e5780639b11ca9f146109435780639c53c0ca1461095857600080fd5b806388f82020116101cc57806388f82020146108865780638980f11f146108b65780638bffb8d6146108d65780638da5cb5b146108f657600080fd5b8063715018a61461080b5780637c57a3f31461082057806381decf4814610850578063841d51a51461087057600080fd5b806335ed71a8116102ed5780634fbee193116102805780635f1c31821161024f5780635f1c31821461079f578063630eb8ab146107b557806364b7571f146107cb57806370a08231146107eb57600080fd5b80634fbee1931461070957806351f6ac03146107395780635a02d620146107595780635f053b5c1461078957600080fd5b806343086ebe116102bc57806343086ebe14610693578063436a88c1146106b357806343f17836146106c957806349bd5a5e146106e957600080fd5b806335ed71a81461061357806339509351146106335780633e8406b7146106535780633ee5aa971461067357600080fd5b806318160ddd1161036557806323b872dd1161033457806323b872dd146105975780632968f761146105b75780632d04f820146105d7578063313ce567146105f757600080fd5b806318160ddd14610520578063204f11a814610535578063206e967b14610555578063226511b41461057557600080fd5b8063095ea7b3116103a1578063095ea7b31461048e5780630c23a53a146104be5780630cfe3269146104e057806311f22ae31461050057600080fd5b806302670181146103de578063040d3b1a14610407578063055add0d1461043457806306fdde031461046c57600080fd5b366103d957005b600080fd5b3480156103ea57600080fd5b506103f460165481565b6040519081526020015b60405180910390f35b34801561041357600080fd5b506104276104223660046131ed565b610c02565b6040516103fe919061320a565b34801561044057600080fd5b50601f54610454906001600160a01b031681565b6040516001600160a01b0390911681526020016103fe565b34801561047857600080fd5b50610481610cc6565b6040516103fe919061324e565b34801561049a57600080fd5b506104ae6104a936600461329c565b610d58565b60405190151581526020016103fe565b3480156104ca57600080fd5b506104de6104d93660046131ed565b610d72565b005b3480156104ec57600080fd5b506104de6104fb3660046132e1565b610e03565b34801561050c57600080fd5b506104de61051b3660046132fe565b610e29565b34801561052c57600080fd5b506002546103f4565b34801561054157600080fd5b506103f4610550366004613317565b610e91565b34801561056157600080fd5b506104de6105703660046131ed565b610efa565b34801561058157600080fd5b5061058a610fba565b6040516103fe9190613394565b3480156105a357600080fd5b506104ae6105b23660046133a7565b61106a565b3480156105c357600080fd5b506104de6105d236600461344f565b61108f565b3480156105e357600080fd5b50601e54610454906001600160a01b031681565b34801561060357600080fd5b50604051601281526020016103fe565b34801561061f57600080fd5b506104de61062e3660046132e1565b611198565b34801561063f57600080fd5b506104ae61064e36600461329c565b6111b3565b34801561065f57600080fd5b506104de61066e3660046134eb565b6111d5565b34801561067f57600080fd5b506104de61068e3660046134eb565b61127b565b34801561069f57600080fd5b506104de6106ae366004613317565b6112eb565b3480156106bf57600080fd5b506103f460195481565b3480156106d557600080fd5b50601c54610454906001600160a01b031681565b3480156106f557600080fd5b50602054610454906001600160a01b031681565b34801561071557600080fd5b506104ae6107243660046131ed565b60066020526000908152604090205460ff1681565b34801561074557600080fd5b506104de6107543660046132fe565b611439565b34801561076557600080fd5b506104ae6107743660046131ed565b600d6020526000908152604090205460ff1681565b34801561079557600080fd5b506103f460185481565b3480156107ab57600080fd5b506103f4601b5481565b3480156107c157600080fd5b506103f460145481565b3480156107d757600080fd5b506104de6107e636600461329c565b611446565b3480156107f757600080fd5b506103f46108063660046131ed565b6115b6565b34801561081757600080fd5b506104de6115d1565b34801561082c57600080fd5b506104ae61083b3660046131ed565b60076020526000908152604090205460ff1681565b34801561085c57600080fd5b50601d54610454906001600160a01b031681565b34801561087c57600080fd5b506103f460115481565b34801561089257600080fd5b506104ae6108a13660046131ed565b60086020526000908152604090205460ff1681565b3480156108c257600080fd5b506104de6108d136600461329c565b6115f5565b3480156108e257600080fd5b506104de6108f13660046132e1565b61167e565b34801561090257600080fd5b506005546001600160a01b0316610454565b34801561092057600080fd5b506013546104ae9060ff1681565b34801561093a57600080fd5b506104816116a0565b34801561094f57600080fd5b506103f46116af565b34801561096457600080fd5b506104de6109733660046131ed565b6117c3565b34801561098457600080fd5b506104de611936565b34801561099957600080fd5b506104276109a83660046131ed565b6119e4565b3480156109b957600080fd5b506104ae6109c836600461329c565b611ac6565b3480156109d957600080fd5b506103f460155481565b3480156109ef57600080fd5b506104ae6109fe36600461329c565b611b4c565b348015610a0f57600080fd5b506104de610a1e3660046132fe565b611b5a565b348015610a2f57600080fd5b506013546104ae90610100900460ff1681565b348015610a4e57600080fd5b506104de610a5d3660046135a2565b611baf565b348015610a6e57600080fd5b506103f4601a5481565b348015610a8457600080fd5b50610454610a933660046132fe565b611c41565b348015610aa457600080fd5b506103f4610ab3366004613317565b611c6b565b348015610ac457600080fd5b506103f4610ad3366004613317565b611c9d565b348015610ae457600080fd5b506103f460105481565b348015610afa57600080fd5b506104de610b093660046134eb565b611d42565b348015610b1a57600080fd5b506103f4610b29366004613317565b611d54565b348015610b3a57600080fd5b506104de610b493660046132fe565b611d7f565b348015610b5a57600080fd5b506103f4610b69366004613317565b6001600160a01b038082166000908152600c602090815260408083209386168352929052205492915050565b348015610ba157600080fd5b506103f460125481565b348015610bb757600080fd5b506103f460175481565b348015610bcd57600080fd5b506020546104ae90600160a01b900460ff1681565b348015610bee57600080fd5b506104de610bfd3660046131ed565b611d8c565b60606000610c0e610fba565b805190915060008167ffffffffffffffff811115610c2e57610c2e6133e8565b604051908082528060200260200182016040528015610c57578160200160208202803683370190505b50905060005b82811015610cbd576000848281518110610c7957610c796135ce565b60200260200101519050610c8d8782611c6b565b838381518110610c9f57610c9f6135ce565b60209081029190910101525080610cb5816135fa565b915050610c5d565b50949350505050565b606060038054610cd590613613565b80601f0160208091040260200160405190810160405280929190818152602001828054610d0190613613565b8015610d4e5780601f10610d2357610100808354040283529160200191610d4e565b820191906000526020600020905b815481529060010190602001808311610d3157829003601f168201915b5050505050905090565b600033610d66818585611e16565b60019150505b92915050565b610d7a611f3a565b6001600160a01b03811660009081526008602052604090205460ff16610e00576001600160a01b0381166000818152600860205260408120805460ff191660019081179091556009805491820181559091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0180546001600160a01b03191690911790555b50565b610e0b611f3a565b60208054911515600160a01b0260ff60a01b19909216919091179055565b610e31611f3a565b60648110158015610e4457506127108111155b610e8c5760405162461bcd60e51b815260206004820152601460248201527345524332303a20726174696f206973207a65726f60601b60448201526064015b60405180910390fd5b601455565b6001600160a01b03821660009081526008602052604081205460ff1615610eb9576000610ef3565b6001600160a01b038083166000908152600c6020908152604080832093871683529290522054610ee98484611c9d565b610ef3919061364d565b9392505050565b610f02611f3a565b610f0d600e82611f94565b80610f2257506005610f1f600e611fb6565b11155b610f7c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a20746f6b656e206e6f7420666f756e642072656163686564206d60448201526430bc2632b760d91b6064820152608401610e83565b610f87600e82611f94565b610f9857610f96600e82611e01565b505b601c80546001600160a01b0319166001600160a01b0392909216919091179055565b60606000610fc8600e611fb6565b905060008167ffffffffffffffff811115610fe557610fe56133e8565b60405190808252806020026020018201604052801561100e578160200160208202803683370190505b50905060005b8281101561106357611027600e82611fc0565b828281518110611039576110396135ce565b6001600160a01b03909216602092830291909101909101528061105b816135fa565b915050611014565b5092915050565b600033611078858285611fcc565b611083858585612040565b50600195945050505050565b611097611f3a565b60006004815b818110156110de578381815181106110b7576110b76135ce565b6020026020010151836110ca9190613660565b9250806110d6816135fa565b91505061109d565b5061271082146111305760405162461bcd60e51b815260206004820152601a60248201527f45524332303a20666565206973206f7574206f662073636f70650000000000006044820152606401610e83565b82600081518110611143576111436135ce565b602002602001015160188190555082600181518110611164576111646135ce565b602002602001015160198190555082600281518110611185576111856135ce565b6020026020010151601a81905550505050565b6111a0611f3a565b6013805460ff1916911515919091179055565b600033610d668185856111c68383611d54565b6111d09190613660565b611e16565b6111dd611f3a565b815160005b818110156112755760008482815181106111fe576111fe6135ce565b60209081029190910181015190549091506001600160a01b038083169116148015906112385750601f546001600160a01b03828116911614155b15611262576001600160a01b0381166000908152600d60205260409020805460ff19168515151790555b508061126d816135fa565b9150506111e2565b50505050565b611283611f3a565b815160005b818110156112755782600760008684815181106112a7576112a76135ce565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806112e3816135fa565b915050611288565b6112f3611f3a565b601d54611308906001600160a01b0316612348565b80156113245750601e54611324906001600160a01b0316612348565b6113705760405162461bcd60e51b815260206004820152601960248201527f45524332303a2077616c6c6574206e6f7420616c6c6f776564000000000000006044820152606401610e83565b601d80546001600160a01b038481166001600160a01b031992831617909255601e80549284169290911691909117905560408051600280825260608201835260009260208301908036833701905050905082816000815181106113d5576113d56135ce565b60200260200101906001600160a01b031690816001600160a01b0316815250508181600181518110611409576114096135ce565b60200260200101906001600160a01b031690816001600160a01b03168152505061143481600161239f565b505050565b611441611f3a565b601255565b61144e611f3a565b611459600e83611f94565b61149c5760405162461bcd60e51b815260206004820152601460248201527322a92199181d1034b73b30b634b2103a37b5b2b760611b6044820152606401610e83565b60006114a66116af565b1180156114b35750600081115b6114ff5760405162461bcd60e51b815260206004820152601a60248201527f45524332303a207a65726f2076616c7565207472616e736665720000000000006044820152606401610e83565b306001600160a01b0383160361151f5761151a333083612402565b6115a8565b6001600160a01b0382166323b872dd336040516001600160e01b031960e084901b1681526001600160a01b039091166004820152306024820152604481018490526064016020604051808303816000875af1158015611582573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115a69190613673565b505b6115b282826125a6565b5050565b6001600160a01b031660009081526020819052604090205490565b6115d9611f3a565b6115f36115ee6005546001600160a01b031690565b612643565b565b6115fd611f3a565b6001600160a01b03821663a9059cbb336040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602481018490526044016020604051808303816000875af115801561165a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114349190613673565b611686611f3a565b601380549115156101000261ff0019909216919091179055565b606060048054610cd590613613565b600954600090819080156117185760005b81811015611716576116f8600982815481106116de576116de6135ce565b6000918252602090912001546001600160a01b03166115b6565b6117029084613660565b92508061170e816135fa565b9150506116c0565b505b601f5461172d906001600160a01b03166115b6565b611736306115b6565b61174060006115b6565b61174b61dead6115b6565b6117559190613660565b61175f9190613660565b6117699190613660565b6117739083613660565b9150600061178060025490565b9050600061178e848361364d565b156117a25761179d848361364d565b6117ba565b6117ae6012600a613774565b6117ba906103e8613783565b95945050505050565b3360009081526008602052604090205460ff16156118235760405162461bcd60e51b815260206004820152601b60248201527f45524332303a206578636c756465642066726f6d2072657761726400000000006044820152606401610e83565b61182e600e82611f94565b6118715760405162461bcd60e51b815260206004820152601460248201527322a92199181d1034b73b30b634b2103a37b5b2b760611b6044820152606401610e83565b600061187d3383610e91565b905080156115b2576001600160a01b0382166000908152600c602090815260408083203384529091529020546118b4908290613660565b6001600160a01b0383166000818152600c60209081526040808320338085529083529281902094909455835191825281019190915280820183905290517f98ac917b3f7ecc0d3809f54fde7c0a493c376774dce018d93640a7574313ee779181900360600190a1306001600160a01b038316036115fd576115b2303383612402565b3360009081526008602052604090205460ff16156119965760405162461bcd60e51b815260206004820152601b60248201527f45524332303a206578636c756465642066726f6d2072657761726400000000006044820152606401610e83565b60006119a0610fba565b805190915060005b81811015611434576119d28382815181106119c5576119c56135ce565b60200260200101516117c3565b806119dc816135fa565b9150506119a8565b606060006119f0610fba565b805190915060008167ffffffffffffffff811115611a1057611a106133e8565b604051908082528060200260200182016040528015611a39578160200160208202803683370190505b50905060005b82811015610cbd576000848281518110611a5b57611a5b6135ce565b60200260200101519050611a9687826001600160a01b038082166000908152600c602090815260408083209386168352929052205492915050565b838381518110611aa857611aa86135ce565b60209081029190910101525080611abe816135fa565b915050611a3f565b60003381611ad48286611d54565b905083811015611b345760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610e83565b611b418286868403611e16565b506001949350505050565b600033611b41818585612040565b611b62611f3a565b60008111611baa5760405162461bcd60e51b815260206004820152601560248201527445524332303a20616d6f756e74206973207a65726f60581b6044820152606401610e83565b601155565b611bb7611f3a565b6102bc8311158015611bcb57506102bc8211155b8015611bd957506102bc8111155b611c335760405162461bcd60e51b815260206004820152602560248201527f45524332303a20616d6f756e742065786365656473206d6178696d756d20616c6044820152641b1bddd95960da1b6064820152608401610e83565b601592909255601655601755565b60098181548110611c5157600080fd5b6000918252602090912001546001600160a01b0316905081565b6001600160a01b03821660009081526008602052604081205460ff1615611c93576000610ef3565b610ef38383610e91565b6001600160a01b03821660009081526008602052604081205460ff1615611cc5576000610ef3565b6001600160a01b038083166000908152600b6020908152604080832093871683529290522054600160a51b90611d1590611d1090611d0a611d05886115b6565b612695565b906126a5565b6126e3565b6001600160a01b0384166000908152600a6020526040902054611d389190613783565b610ef3919061379a565b611d4a611f3a565b6115b2828261239f565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b611d87611f3a565b601055565b611d94611f3a565b611d9d81612348565b611df85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610e83565b610e0081612643565b6000610ef3836001600160a01b0384166126f6565b6001600160a01b038316611e785760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610e83565b6001600160a01b038216611ed95760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610e83565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b031633146115f35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e83565b6001600160a01b03811660009081526001830160205260408120541515610ef3565b6000610d6c825490565b6000610ef38383612745565b6000611fd88484611d54565b9050600019811461127557818110156120335760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610e83565b6112758484848403611e16565b60008082116120915760405162461bcd60e51b815260206004820152601e60248201527f45524332303a207472616e7366657220616d6f756e74206973207a65726f00006044820152606401610e83565b6001600160a01b038416158015906120b157506001600160a01b03831615155b6120fd5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a207472616e736665722061646472657373206973207a65726f006044820152606401610e83565b6001600160a01b038316600090815260066020526040902054829060ff1615801561214157506001600160a01b03841660009081526007602052604090205460ff16155b156121cb5761271060145461215560025490565b61215f9190613783565b612169919061379a565b83612173866115b6565b61217d9190613660565b11156121cb5760405162461bcd60e51b815260206004820152601a60248201527f45524332303a2065786365656473206d617820686f6c64696e670000000000006044820152606401610e83565b6001600160a01b0385166000908152600d602052604090205460ff166121f5576121f361276f565b505b601354610100900460ff16801561222557506001600160a01b03851660009081526006602052604090205460ff16155b801561224a57506001600160a01b03841660009081526006602052604090205460ff16155b15612312576001600160a01b0385166000908152600d602052604081205460ff161561229257612710601554856122819190613783565b61228b919061379a565b90506122e2565b6001600160a01b0385166000908152600d602052604090205460ff16156122c457612710601654856122819190613783565b612710601754856122d59190613783565b6122df919061379a565b90505b6122ec818561364d565b93506122f9863083612402565b80601b600082825461230b9190613660565b9091555050505b61231d858585612402565b6123288585836127b0565b60108054906000612338836135fa565b9091555060019695505050505050565b60006001600160a01b0382161580159061236d57506001600160a01b03821661dead14155b801561238257506001600160a01b0382163014155b8015610d6c575050601f546001600160a01b039081169116141590565b815160005b818110156112755760008482815181106123c0576123c06135ce565b6020908102919091018101516001600160a01b03166000908152600690915260409020805460ff191685151517905550806123fa816135fa565b9150506123a4565b6001600160a01b0383166124665760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610e83565b6001600160a01b0382166124c85760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610e83565b6001600160a01b038316600090815260208190526040902054818110156125405760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610e83565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3611275565b6125ae6116af565b6125bc600160a51b83613783565b6125c6919061379a565b6001600160a01b0383166000908152600a60205260409020546125e99190613660565b6001600160a01b0383166000818152600a60209081526040918290209390935580519182529181018390527fa493a9229478c3fcd73f66d2cdeb7f94fd0f341da924d1054236d78454116511910160405180910390a15050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60008181811215610d6c57600080fd5b6000806126b283856137bc565b9050600083121580156126c55750838112155b806126da57506000831280156126da57508381125b610ef357600080fd5b6000808212156126f257600080fd5b5090565b600081815260018301602052604081205461273d57508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610d6c565b506000610d6c565b600082600001828154811061275c5761275c6135ce565b9060005260206000200154905092915050565b60135460009060ff168015612788575060125460105410155b80156127985750601154601b5410155b156127aa576127a8601b546127db565b505b50600190565b6001600160a01b03831660009081526008602052604090205460ff1661143457611434838383612ad1565b602054600090600160a01b900460ff1615158103612ac4576020805460ff60a01b1916600160a01b1790556000612811306115b6565b90506000612710601a54856128269190613783565b612830919061379a565b9050600061283e828661364d565b601c54909150306001600160a01b039091160361288957600061286260028361379a565b601c5490915061287b906001600160a01b0316826125a6565b612885818361364d565b9150505b601c546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa1580156128d2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128f691906137e4565b601c549091506129109083906001600160a01b0316612bf5565b601c546001600160a01b031630146129d757601c546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa15801561296b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061298f91906137e4565b9050600081158015906129a157508215155b6129ac5760006129b6565b6129b6838361364d565b905080156129d457601c546129d4906001600160a01b0316826125a6565b50505b478015612a8e576000612710601854836129f19190613783565b6129fb919061379a565b9050600061271060195484612a109190613783565b612a1a919061379a565b90506000612710601a5485612a2f9190613783565b612a39919061379a565b9050600087118015612a4b5750600081115b15612a5c57612a5a8782612c45565b505b601d54612a72906001600160a01b031684612d81565b50601e54612a89906001600160a01b031683612d81565b505050505b6000612a99306115b6565b905085811015612aa9576000601b555b50506020805460ff60a01b1916905550600195945050505050565b506000919050565b919050565b6000612adb610fba565b805190915060005b81811015612bed576000838281518110612aff57612aff6135ce565b602002602001015190506000612b3f86600a6000856001600160a01b03166001600160a01b0316815260200190815260200160002054611d059190613783565b6001600160a01b038084166000908152600b60209081526040808320938d1683529290522054909150612b7290826126a5565b6001600160a01b038381166000908152600b602090815260408083208d851684529091528082209390935590891681522054612bae9082612dfc565b6001600160a01b039283166000908152600b60209081526040808320958b16835294905292909220919091555080612be5816135fa565b915050612ae3565b505050505050565b81156115b257306001600160a01b03821603612c145761143482612e48565b612c1d82612e48565b50476000612c2c60028361379a565b9050801561127557612c3e818461300e565b5050505050565b60008083118015612c565750600082115b1561273d57601f54600090612c769030906001600160a01b031686611e16565b601f5460405163f305d71960e01b815230600482015260248101869052600060448201819052606482015261dead60848201524260a48201526001600160a01b039091169063f305d71990859060c40160606040518083038185885af193505050508015612d01575060408051601f3d908101601f19168201909252612cfe918101906137fd565b60015b612d7257612d0d61382b565b806308c379a003612d365750612d21613847565b80612d2c5750612d38565b6000915050612d7a565b505b3d808015612d62576040519150601f19603f3d011682016040523d82523d6000602084013e612d67565b606091505b506000915050612d7a565b505050600190505b9050610d6c565b600080612d8d84612348565b8015612d995750600083115b15610ef3576040516001600160a01b038516906113889085906000818181858888f193505050503d8060008114612dec576040519150601f19603f3d011682016040523d82523d6000602084013e612df1565b606091505b509095945050505050565b6000808212158015612e17575082612e1483826138c6565b13155b80612e355750600082128015612e35575082612e3383826138c6565b135b612e3e57600080fd5b610ef382846138c6565b6040805160028082526060820183526000928392839290916020830190803683370190505090503081600081518110612e8357612e836135ce565b6001600160a01b03928316602091820292909201810191909152601f54604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015612edc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f0091906138e6565b81600181518110612f1357612f136135ce565b6001600160a01b039283166020918202929092010152601f54612f399130911686611e16565b601f5460405163791ac94760e01b81526001600160a01b039091169063791ac94790612f72908790600090869030904290600401613903565b600060405180830381600087803b158015612f8c57600080fd5b505af1925050508015612f9d575060015b610d6657612fa961382b565b806308c379a003612fd25750612fbd613847565b80612fc85750612fd4565b6000925050611063565b505b3d808015612ffe576040519150601f19603f3d011682016040523d82523d6000602084013e613003565b606091505b506000925050611063565b6040805160028082526060820183526000928392839290916020830190803683375050601f54604080516315ab88c960e31b815290519394506001600160a01b039091169263ad5c4648925060048083019260209291908290030181865afa15801561307e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906130a291906138e6565b816000815181106130b5576130b56135ce565b60200260200101906001600160a01b031690816001600160a01b03168152505083816001815181106130e9576130e96135ce565b6001600160a01b039283166020918202929092010152601f5460405163b6f9de9560e01b815291169063b6f9de9590879061312f9060009086903090429060040161393f565b6000604051808303818588803b15801561314857600080fd5b505af19350505050801561315a575060015b6131cb5761316661382b565b806308c379a00361318f575061317a613847565b806131855750613191565b60009250506131d0565b505b3d8080156131bb576040519150601f19603f3d011682016040523d82523d6000602084013e6131c0565b606091505b5060009250506131d0565b600191505b509392505050565b6001600160a01b0381168114610e0057600080fd5b6000602082840312156131ff57600080fd5b8135610ef3816131d8565b6020808252825182820181905260009190848201906040850190845b8181101561324257835183529284019291840191600101613226565b50909695505050505050565b600060208083528351808285015260005b8181101561327b5785810183015185820160400152820161325f565b506000604082860101526040601f19601f8301168501019250505092915050565b600080604083850312156132af57600080fd5b82356132ba816131d8565b946020939093013593505050565b8015158114610e0057600080fd5b8035612acc816132c8565b6000602082840312156132f357600080fd5b8135610ef3816132c8565b60006020828403121561331057600080fd5b5035919050565b6000806040838503121561332a57600080fd5b8235613335816131d8565b91506020830135613345816131d8565b809150509250929050565b600081518084526020808501945080840160005b838110156133895781516001600160a01b031687529582019590820190600101613364565b509495945050505050565b602081526000610ef36020830184613350565b6000806000606084860312156133bc57600080fd5b83356133c7816131d8565b925060208401356133d7816131d8565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b601f8201601f1916810167ffffffffffffffff81118282101715613424576134246133e8565b6040525050565b600067ffffffffffffffff821115613445576134456133e8565b5060051b60200190565b6000602080838503121561346257600080fd5b823567ffffffffffffffff81111561347957600080fd5b8301601f8101851361348a57600080fd5b80356134958161342b565b6040516134a282826133fe565b82815260059290921b83018401918481019150878311156134c257600080fd5b928401925b828410156134e0578335825292840192908401906134c7565b979650505050505050565b600080604083850312156134fe57600080fd5b823567ffffffffffffffff81111561351557600080fd5b8301601f8101851361352657600080fd5b803560206135338261342b565b60405161354082826133fe565b83815260059390931b840182019282810191508884111561356057600080fd5b938201935b83851015613587578435613578816131d8565b82529382019390820190613565565b955061359690508682016132d6565b93505050509250929050565b6000806000606084860312156135b757600080fd5b505081359360208301359350604090920135919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006001820161360c5761360c6135e4565b5060010190565b600181811c9082168061362757607f821691505b60208210810361364757634e487b7160e01b600052602260045260246000fd5b50919050565b81810381811115610d6c57610d6c6135e4565b80820180821115610d6c57610d6c6135e4565b60006020828403121561368557600080fd5b8151610ef3816132c8565b600181815b808511156136cb5781600019048211156136b1576136b16135e4565b808516156136be57918102915b93841c9390800290613695565b509250929050565b6000826136e257506001610d6c565b816136ef57506000610d6c565b8160018114613705576002811461370f5761372b565b6001915050610d6c565b60ff841115613720576137206135e4565b50506001821b610d6c565b5060208310610133831016604e8410600b841016171561374e575081810a610d6c565b6137588383613690565b806000190482111561376c5761376c6135e4565b029392505050565b6000610ef360ff8416836136d3565b8082028115828204841417610d6c57610d6c6135e4565b6000826137b757634e487b7160e01b600052601260045260246000fd5b500490565b80820182811260008312801582168215821617156137dc576137dc6135e4565b505092915050565b6000602082840312156137f657600080fd5b5051919050565b60008060006060848603121561381257600080fd5b8351925060208401519150604084015190509250925092565b600060033d11156138445760046000803e5060005160e01c5b90565b600060443d10156138555790565b6040516003193d81016004833e81513d67ffffffffffffffff816024840111818411171561388557505050505090565b828501915081518181111561389d5750505050505090565b843d87010160208285010111156138b75750505050505090565b612df1602082860101876133fe565b8181036000831280158383131683831282161715611063576110636135e4565b6000602082840312156138f857600080fd5b8151610ef3816131d8565b85815284602082015260a06040820152600061392260a0830186613350565b6001600160a01b0394909416606083015250608001529392505050565b8481526080602082015260006139586080830186613350565b6001600160a01b0394909416604083015250606001529291505056fea2646970667358221220e577cf11210fb0df6cee60f4df6a770b862ae77d689db5c0846ba8d2a26456aa64736f6c63430008110033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d

-----Decoded View---------------
Arg [0] : router (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d


Deployed Bytecode Sourcemap

46970:29784:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48224:32;;;;;;;;;;;;;;;;;;;160:25:1;;;148:2;133:18;48224:32:0;;;;;;;;74066:470;;;;;;;;;;-1:-1:-1;74066:470:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;49235:41::-;;;;;;;;;;-1:-1:-1;49235:41:0;;;;-1:-1:-1;;;;;49235:41:0;;;;;;-1:-1:-1;;;;;1411:32:1;;;1393:51;;1381:2;1366:18;49235:41:0;1221:229:1;33969:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;36320:201::-;;;;;;;;;;-1:-1:-1;36320:201:0;;;;;:::i;:::-;;:::i;:::-;;;2493:14:1;;2486:22;2468:41;;2456:2;2441:18;36320:201:0;2328:187:1;71117:234:0;;;;;;;;;;-1:-1:-1;71117:234:0;;;;;:::i;:::-;;:::i;:::-;;59644:95;;;;;;;;;;-1:-1:-1;59644:95:0;;;;;:::i;:::-;;:::i;60441:188::-;;;;;;;;;;-1:-1:-1;60441:188:0;;;;;:::i;:::-;;:::i;35089:108::-;;;;;;;;;;-1:-1:-1;35177:12:0;;35089:108;;74765:239;;;;;;;;;;-1:-1:-1;74765:239:0;;;;;:::i;:::-;;:::i;65748:364::-;;;;;;;;;;-1:-1:-1;65748:364:0;;;;;:::i;:::-;;:::i;72830:349::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;52803:319::-;;;;;;;;;;-1:-1:-1;52803:319:0;;;;;:::i;:::-;;:::i;61482:425::-;;;;;;;;;;-1:-1:-1;61482:425:0;;;;;:::i;:::-;;:::i;49135:87::-;;;;;;;;;;-1:-1:-1;49135:87:0;;;;-1:-1:-1;;;;;49135:87:0;;;34931:93;;;;;;;;;;-1:-1:-1;34931:93:0;;35014:2;6691:36:1;;6679:2;6664:18;34931:93:0;6549:184:1;60244:94:0;;;;;;;;;;-1:-1:-1;60244:94:0;;;;;:::i;:::-;;:::i;37805:238::-;;;;;;;;;;-1:-1:-1;37805:238:0;;;;;:::i;:::-;;:::i;61998:369::-;;;;;;;;;;-1:-1:-1;61998:369:0;;;;;:::i;:::-;;:::i;60739:252::-;;;;;;;;;;-1:-1:-1;60739:252:0;;;;;:::i;:::-;;:::i;62672:465::-;;;;;;;;;;-1:-1:-1;62672:465:0;;;;;:::i;:::-;;:::i;48388:28::-;;;;;;;;;;;;;;;;48532:33;;;;;;;;;;-1:-1:-1;48532:33:0;;;;-1:-1:-1;;;;;48532:33:0;;;49285:28;;;;;;;;;;-1:-1:-1;49285:28:0;;;;-1:-1:-1;;;;;49285:28:0;;;47149:50;;;;;;;;;;-1:-1:-1;47149:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;59833:92;;;;;;;;;;-1:-1:-1;59833:92:0;;;;;:::i;:::-;;:::i;47739:39::-;;;;;;;;;;-1:-1:-1;47739:39:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;48349:30;;;;;;;;;;;;;;;;48463:31;;;;;;;;;;;;;;;;48083:30;;;;;;;;;;;;;;;;65071:588;;;;;;;;;;-1:-1:-1;65071:588:0;;;;;:::i;:::-;;:::i;35260:127::-;;;;;;;;;;-1:-1:-1;35260:127:0;;;;;:::i;:::-;;:::i;63994:114::-;;;;;;;;;;;;;:::i;47208:50::-;;;;;;;;;;-1:-1:-1;47208:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;49038:88;;;;;;;;;;-1:-1:-1;49038:88:0;;;;-1:-1:-1;;;;;49038:88:0;;;47905:54;;;;;;;;;;;;;;;;47267:52;;;;;;;;;;-1:-1:-1;47267:52:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;66183:137;;;;;;;;;;-1:-1:-1;66183:137:0;;;;;:::i;:::-;;:::i;59465:90::-;;;;;;;;;;-1:-1:-1;59465:90:0;;;;;:::i;:::-;;:::i;26746:87::-;;;;;;;;;;-1:-1:-1;26819:6:0;;-1:-1:-1;;;;;26819:6:0;26746:87;;48008:30;;;;;;;;;;-1:-1:-1;48008:30:0;;;;;;;;34188:104;;;;;;;;;;;;;:::i;51006:748::-;;;;;;;;;;;;;:::i;71943:835::-;;;;;;;;;;-1:-1:-1;71943:835:0;;;;;:::i;:::-;;:::i;73239:359::-;;;;;;;;;;;;;:::i;75455:488::-;;;;;;;;;;-1:-1:-1;75455:488:0;;;;;:::i;:::-;;:::i;38546:436::-;;;;;;;;;;-1:-1:-1;38546:436:0;;;;;:::i;:::-;;:::i;48163:31::-;;;;;;;;;;;;;;;;51980:207;;;;;;;;;;-1:-1:-1;51980:207:0;;;;;:::i;:::-;;:::i;59206:160::-;;;;;;;;;;-1:-1:-1;59206:160:0;;;;;:::i;:::-;;:::i;48047:27::-;;;;;;;;;;-1:-1:-1;48047:27:0;;;;;;;;;;;61061:353;;;;;;;;;;-1:-1:-1;61061:353:0;;;;;:::i;:::-;;:::i;48425:29::-;;;;;;;;;;;;;;;;47328:36;;;;;;;;;;-1:-1:-1;47328:36:0;;;;;:::i;:::-;;:::i;73827:185::-;;;;;;;;;;-1:-1:-1;73827:185:0;;;;;:::i;:::-;;:::i;76408:337::-;;;;;;;;;;-1:-1:-1;76408:337:0;;;;;:::i;:::-;;:::i;47867:29::-;;;;;;;;;;;;;;;;62467:134;;;;;;;;;;-1:-1:-1;62467:134:0;;;;;:::i;:::-;;:::i;35849:151::-;;;;;;;;;;-1:-1:-1;35849:151:0;;;;;:::i;:::-;;:::i;60019:97::-;;;;;;;;;;-1:-1:-1;60019:97:0;;;;;:::i;:::-;;:::i;75235:157::-;;;;;;;;;;-1:-1:-1;75235:157:0;;;;;:::i;:::-;-1:-1:-1;;;;;75345:29:0;;;75316:7;75345:29;;;:21;:29;;;;;;;;:37;;;;;;;;;;75235:157;;;;;47968:31;;;;;;;;;;;;;;;;48286:33;;;;;;;;;;;;;;;;50524:23;;;;;;;;;;-1:-1:-1;50524:23:0;;;;-1:-1:-1;;;50524:23:0;;;;;;63688:222;;;;;;;;;;-1:-1:-1;63688:222:0;;;;;:::i;:::-;;:::i;74066:470::-;74125:16;74156:27;74186:22;:20;:22::i;:::-;74235:17;;74156:52;;-1:-1:-1;74221:11:0;74235:17;74298:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;74298:18:0;;74265:51;;74338:9;74333:157;74357:3;74353:1;:7;74333:157;;;74384:14;74401:10;74412:1;74401:13;;;;;;;;:::i;:::-;;;;;;;74384:30;;74450:26;74461:6;74469;74450:10;:26::i;:::-;74431:13;74445:1;74431:16;;;;;;;;:::i;:::-;;;;;;;;;;:45;-1:-1:-1;74362:3:0;;;;:::i;:::-;;;;74333:157;;;-1:-1:-1;74513:13:0;74066:470;-1:-1:-1;;;;74066:470:0:o;33969:100::-;34023:13;34056:5;34049:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33969:100;:::o;36320:201::-;36403:4;25377:10;36459:32;25377:10;36475:7;36484:6;36459:8;:32::i;:::-;36509:4;36502:11;;;36320:201;;;;;:::o;71117:234::-;26632:13;:11;:13::i;:::-;-1:-1:-1;;;;;71197:28:0;::::1;;::::0;;;:20:::1;:28;::::0;;;;;::::1;;71192:150;;-1:-1:-1::0;;;;;71244:28:0;::::1;;::::0;;;:20:::1;:28;::::0;;;;:35;;-1:-1:-1;;71244:35:0::1;71275:4;71244:35:::0;;::::1;::::0;;;71296:19:::1;:32:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;71296:32:0::1;::::0;;::::1;::::0;;71192:150:::1;71117:234:::0;:::o;59644:95::-;26632:13;:11;:13::i;:::-;59710:11:::1;:19:::0;;;::::1;;-1:-1:-1::0;;;59710:19:0::1;-1:-1:-1::0;;;;59710:19:0;;::::1;::::0;;;::::1;::::0;;59644:95::o;60441:188::-;26632:13;:11;:13::i;:::-;48900:3:::1;60516:5;:20;;60515:49;;;;;48830:5;60542;:21;;60515:49;60507:82;;;::::0;-1:-1:-1;;;60507:82:0;;9770:2:1;60507:82:0::1;::::0;::::1;9752:21:1::0;9809:2;9789:18;;;9782:30;-1:-1:-1;;;9828:18:1;;;9821:50;9888:18;;60507:82:0::1;;;;;;;;;60602:9;:17:::0;60441:188::o;74765:239::-;-1:-1:-1;;;;;74879:28:0;;74849:7;74879:28;;;:20;:28;;;;;;;;74878:29;:116;;74993:1;74878:116;;;-1:-1:-1;;;;;74952:29:0;;;;;;;:21;:29;;;;;;;;:37;;;;;;;;;;74910:38;74982:6;74974;74910:22;:38::i;:::-;:80;;;;:::i;:::-;74871:123;74765:239;-1:-1:-1;;;74765:239:0:o;65748:364::-;26632:13;:11;:13::i;:::-;65832:33:::1;:17;65859:5:::0;65832:26:::1;:33::i;:::-;:78;;;;48613:1;65869:26;:17;:24;:26::i;:::-;:41;;65832:78;65824:128;;;::::0;-1:-1:-1;;;65824:128:0;;10252:2:1;65824:128:0::1;::::0;::::1;10234:21:1::0;10291:2;10271:18;;;10264:30;10330:34;10310:18;;;10303:62;-1:-1:-1;;;10381:18:1;;;10374:35;10426:19;;65824:128:0::1;10050:401:1::0;65824:128:0::1;65970:33;:17;65997:5:::0;65970:26:::1;:33::i;:::-;65965:99;;66022:28;:17;66044:5:::0;66022:21:::1;:28::i;:::-;;65965:99;66076:18;:26:::0;;-1:-1:-1;;;;;;66076:26:0::1;-1:-1:-1::0;;;;;66076:26:0;;;::::1;::::0;;;::::1;::::0;;65748:364::o;72830:349::-;72883:16;72914:11;72928:26;:17;:24;:26::i;:::-;72914:40;;72967:27;73011:3;72997:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;72997:18:0;;72967:48;;73037:9;73032:104;73056:3;73052:1;:7;73032:104;;;73099:23;:17;73120:1;73099:20;:23::i;:::-;73083:10;73094:1;73083:13;;;;;;;;:::i;:::-;-1:-1:-1;;;;;73083:39:0;;;:13;;;;;;;;;;;:39;73061:3;;;;:::i;:::-;;;;73032:104;;;-1:-1:-1;73159:10:0;72830:349;-1:-1:-1;;72830:349:0:o;52803:319::-;52941:4;25377:10;53003:38;53019:4;25377:10;53034:6;53003:15;:38::i;:::-;53054:34;53071:4;53077:2;53081:6;53054:16;:34::i;:::-;-1:-1:-1;53108:4:0;;52803:319;-1:-1:-1;;;;;52803:319:0:o;61482:425::-;26632:13;:11;:13::i;:::-;61579:17:::1;61623:1;61579:17:::0;61641:85:::1;61665:3;61661:1;:7;61641:85;;;61705:4;61710:1;61705:7;;;;;;;;:::i;:::-;;;;;;;61692:20;;;;;:::i;:::-;::::0;-1:-1:-1;61670:3:0;::::1;::::0;::::1;:::i;:::-;;;;61641:85;;;;48830:5;61746:9;:25;61738:64;;;::::0;-1:-1:-1;;;61738:64:0;;10788:2:1;61738:64:0::1;::::0;::::1;10770:21:1::0;10827:2;10807:18;;;10800:30;10866:28;10846:18;;;10839:56;10912:18;;61738:64:0::1;10586:350:1::0;61738:64:0::1;61830:4;61835:1;61830:7;;;;;;;;:::i;:::-;;;;;;;61819:8;:18;;;;61860:4;61865:1;61860:7;;;;;;;;:::i;:::-;;;;;;;61850;:17;;;;61890:4;61895:1;61890:7;;;;;;;;:::i;:::-;;;;;;;61880;:17;;;;61566:341;;61482:425:::0;:::o;60244:94::-;26632:13;:11;:13::i;:::-;60309:11:::1;:19:::0;;-1:-1:-1;;60309:19:0::1;::::0;::::1;;::::0;;;::::1;::::0;;60244:94::o;37805:238::-;37893:4;25377:10;37949:64;25377:10;37965:7;38002:10;37974:25;25377:10;37965:7;37974:9;:25::i;:::-;:38;;;;:::i;:::-;37949:8;:64::i;61998:369::-;26632:13;:11;:13::i;:::-;62102:12;;62088:11:::1;62131:227;62155:3;62151:1;:7;62131:227;;;62182:12;62197:5;62203:1;62197:8;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;62234:13;;62197:8;;-1:-1:-1;;;;;;62226:21:0;;::::1;62234:13:::0;::::1;62226:21;::::0;::::1;::::0;:57:::1;;-1:-1:-1::0;62267:15:0::1;::::0;-1:-1:-1;;;;;62251:32:0;;::::1;62267:15:::0;::::1;62251:32;;62226:57;62222:123;;;-1:-1:-1::0;;;;;62306:13:0;::::1;;::::0;;;:7:::1;:13;::::0;;;;:21;;-1:-1:-1;;62306:21:0::1;::::0;::::1;;;::::0;;62222:123:::1;-1:-1:-1::0;62160:3:0;::::1;::::0;::::1;:::i;:::-;;;;62131:227;;;;62075:292;61998:369:::0;;:::o;60739:252::-;26632:13;:11;:13::i;:::-;60848:14;;60834:11:::1;60879:103;60903:3;60899:1;:7;60879:103;;;60963:5;60930:18;:30;60949:7;60957:1;60949:10;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;60930:30:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;60930:30:0;:38;;-1:-1:-1;;60930:38:0::1;::::0;::::1;;::::0;;;::::1;::::0;;60908:3;::::1;::::0;::::1;:::i;:::-;;;;60879:103;;62672:465:::0;26632:13;:11;:13::i;:::-;62811:11:::1;::::0;62793:30:::1;::::0;-1:-1:-1;;;;;62811:11:0::1;62793:17;:30::i;:::-;:63;;;;-1:-1:-1::0;62845:10:0::1;::::0;62827:29:::1;::::0;-1:-1:-1;;;;;62845:10:0::1;62827:17;:29::i;:::-;62785:101;;;::::0;-1:-1:-1;;;62785:101:0;;11143:2:1;62785:101:0::1;::::0;::::1;11125:21:1::0;11182:2;11162:18;;;11155:30;11221:27;11201:18;;;11194:55;11266:18;;62785:101:0::1;10941:349:1::0;62785:101:0::1;62899:11;:24:::0;;-1:-1:-1;;;;;62899:24:0;;::::1;-1:-1:-1::0;;;;;;62899:24:0;;::::1;;::::0;;;62936:10:::1;:22:::0;;;;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;62998:16:::1;::::0;;63012:1:::1;62998:16:::0;;;;;::::1;::::0;;-1:-1:-1;;62998:16:0::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;62998:16:0::1;62971:43;;63040:10;63027:7;63035:1;63027:10;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1::0;;;;;63027:23:0::1;;;-1:-1:-1::0;;;;;63027:23:0::1;;;::::0;::::1;63076:9;63063:7;63071:1;63063:10;;;;;;;;:::i;:::-;;;;;;:22;-1:-1:-1::0;;;;;63063:22:0::1;;;-1:-1:-1::0;;;;;63063:22:0::1;;;::::0;::::1;63098:29;63113:7;63122:4;63098:14;:29::i;:::-;62772:365;62672:465:::0;;:::o;59833:92::-;26632:13;:11;:13::i;:::-;59896:11:::1;:19:::0;59833:92::o;65071:588::-;26632:13;:11;:13::i;:::-;65182:33:::1;:17;65209:5:::0;65182:26:::1;:33::i;:::-;65174:66;;;::::0;-1:-1:-1;;;65174:66:0;;11497:2:1;65174:66:0::1;::::0;::::1;11479:21:1::0;11536:2;11516:18;;;11509:30;-1:-1:-1;;;11555:18:1;;;11548:50;11615:18;;65174:66:0::1;11295:344:1::0;65174:66:0::1;65282:1;65261:18;:16;:18::i;:::-;:22;:49;;;;;65309:1;65287:19;:23;65261:49;65253:88;;;::::0;-1:-1:-1;;;65253:88:0;;11846:2:1;65253:88:0::1;::::0;::::1;11828:21:1::0;11885:2;11865:18;;;11858:30;11924:28;11904:18;;;11897:56;11970:18;;65253:88:0::1;11644:350:1::0;65253:88:0::1;65375:4;-1:-1:-1::0;;;;;65358:22:0;::::1;::::0;65354:231:::1;;65399:59;25377:10:::0;65431:4:::1;65438:19;65399:9;:59::i;:::-;65354:231;;;-1:-1:-1::0;;;;;65495:26:0;::::1;;25377:10:::0;65495:76:::1;::::0;-1:-1:-1;;;;;;65495:76:0::1;::::0;;;;;;-1:-1:-1;;;;;12257:15:1;;;65495:76:0::1;::::0;::::1;12239:34:1::0;65544:4:0::1;12289:18:1::0;;;12282:43;12341:18;;;12334:34;;;12174:18;;65495:76:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;65354:231;65597:52;65622:5;65629:19;65597:24;:52::i;:::-;65071:588:::0;;:::o;35260:127::-;-1:-1:-1;;;;;35361:18:0;35334:7;35361:18;;;;;;;;;;;;35260:127::o;63994:114::-;26632:13;:11;:13::i;:::-;64071:27:::1;64090:7;26819:6:::0;;-1:-1:-1;;;;;26819:6:0;;26746:87;64090:7:::1;64071:18;:27::i;:::-;63994:114::o:0;66183:137::-;26632:13;:11;:13::i;:::-;-1:-1:-1;;;;;66266:22:0;::::1;;25377:10:::0;66266:44:::1;::::0;-1:-1:-1;;;;;;66266:44:0::1;::::0;;;;;;-1:-1:-1;;;;;12821:32:1;;;66266:44:0::1;::::0;::::1;12803:51:1::0;12870:18;;;12863:34;;;12776:18;;66266:44:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;59465:90::-:0;26632:13;:11;:13::i;:::-;59529:8:::1;:16:::0;;;::::1;;;;-1:-1:-1::0;;59529:16:0;;::::1;::::0;;;::::1;::::0;;59465:90::o;34188:104::-;34244:13;34277:7;34270:14;;;;;:::i;51006:748::-;51128:19;:26;51054:7;;;;51171:8;;51167:167;;51203:9;51198:123;51222:4;51218:1;:8;51198:123;;;51270:33;51280:19;51300:1;51280:22;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;51280:22:0;51270:9;:33::i;:::-;51254:49;;;;:::i;:::-;;-1:-1:-1;51228:3:0;;;;:::i;:::-;;;;51198:123;;;;51167:167;51540:15;;51522:35;;-1:-1:-1;;;;;51540:15:0;51522:9;:35::i;:::-;51467:24;51485:4;51467:9;:24::i;:::-;51415:21;51433:1;51415:9;:21::i;:::-;51362:22;48986:42;51362:9;:22::i;:::-;:74;;;;:::i;:::-;:129;;;;:::i;:::-;:195;;;;:::i;:::-;51346:211;;;;:::i;:::-;;;51570:14;51587:13;35177:12;;;35089:108;51587:13;51570:30;-1:-1:-1;51613:17:0;51634:21;51643:12;51570:30;51634:21;:::i;:::-;51633:28;:82;;51693:21;51702:12;51693:6;:21;:::i;:::-;51633:82;;;51672:16;35014:2;51672;:16;:::i;:::-;51665:23;;:4;:23;:::i;:::-;51613:102;51006:748;-1:-1:-1;;;;;51006:748:0:o;71943:835::-;25377:10;72013:34;;;;:20;:34;;;;;;;;72012:35;72004:75;;;;-1:-1:-1;;;72004:75:0;;14666:2:1;72004:75:0;;;14648:21:1;14705:2;14685:18;;;14678:30;14744:29;14724:18;;;14717:57;14791:18;;72004:75:0;14464:351:1;72004:75:0;72100:33;:17;72127:5;72100:26;:33::i;:::-;72092:66;;;;-1:-1:-1;;;72092:66:0;;11497:2:1;72092:66:0;;;11479:21:1;11536:2;11516:18;;;11509:30;-1:-1:-1;;;11555:18:1;;;11548:50;11615:18;;72092:66:0;11295:344:1;72092:66:0;72171:29;72203:43;25377:10;72240:5;72203:22;:43::i;:::-;72171:75;-1:-1:-1;72267:25:0;;72263:506;;-1:-1:-1;;;;;72356:28:0;;;;;;:21;:28;;;;;;;;25377:10;72356:42;;;;;;;;:68;;72402:21;;72356:68;:::i;:::-;-1:-1:-1;;;;;72311:28:0;;;;;;:21;:28;;;;;;;;25377:10;72311:42;;;;;;;;;;:113;;;;72446:61;;12239:34:1;;;12289:18;;12282:43;;;;12341:18;;;12334:34;;;72446:61:0;;;;;;;12189:2:1;72446:61:0;;;72545:4;-1:-1:-1;;;;;72528:22:0;;;72524:232;;72573:61;72591:4;25377:10;72612:21;72573:9;:61::i;73239:359::-;25377:10;73301:34;;;;:20;:34;;;;;;;;73300:35;73292:75;;;;-1:-1:-1;;;73292:75:0;;14666:2:1;73292:75:0;;;14648:21:1;14705:2;14685:18;;;14678:30;14744:29;14724:18;;;14717:57;14791:18;;73292:75:0;14464:351:1;73292:75:0;73380:27;73410:22;:20;:22::i;:::-;73459:17;;73380:52;;-1:-1:-1;73445:11:0;73493:96;73517:3;73513:1;:7;73493:96;;;73544:31;73561:10;73572:1;73561:13;;;;;;;;:::i;:::-;;;;;;;73544:16;:31::i;:::-;73522:3;;;;:::i;:::-;;;;73493:96;;75455:488;75523:16;75554:27;75584:22;:20;:22::i;:::-;75633:17;;75554:52;;-1:-1:-1;75619:11:0;75633:17;75696:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;75696:18:0;;75663:51;;75736:9;75731:166;75755:3;75751:1;:7;75731:166;;;75782:14;75799:10;75810:1;75799:13;;;;;;;;:::i;:::-;;;;;;;75782:30;;75848:35;75868:6;75876;-1:-1:-1;;;;;75345:29:0;;;75316:7;75345:29;;;:21;:29;;;;;;;;:37;;;;;;;;;;75235:157;;;;;75848:35;75829:13;75843:1;75829:16;;;;;;;;:::i;:::-;;;;;;;;;;:54;-1:-1:-1;75760:3:0;;;;:::i;:::-;;;;75731:166;;38546:436;38639:4;25377:10;38639:4;38722:25;25377:10;38739:7;38722:9;:25::i;:::-;38695:52;;38786:15;38766:16;:35;;38758:85;;;;-1:-1:-1;;;38758:85:0;;15022:2:1;38758:85:0;;;15004:21:1;15061:2;15041:18;;;15034:30;15100:34;15080:18;;;15073:62;-1:-1:-1;;;15151:18:1;;;15144:35;15196:19;;38758:85:0;14820:401:1;38758:85:0;38879:60;38888:5;38895:7;38923:15;38904:16;:34;38879:8;:60::i;:::-;-1:-1:-1;38970:4:0;;38546:436;-1:-1:-1;;;;38546:436:0:o;51980:207::-;52058:4;25377:10;52118:35;25377:10;52142:2;52146:6;52118:16;:35::i;59206:160::-;26632:13;:11;:13::i;:::-;59294:1:::1;59285:6;:10;59277:43;;;::::0;-1:-1:-1;;;59277:43:0;;15428:2:1;59277:43:0::1;::::0;::::1;15410:21:1::0;15467:2;15447:18;;;15440:30;-1:-1:-1;;;15486:18:1;;;15479:51;15547:18;;59277:43:0::1;15226:345:1::0;59277:43:0::1;59333:14;:23:::0;59206:160::o;61061:353::-;26632:13;:11;:13::i;:::-;61220:3:::1;61210:6;:13;;:31;;;;;61238:3;61227:7;:14;;61210:31;:50;;;;;61257:3;61245:8;:15;;61210:50;61202:100;;;::::0;-1:-1:-1;;;61202:100:0;;15778:2:1;61202:100:0::1;::::0;::::1;15760:21:1::0;15817:2;15797:18;;;15790:30;15856:34;15836:18;;;15829:62;-1:-1:-1;;;15907:18:1;;;15900:35;15952:19;;61202:100:0::1;15576:401:1::0;61202:100:0::1;61315:10;:19:::0;;;;61347:11:::1;:21:::0;61381:12:::1;:23:::0;61061:353::o;47328:36::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;47328:36:0;;-1:-1:-1;47328:36:0;:::o;73827:185::-;-1:-1:-1;;;;;73929:28:0;;73899:7;73929:28;;;:20;:28;;;;;;;;73928:29;:74;;74001:1;73928:74;;;73960:38;73983:6;73991;73960:22;:38::i;76408:337::-;-1:-1:-1;;;;;76526:28:0;;76492:7;76526:28;;;:20;:28;;;;;;;;76525:29;:210;;76734:1;76525:210;;;-1:-1:-1;;;;;76655:39:0;;;;;;;:31;:39;;;;;;;;:47;;;;;;;;;;-1:-1:-1;;;47410:6:0;76596:123;;:107;;:34;76597:17;76695:6;76597:9;:17::i;:::-;76596:32;:34::i;:::-;:58;;:107::i;:::-;:121;:123::i;:::-;-1:-1:-1;;;;;76557:36:0;;;;;;:28;:36;;;;;;:162;;;;:::i;:::-;:174;;;;:::i;62467:134::-;26632:13;:11;:13::i;:::-;62561:30:::1;62576:7;62585:5;62561:14;:30::i;35849:151::-:0;-1:-1:-1;;;;;35965:18:0;;;35938:7;35965:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;35849:151::o;60019:97::-;26632:13;:11;:13::i;:::-;60084:14:::1;:22:::0;60019:97::o;63688:222::-;26632:13;:11;:13::i;:::-;63789:27:::1;63807:8;63789:17;:27::i;:::-;63781:78;;;::::0;-1:-1:-1;;;63781:78:0;;16406:2:1;63781:78:0::1;::::0;::::1;16388:21:1::0;16445:2;16425:18;;;16418:30;16484:34;16464:18;;;16457:62;-1:-1:-1;;;16535:18:1;;;16528:36;16581:19;;63781:78:0::1;16204:402:1::0;63781:78:0::1;63872:28;63891:8;63872:18;:28::i;19557:156::-:0;19627:4;19653:50;19658:3;-1:-1:-1;;;;;19678:23:0;;19653:4;:50::i;42573:380::-;-1:-1:-1;;;;;42709:19:0;;42701:68;;;;-1:-1:-1;;;42701:68:0;;16813:2:1;42701:68:0;;;16795:21:1;16852:2;16832:18;;;16825:30;16891:34;16871:18;;;16864:62;-1:-1:-1;;;16942:18:1;;;16935:34;16986:19;;42701:68:0;16611:400:1;42701:68:0;-1:-1:-1;;;;;42788:21:0;;42780:68;;;;-1:-1:-1;;;42780:68:0;;17218:2:1;42780:68:0;;;17200:21:1;17257:2;17237:18;;;17230:30;17296:34;17276:18;;;17269:62;-1:-1:-1;;;17347:18:1;;;17340:32;17389:19;;42780:68:0;17016:398:1;42780:68:0;-1:-1:-1;;;;;42861:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;42913:32;;160:25:1;;;42913:32:0;;133:18:1;42913:32:0;;;;;;;42573:380;;;:::o;26911:132::-;26819:6;;-1:-1:-1;;;;;26819:6:0;25377:10;26975:23;26967:68;;;;-1:-1:-1;;;26967:68:0;;17621:2:1;26967:68:0;;;17603:21:1;;;17640:18;;;17633:30;17699:34;17679:18;;;17672:62;17751:18;;26967:68:0;17419:356:1;20163:171:0;-1:-1:-1;;;;;20299:23:0;;20243:4;15237:19;;;:12;;;:19;;;;;;:24;;20269:55;15138:133;20430:121;20493:7;20522:19;20530:3;15452:18;;15367:113;20929:162;21003:7;21056:22;21060:3;21072:5;21056:3;:22::i;43244:453::-;43379:24;43406:25;43416:5;43423:7;43406:9;:25::i;:::-;43379:52;;-1:-1:-1;;43446:16:0;:37;43442:248;;43528:6;43508:16;:26;;43500:68;;;;-1:-1:-1;;;43500:68:0;;17982:2:1;43500:68:0;;;17964:21:1;18021:2;18001:18;;;17994:30;18060:31;18040:18;;;18033:59;18109:18;;43500:68:0;17780:353:1;43500:68:0;43612:51;43621:5;43628:7;43656:6;43637:16;:25;43612:8;:51::i;66418:1906::-;66547:4;66583:1;66574:6;:10;66566:53;;;;-1:-1:-1;;;66566:53:0;;18340:2:1;66566:53:0;;;18322:21:1;18379:2;18359:18;;;18352:30;18418:32;18398:18;;;18391:60;18468:18;;66566:53:0;18138:354:1;66566:53:0;-1:-1:-1;;;;;66640:18:0;;;;;;:38;;-1:-1:-1;;;;;;66662:16:0;;;;66640:38;66632:82;;;;-1:-1:-1;;;66632:82:0;;18699:2:1;66632:82:0;;;18681:21:1;18738:2;18718:18;;;18711:30;18777:33;18757:18;;;18750:61;18828:18;;66632:82:0;18497:355:1;66632:82:0;-1:-1:-1;;;;;67003:22:0;;66727:20;67003:22;;;:18;:22;;;;;;66750:6;;67003:22;;67002:23;:50;;;;-1:-1:-1;;;;;;67030:22:0;;;;;;:18;:22;;;;;;;;67029:23;67002:50;66998:240;;;48830:5;67167:9;;67151:13;35177:12;;;35089:108;67151:13;:25;;;;:::i;:::-;67150:42;;;;:::i;:::-;67138:6;67122:13;67132:2;67122:9;:13::i;:::-;:22;;;;:::i;:::-;67121:72;;67113:111;;;;-1:-1:-1;;;67113:111:0;;19059:2:1;67113:111:0;;;19041:21:1;19098:2;19078:18;;;19071:30;19137:28;19117:18;;;19110:56;19183:18;;67113:111:0;18857:350:1;67113:111:0;-1:-1:-1;;;;;67259:13:0;;;;;;:7;:13;;;;;;;;67254:141;;67327:19;:17;:19::i;:::-;;67254:141;67415:8;;;;;;;:37;;;;-1:-1:-1;;;;;;67428:24:0;;;;;;:18;:24;;;;;;;;67427:25;67415:37;:64;;;;-1:-1:-1;;;;;;67457:22:0;;;;;;:18;:22;;;;;;;;67456:23;67415:64;67411:737;;;-1:-1:-1;;;;;67562:13:0;;67524:17;67562:13;;;:7;:13;;;;;;;;67558:429;;;48830:5;67653:10;;67644:6;:19;;;;:::i;:::-;67643:36;;;;:::i;:::-;67631:48;;67558:429;;;-1:-1:-1;;;;;67707:11:0;;;;;;:7;:11;;;;;;;;67703:284;;;48830:5;67797:11;;67788:6;:20;;;;:::i;67703:284::-;48830:5;67941:12;;67932:6;:21;;;;:::i;:::-;67931:38;;;;:::i;:::-;67919:50;;67703:284;68012:18;68021:9;68012:6;:18;:::i;:::-;68003:27;;68047:41;68057:4;68071;68078:9;68047;:41::i;:::-;68125:9;68105:16;;:29;;;;;;;:::i;:::-;;;;-1:-1:-1;;;67411:737:0;68160:27;68170:4;68176:2;68180:6;68160:9;:27::i;:::-;68220:41;68238:4;68244:2;68248:12;68220:17;:41::i;:::-;68274:14;:16;;;:14;:16;;;:::i;:::-;;;;-1:-1:-1;68310:4:0;;66418:1906;-1:-1:-1;;;;;;66418:1906:0:o;70391:274::-;70456:4;-1:-1:-1;;;;;70482:20:0;;;;;;:72;;-1:-1:-1;;;;;;70524:30:0;;48986:42;70524:30;;70482:72;:117;;;;-1:-1:-1;;;;;;70576:23:0;;70594:4;70576:23;;70482:117;:173;;;;-1:-1:-1;;70639:15:0;;-1:-1:-1;;;;;70639:15:0;;;70621:34;;;;;70391:274::o;63241:280::-;63338:14;;63324:11;63369:143;63393:3;63389:1;:7;63369:143;;;63420:14;63437:7;63445:1;63437:10;;;;;;;;:::i;:::-;;;;;;;;;;;;-1:-1:-1;;;;;63464:26:0;;;;;:18;:26;;;;;;:34;;-1:-1:-1;;63464:34:0;;;;;;;-1:-1:-1;63398:3:0;;;;:::i;:::-;;;;63369:143;;39452:840;-1:-1:-1;;;;;39583:18:0;;39575:68;;;;-1:-1:-1;;;39575:68:0;;19414:2:1;39575:68:0;;;19396:21:1;19453:2;19433:18;;;19426:30;19492:34;19472:18;;;19465:62;-1:-1:-1;;;19543:18:1;;;19536:35;19588:19;;39575:68:0;19212:401:1;39575:68:0;-1:-1:-1;;;;;39662:16:0;;39654:64;;;;-1:-1:-1;;;39654:64:0;;19820:2:1;39654:64:0;;;19802:21:1;19859:2;19839:18;;;19832:30;19898:34;19878:18;;;19871:62;-1:-1:-1;;;19949:18:1;;;19942:33;19992:19;;39654:64:0;19618:399:1;39654:64:0;-1:-1:-1;;;;;39804:15:0;;39782:19;39804:15;;;;;;;;;;;39838:21;;;;39830:72;;;;-1:-1:-1;;;39830:72:0;;20224:2:1;39830:72:0;;;20206:21:1;20263:2;20243:18;;;20236:30;20302:34;20282:18;;;20275:62;-1:-1:-1;;;20353:18:1;;;20346:36;20399:19;;39830:72:0;20022:402:1;39830:72:0;-1:-1:-1;;;;;39938:15:0;;;:9;:15;;;;;;;;;;;39956:20;;;39938:38;;40156:13;;;;;;;;;;:23;;;;;;40208:26;;160:25:1;;;40156:13:0;;40208:26;;133:18:1;40208:26:0;;;;;;;40247:37;62672:465;71415:345;71645:18;:16;:18::i;:::-;71607:35;-1:-1:-1;;;71608:19:0;71607:35;:::i;:::-;:56;;;;:::i;:::-;-1:-1:-1;;;;;71552:35:0;;;;;;:28;:35;;;;;;:132;;;;:::i;:::-;-1:-1:-1;;;;;71514:35:0;;;;;;:28;:35;;;;;;;;;:170;;;;71702:48;;12803:51:1;;;12870:18;;;12863:34;;;71702:48:0;;12776:18:1;71702:48:0;;;;;;;71415:345;;:::o;28013:191::-;28106:6;;;-1:-1:-1;;;;;28123:17:0;;;-1:-1:-1;;;;;;28123:17:0;;;;;;;28156:40;;28106:6;;;28123:17;28106:6;;28156:40;;28087:16;;28156:40;28076:128;28013:191;:::o;197:134::-;253:6;286:1;303:6;;;;295:15;;;;;1517:162;1573:6;;1599:5;1603:1;1599;:5;:::i;:::-;1588:16;;1625:1;1620;:6;;:16;;;;;1635:1;1630;:6;;1620:16;1619:38;;;;1646:1;1642;:5;:14;;;;;1655:1;1651;:5;1642:14;1611:47;;;;;1685:117;1741:7;1770:1;1765;:6;;1757:15;;;;;;-1:-1:-1;1794:1:0;1685:117::o;12932:434::-;12995:4;15237:19;;;:12;;;:19;;;;;;13014:343;;-1:-1:-1;13059:23:0;;;;;;;;:11;:23;;;;;;;;;;;;;13248:18;;13226:19;;;:12;;;:19;;;;;;:40;;;;13283:11;;13014:343;-1:-1:-1;13338:5:0;13331:12;;15858:124;15925:7;15954:3;:11;;15966:5;15954:18;;;;;;;;:::i;:::-;;;;;;;;;15947:25;;15858:124;;;;:::o;70762:253::-;70831:11;;70808:4;;70831:11;;:44;;;;;70864:11;;70846:14;;:29;;70831:44;:82;;;;;70899:14;;70879:16;;:34;;70831:82;70827:155;;;70932:36;70951:16;;70932:18;:36::i;:::-;;70827:155;-1:-1:-1;71001:4:0;;70762:253::o;68415:216::-;-1:-1:-1;;;;;68509:26:0;;;;;;:20;:26;;;;;;;;68504:118;;68554:35;68573:4;68579:2;68583:5;68554:18;:35::i;53351:2328::-;53435:11;;53412:4;;-1:-1:-1;;;53435:11:0;;;;:20;;;;53431:2239;;53474:11;:18;;-1:-1:-1;;;;53474:18:0;-1:-1:-1;;;53474:18:0;;;;53530:24;53548:4;53530:9;:24::i;:::-;53509:45;;53571:17;48830:5;53601:7;;53592:6;:16;;;;:::i;:::-;53591:33;;;;:::i;:::-;53571:53;-1:-1:-1;53641:20:0;53664:18;53571:53;53664:6;:18;:::i;:::-;53707;;53641:41;;-1:-1:-1;53737:4:0;-1:-1:-1;;;;;53707:18:0;;;:35;53703:297;;53818:19;53840:16;53855:1;53840:12;:16;:::i;:::-;53902:18;;53818:38;;-1:-1:-1;53877:57:0;;-1:-1:-1;;;;;53902:18:0;53818:38;53877:24;:57::i;:::-;53955:27;53971:11;53955:27;;:::i;:::-;;;53744:256;53703:297;54051:18;;54044:51;;-1:-1:-1;;;54044:51:0;;54089:4;54044:51;;;1393::1;54020:21:0;;-1:-1:-1;;;;;54051:18:0;;54044:36;;1366:18:1;;54044:51:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;54145:18;;54020:75;;-1:-1:-1;54112:52:0;;54132:12;;-1:-1:-1;;;;;54145:18:0;54112:19;:52::i;:::-;54189:18;;-1:-1:-1;;;;;54189:18:0;54219:4;54189:35;54185:488;;54299:18;;54292:51;;-1:-1:-1;;;54292:51:0;;54337:4;54292:51;;;1393::1;54265:24:0;;-1:-1:-1;;;;;54299:18:0;;54292:36;;1366:18:1;;54292:51:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;54265:78;-1:-1:-1;54364:17:0;54384:21;;;;;:43;;-1:-1:-1;54409:18:0;;;54384:43;:82;;54465:1;54384:82;;;54430:32;54449:13;54430:16;:32;:::i;:::-;54364:102;-1:-1:-1;54495:13:0;;54491:165;;54604:18;;54579:55;;-1:-1:-1;;;;;54604:18:0;54624:9;54579:24;:55::i;:::-;54226:447;;54185:488;54722:21;54764:22;;54760:604;;54809:23;48830:5;54857:8;;54836:18;:29;;;;:::i;:::-;54835:46;;;;:::i;:::-;54809:72;;54902:22;48830:5;54949:7;;54928:18;:28;;;;:::i;:::-;54927:45;;;;:::i;:::-;54902:70;;54993:22;48830:5;55040:7;;55019:18;:28;;;;:::i;:::-;55018:45;;;;:::i;:::-;54993:70;;55104:1;55092:9;:13;:35;;;;;55126:1;55109:14;:18;55092:35;55088:127;;;55154:39;55167:9;55178:14;55154:12;:39::i;:::-;;55088:127;55254:11;;55239:44;;-1:-1:-1;;;;;55254:11:0;55267:15;55239:14;:44::i;:::-;-1:-1:-1;55319:10:0;;55304:42;;-1:-1:-1;;;;;55319:10:0;55331:14;55304;:42::i;:::-;;54788:576;;;54760:604;55384:21;55408:24;55426:4;55408:9;:24::i;:::-;55384:48;;55469:10;55453:13;:26;55449:91;;;55521:1;55502:16;:20;55449:91;-1:-1:-1;;55560:11:0;:19;;-1:-1:-1;;;;55560:19:0;;;-1:-1:-1;55560:19:0;;53351:2328;-1:-1:-1;;;;;53351:2328:0:o;53431:2239::-;-1:-1:-1;55651:5:0;;53351:2328;-1:-1:-1;53351:2328:0:o;53431:2239::-;53351:2328;;;:::o;68736:659::-;68826:27;68856:22;:20;:22::i;:::-;68905:17;;68826:52;;-1:-1:-1;68891:11:0;68939:447;68963:3;68959:1;:7;68939:447;;;68990:13;69006:10;69017:1;69006:13;;;;;;;;:::i;:::-;;;;;;;68990:29;;69036:21;69060:60;69099:5;69061:28;:35;69090:5;-1:-1:-1;;;;;69061:35:0;-1:-1:-1;;;;;69061:35:0;;;;;;;;;;;;;:43;;;;:::i;69060:60::-;-1:-1:-1;;;;;69184:38:0;;;;;;;:31;:38;;;;;;;;:44;;;;;;;;;;69036:84;;-1:-1:-1;69184:64:0;;69036:84;69184:48;:64::i;:::-;-1:-1:-1;;;;;69137:38:0;;;;;;;:31;:38;;;;;;;;:44;;;;;;;;;;;:111;;;;69310:42;;;;;;;:62;;69357:14;69310:46;:62::i;:::-;-1:-1:-1;;;;;69265:38:0;;;;;;;:31;:38;;;;;;;;:42;;;;;;;;;;;;:107;;;;-1:-1:-1;68968:3:0;;;;:::i;:::-;;;;68939:447;;;;68813:582;;68736:659;;;:::o;57528:566::-;57618:15;;57614:471;;57673:4;-1:-1:-1;;;;;57656:22:0;;;57652:420;;57701:25;57714:11;57701:12;:25::i;57652:420::-;57771:25;57784:11;57771:12;:25::i;:::-;-1:-1:-1;57846:21:0;57817:26;57910:22;57931:1;57846:21;57910:22;:::i;:::-;57888:44;-1:-1:-1;57957:15:0;;57953:102;;57999:34;58014:11;58027:5;57999:14;:34::i;:::-;;57750:322;;57528:566;;:::o;58212:873::-;58291:4;58328:1;58314:11;:15;:32;;;;;58345:1;58333:9;:13;58314:32;58310:766;;;58436:15;;58365:14;;58404:62;;58421:4;;-1:-1:-1;;;;;58436:15:0;58454:11;58404:8;:62::i;:::-;58491:15;;:244;;-1:-1:-1;;;58491:244:0;;58569:4;58491:244;;;21188:34:1;21238:18;;;21231:34;;;58491:15:0;21281:18:1;;;21274:34;;;21324:18;;;21317:34;48986:42:0;21367:19:1;;;21360:44;58703:15:0;21420:19:1;;;21413:35;-1:-1:-1;;;;;58491:15:0;;;;:31;;58530:9;;21122:19:1;;58491:244:0;;;;;;;;;;;;;;;;;;;;-1:-1:-1;58491:244:0;;;;;;;;-1:-1:-1;;58491:244:0;;;;;;;;;;;;:::i;:::-;;;58487:494;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;58863:5;58851:17;;58792:94;58487:494;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58958:5;58946:17;;58887:94;58487:494;;;;;;58769:4;58757:16;;58487:494;59004:9;-1:-1:-1;58997:16:0;;69977:309;70061:4;;70117:28;70135:9;70117:17;:28::i;:::-;:42;;;;;70158:1;70149:6;:10;70117:42;70113:137;;;70192:44;;-1:-1:-1;;;;;70192:14:0;;;70227:4;;70214:6;;70192:44;;;;70214:6;70192:14;70227:4;70192:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;70178:58:0;;69977:309;-1:-1:-1;;;;;69977:309:0:o;1358:153::-;1414:6;1443:1;1438;:6;;:20;;;;-1:-1:-1;1457:1:0;1448:5;1452:1;1457;1448:5;:::i;:::-;:10;;1438:20;1437:46;;;;1468:1;1464;:5;:18;;;;-1:-1:-1;1481:1:0;1473:5;1477:1;1481;1473:5;:::i;:::-;:9;1464:18;1429:55;;;;;;1500:5;1504:1;1500;:5;:::i;55798:799::-;55936:16;;;55950:1;55936:16;;;;;;;;55858:4;;;;;;55936:16;;;;;;;;;;;;-1:-1:-1;55936:16:0;55912:40;;55983:4;55965;55970:1;55965:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;55965:23:0;;;:7;;;;;;;;;;:23;;;;56011:15;;:22;;;-1:-1:-1;;;56011:22:0;;;;:15;;;;;:20;;:22;;;;;55965:7;;56011:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56001:4;56006:1;56001:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;56001:32:0;;;:7;;;;;;;;;:32;56078:15;;56046:62;;56063:4;;56078:15;56096:11;56046:8;:62::i;:::-;56129:15;;:208;;-1:-1:-1;;;56129:208:0;;-1:-1:-1;;;;;56129:15:0;;;;:66;;:208;;56212:11;;56129:15;;56258:4;;56287;;56309:15;;56129:208;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56125:434;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;56453:5;56441:17;;56386:86;56125:434;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56540:5;56528:17;;56473:86;56125:434;;56716:724;56869:16;;;56883:1;56869:16;;;;;;;;56791:4;;;;;;56869:16;;;;;;;;;;-1:-1:-1;;56908:15:0;;:22;;;-1:-1:-1;;;56908:22:0;;;;56845:40;;-1:-1:-1;;;;;;56908:15:0;;;;:20;;-1:-1:-1;56908:22:0;;;;;;;;;;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56898:4;56903:1;56898:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;56898:32:0;;;-1:-1:-1;;;;;56898:32:0;;;;;56953:5;56943:4;56948:1;56943:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;56943:15:0;;;:7;;;;;;;;;:15;56979;;:201;;-1:-1:-1;;;56979:201:0;;:15;;;:66;;57053:9;;56979:201;;:15;;57099:4;;57129;;57152:15;;56979:201;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56975:427;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;57296:5;57284:17;;57229:86;56975:427;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57383:5;57371:17;;57316:86;56975:427;;;57210:4;57198:16;;56975:427;-1:-1:-1;57421:9:0;56716:724;-1:-1:-1;;;56716:724:0:o;196:131:1:-;-1:-1:-1;;;;;271:31:1;;261:42;;251:70;;317:1;314;307:12;332:247;391:6;444:2;432:9;423:7;419:23;415:32;412:52;;;460:1;457;450:12;412:52;499:9;486:23;518:31;543:5;518:31;:::i;584:632::-;755:2;807:21;;;877:13;;780:18;;;899:22;;;726:4;;755:2;978:15;;;;952:2;937:18;;;726:4;1021:169;1035:6;1032:1;1029:13;1021:169;;;1096:13;;1084:26;;1165:15;;;;1130:12;;;;1057:1;1050:9;1021:169;;;-1:-1:-1;1207:3:1;;584:632;-1:-1:-1;;;;;;584:632:1:o;1455:548::-;1567:4;1596:2;1625;1614:9;1607:21;1657:6;1651:13;1700:6;1695:2;1684:9;1680:18;1673:34;1725:1;1735:140;1749:6;1746:1;1743:13;1735:140;;;1844:14;;;1840:23;;1834:30;1810:17;;;1829:2;1806:26;1799:66;1764:10;;1735:140;;;1739:3;1924:1;1919:2;1910:6;1899:9;1895:22;1891:31;1884:42;1994:2;1987;1983:7;1978:2;1970:6;1966:15;1962:29;1951:9;1947:45;1943:54;1935:62;;;;1455:548;;;;:::o;2008:315::-;2076:6;2084;2137:2;2125:9;2116:7;2112:23;2108:32;2105:52;;;2153:1;2150;2143:12;2105:52;2192:9;2179:23;2211:31;2236:5;2211:31;:::i;:::-;2261:5;2313:2;2298:18;;;;2285:32;;-1:-1:-1;;;2008:315:1:o;2520:118::-;2606:5;2599:13;2592:21;2585:5;2582:32;2572:60;;2628:1;2625;2618:12;2643:128;2708:20;;2737:28;2708:20;2737:28;:::i;2776:241::-;2832:6;2885:2;2873:9;2864:7;2860:23;2856:32;2853:52;;;2901:1;2898;2891:12;2853:52;2940:9;2927:23;2959:28;2981:5;2959:28;:::i;3022:180::-;3081:6;3134:2;3122:9;3113:7;3109:23;3105:32;3102:52;;;3150:1;3147;3140:12;3102:52;-1:-1:-1;3173:23:1;;3022:180;-1:-1:-1;3022:180:1:o;3207:388::-;3275:6;3283;3336:2;3324:9;3315:7;3311:23;3307:32;3304:52;;;3352:1;3349;3342:12;3304:52;3391:9;3378:23;3410:31;3435:5;3410:31;:::i;:::-;3460:5;-1:-1:-1;3517:2:1;3502:18;;3489:32;3530:33;3489:32;3530:33;:::i;:::-;3582:7;3572:17;;;3207:388;;;;;:::o;3600:461::-;3653:3;3691:5;3685:12;3718:6;3713:3;3706:19;3744:4;3773:2;3768:3;3764:12;3757:19;;3810:2;3803:5;3799:14;3831:1;3841:195;3855:6;3852:1;3849:13;3841:195;;;3920:13;;-1:-1:-1;;;;;3916:39:1;3904:52;;3976:12;;;;4011:15;;;;3952:1;3870:9;3841:195;;;-1:-1:-1;4052:3:1;;3600:461;-1:-1:-1;;;;;3600:461:1:o;4066:261::-;4245:2;4234:9;4227:21;4208:4;4265:56;4317:2;4306:9;4302:18;4294:6;4265:56;:::i;4332:456::-;4409:6;4417;4425;4478:2;4466:9;4457:7;4453:23;4449:32;4446:52;;;4494:1;4491;4484:12;4446:52;4533:9;4520:23;4552:31;4577:5;4552:31;:::i;:::-;4602:5;-1:-1:-1;4659:2:1;4644:18;;4631:32;4672:33;4631:32;4672:33;:::i;:::-;4332:456;;4724:7;;-1:-1:-1;;;4778:2:1;4763:18;;;;4750:32;;4332:456::o;4793:127::-;4854:10;4849:3;4845:20;4842:1;4835:31;4885:4;4882:1;4875:15;4909:4;4906:1;4899:15;4925:249;5035:2;5016:13;;-1:-1:-1;;5012:27:1;5000:40;;5070:18;5055:34;;5091:22;;;5052:62;5049:88;;;5117:18;;:::i;:::-;5153:2;5146:22;-1:-1:-1;;4925:249:1:o;5179:183::-;5239:4;5272:18;5264:6;5261:30;5258:56;;;5294:18;;:::i;:::-;-1:-1:-1;5339:1:1;5335:14;5351:4;5331:25;;5179:183::o;5367:953::-;5451:6;5482:2;5525;5513:9;5504:7;5500:23;5496:32;5493:52;;;5541:1;5538;5531:12;5493:52;5581:9;5568:23;5614:18;5606:6;5603:30;5600:50;;;5646:1;5643;5636:12;5600:50;5669:22;;5722:4;5714:13;;5710:27;-1:-1:-1;5700:55:1;;5751:1;5748;5741:12;5700:55;5787:2;5774:16;5809:43;5849:2;5809:43;:::i;:::-;5881:2;5875:9;5893:31;5921:2;5913:6;5893:31;:::i;:::-;5959:18;;;6047:1;6043:10;;;;6035:19;;6031:28;;;5993:15;;;;-1:-1:-1;6071:19:1;;;6068:39;;;6103:1;6100;6093:12;6068:39;6127:11;;;;6147:142;6163:6;6158:3;6155:15;6147:142;;;6229:17;;6217:30;;6180:12;;;;6267;;;;6147:142;;;6308:6;5367:953;-1:-1:-1;;;;;;;5367:953:1:o;6738:1098::-;6828:6;6836;6889:2;6877:9;6868:7;6864:23;6860:32;6857:52;;;6905:1;6902;6895:12;6857:52;6945:9;6932:23;6978:18;6970:6;6967:30;6964:50;;;7010:1;7007;7000:12;6964:50;7033:22;;7086:4;7078:13;;7074:27;-1:-1:-1;7064:55:1;;7115:1;7112;7105:12;7064:55;7151:2;7138:16;7173:4;7196:43;7236:2;7196:43;:::i;:::-;7268:2;7262:9;7280:31;7308:2;7300:6;7280:31;:::i;:::-;7346:18;;;7434:1;7430:10;;;;7422:19;;7418:28;;;7380:15;;;;-1:-1:-1;7458:19:1;;;7455:39;;;7490:1;7487;7480:12;7455:39;7514:11;;;;7534:217;7550:6;7545:3;7542:15;7534:217;;;7630:3;7617:17;7647:31;7672:5;7647:31;:::i;:::-;7691:18;;7567:12;;;;7729;;;;7534:217;;;7770:6;-1:-1:-1;7795:35:1;;-1:-1:-1;7811:18:1;;;7795:35;:::i;:::-;7785:45;;;;;6738:1098;;;;;:::o;8458:316::-;8535:6;8543;8551;8604:2;8592:9;8583:7;8579:23;8575:32;8572:52;;;8620:1;8617;8610:12;8572:52;-1:-1:-1;;8643:23:1;;;8713:2;8698:18;;8685:32;;-1:-1:-1;8764:2:1;8749:18;;;8736:32;;8458:316;-1:-1:-1;8458:316:1:o;8779:127::-;8840:10;8835:3;8831:20;8828:1;8821:31;8871:4;8868:1;8861:15;8895:4;8892:1;8885:15;8911:127;8972:10;8967:3;8963:20;8960:1;8953:31;9003:4;9000:1;8993:15;9027:4;9024:1;9017:15;9043:135;9082:3;9103:17;;;9100:43;;9123:18;;:::i;:::-;-1:-1:-1;9170:1:1;9159:13;;9043:135::o;9183:380::-;9262:1;9258:12;;;;9305;;;9326:61;;9380:4;9372:6;9368:17;9358:27;;9326:61;9433:2;9425:6;9422:14;9402:18;9399:38;9396:161;;9479:10;9474:3;9470:20;9467:1;9460:31;9514:4;9511:1;9504:15;9542:4;9539:1;9532:15;9396:161;;9183:380;;;:::o;9917:128::-;9984:9;;;10005:11;;;10002:37;;;10019:18;;:::i;10456:125::-;10521:9;;;10542:10;;;10539:36;;;10555:18;;:::i;12379:245::-;12446:6;12499:2;12487:9;12478:7;12474:23;12470:32;12467:52;;;12515:1;12512;12505:12;12467:52;12547:9;12541:16;12566:28;12588:5;12566:28;:::i;12908:422::-;12997:1;13040:5;12997:1;13054:270;13075:7;13065:8;13062:21;13054:270;;;13134:4;13130:1;13126:6;13122:17;13116:4;13113:27;13110:53;;;13143:18;;:::i;:::-;13193:7;13183:8;13179:22;13176:55;;;13213:16;;;;13176:55;13292:22;;;;13252:15;;;;13054:270;;;13058:3;12908:422;;;;;:::o;13335:806::-;13384:5;13414:8;13404:80;;-1:-1:-1;13455:1:1;13469:5;;13404:80;13503:4;13493:76;;-1:-1:-1;13540:1:1;13554:5;;13493:76;13585:4;13603:1;13598:59;;;;13671:1;13666:130;;;;13578:218;;13598:59;13628:1;13619:10;;13642:5;;;13666:130;13703:3;13693:8;13690:17;13687:43;;;13710:18;;:::i;:::-;-1:-1:-1;;13766:1:1;13752:16;;13781:5;;13578:218;;13880:2;13870:8;13867:16;13861:3;13855:4;13852:13;13848:36;13842:2;13832:8;13829:16;13824:2;13818:4;13815:12;13811:35;13808:77;13805:159;;;-1:-1:-1;13917:19:1;;;13949:5;;13805:159;13996:34;14021:8;14015:4;13996:34;:::i;:::-;14066:6;14062:1;14058:6;14054:19;14045:7;14042:32;14039:58;;;14077:18;;:::i;:::-;14115:20;;13335:806;-1:-1:-1;;;13335:806:1:o;14146:140::-;14204:5;14233:47;14274:4;14264:8;14260:19;14254:4;14233:47;:::i;14291:168::-;14364:9;;;14395;;14412:15;;;14406:22;;14392:37;14382:71;;14433:18;;:::i;15982:217::-;16022:1;16048;16038:132;;16092:10;16087:3;16083:20;16080:1;16073:31;16127:4;16124:1;16117:15;16155:4;16152:1;16145:15;16038:132;-1:-1:-1;16184:9:1;;15982:217::o;20429:216::-;20493:9;;;20521:11;;;20468:3;20551:9;;20579:10;;20575:19;;20604:10;;20596:19;;20572:44;20569:70;;;20619:18;;:::i;:::-;20569:70;;20429:216;;;;:::o;20650:184::-;20720:6;20773:2;20761:9;20752:7;20748:23;20744:32;20741:52;;;20789:1;20786;20779:12;20741:52;-1:-1:-1;20812:16:1;;20650:184;-1:-1:-1;20650:184:1:o;21459:306::-;21547:6;21555;21563;21616:2;21604:9;21595:7;21591:23;21587:32;21584:52;;;21632:1;21629;21622:12;21584:52;21661:9;21655:16;21645:26;;21711:2;21700:9;21696:18;21690:25;21680:35;;21755:2;21744:9;21740:18;21734:25;21724:35;;21459:306;;;;;:::o;21770:179::-;21805:3;21847:1;21829:16;21826:23;21823:120;;;21893:1;21890;21887;21872:23;-1:-1:-1;21930:1:1;21924:8;21919:3;21915:18;21823:120;21770:179;:::o;21954:671::-;21993:3;22035:4;22017:16;22014:26;22011:39;;;21954:671;:::o;22011:39::-;22077:2;22071:9;-1:-1:-1;;22142:16:1;22138:25;;22135:1;22071:9;22114:50;22193:4;22187:11;22217:16;22252:18;22323:2;22316:4;22308:6;22304:17;22301:25;22296:2;22288:6;22285:14;22282:45;22279:58;;;22330:5;;;;;21954:671;:::o;22279:58::-;22367:6;22361:4;22357:17;22346:28;;22403:3;22397:10;22430:2;22422:6;22419:14;22416:27;;;22436:5;;;;;;21954:671;:::o;22416:27::-;22520:2;22501:16;22495:4;22491:27;22487:36;22480:4;22471:6;22466:3;22462:16;22458:27;22455:69;22452:82;;;22527:5;;;;;;21954:671;:::o;22452:82::-;22543:57;22594:4;22585:6;22577;22573:19;22569:30;22563:4;22543:57;:::i;22840:200::-;22906:9;;;22879:4;22934:9;;22962:10;;22974:12;;;22958:29;22997:12;;;22989:21;;22955:56;22952:82;;;23014:18;;:::i;23045:251::-;23115:6;23168:2;23156:9;23147:7;23143:23;23139:32;23136:52;;;23184:1;23181;23174:12;23136:52;23216:9;23210:16;23235:31;23260:5;23235:31;:::i;23301:582::-;23600:6;23589:9;23582:25;23643:6;23638:2;23627:9;23623:18;23616:34;23686:3;23681:2;23670:9;23666:18;23659:31;23563:4;23707:57;23759:3;23748:9;23744:19;23736:6;23707:57;:::i;:::-;-1:-1:-1;;;;;23800:32:1;;;;23795:2;23780:18;;23773:60;-1:-1:-1;23864:3:1;23849:19;23842:35;23699:65;23301:582;-1:-1:-1;;;23301:582:1:o;23888:510::-;24159:6;24148:9;24141:25;24202:3;24197:2;24186:9;24182:18;24175:31;24122:4;24223:57;24275:3;24264:9;24260:19;24252:6;24223:57;:::i;:::-;-1:-1:-1;;;;;24316:32:1;;;;24311:2;24296:18;;24289:60;-1:-1:-1;24380:2:1;24365:18;24358:34;24215:65;23888:510;-1:-1:-1;;23888:510:1:o

Swarm Source

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