ETH Price: $2,641.53 (+1.64%)

Token

Hybrid-Chain Capital (HCC)
 

Overview

Max Total Supply

1,000,000,000,000 HCC

Holders

64

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Filtered by Token Holder
wantsumfuch.eth
Balance
1,329,978.536950601 HCC

Value
$0.00
0x1Dc907D55F1be2bC4370FEb0f01Fb89324B8941c
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:
HybridChainCapital

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File: HybridChainCapital.sol


   /*

   Hybrid-Chain Capital: $HCC
   -Hybrid L1/L1 chain farming & yield generation
   -You buy $HCC on Ethereum, we farm across L1/L2 high TVL chains and return the profits to holders.

    Tokenomics:
    For each buy: 5% to farming treasury, 5% reflection to holders.
    For each sell: 5% to $HCC-$WETH liquidity pool, 5% to marketing/development.

    Website: https://hybridchaincapital.xyz/
    
    Twitter: https://twitter.com/hybridchaincap

    Telegram: https://t.me/hybridchaincap

    #HybridFarmersOnDuty

*/

pragma solidity ^0.6.12;

interface IERC20 {

    function totalSupply() external view returns (uint256);

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

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

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

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

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

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

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

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
 
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

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

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

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

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

        return c;
    }

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

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

        return c;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function geUnlockTime() public view returns (uint256) {
        return _lockTime;
    }

    //Locks the contract for owner for the amount of time provided
    function lock(uint256 time) public virtual onlyOwner {
        _previousOwner = _owner;
        _owner = address(0);
        _lockTime = now + time;
        emit OwnershipTransferred(_owner, address(0));
    }
    
    //Unlocks the contract for owner when _lockTime is exceeds
    function unlock() public virtual {
        require(_previousOwner == msg.sender, "You don't have permission to unlock");
        require(now > _lockTime , "Contract is locked until 7 days");
        emit OwnershipTransferred(_owner, _previousOwner);
        _owner = _previousOwner;
    }
}

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

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

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

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}

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

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

enum PairType {Common, LiquidityLocked, SweepableToken0, SweepableToken1}

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

    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 (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

    function sweptAmount() external view returns (uint256);

    function sweepableToken() external view returns (address);

    function liquidityLocked() external view returns (uint256);

    function mint(address to) external returns (uint256 liquidity);

    function burn(address to)
        external
        returns (uint256 amount0, uint256 amount1);

    function swap(
        uint256 amount0Out,
        uint256 amount1Out,
        address to,
        bytes calldata data
    ) external;

    function skim(address to) external;

    function sync() external;

    function initialize(
        address,
        address,
        PairType,
        uint256
    ) external;

    function sweep(uint256 amount, bytes calldata data) external;

    function unsweep(uint256 amount) external;

    function getMaxSweepable() external view returns (uint256);
}

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

    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(uint256) external view returns (address pair);

    function allPairsLength() external view returns (uint256);

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

    function createPair(
        address tokenA,
        address tokenB,
        PairType pairType,
        uint256 unlockTime
    ) external returns (address pair);

    function createEmpirePair(
        address tokenA,
        address tokenB,
        PairType pairType,
        uint256 unlockTime
    ) external returns (address pair);

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

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

    function WETH() external pure returns (address);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountETH);

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

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

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

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

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

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

    mapping (address => bool) private _isExcludedFromFee;

    mapping (address => bool) private _isExcluded;
    address[] private _excluded;
   
    uint256 private constant MAX = ~uint256(0);
    uint256 private _tTotal = 1000000000000 * 10**9; //1T
    uint256 private _rTotal = (MAX - (MAX % _tTotal));
    uint256 private _tFeeTotal;

    string private _name = "Hybrid-Chain Capital";
    string private _symbol = "HCC";
    uint8 private _decimals = 9;
    
    uint256 public _taxFee = 5;
    uint256 private _previousTaxFee = _taxFee;
    
    uint256 public _liquidityFee = 5;
    uint256 private _previousLiquidityFee = _liquidityFee;

    uint256 public _liquidityFeeOnBuy = 5;
    uint256 public _taxFeeOnBuy = 5;

    uint256 public _liquidityFeeOnSell = 5;
    uint256 public _taxFeeOnSell = 5;

    IUniswapV2Router02 public uniswapV2Router;
    address public uniswapV2Pair;
    address payable public _HCCWalletAddress = 0x4D58D19fCf72eA6bdeD9992cbBece4f97E31C6Cc;
    address payable public _marketingWalletAddress = 0x40776781Fb5B13559d6f453B0ef22eC65887684b;
    
    bool inSwapAndLiquify;
    bool public swapAndLiquifyEnabled = true;

    uint256 public _maxTxAmount = 5000000000 * 10**9; //5B
    uint256 public numTokensSellToAddToLiquidity = 5000000 * 10**9; //5M

    mapping (address => bool) private _liquidityHolders;
    mapping (address => bool) private _isSniper;
    bool public _hasLiqBeenAdded = false;
    uint256 private _liqAddBlock = 0;
    
    event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap);
    event SwapAndLiquifyEnabledUpdated(bool enabled);
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiqudity
    );
    event SniperCaught(address sniperAddress);
    
    modifier lockTheSwap {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }

    modifier onlyPair() {
        require(
            msg.sender == uniswapV2Pair,
            "Empire::onlyPair: Insufficient Privileges"
        );
        _;
    }
    
    constructor () public {
        _rOwned[_msgSender()] = _rTotal;
        
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
         // Create a uniswap pair for this new token
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());

        // set the rest of the contract variables
        uniswapV2Router = _uniswapV2Router;
        
        //exclude owner and this contract from fee
        _isExcludedFromFee[owner()] = true;
        _isExcludedFromFee[address(this)] = true;

        _isExcluded[uniswapV2Pair] = true;
        _excluded.push(uniswapV2Pair);
        
        addLiquidityHolder(msg.sender);
        
        emit Transfer(address(0), _msgSender(), _tTotal);
    }

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

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

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

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

    function balanceOf(address account) public view override returns (uint256) {
        if (_isExcluded[account]) return _tOwned[account];
        return tokenFromReflection(_rOwned[account]);
    }

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

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

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

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

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

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

    function isExcludedFromReward(address account) public view returns (bool) {
        return _isExcluded[account];
    }

    function totalFees() public view returns (uint256) {
        return _tFeeTotal;
    }

    function getCirculatingSupply() public view returns (uint256) {
        return totalSupply().sub(balanceOf(address(0x000000000000000000000000000000000000dEaD)).sub(balanceOf(address(0x0000000000000000000000000000000000000000))));
    }

    function deliver(uint256 tAmount) public {
        address sender = _msgSender();
        require(!_isExcluded[sender], "Excluded addresses cannot call this function");
        (uint256 rAmount,,,,,) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rTotal = _rTotal.sub(rAmount);
        _tFeeTotal = _tFeeTotal.add(tAmount);
    }

    function reflectionFromToken(uint256 tAmount, bool deductTransferFee) public view returns(uint256) {
        require(tAmount <= _tTotal, "Amount must be less than supply");
        if (!deductTransferFee) {
            (uint256 rAmount,,,,,) = _getValues(tAmount);
            return rAmount;
        } else {
            (,uint256 rTransferAmount,,,,) = _getValues(tAmount);
            return rTransferAmount;
        }
    }

    function tokenFromReflection(uint256 rAmount) public view returns(uint256) {
        require(rAmount <= _rTotal, "Amount must be less than total reflections");
        uint256 currentRate =  _getRate();
        return rAmount.div(currentRate);
    }

    function excludeFromReward(address account) public onlyOwner() {
        // require(account != 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, 'We can not exclude Uniswap router.');
        require(!_isExcluded[account], "Account is already excluded");
        if(_rOwned[account] > 0) {
            _tOwned[account] = tokenFromReflection(_rOwned[account]);
        }
        _isExcluded[account] = true;
        _excluded.push(account);
    }

    function includeInReward(address account) external onlyOwner() {
        require(_isExcluded[account], "Account is already excluded");
        for (uint256 i = 0; i < _excluded.length; i++) {
            if (_excluded[i] == account) {
                _excluded[i] = _excluded[_excluded.length - 1];
                _tOwned[account] = 0;
                _isExcluded[account] = false;
                _excluded.pop();
                break;
            }
        }
    }

    function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount);
        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);        
        _takeLiquidity(tLiquidity);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }
    
    function excludeFromFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = true;
    }
    
    function includeInFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = false;
    }
       
    function setMaxTx(uint256 maxTx) external onlyOwner() {
        _maxTxAmount = maxTx;
    }

    function setSwapAndLiquifyEnabled(bool _enabled) public onlyOwner {
        swapAndLiquifyEnabled = _enabled;
        emit SwapAndLiquifyEnabledUpdated(_enabled);
    }
    
    //to recieve ETH from uniswapV2Router when swaping
    receive() external payable {}

    function _reflectFee(uint256 rFee, uint256 tFee) private {
        _rTotal = _rTotal.sub(rFee);
        _tFeeTotal = _tFeeTotal.add(tFee);
    }

    function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256, uint256) {
        (uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getTValues(tAmount);
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, tLiquidity, _getRate());
        return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tLiquidity);
    }

    function _getTValues(uint256 tAmount) private view returns (uint256, uint256, uint256) {
        uint256 tFee = calculateTaxFee(tAmount);
        uint256 tLiquidity = calculateLiquidityFee(tAmount);
        uint256 tTransferAmount = tAmount.sub(tFee).sub(tLiquidity);
        return (tTransferAmount, tFee, tLiquidity);
    }

    function _getRValues(uint256 tAmount, uint256 tFee, uint256 tLiquidity, uint256 currentRate) private pure returns (uint256, uint256, uint256) {
        uint256 rAmount = tAmount.mul(currentRate);
        uint256 rFee = tFee.mul(currentRate);
        uint256 rLiquidity = tLiquidity.mul(currentRate);
        uint256 rTransferAmount = rAmount.sub(rFee).sub(rLiquidity);
        return (rAmount, rTransferAmount, rFee);
    }

    function _getRate() private view returns(uint256) {
        (uint256 rSupply, uint256 tSupply) = _getCurrentSupply();
        return rSupply.div(tSupply);
    }

    function _getCurrentSupply() private view returns(uint256, uint256) {
        uint256 rSupply = _rTotal;
        uint256 tSupply = _tTotal;      
        for (uint256 i = 0; i < _excluded.length; i++) {
            if (_rOwned[_excluded[i]] > rSupply || _tOwned[_excluded[i]] > tSupply) return (_rTotal, _tTotal);
            rSupply = rSupply.sub(_rOwned[_excluded[i]]);
            tSupply = tSupply.sub(_tOwned[_excluded[i]]);
        }
        if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal);
        return (rSupply, tSupply);
    }
    
    function _takeLiquidity(uint256 tLiquidity) private {
        uint256 currentRate =  _getRate();
        uint256 rLiquidity = tLiquidity.mul(currentRate);
        _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity);
        if(_isExcluded[address(this)])
            _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity);
    }
    
    function calculateTaxFee(uint256 _amount) private view returns (uint256) {
        return _amount.mul(_taxFee).div(
            10**2
        );
    }

    function calculateLiquidityFee(uint256 _amount) private view returns (uint256) {
        return _amount.mul(_liquidityFee).div(
            10**2
        );
    }
    
    function removeAllFee() private {
        if(_taxFee == 0 && _liquidityFee == 0) return;
        
        _previousTaxFee = _taxFee;
        _previousLiquidityFee = _liquidityFee;
        
        _taxFee = 0;
        _liquidityFee = 0;
    }
    
    function restoreAllFee() private {
        _taxFee = _previousTaxFee;
        _liquidityFee = _previousLiquidityFee;
    }
    
    function isExcludedFromFee(address account) public view returns(bool) {
        return _isExcludedFromFee[account];
    }
    
    function sendETHToCapitalFund(uint256 amount) private { 
        swapTokensForEth(amount); 
        _marketingWalletAddress.transfer(address(this).balance.div(2)); 
        _HCCWalletAddress.transfer(address(this).balance); 
    }
    
    function _setMWallet(address payable mAddress) external onlyOwner() {
        _marketingWalletAddress = mAddress;
    }

    function _setCWallet(address payable cAddress) external onlyOwner() {
        _HCCWalletAddress = cAddress;
    }

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

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

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) private {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");
        require(!_isSniper[from], "ERC20: snipers can not transfer");
        require(!_isSniper[to], "ERC20: snipers can not transfer");
        require(!_isSniper[msg.sender], "ERC20: snipers can not transfer");

        if (!_hasLiqBeenAdded) {
            _checkLiquidityAdd(from, to);
        } else {
            if (_liqAddBlock > 0 
                && from == uniswapV2Pair 
                && !_liquidityHolders[from]
                && !_liquidityHolders[to]
            ) {
                }
            }

        if(from != owner() && to != owner())
            require(amount <= _maxTxAmount, "Transfer amount exceeds the maxTxAmount.");

        // is the token balance of this contract address over the min number of
        // tokens that we need to initiate a swap + liquidity lock?
        // also, don't get caught in a circular liquidity event.
        // also, don't swap & liquify if sender is uniswap pair.
        uint256 contractTokenBalance = balanceOf(address(this));
        
        if(contractTokenBalance >= _maxTxAmount)
        {
            contractTokenBalance = _maxTxAmount;
        }
        
        bool overMinTokenBalance = contractTokenBalance >= numTokensSellToAddToLiquidity;
        if (
            overMinTokenBalance &&
            !inSwapAndLiquify &&
            from != uniswapV2Pair &&
            swapAndLiquifyEnabled
        ) {
            contractTokenBalance = numTokensSellToAddToLiquidity;
            //add liquidity
            swapAndLiquify(contractTokenBalance);
        }
        
        //indicates if fee should be deducted from transfer
        bool takeFee = true;
        
        //if any account belongs to _isExcludedFromFee account then remove the fee
        if(_isExcludedFromFee[from] || _isExcludedFromFee[to]){
            takeFee = false;
        }

        //if buy order
        if(from == uniswapV2Pair) {
            _liquidityFee = _liquidityFeeOnBuy;
            _taxFee = _taxFeeOnBuy;
        }

        //if not buy
        if(from != uniswapV2Pair) {
            _liquidityFee = _liquidityFeeOnSell;
            _taxFee = _taxFeeOnSell;
        }
       
        //transfer amount, it will take tax, burn, liquidity fee
        _tokenTransfer(from,to,amount,takeFee);

    }

    function swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap {
        // split the contract balance into thirds
        uint256 halfOfLiquify = contractTokenBalance.div(4);
        uint256 otherHalfOfLiquify = contractTokenBalance.div(4);
        uint256 portionForFees = contractTokenBalance.sub(halfOfLiquify).sub(otherHalfOfLiquify);

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

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

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

        // add liquidity to uniswap
        addLiquidity(otherHalfOfLiquify, newBalance);
        sendETHToCapitalFund(portionForFees);
        
        emit SwapAndLiquify(halfOfLiquify, newBalance, otherHalfOfLiquify);
    }

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

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

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

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

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

    //this method is responsible for taking all fee, if takeFee is true
    function _tokenTransfer(address sender, address recipient, uint256 amount,bool takeFee) private {
        if(!takeFee)
            removeAllFee();
        
        if (_isExcluded[sender] && !_isExcluded[recipient]) {
            _transferFromExcluded(sender, recipient, amount);
        } else if (!_isExcluded[sender] && _isExcluded[recipient]) {
            _transferToExcluded(sender, recipient, amount);
        } else if (!_isExcluded[sender] && !_isExcluded[recipient]) {
            _transferStandard(sender, recipient, amount);
        } else if (_isExcluded[sender] && _isExcluded[recipient]) {
            _transferBothExcluded(sender, recipient, amount);
        } else {
            _transferStandard(sender, recipient, amount);
        }
        
        if(!takeFee)
            restoreAllFee();
    }

    function _transferStandard(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeLiquidity(tLiquidity);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferToExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);           
        _takeLiquidity(tLiquidity);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferFromExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount);
        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);   
        _takeLiquidity(tLiquidity);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _checkLiquidityAdd(address from, address to) private {
        require(!_hasLiqBeenAdded, "Liquidity already added and marked.");
        if (_liquidityHolders[from] && to == uniswapV2Pair) {
            _hasLiqBeenAdded = true;
            _liqAddBlock = block.number;
        }
    }
    
    function isSniperCheck(address account) public view returns (bool) {
        return _isSniper[account];
    }
    
    function isLiquidityHolderCheck(address account) public view returns (bool) {
        return _liquidityHolders[account];
    }
    
    function addSniper(address sniperAddress) public onlyOwner() {
        require(sniperAddress != uniswapV2Pair, "ERC20: Can not add uniswapV2Pair to sniper list");
        require(sniperAddress != address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D), "ERC20: Can not add uniswapV2Router to sniper list");

        _isSniper[sniperAddress] = true;
        
        _isExcluded[sniperAddress] = true;
        _excluded.push(sniperAddress);
    }
    
    function removeSniper(address sniperAddress) public onlyOwner() {
        require(_isSniper[sniperAddress], "ERC20: Is not sniper");

        _isSniper[sniperAddress] = false;
    }
    
    function addLiquidityHolder(address liquidityHolder) public onlyOwner() {
        _liquidityHolders[liquidityHolder] = true;
    }
    
    function removeLiquidityHolder(address liquidityHolder) public onlyOwner() {
        _liquidityHolders[liquidityHolder] = false;
    }

    // We are exposing these functions to be able to manual swap and send
    // in case the token is highly valued and 5M becomes too much
    function manualSwap() external onlyOwner() {
        uint256 contractBalance = balanceOf(address(this));
        swapTokensForEth(contractBalance);
    }

    function manualSend() external onlyOwner() {
        uint256 contractETHBalance = address(this).balance;
        sendETHToTeam(contractETHBalance);
    }

    function setTaxFee(uint256 taxFee) external onlyOwner() {
        require(taxFee >= 1 && taxFee <= 25, 'taxFee should be in 1 - 25');
        _taxFee = taxFee;
    }

    function setLiquidityFee(uint256 liquidityFee) external onlyOwner() {
        require(liquidityFee >= 1 && liquidityFee <= 25, 'liquidityFee should be in 1 - 25');
        _liquidityFee = liquidityFee;
    }

    function setLiquidityFeeOnBuy(uint256 liquidityFee) external onlyOwner() {
        require(liquidityFee >= 1 && liquidityFee <= 25, 'liquidityFee should be in 1 - 25');
        _liquidityFeeOnBuy = liquidityFee;
    }

    function setLiquidityFeeOnSell(uint256 liquidityFee) external onlyOwner() {
        require(liquidityFee >= 1 && liquidityFee <= 25, 'liquidityFee should be in 1 - 25');
        _liquidityFeeOnSell = liquidityFee;
    }

    function setTaxFeeOnBuy(uint256 liquidityFee) external onlyOwner() {
        require(liquidityFee >= 1 && liquidityFee <= 25, 'liquidityFee should be in 1 - 25');
        _taxFeeOnBuy = liquidityFee;
    }

    function setTaxFeeOnSell(uint256 liquidityFee) external onlyOwner() {
        require(liquidityFee >= 1 && liquidityFee <= 25, 'liquidityFee should be in 1 - 25');
        _taxFeeOnSell = liquidityFee;
    }

    function sendETHToTeam(uint256 amount) private {
        _HCCWalletAddress.transfer(amount.div(2));
        _marketingWalletAddress.transfer(amount.div(2));
    }

    function changeLiquidityPair(address _pair) public onlyOwner() {
        uniswapV2Pair = _pair;
    }

    function changeRouter(address _router) public onlyOwner() {
        uniswapV2Router = IUniswapV2Router02(_router);
    }

    function changeMinSell(uint256 _minSell) public onlyOwner() {
        numTokensSellToAddToLiquidity = _minSell;
    }

    function upgradePair(IEmpireFactory _factory) external onlyOwner() {
        PairType pairType =
            address(this) < uniswapV2Router.WETH()
                ? PairType.SweepableToken1
                : PairType.SweepableToken0;
        uniswapV2Pair = _factory.createPair(uniswapV2Router.WETH(), address(this), pairType, 0);
    }

    function sweep(uint256 amount, bytes calldata data) external onlyOwner() {
        IEmpirePair(uniswapV2Pair).sweep(amount, data);
    }

    function empireSweepCall(uint256 amount, bytes calldata) external onlyPair() {
        IERC20(uniswapV2Router.WETH()).transfer(owner(), amount);
    }

    function unsweep(uint256 amount) external onlyOwner() {
        IERC20(uniswapV2Router.WETH()).approve(uniswapV2Pair, amount);
        IEmpirePair(uniswapV2Pair).unsweep(amount);
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"minTokensBeforeSwap","type":"uint256"}],"name":"MinTokensBeforeSwapUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"sniperAddress","type":"address"}],"name":"SniperCaught","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","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":"_HCCWalletAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_hasLiqBeenAdded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_liquidityFeeOnBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_liquidityFeeOnSell","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_marketingWalletAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"cAddress","type":"address"}],"name":"_setCWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"mAddress","type":"address"}],"name":"_setMWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_taxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxFeeOnBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxFeeOnSell","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"liquidityHolder","type":"address"}],"name":"addLiquidityHolder","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sniperAddress","type":"address"}],"name":"addSniper","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_pair","type":"address"}],"name":"changeLiquidityPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_minSell","type":"uint256"}],"name":"changeMinSell","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_router","type":"address"}],"name":"changeRouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"deliver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"empireSweepCall","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"geUnlockTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCirculatingSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromReward","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isLiquidityHolderCheck","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isSniperCheck","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"time","type":"uint256"}],"name":"lock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manualSend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manualSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numTokensSellToAddToLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"liquidityHolder","type":"address"}],"name":"removeLiquidityHolder","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sniperAddress","type":"address"}],"name":"removeSniper","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"liquidityFee","type":"uint256"}],"name":"setLiquidityFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"liquidityFee","type":"uint256"}],"name":"setLiquidityFeeOnBuy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"liquidityFee","type":"uint256"}],"name":"setLiquidityFeeOnSell","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTx","type":"uint256"}],"name":"setMaxTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxFee","type":"uint256"}],"name":"setTaxFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"liquidityFee","type":"uint256"}],"name":"setTaxFeeOnBuy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"liquidityFee","type":"uint256"}],"name":"setTaxFeeOnSell","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"sweep","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"unsweep","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IEmpireFactory","name":"_factory","type":"address"}],"name":"upgradePair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

683635c9adc5dea000006009556818ce40f6d0219fffff19600a5560c0604052601460808190527f4879627269642d436861696e204361706974616c00000000000000000000000060a09081526200005b91600c919062000543565b506040805180820190915260038082526248434360e81b60209092019182526200008891600d9162000543565b50600e805460ff199081166009179091556005600f819055601081905560118190556012819055601381905560148190556015819055601655601980546001600160a01b0319908116734d58d19fcf72ea6bded9992cbbece4f97e31c6cc17909155601a805460ff60a81b1992167340776781fb5b13559d6f453b0ef22ec65887684b1791909116600160a81b179055674563918244f40000601b556611c37937e08000601c55601f8054909116905560006020553480156200014a57600080fd5b506000620001576200049f565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600a5460036000620001b26200049f565b6001600160a01b03166001600160a01b03168152602001908152602001600020819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200022957600080fd5b505afa1580156200023e573d6000803e3d6000fd5b505050506040513d60208110156200025557600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039283169263c9c653969230929186169163ad5c464891600480820192602092909190829003018186803b158015620002a657600080fd5b505afa158015620002bb573d6000803e3d6000fd5b505050506040513d6020811015620002d257600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b1580156200032557600080fd5b505af11580156200033a573d6000803e3d6000fd5b505050506040513d60208110156200035157600080fd5b5051601880546001600160a01b03199081166001600160a01b03938416179091556017805490911691831691909117905560016006600062000392620004a3565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff1996871617905530815260068452828120805486166001908117909155601880548416835260079095529281208054909516831790945591546008805492830181559093527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b031916929091169190911790556200044133620004b2565b6200044b6200049f565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6009546040518082815260200191505060405180910390a350620005df565b3390565b6000546001600160a01b031690565b620004bc6200049f565b6000546001600160a01b039081169116146200051f576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b03166000908152601d60205260409020805460ff19166001179055565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200058657805160ff1916838001178555620005b6565b82800160010185558215620005b6579182015b82811115620005b657825182559160200191906001019062000599565b50620005c4929150620005c8565b5090565b5b80821115620005c45760008155600101620005c9565b61455a80620005ef6000396000f3fe6080604052600436106103e85760003560e01c80635e90d66111610208578063b6c5232411610118578063d12a7688116100ab578063dd62ed3e1161007a578063dd62ed3e14610e85578063e7d20a3714610ec0578063ea2f0b3714610ef3578063f2fde38b14610f26578063f429389014610f59576103ef565b8063d12a768814610dad578063d2ae9a0d14610dc2578063d52dfc1414610e46578063dd46706414610e5b576103ef565b8063c393d45f116100e7578063c393d45f14610cf1578063c4081a4c14610d24578063c49b9a8014610d4e578063ccf4094f14610d7a576103ef565b8063b6c5232414610c73578063bc33718214610c88578063bf5976d314610cb2578063c344fdab14610cc7576103ef565b80638da5cb5b1161019b578063a69df4b51161016a578063a69df4b514610ba7578063a9059cbb14610bbc578063aac6e06214610bf5578063ae84637f14610c1f578063b21cb20c14610c49576103ef565b80638da5cb5b14610b1157806395d89b4114610b26578063999f148c14610b3b578063a457c2d714610b6e576103ef565b80637d1db4a5116101d75780637d1db4a514610a815780638199040e14610a96578063834caa5814610aab57806388f8202014610ade576103ef565b80635e90d661146109f15780636bc87c3a14610a2457806370a0823114610a39578063715018a614610a6c576103ef565b8063340ac20f116103035780634144d9e4116102965780634a74bb02116102655780634a74bb021461094c57806350a8e0161461096157806351bc3c851461097657806352390c021461098b5780635342acb4146109be576103ef565b80634144d9e4146108bd578063437823ec146108d25780634549b0391461090557806349bd5a5e14610937576103ef565b80633b124fe7116102d25780633b124fe7146108365780633bd5d1731461084b5780633c0a73ae146108755780633e3e95981461088a576103ef565b8063340ac20f1461076d578063357bf15c146107a05780633685d419146107ca57806339509351146107fd576103ef565b80631d7f36761161037b5780632b112e491161034a5780632b112e49146106d05780632d838119146106e5578063313ce5671461070f57806333251a0b1461073a576103ef565b80631d7f36761461061b5780631e17788a1461064e57806323b872dd1461066357806326e336cf146106a6576103ef565b806313114a9d116103b757806313114a9d1461057b5780631694505e146105a257806318160ddd146105d357806318e9b8b7146105e8576103ef565b806306fdde03146103f4578063095ea7b31461047e5780631136529b146104cb57806311d7ed82146104f7576103ef565b366103ef57005b600080fd5b34801561040057600080fd5b50610409610f6e565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561044357818101518382015260200161042b565b50505050905090810190601f1680156104705780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561048a57600080fd5b506104b7600480360360408110156104a157600080fd5b506001600160a01b038135169060200135611004565b604080519115158252519081900360200190f35b3480156104d757600080fd5b506104f5600480360360208110156104ee57600080fd5b5035611022565b005b34801561050357600080fd5b506104f56004803603604081101561051a57600080fd5b8135919081019060408101602082013564010000000081111561053c57600080fd5b82018360208201111561054e57600080fd5b8035906020019184600183028401116401000000008311171561057057600080fd5b5090925090506110d0565b34801561058757600080fd5b50610590611221565b60408051918252519081900360200190f35b3480156105ae57600080fd5b506105b7611227565b604080516001600160a01b039092168252519081900360200190f35b3480156105df57600080fd5b50610590611236565b3480156105f457600080fd5b506104b76004803603602081101561060b57600080fd5b50356001600160a01b031661123c565b34801561062757600080fd5b506104b76004803603602081101561063e57600080fd5b50356001600160a01b031661125e565b34801561065a57600080fd5b506105b761127c565b34801561066f57600080fd5b506104b76004803603606081101561068657600080fd5b506001600160a01b0381358116916020810135909116906040013561128b565b3480156106b257600080fd5b506104f5600480360360208110156106c957600080fd5b5035611312565b3480156106dc57600080fd5b5061059061136f565b3480156106f157600080fd5b506105906004803603602081101561070857600080fd5b503561139f565b34801561071b57600080fd5b506107246113ff565b6040805160ff9092168252519081900360200190f35b34801561074657600080fd5b506104f56004803603602081101561075d57600080fd5b50356001600160a01b0316611408565b34801561077957600080fd5b506104f56004803603602081101561079057600080fd5b50356001600160a01b03166114e5565b3480156107ac57600080fd5b506104f5600480360360208110156107c357600080fd5b503561155f565b3480156107d657600080fd5b506104f5600480360360208110156107ed57600080fd5b50356001600160a01b031661160d565b34801561080957600080fd5b506104b76004803603604081101561082057600080fd5b506001600160a01b0381351690602001356117ce565b34801561084257600080fd5b5061059061181c565b34801561085757600080fd5b506104f56004803603602081101561086e57600080fd5b5035611822565b34801561088157600080fd5b506105906118fc565b34801561089657600080fd5b506104f5600480360360208110156108ad57600080fd5b50356001600160a01b0316611902565b3480156108c957600080fd5b506105b7611a7f565b3480156108de57600080fd5b506104f5600480360360208110156108f557600080fd5b50356001600160a01b0316611a8e565b34801561091157600080fd5b506105906004803603604081101561092857600080fd5b50803590602001351515611b0a565b34801561094357600080fd5b506105b7611b9c565b34801561095857600080fd5b506104b7611bab565b34801561096d57600080fd5b506104b7611bbb565b34801561098257600080fd5b506104f5611bc4565b34801561099757600080fd5b506104f5600480360360208110156109ae57600080fd5b50356001600160a01b0316611c35565b3480156109ca57600080fd5b506104b7600480360360208110156109e157600080fd5b50356001600160a01b0316611dbb565b3480156109fd57600080fd5b506104f560048036036020811015610a1457600080fd5b50356001600160a01b0316611dd9565b348015610a3057600080fd5b50610590611e53565b348015610a4557600080fd5b5061059060048036036020811015610a5c57600080fd5b50356001600160a01b0316611e59565b348015610a7857600080fd5b506104f5611ebb565b348015610a8d57600080fd5b50610590611f4b565b348015610aa257600080fd5b50610590611f51565b348015610ab757600080fd5b506104f560048036036020811015610ace57600080fd5b50356001600160a01b0316611f57565b348015610aea57600080fd5b506104b760048036036020811015610b0157600080fd5b50356001600160a01b0316611fd3565b348015610b1d57600080fd5b506105b7611ff1565b348015610b3257600080fd5b50610409612000565b348015610b4757600080fd5b506104f560048036036020811015610b5e57600080fd5b50356001600160a01b0316612061565b348015610b7a57600080fd5b506104b760048036036040811015610b9157600080fd5b506001600160a01b0381351690602001356120da565b348015610bb357600080fd5b506104f5612142565b348015610bc857600080fd5b506104b760048036036040811015610bdf57600080fd5b506001600160a01b038135169060200135612230565b348015610c0157600080fd5b506104f560048036036020811015610c1857600080fd5b5035612244565b348015610c2b57600080fd5b506104f560048036036020811015610c4257600080fd5b50356122f2565b348015610c5557600080fd5b506104f560048036036020811015610c6c57600080fd5b50356124a7565b348015610c7f57600080fd5b50610590612555565b348015610c9457600080fd5b506104f560048036036020811015610cab57600080fd5b503561255b565b348015610cbe57600080fd5b506105906125b8565b348015610cd357600080fd5b506104f560048036036020811015610cea57600080fd5b50356125be565b348015610cfd57600080fd5b506104f560048036036020811015610d1457600080fd5b50356001600160a01b031661266c565b348015610d3057600080fd5b506104f560048036036020811015610d4757600080fd5b50356126e6565b348015610d5a57600080fd5b506104f560048036036020811015610d7157600080fd5b503515156127a6565b348015610d8657600080fd5b506104f560048036036020811015610d9d57600080fd5b50356001600160a01b0316612851565b348015610db957600080fd5b506105906128cb565b348015610dce57600080fd5b506104f560048036036040811015610de557600080fd5b81359190810190604081016020820135640100000000811115610e0757600080fd5b820183602082011115610e1957600080fd5b80359060200191846001830284011164010000000083111715610e3b57600080fd5b5090925090506128d1565b348015610e5257600080fd5b506105906129c6565b348015610e6757600080fd5b506104f560048036036020811015610e7e57600080fd5b50356129cc565b348015610e9157600080fd5b5061059060048036036040811015610ea857600080fd5b506001600160a01b0381358116916020013516612a6a565b348015610ecc57600080fd5b506104f560048036036020811015610ee357600080fd5b50356001600160a01b0316612a95565b348015610eff57600080fd5b506104f560048036036020811015610f1657600080fd5b50356001600160a01b0316612cbe565b348015610f3257600080fd5b506104f560048036036020811015610f4957600080fd5b50356001600160a01b0316612d37565b348015610f6557600080fd5b506104f5612e1d565b600c8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610ffa5780601f10610fcf57610100808354040283529160200191610ffa565b820191906000526020600020905b815481529060010190602001808311610fdd57829003601f168201915b5050505050905090565b6000611018611011612e7f565b8484612e83565b5060015b92915050565b61102a612e7f565b6000546001600160a01b0390811691161461107a576040805162461bcd60e51b815260206004820181905260248201526000805160206143df833981519152604482015290519081900360640190fd5b6001811015801561108c575060198111155b6110cb576040805162461bcd60e51b81526020600482018190526024820152600080516020614491833981519152604482015290519081900360640190fd5b601455565b6018546001600160a01b031633146111195760405162461bcd60e51b81526004018080602001828103825260298152602001806142506029913960400191505060405180910390fd5b601760009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561116757600080fd5b505afa15801561117b573d6000803e3d6000fd5b505050506040513d602081101561119157600080fd5b50516001600160a01b031663a9059cbb6111a9611ff1565b856040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050602060405180830381600087803b1580156111f057600080fd5b505af1158015611204573d6000803e3d6000fd5b505050506040513d602081101561121a57600080fd5b5050505050565b600b5490565b6017546001600160a01b031681565b60095490565b6001600160a01b0381166000908152601e602052604090205460ff165b919050565b6001600160a01b03166000908152601d602052604090205460ff1690565b6019546001600160a01b031681565b6000611298848484612f6f565b611308846112a4612e7f565b611303856040518060600160405280602881526020016143b7602891396001600160a01b038a166000908152600560205260408120906112e2612e7f565b6001600160a01b0316815260208101919091526040016000205491906133a4565b612e83565b5060019392505050565b61131a612e7f565b6000546001600160a01b0390811691161461136a576040805162461bcd60e51b815260206004820181905260248201526000805160206143df833981519152604482015290519081900360640190fd5b601c55565b600061139a6113926113816000611e59565b61138c61dead611e59565b9061343b565b61138c611236565b905090565b6000600a548211156113e25760405162461bcd60e51b815260040180806020018281038252602a815260200180614279602a913960400191505060405180910390fd5b60006113ec61347d565b90506113f883826134a0565b9392505050565b600e5460ff1690565b611410612e7f565b6000546001600160a01b03908116911614611460576040805162461bcd60e51b815260206004820181905260248201526000805160206143df833981519152604482015290519081900360640190fd5b6001600160a01b0381166000908152601e602052604090205460ff166114c4576040805162461bcd60e51b815260206004820152601460248201527322a92199181d1024b9903737ba1039b734b832b960611b604482015290519081900360640190fd5b6001600160a01b03166000908152601e60205260409020805460ff19169055565b6114ed612e7f565b6000546001600160a01b0390811691161461153d576040805162461bcd60e51b815260206004820181905260248201526000805160206143df833981519152604482015290519081900360640190fd5b601780546001600160a01b0319166001600160a01b0392909216919091179055565b611567612e7f565b6000546001600160a01b039081169116146115b7576040805162461bcd60e51b815260206004820181905260248201526000805160206143df833981519152604482015290519081900360640190fd5b600181101580156115c9575060198111155b611608576040805162461bcd60e51b81526020600482018190526024820152600080516020614491833981519152604482015290519081900360640190fd5b601155565b611615612e7f565b6000546001600160a01b03908116911614611665576040805162461bcd60e51b815260206004820181905260248201526000805160206143df833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff166116d2576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b6008548110156117ca57816001600160a01b0316600882815481106116f657fe5b6000918252602090912001546001600160a01b031614156117c25760088054600019810190811061172357fe5b600091825260209091200154600880546001600160a01b03909216918390811061174957fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600482526040808220829055600790925220805460ff19169055600880548061179b57fe5b600082815260209020810160001990810180546001600160a01b03191690550190556117ca565b6001016116d5565b5050565b60006110186117db612e7f565b8461130385600560006117ec612e7f565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906134e2565b600f5481565b600061182c612e7f565b6001600160a01b03811660009081526007602052604090205490915060ff16156118875760405162461bcd60e51b815260040180806020018281038252602c8152602001806144b1602c913960400191505060405180910390fd5b60006118928361353c565b505050506001600160a01b0384166000908152600360205260409020549192506118be9190508261343b565b6001600160a01b038316600090815260036020526040902055600a546118e4908261343b565b600a55600b546118f490846134e2565b600b55505050565b60135481565b61190a612e7f565b6000546001600160a01b0390811691161461195a576040805162461bcd60e51b815260206004820181905260248201526000805160206143df833981519152604482015290519081900360640190fd5b6018546001600160a01b03828116911614156119a75760405162461bcd60e51b815260040180806020018281038252602f815260200180614388602f913960400191505060405180910390fd5b6001600160a01b038116737a250d5630b4cf539739df2c5dacb4c659f2488d1415611a035760405162461bcd60e51b815260040180806020018281038252603181526020018061430e6031913960400191505060405180910390fd5b6001600160a01b03166000818152601e602090815260408083208054600160ff1991821681179092556007909352908320805490921681179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319169091179055565b601a546001600160a01b031681565b611a96612e7f565b6000546001600160a01b03908116911614611ae6576040805162461bcd60e51b815260206004820181905260248201526000805160206143df833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b6000600954831115611b63576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b81611b82576000611b738461353c565b5093955061101c945050505050565b6000611b8d8461353c565b5092955061101c945050505050565b6018546001600160a01b031681565b601a54600160a81b900460ff1681565b601f5460ff1681565b611bcc612e7f565b6000546001600160a01b03908116911614611c1c576040805162461bcd60e51b815260206004820181905260248201526000805160206143df833981519152604482015290519081900360640190fd5b6000611c2730611e59565b9050611c328161358b565b50565b611c3d612e7f565b6000546001600160a01b03908116911614611c8d576040805162461bcd60e51b815260206004820181905260248201526000805160206143df833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff1615611cfb576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b03811660009081526003602052604090205415611d55576001600160a01b038116600090815260036020526040902054611d3b9061139f565b6001600160a01b0382166000908152600460205260409020555b6001600160a01b03166000818152600760205260408120805460ff191660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319169091179055565b6001600160a01b031660009081526006602052604090205460ff1690565b611de1612e7f565b6000546001600160a01b03908116911614611e31576040805162461bcd60e51b815260206004820181905260248201526000805160206143df833981519152604482015290519081900360640190fd5b601980546001600160a01b0319166001600160a01b0392909216919091179055565b60115481565b6001600160a01b03811660009081526007602052604081205460ff1615611e9957506001600160a01b038116600090815260046020526040902054611259565b6001600160a01b03821660009081526003602052604090205461101c9061139f565b611ec3612e7f565b6000546001600160a01b03908116911614611f13576040805162461bcd60e51b815260206004820181905260248201526000805160206143df833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116906000805160206143ff833981519152908390a3600080546001600160a01b0319169055565b601b5481565b60165481565b611f5f612e7f565b6000546001600160a01b03908116911614611faf576040805162461bcd60e51b815260206004820181905260248201526000805160206143df833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152601d60205260409020805460ff19166001179055565b6001600160a01b031660009081526007602052604090205460ff1690565b6000546001600160a01b031690565b600d8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610ffa5780601f10610fcf57610100808354040283529160200191610ffa565b612069612e7f565b6000546001600160a01b039081169116146120b9576040805162461bcd60e51b815260206004820181905260248201526000805160206143df833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152601d60205260409020805460ff19169055565b60006110186120e7612e7f565b84611303856040518060600160405280602581526020016145006025913960056000612111612e7f565b6001600160a01b03908116825260208083019390935260409182016000908120918d168152925290205491906133a4565b6001546001600160a01b0316331461218b5760405162461bcd60e51b81526004018080602001828103825260238152602001806144dd6023913960400191505060405180910390fd5b60025442116121e1576040805162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300604482015290519081900360640190fd5b600154600080546040516001600160a01b0393841693909116916000805160206143ff83398151915291a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b600061101861223d612e7f565b8484612f6f565b61224c612e7f565b6000546001600160a01b0390811691161461229c576040805162461bcd60e51b815260206004820181905260248201526000805160206143df833981519152604482015290519081900360640190fd5b600181101580156122ae575060198111155b6122ed576040805162461bcd60e51b81526020600482018190526024820152600080516020614491833981519152604482015290519081900360640190fd5b601555565b6122fa612e7f565b6000546001600160a01b0390811691161461234a576040805162461bcd60e51b815260206004820181905260248201526000805160206143df833981519152604482015290519081900360640190fd5b601760009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561239857600080fd5b505afa1580156123ac573d6000803e3d6000fd5b505050506040513d60208110156123c257600080fd5b50516018546040805163095ea7b360e01b81526001600160a01b039283166004820152602481018590529051919092169163095ea7b39160448083019260209291908290030181600087803b15801561241a57600080fd5b505af115801561242e573d6000803e3d6000fd5b505050506040513d602081101561244457600080fd5b50506018546040805163ae84637f60e01b81526004810184905290516001600160a01b039092169163ae84637f9160248082019260009290919082900301818387803b15801561249357600080fd5b505af115801561121a573d6000803e3d6000fd5b6124af612e7f565b6000546001600160a01b039081169116146124ff576040805162461bcd60e51b815260206004820181905260248201526000805160206143df833981519152604482015290519081900360640190fd5b60018110158015612511575060198111155b612550576040805162461bcd60e51b81526020600482018190526024820152600080516020614491833981519152604482015290519081900360640190fd5b601355565b60025490565b612563612e7f565b6000546001600160a01b039081169116146125b3576040805162461bcd60e51b815260206004820181905260248201526000805160206143df833981519152604482015290519081900360640190fd5b601b55565b60145481565b6125c6612e7f565b6000546001600160a01b03908116911614612616576040805162461bcd60e51b815260206004820181905260248201526000805160206143df833981519152604482015290519081900360640190fd5b60018110158015612628575060198111155b612667576040805162461bcd60e51b81526020600482018190526024820152600080516020614491833981519152604482015290519081900360640190fd5b601655565b612674612e7f565b6000546001600160a01b039081169116146126c4576040805162461bcd60e51b815260206004820181905260248201526000805160206143df833981519152604482015290519081900360640190fd5b601880546001600160a01b0319166001600160a01b0392909216919091179055565b6126ee612e7f565b6000546001600160a01b0390811691161461273e576040805162461bcd60e51b815260206004820181905260248201526000805160206143df833981519152604482015290519081900360640190fd5b60018110158015612750575060198111155b6127a1576040805162461bcd60e51b815260206004820152601a60248201527f7461784665652073686f756c6420626520696e2031202d203235000000000000604482015290519081900360640190fd5b600f55565b6127ae612e7f565b6000546001600160a01b039081169116146127fe576040805162461bcd60e51b815260206004820181905260248201526000805160206143df833981519152604482015290519081900360640190fd5b601a8054821515600160a81b810260ff60a81b199092169190911790915560408051918252517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599181900360200190a150565b612859612e7f565b6000546001600160a01b039081169116146128a9576040805162461bcd60e51b815260206004820181905260248201526000805160206143df833981519152604482015290519081900360640190fd5b601a80546001600160a01b0319166001600160a01b0392909216919091179055565b601c5481565b6128d9612e7f565b6000546001600160a01b03908116911614612929576040805162461bcd60e51b815260206004820181905260248201526000805160206143df833981519152604482015290519081900360640190fd5b6018546040805163d2ae9a0d60e01b81526004810186815260248201928352604482018590526001600160a01b039093169263d2ae9a0d928792879287929091606401848480828437600081840152601f19601f820116905080830192505050945050505050600060405180830381600087803b1580156129a957600080fd5b505af11580156129bd573d6000803e3d6000fd5b50505050505050565b60155481565b6129d4612e7f565b6000546001600160a01b03908116911614612a24576040805162461bcd60e51b815260206004820181905260248201526000805160206143df833981519152604482015290519081900360640190fd5b60008054600180546001600160a01b03199081166001600160a01b0384161790915516815542820160025560405181906000805160206143ff833981519152908290a350565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b612a9d612e7f565b6000546001600160a01b03908116911614612aed576040805162461bcd60e51b815260206004820181905260248201526000805160206143df833981519152604482015290519081900360640190fd5b601754604080516315ab88c960e31b815290516000926001600160a01b03169163ad5c4648916004808301926020929190829003018186803b158015612b3257600080fd5b505afa158015612b46573d6000803e3d6000fd5b505050506040513d6020811015612b5c57600080fd5b50516001600160a01b03163010612b74576002612b77565b60035b9050816001600160a01b031663e70c2f96601760009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015612bd657600080fd5b505afa158015612bea573d6000803e3d6000fd5b505050506040513d6020811015612c0057600080fd5b50516040516001600160e01b031960e084901b1681526001600160a01b038216600482019081523060248301819052918691600091604401836003811115612c4457fe5b8152602001828152602001945050505050602060405180830381600087803b158015612c6f57600080fd5b505af1158015612c83573d6000803e3d6000fd5b505050506040513d6020811015612c9957600080fd5b5051601880546001600160a01b0319166001600160a01b039092169190911790555050565b612cc6612e7f565b6000546001600160a01b03908116911614612d16576040805162461bcd60e51b815260206004820181905260248201526000805160206143df833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19169055565b612d3f612e7f565b6000546001600160a01b03908116911614612d8f576040805162461bcd60e51b815260206004820181905260248201526000805160206143df833981519152604482015290519081900360640190fd5b6001600160a01b038116612dd45760405162461bcd60e51b81526004018080602001828103825260268152602001806142a36026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216916000805160206143ff83398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b612e25612e7f565b6000546001600160a01b03908116911614612e75576040805162461bcd60e51b815260206004820181905260248201526000805160206143df833981519152604482015290519081900360640190fd5b47611c3281613731565b3390565b6001600160a01b038316612ec85760405162461bcd60e51b815260040180806020018281038252602481526020018061446d6024913960400191505060405180910390fd5b6001600160a01b038216612f0d5760405162461bcd60e51b81526004018080602001828103825260228152602001806142c96022913960400191505060405180910390fd5b6001600160a01b03808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316612fb45760405162461bcd60e51b81526004018080602001828103825260258152602001806144486025913960400191505060405180910390fd5b6001600160a01b038216612ff95760405162461bcd60e51b815260040180806020018281038252602381526020018061422d6023913960400191505060405180910390fd5b600081116130385760405162461bcd60e51b815260040180806020018281038252602981526020018061441f6029913960400191505060405180910390fd5b6001600160a01b0383166000908152601e602052604090205460ff16156130a6576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a20736e69706572732063616e206e6f74207472616e7366657200604482015290519081900360640190fd5b6001600160a01b0382166000908152601e602052604090205460ff1615613114576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a20736e69706572732063616e206e6f74207472616e7366657200604482015290519081900360640190fd5b336000908152601e602052604090205460ff1615613179576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a20736e69706572732063616e206e6f74207472616e7366657200604482015290519081900360640190fd5b601f5460ff166131925761318d83836137b6565b6131fd565b60006020541180156131b157506018546001600160a01b038481169116145b80156131d657506001600160a01b0383166000908152601d602052604090205460ff16155b80156131fb57506001600160a01b0382166000908152601d602052604090205460ff16155b505b613205611ff1565b6001600160a01b0316836001600160a01b03161415801561323f5750613229611ff1565b6001600160a01b0316826001600160a01b031614155b1561328557601b548111156132855760405162461bcd60e51b815260040180806020018281038252602881526020018061433f6028913960400191505060405180910390fd5b600061329030611e59565b9050601b5481106132a05750601b545b601c54811080159081906132be5750601a54600160a01b900460ff16155b80156132d857506018546001600160a01b03868116911614155b80156132ed5750601a54600160a81b900460ff165b1561330057601c54915061330082613847565b6001600160a01b03851660009081526006602052604090205460019060ff168061334257506001600160a01b03851660009081526006602052604090205460ff165b1561334b575060005b6018546001600160a01b038781169116141561336e57601354601155601454600f555b6018546001600160a01b0387811691161461339057601554601155601654600f555b61339c8686868461390a565b505050505050565b600081848411156134335760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156133f85781810151838201526020016133e0565b50505050905090810190601f1680156134255780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60006113f883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506133a4565b600080600061348a613a7e565b909250905061349982826134a0565b9250505090565b60006113f883836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613be1565b6000828201838110156113f8576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60008060008060008060008060006135538a613c46565b92509250925060008060006135718d868661356c61347d565b613c82565b919f909e50909c50959a5093985091965092945050505050565b604080516002808252606080830184529260208301908036833701905050905030816000815181106135b957fe5b6001600160a01b03928316602091820292909201810191909152601754604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b15801561360d57600080fd5b505afa158015613621573d6000803e3d6000fd5b505050506040513d602081101561363757600080fd5b505181518290600190811061364857fe5b6001600160a01b03928316602091820292909201015260175461366e9130911684612e83565b60175460405163791ac94760e01b8152600481018481526000602483018190523060648401819052426084850181905260a060448601908152875160a487015287516001600160a01b039097169663791ac947968a968a9594939092909160c40190602080880191028083838b5b838110156136f45781810151838201526020016136dc565b505050509050019650505050505050600060405180830381600087803b15801561371d57600080fd5b505af115801561339c573d6000803e3d6000fd5b6019546001600160a01b03166108fc61374b8360026134a0565b6040518115909202916000818181858888f19350505050158015613773573d6000803e3d6000fd5b50601a546001600160a01b03166108fc61378e8360026134a0565b6040518115909202916000818181858888f193505050501580156117ca573d6000803e3d6000fd5b601f5460ff16156137f85760405162461bcd60e51b81526004018080602001828103825260238152602001806142eb6023913960400191505060405180910390fd5b6001600160a01b0382166000908152601d602052604090205460ff16801561382d57506018546001600160a01b038281169116145b156117ca57601f805460ff19166001179055436020555050565b601a805460ff60a01b1916600160a01b17905560006138678260046134a0565b905060006138768360046134a0565b905060006138888261138c868661343b565b9050476138948461358b565b60006138a0478361343b565b90506138ac8482613cd2565b6138b583613d9f565b604080518681526020810183905280820186905290517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15050601a805460ff60a01b1916905550505050565b8061391757613917613e24565b6001600160a01b03841660009081526007602052604090205460ff16801561395857506001600160a01b03831660009081526007602052604090205460ff16155b1561396d57613968848484613e56565b613a6b565b6001600160a01b03841660009081526007602052604090205460ff161580156139ae57506001600160a01b03831660009081526007602052604090205460ff165b156139be57613968848484613f7a565b6001600160a01b03841660009081526007602052604090205460ff16158015613a0057506001600160a01b03831660009081526007602052604090205460ff16155b15613a1057613968848484614023565b6001600160a01b03841660009081526007602052604090205460ff168015613a5057506001600160a01b03831660009081526007602052604090205460ff165b15613a6057613968848484614067565b613a6b848484614023565b80613a7857613a786140da565b50505050565b600a546009546000918291825b600854811015613baf57826003600060088481548110613aa757fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180613b0c5750816004600060088481548110613ae557fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b15613b2357600a5460095494509450505050613bdd565b613b636003600060088481548110613b3757fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054849061343b565b9250613ba56004600060088481548110613b7957fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054839061343b565b9150600101613a8b565b50600954600a54613bbf916134a0565b821015613bd757600a54600954935093505050613bdd565b90925090505b9091565b60008183613c305760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156133f85781810151838201526020016133e0565b506000838581613c3c57fe5b0495945050505050565b600080600080613c55856140e8565b90506000613c628661410a565b90506000613c748261138c898661343b565b979296509094509092505050565b6000808080613c918886614126565b90506000613c9f8887614126565b90506000613cad8888614126565b90506000613cbf8261138c868661343b565b939b939a50919850919650505050505050565b601754613cea9030906001600160a01b031684612e83565b6017546001600160a01b031663f305d719823085600080613d09611ff1565b426040518863ffffffff1660e01b815260040180876001600160a01b03168152602001868152602001858152602001848152602001836001600160a01b0316815260200182815260200196505050505050506060604051808303818588803b158015613d7457600080fd5b505af1158015613d88573d6000803e3d6000fd5b50505050506040513d6060811015613a7857600080fd5b613da88161358b565b601a546001600160a01b03166108fc613dc24760026134a0565b6040518115909202916000818181858888f19350505050158015613dea573d6000803e3d6000fd5b506019546040516001600160a01b03909116904780156108fc02916000818181858888f193505050501580156117ca573d6000803e3d6000fd5b600f54158015613e345750601154155b15613e3e57613e54565b600f805460105560118054601255600091829055555b565b600080600080600080613e688761353c565b6001600160a01b038f16600090815260046020526040902054959b50939950919750955093509150613e9a908861343b565b6001600160a01b038a16600090815260046020908152604080832093909355600390522054613ec9908761343b565b6001600160a01b03808b1660009081526003602052604080822093909355908a1681522054613ef890866134e2565b6001600160a01b038916600090815260036020526040902055613f1a8161417f565b613f248483614208565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080613f8c8761353c565b6001600160a01b038f16600090815260036020526040902054959b50939950919750955093509150613fbe908761343b565b6001600160a01b03808b16600090815260036020908152604080832094909455918b16815260049091522054613ff490846134e2565b6001600160a01b038916600090815260046020908152604080832093909355600390522054613ef890866134e2565b6000806000806000806140358761353c565b6001600160a01b038f16600090815260036020526040902054959b50939950919750955093509150613ec9908761343b565b6000806000806000806140798761353c565b6001600160a01b038f16600090815260046020526040902054959b509399509197509550935091506140ab908861343b565b6001600160a01b038a16600090815260046020908152604080832093909355600390522054613fbe908761343b565b601054600f55601254601155565b600061101c6064614104600f548561412690919063ffffffff16565b906134a0565b600061101c60646141046011548561412690919063ffffffff16565b6000826141355750600061101c565b8282028284828161414257fe5b04146113f85760405162461bcd60e51b81526004018080602001828103825260218152602001806143676021913960400191505060405180910390fd5b600061418961347d565b905060006141978383614126565b306000908152600360205260409020549091506141b490826134e2565b3060009081526003602090815260408083209390935560079052205460ff161561420357306000908152600460205260409020546141f290846134e2565b306000908152600460205260409020555b505050565b600a54614215908361343b565b600a55600b5461422590826134e2565b600b55505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373456d706972653a3a6f6e6c79506169723a20496e73756666696369656e742050726976696c65676573416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573734c697175696469747920616c726561647920616464656420616e64206d61726b65642e45524332303a2043616e206e6f742061646420756e69737761705632526f7574657220746f20736e69706572206c6973745472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a2043616e206e6f742061646420756e697377617056325061697220746f20736e69706572206c69737445524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65728be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573736c69717569646974794665652073686f756c6420626520696e2031202d2032354578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212204c4ac71e7ed76c2f2661a0c3202d4afbbaacab0b2b68547b680514eec85b20c164736f6c634300060c0033

Deployed Bytecode

0x6080604052600436106103e85760003560e01c80635e90d66111610208578063b6c5232411610118578063d12a7688116100ab578063dd62ed3e1161007a578063dd62ed3e14610e85578063e7d20a3714610ec0578063ea2f0b3714610ef3578063f2fde38b14610f26578063f429389014610f59576103ef565b8063d12a768814610dad578063d2ae9a0d14610dc2578063d52dfc1414610e46578063dd46706414610e5b576103ef565b8063c393d45f116100e7578063c393d45f14610cf1578063c4081a4c14610d24578063c49b9a8014610d4e578063ccf4094f14610d7a576103ef565b8063b6c5232414610c73578063bc33718214610c88578063bf5976d314610cb2578063c344fdab14610cc7576103ef565b80638da5cb5b1161019b578063a69df4b51161016a578063a69df4b514610ba7578063a9059cbb14610bbc578063aac6e06214610bf5578063ae84637f14610c1f578063b21cb20c14610c49576103ef565b80638da5cb5b14610b1157806395d89b4114610b26578063999f148c14610b3b578063a457c2d714610b6e576103ef565b80637d1db4a5116101d75780637d1db4a514610a815780638199040e14610a96578063834caa5814610aab57806388f8202014610ade576103ef565b80635e90d661146109f15780636bc87c3a14610a2457806370a0823114610a39578063715018a614610a6c576103ef565b8063340ac20f116103035780634144d9e4116102965780634a74bb02116102655780634a74bb021461094c57806350a8e0161461096157806351bc3c851461097657806352390c021461098b5780635342acb4146109be576103ef565b80634144d9e4146108bd578063437823ec146108d25780634549b0391461090557806349bd5a5e14610937576103ef565b80633b124fe7116102d25780633b124fe7146108365780633bd5d1731461084b5780633c0a73ae146108755780633e3e95981461088a576103ef565b8063340ac20f1461076d578063357bf15c146107a05780633685d419146107ca57806339509351146107fd576103ef565b80631d7f36761161037b5780632b112e491161034a5780632b112e49146106d05780632d838119146106e5578063313ce5671461070f57806333251a0b1461073a576103ef565b80631d7f36761461061b5780631e17788a1461064e57806323b872dd1461066357806326e336cf146106a6576103ef565b806313114a9d116103b757806313114a9d1461057b5780631694505e146105a257806318160ddd146105d357806318e9b8b7146105e8576103ef565b806306fdde03146103f4578063095ea7b31461047e5780631136529b146104cb57806311d7ed82146104f7576103ef565b366103ef57005b600080fd5b34801561040057600080fd5b50610409610f6e565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561044357818101518382015260200161042b565b50505050905090810190601f1680156104705780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561048a57600080fd5b506104b7600480360360408110156104a157600080fd5b506001600160a01b038135169060200135611004565b604080519115158252519081900360200190f35b3480156104d757600080fd5b506104f5600480360360208110156104ee57600080fd5b5035611022565b005b34801561050357600080fd5b506104f56004803603604081101561051a57600080fd5b8135919081019060408101602082013564010000000081111561053c57600080fd5b82018360208201111561054e57600080fd5b8035906020019184600183028401116401000000008311171561057057600080fd5b5090925090506110d0565b34801561058757600080fd5b50610590611221565b60408051918252519081900360200190f35b3480156105ae57600080fd5b506105b7611227565b604080516001600160a01b039092168252519081900360200190f35b3480156105df57600080fd5b50610590611236565b3480156105f457600080fd5b506104b76004803603602081101561060b57600080fd5b50356001600160a01b031661123c565b34801561062757600080fd5b506104b76004803603602081101561063e57600080fd5b50356001600160a01b031661125e565b34801561065a57600080fd5b506105b761127c565b34801561066f57600080fd5b506104b76004803603606081101561068657600080fd5b506001600160a01b0381358116916020810135909116906040013561128b565b3480156106b257600080fd5b506104f5600480360360208110156106c957600080fd5b5035611312565b3480156106dc57600080fd5b5061059061136f565b3480156106f157600080fd5b506105906004803603602081101561070857600080fd5b503561139f565b34801561071b57600080fd5b506107246113ff565b6040805160ff9092168252519081900360200190f35b34801561074657600080fd5b506104f56004803603602081101561075d57600080fd5b50356001600160a01b0316611408565b34801561077957600080fd5b506104f56004803603602081101561079057600080fd5b50356001600160a01b03166114e5565b3480156107ac57600080fd5b506104f5600480360360208110156107c357600080fd5b503561155f565b3480156107d657600080fd5b506104f5600480360360208110156107ed57600080fd5b50356001600160a01b031661160d565b34801561080957600080fd5b506104b76004803603604081101561082057600080fd5b506001600160a01b0381351690602001356117ce565b34801561084257600080fd5b5061059061181c565b34801561085757600080fd5b506104f56004803603602081101561086e57600080fd5b5035611822565b34801561088157600080fd5b506105906118fc565b34801561089657600080fd5b506104f5600480360360208110156108ad57600080fd5b50356001600160a01b0316611902565b3480156108c957600080fd5b506105b7611a7f565b3480156108de57600080fd5b506104f5600480360360208110156108f557600080fd5b50356001600160a01b0316611a8e565b34801561091157600080fd5b506105906004803603604081101561092857600080fd5b50803590602001351515611b0a565b34801561094357600080fd5b506105b7611b9c565b34801561095857600080fd5b506104b7611bab565b34801561096d57600080fd5b506104b7611bbb565b34801561098257600080fd5b506104f5611bc4565b34801561099757600080fd5b506104f5600480360360208110156109ae57600080fd5b50356001600160a01b0316611c35565b3480156109ca57600080fd5b506104b7600480360360208110156109e157600080fd5b50356001600160a01b0316611dbb565b3480156109fd57600080fd5b506104f560048036036020811015610a1457600080fd5b50356001600160a01b0316611dd9565b348015610a3057600080fd5b50610590611e53565b348015610a4557600080fd5b5061059060048036036020811015610a5c57600080fd5b50356001600160a01b0316611e59565b348015610a7857600080fd5b506104f5611ebb565b348015610a8d57600080fd5b50610590611f4b565b348015610aa257600080fd5b50610590611f51565b348015610ab757600080fd5b506104f560048036036020811015610ace57600080fd5b50356001600160a01b0316611f57565b348015610aea57600080fd5b506104b760048036036020811015610b0157600080fd5b50356001600160a01b0316611fd3565b348015610b1d57600080fd5b506105b7611ff1565b348015610b3257600080fd5b50610409612000565b348015610b4757600080fd5b506104f560048036036020811015610b5e57600080fd5b50356001600160a01b0316612061565b348015610b7a57600080fd5b506104b760048036036040811015610b9157600080fd5b506001600160a01b0381351690602001356120da565b348015610bb357600080fd5b506104f5612142565b348015610bc857600080fd5b506104b760048036036040811015610bdf57600080fd5b506001600160a01b038135169060200135612230565b348015610c0157600080fd5b506104f560048036036020811015610c1857600080fd5b5035612244565b348015610c2b57600080fd5b506104f560048036036020811015610c4257600080fd5b50356122f2565b348015610c5557600080fd5b506104f560048036036020811015610c6c57600080fd5b50356124a7565b348015610c7f57600080fd5b50610590612555565b348015610c9457600080fd5b506104f560048036036020811015610cab57600080fd5b503561255b565b348015610cbe57600080fd5b506105906125b8565b348015610cd357600080fd5b506104f560048036036020811015610cea57600080fd5b50356125be565b348015610cfd57600080fd5b506104f560048036036020811015610d1457600080fd5b50356001600160a01b031661266c565b348015610d3057600080fd5b506104f560048036036020811015610d4757600080fd5b50356126e6565b348015610d5a57600080fd5b506104f560048036036020811015610d7157600080fd5b503515156127a6565b348015610d8657600080fd5b506104f560048036036020811015610d9d57600080fd5b50356001600160a01b0316612851565b348015610db957600080fd5b506105906128cb565b348015610dce57600080fd5b506104f560048036036040811015610de557600080fd5b81359190810190604081016020820135640100000000811115610e0757600080fd5b820183602082011115610e1957600080fd5b80359060200191846001830284011164010000000083111715610e3b57600080fd5b5090925090506128d1565b348015610e5257600080fd5b506105906129c6565b348015610e6757600080fd5b506104f560048036036020811015610e7e57600080fd5b50356129cc565b348015610e9157600080fd5b5061059060048036036040811015610ea857600080fd5b506001600160a01b0381358116916020013516612a6a565b348015610ecc57600080fd5b506104f560048036036020811015610ee357600080fd5b50356001600160a01b0316612a95565b348015610eff57600080fd5b506104f560048036036020811015610f1657600080fd5b50356001600160a01b0316612cbe565b348015610f3257600080fd5b506104f560048036036020811015610f4957600080fd5b50356001600160a01b0316612d37565b348015610f6557600080fd5b506104f5612e1d565b600c8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610ffa5780601f10610fcf57610100808354040283529160200191610ffa565b820191906000526020600020905b815481529060010190602001808311610fdd57829003601f168201915b5050505050905090565b6000611018611011612e7f565b8484612e83565b5060015b92915050565b61102a612e7f565b6000546001600160a01b0390811691161461107a576040805162461bcd60e51b815260206004820181905260248201526000805160206143df833981519152604482015290519081900360640190fd5b6001811015801561108c575060198111155b6110cb576040805162461bcd60e51b81526020600482018190526024820152600080516020614491833981519152604482015290519081900360640190fd5b601455565b6018546001600160a01b031633146111195760405162461bcd60e51b81526004018080602001828103825260298152602001806142506029913960400191505060405180910390fd5b601760009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561116757600080fd5b505afa15801561117b573d6000803e3d6000fd5b505050506040513d602081101561119157600080fd5b50516001600160a01b031663a9059cbb6111a9611ff1565b856040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050602060405180830381600087803b1580156111f057600080fd5b505af1158015611204573d6000803e3d6000fd5b505050506040513d602081101561121a57600080fd5b5050505050565b600b5490565b6017546001600160a01b031681565b60095490565b6001600160a01b0381166000908152601e602052604090205460ff165b919050565b6001600160a01b03166000908152601d602052604090205460ff1690565b6019546001600160a01b031681565b6000611298848484612f6f565b611308846112a4612e7f565b611303856040518060600160405280602881526020016143b7602891396001600160a01b038a166000908152600560205260408120906112e2612e7f565b6001600160a01b0316815260208101919091526040016000205491906133a4565b612e83565b5060019392505050565b61131a612e7f565b6000546001600160a01b0390811691161461136a576040805162461bcd60e51b815260206004820181905260248201526000805160206143df833981519152604482015290519081900360640190fd5b601c55565b600061139a6113926113816000611e59565b61138c61dead611e59565b9061343b565b61138c611236565b905090565b6000600a548211156113e25760405162461bcd60e51b815260040180806020018281038252602a815260200180614279602a913960400191505060405180910390fd5b60006113ec61347d565b90506113f883826134a0565b9392505050565b600e5460ff1690565b611410612e7f565b6000546001600160a01b03908116911614611460576040805162461bcd60e51b815260206004820181905260248201526000805160206143df833981519152604482015290519081900360640190fd5b6001600160a01b0381166000908152601e602052604090205460ff166114c4576040805162461bcd60e51b815260206004820152601460248201527322a92199181d1024b9903737ba1039b734b832b960611b604482015290519081900360640190fd5b6001600160a01b03166000908152601e60205260409020805460ff19169055565b6114ed612e7f565b6000546001600160a01b0390811691161461153d576040805162461bcd60e51b815260206004820181905260248201526000805160206143df833981519152604482015290519081900360640190fd5b601780546001600160a01b0319166001600160a01b0392909216919091179055565b611567612e7f565b6000546001600160a01b039081169116146115b7576040805162461bcd60e51b815260206004820181905260248201526000805160206143df833981519152604482015290519081900360640190fd5b600181101580156115c9575060198111155b611608576040805162461bcd60e51b81526020600482018190526024820152600080516020614491833981519152604482015290519081900360640190fd5b601155565b611615612e7f565b6000546001600160a01b03908116911614611665576040805162461bcd60e51b815260206004820181905260248201526000805160206143df833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff166116d2576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b6008548110156117ca57816001600160a01b0316600882815481106116f657fe5b6000918252602090912001546001600160a01b031614156117c25760088054600019810190811061172357fe5b600091825260209091200154600880546001600160a01b03909216918390811061174957fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600482526040808220829055600790925220805460ff19169055600880548061179b57fe5b600082815260209020810160001990810180546001600160a01b03191690550190556117ca565b6001016116d5565b5050565b60006110186117db612e7f565b8461130385600560006117ec612e7f565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906134e2565b600f5481565b600061182c612e7f565b6001600160a01b03811660009081526007602052604090205490915060ff16156118875760405162461bcd60e51b815260040180806020018281038252602c8152602001806144b1602c913960400191505060405180910390fd5b60006118928361353c565b505050506001600160a01b0384166000908152600360205260409020549192506118be9190508261343b565b6001600160a01b038316600090815260036020526040902055600a546118e4908261343b565b600a55600b546118f490846134e2565b600b55505050565b60135481565b61190a612e7f565b6000546001600160a01b0390811691161461195a576040805162461bcd60e51b815260206004820181905260248201526000805160206143df833981519152604482015290519081900360640190fd5b6018546001600160a01b03828116911614156119a75760405162461bcd60e51b815260040180806020018281038252602f815260200180614388602f913960400191505060405180910390fd5b6001600160a01b038116737a250d5630b4cf539739df2c5dacb4c659f2488d1415611a035760405162461bcd60e51b815260040180806020018281038252603181526020018061430e6031913960400191505060405180910390fd5b6001600160a01b03166000818152601e602090815260408083208054600160ff1991821681179092556007909352908320805490921681179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319169091179055565b601a546001600160a01b031681565b611a96612e7f565b6000546001600160a01b03908116911614611ae6576040805162461bcd60e51b815260206004820181905260248201526000805160206143df833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b6000600954831115611b63576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b81611b82576000611b738461353c565b5093955061101c945050505050565b6000611b8d8461353c565b5092955061101c945050505050565b6018546001600160a01b031681565b601a54600160a81b900460ff1681565b601f5460ff1681565b611bcc612e7f565b6000546001600160a01b03908116911614611c1c576040805162461bcd60e51b815260206004820181905260248201526000805160206143df833981519152604482015290519081900360640190fd5b6000611c2730611e59565b9050611c328161358b565b50565b611c3d612e7f565b6000546001600160a01b03908116911614611c8d576040805162461bcd60e51b815260206004820181905260248201526000805160206143df833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff1615611cfb576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b03811660009081526003602052604090205415611d55576001600160a01b038116600090815260036020526040902054611d3b9061139f565b6001600160a01b0382166000908152600460205260409020555b6001600160a01b03166000818152600760205260408120805460ff191660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319169091179055565b6001600160a01b031660009081526006602052604090205460ff1690565b611de1612e7f565b6000546001600160a01b03908116911614611e31576040805162461bcd60e51b815260206004820181905260248201526000805160206143df833981519152604482015290519081900360640190fd5b601980546001600160a01b0319166001600160a01b0392909216919091179055565b60115481565b6001600160a01b03811660009081526007602052604081205460ff1615611e9957506001600160a01b038116600090815260046020526040902054611259565b6001600160a01b03821660009081526003602052604090205461101c9061139f565b611ec3612e7f565b6000546001600160a01b03908116911614611f13576040805162461bcd60e51b815260206004820181905260248201526000805160206143df833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116906000805160206143ff833981519152908390a3600080546001600160a01b0319169055565b601b5481565b60165481565b611f5f612e7f565b6000546001600160a01b03908116911614611faf576040805162461bcd60e51b815260206004820181905260248201526000805160206143df833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152601d60205260409020805460ff19166001179055565b6001600160a01b031660009081526007602052604090205460ff1690565b6000546001600160a01b031690565b600d8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610ffa5780601f10610fcf57610100808354040283529160200191610ffa565b612069612e7f565b6000546001600160a01b039081169116146120b9576040805162461bcd60e51b815260206004820181905260248201526000805160206143df833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152601d60205260409020805460ff19169055565b60006110186120e7612e7f565b84611303856040518060600160405280602581526020016145006025913960056000612111612e7f565b6001600160a01b03908116825260208083019390935260409182016000908120918d168152925290205491906133a4565b6001546001600160a01b0316331461218b5760405162461bcd60e51b81526004018080602001828103825260238152602001806144dd6023913960400191505060405180910390fd5b60025442116121e1576040805162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300604482015290519081900360640190fd5b600154600080546040516001600160a01b0393841693909116916000805160206143ff83398151915291a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b600061101861223d612e7f565b8484612f6f565b61224c612e7f565b6000546001600160a01b0390811691161461229c576040805162461bcd60e51b815260206004820181905260248201526000805160206143df833981519152604482015290519081900360640190fd5b600181101580156122ae575060198111155b6122ed576040805162461bcd60e51b81526020600482018190526024820152600080516020614491833981519152604482015290519081900360640190fd5b601555565b6122fa612e7f565b6000546001600160a01b0390811691161461234a576040805162461bcd60e51b815260206004820181905260248201526000805160206143df833981519152604482015290519081900360640190fd5b601760009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561239857600080fd5b505afa1580156123ac573d6000803e3d6000fd5b505050506040513d60208110156123c257600080fd5b50516018546040805163095ea7b360e01b81526001600160a01b039283166004820152602481018590529051919092169163095ea7b39160448083019260209291908290030181600087803b15801561241a57600080fd5b505af115801561242e573d6000803e3d6000fd5b505050506040513d602081101561244457600080fd5b50506018546040805163ae84637f60e01b81526004810184905290516001600160a01b039092169163ae84637f9160248082019260009290919082900301818387803b15801561249357600080fd5b505af115801561121a573d6000803e3d6000fd5b6124af612e7f565b6000546001600160a01b039081169116146124ff576040805162461bcd60e51b815260206004820181905260248201526000805160206143df833981519152604482015290519081900360640190fd5b60018110158015612511575060198111155b612550576040805162461bcd60e51b81526020600482018190526024820152600080516020614491833981519152604482015290519081900360640190fd5b601355565b60025490565b612563612e7f565b6000546001600160a01b039081169116146125b3576040805162461bcd60e51b815260206004820181905260248201526000805160206143df833981519152604482015290519081900360640190fd5b601b55565b60145481565b6125c6612e7f565b6000546001600160a01b03908116911614612616576040805162461bcd60e51b815260206004820181905260248201526000805160206143df833981519152604482015290519081900360640190fd5b60018110158015612628575060198111155b612667576040805162461bcd60e51b81526020600482018190526024820152600080516020614491833981519152604482015290519081900360640190fd5b601655565b612674612e7f565b6000546001600160a01b039081169116146126c4576040805162461bcd60e51b815260206004820181905260248201526000805160206143df833981519152604482015290519081900360640190fd5b601880546001600160a01b0319166001600160a01b0392909216919091179055565b6126ee612e7f565b6000546001600160a01b0390811691161461273e576040805162461bcd60e51b815260206004820181905260248201526000805160206143df833981519152604482015290519081900360640190fd5b60018110158015612750575060198111155b6127a1576040805162461bcd60e51b815260206004820152601a60248201527f7461784665652073686f756c6420626520696e2031202d203235000000000000604482015290519081900360640190fd5b600f55565b6127ae612e7f565b6000546001600160a01b039081169116146127fe576040805162461bcd60e51b815260206004820181905260248201526000805160206143df833981519152604482015290519081900360640190fd5b601a8054821515600160a81b810260ff60a81b199092169190911790915560408051918252517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599181900360200190a150565b612859612e7f565b6000546001600160a01b039081169116146128a9576040805162461bcd60e51b815260206004820181905260248201526000805160206143df833981519152604482015290519081900360640190fd5b601a80546001600160a01b0319166001600160a01b0392909216919091179055565b601c5481565b6128d9612e7f565b6000546001600160a01b03908116911614612929576040805162461bcd60e51b815260206004820181905260248201526000805160206143df833981519152604482015290519081900360640190fd5b6018546040805163d2ae9a0d60e01b81526004810186815260248201928352604482018590526001600160a01b039093169263d2ae9a0d928792879287929091606401848480828437600081840152601f19601f820116905080830192505050945050505050600060405180830381600087803b1580156129a957600080fd5b505af11580156129bd573d6000803e3d6000fd5b50505050505050565b60155481565b6129d4612e7f565b6000546001600160a01b03908116911614612a24576040805162461bcd60e51b815260206004820181905260248201526000805160206143df833981519152604482015290519081900360640190fd5b60008054600180546001600160a01b03199081166001600160a01b0384161790915516815542820160025560405181906000805160206143ff833981519152908290a350565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b612a9d612e7f565b6000546001600160a01b03908116911614612aed576040805162461bcd60e51b815260206004820181905260248201526000805160206143df833981519152604482015290519081900360640190fd5b601754604080516315ab88c960e31b815290516000926001600160a01b03169163ad5c4648916004808301926020929190829003018186803b158015612b3257600080fd5b505afa158015612b46573d6000803e3d6000fd5b505050506040513d6020811015612b5c57600080fd5b50516001600160a01b03163010612b74576002612b77565b60035b9050816001600160a01b031663e70c2f96601760009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015612bd657600080fd5b505afa158015612bea573d6000803e3d6000fd5b505050506040513d6020811015612c0057600080fd5b50516040516001600160e01b031960e084901b1681526001600160a01b038216600482019081523060248301819052918691600091604401836003811115612c4457fe5b8152602001828152602001945050505050602060405180830381600087803b158015612c6f57600080fd5b505af1158015612c83573d6000803e3d6000fd5b505050506040513d6020811015612c9957600080fd5b5051601880546001600160a01b0319166001600160a01b039092169190911790555050565b612cc6612e7f565b6000546001600160a01b03908116911614612d16576040805162461bcd60e51b815260206004820181905260248201526000805160206143df833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19169055565b612d3f612e7f565b6000546001600160a01b03908116911614612d8f576040805162461bcd60e51b815260206004820181905260248201526000805160206143df833981519152604482015290519081900360640190fd5b6001600160a01b038116612dd45760405162461bcd60e51b81526004018080602001828103825260268152602001806142a36026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216916000805160206143ff83398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b612e25612e7f565b6000546001600160a01b03908116911614612e75576040805162461bcd60e51b815260206004820181905260248201526000805160206143df833981519152604482015290519081900360640190fd5b47611c3281613731565b3390565b6001600160a01b038316612ec85760405162461bcd60e51b815260040180806020018281038252602481526020018061446d6024913960400191505060405180910390fd5b6001600160a01b038216612f0d5760405162461bcd60e51b81526004018080602001828103825260228152602001806142c96022913960400191505060405180910390fd5b6001600160a01b03808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316612fb45760405162461bcd60e51b81526004018080602001828103825260258152602001806144486025913960400191505060405180910390fd5b6001600160a01b038216612ff95760405162461bcd60e51b815260040180806020018281038252602381526020018061422d6023913960400191505060405180910390fd5b600081116130385760405162461bcd60e51b815260040180806020018281038252602981526020018061441f6029913960400191505060405180910390fd5b6001600160a01b0383166000908152601e602052604090205460ff16156130a6576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a20736e69706572732063616e206e6f74207472616e7366657200604482015290519081900360640190fd5b6001600160a01b0382166000908152601e602052604090205460ff1615613114576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a20736e69706572732063616e206e6f74207472616e7366657200604482015290519081900360640190fd5b336000908152601e602052604090205460ff1615613179576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a20736e69706572732063616e206e6f74207472616e7366657200604482015290519081900360640190fd5b601f5460ff166131925761318d83836137b6565b6131fd565b60006020541180156131b157506018546001600160a01b038481169116145b80156131d657506001600160a01b0383166000908152601d602052604090205460ff16155b80156131fb57506001600160a01b0382166000908152601d602052604090205460ff16155b505b613205611ff1565b6001600160a01b0316836001600160a01b03161415801561323f5750613229611ff1565b6001600160a01b0316826001600160a01b031614155b1561328557601b548111156132855760405162461bcd60e51b815260040180806020018281038252602881526020018061433f6028913960400191505060405180910390fd5b600061329030611e59565b9050601b5481106132a05750601b545b601c54811080159081906132be5750601a54600160a01b900460ff16155b80156132d857506018546001600160a01b03868116911614155b80156132ed5750601a54600160a81b900460ff165b1561330057601c54915061330082613847565b6001600160a01b03851660009081526006602052604090205460019060ff168061334257506001600160a01b03851660009081526006602052604090205460ff165b1561334b575060005b6018546001600160a01b038781169116141561336e57601354601155601454600f555b6018546001600160a01b0387811691161461339057601554601155601654600f555b61339c8686868461390a565b505050505050565b600081848411156134335760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156133f85781810151838201526020016133e0565b50505050905090810190601f1680156134255780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60006113f883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506133a4565b600080600061348a613a7e565b909250905061349982826134a0565b9250505090565b60006113f883836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613be1565b6000828201838110156113f8576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60008060008060008060008060006135538a613c46565b92509250925060008060006135718d868661356c61347d565b613c82565b919f909e50909c50959a5093985091965092945050505050565b604080516002808252606080830184529260208301908036833701905050905030816000815181106135b957fe5b6001600160a01b03928316602091820292909201810191909152601754604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b15801561360d57600080fd5b505afa158015613621573d6000803e3d6000fd5b505050506040513d602081101561363757600080fd5b505181518290600190811061364857fe5b6001600160a01b03928316602091820292909201015260175461366e9130911684612e83565b60175460405163791ac94760e01b8152600481018481526000602483018190523060648401819052426084850181905260a060448601908152875160a487015287516001600160a01b039097169663791ac947968a968a9594939092909160c40190602080880191028083838b5b838110156136f45781810151838201526020016136dc565b505050509050019650505050505050600060405180830381600087803b15801561371d57600080fd5b505af115801561339c573d6000803e3d6000fd5b6019546001600160a01b03166108fc61374b8360026134a0565b6040518115909202916000818181858888f19350505050158015613773573d6000803e3d6000fd5b50601a546001600160a01b03166108fc61378e8360026134a0565b6040518115909202916000818181858888f193505050501580156117ca573d6000803e3d6000fd5b601f5460ff16156137f85760405162461bcd60e51b81526004018080602001828103825260238152602001806142eb6023913960400191505060405180910390fd5b6001600160a01b0382166000908152601d602052604090205460ff16801561382d57506018546001600160a01b038281169116145b156117ca57601f805460ff19166001179055436020555050565b601a805460ff60a01b1916600160a01b17905560006138678260046134a0565b905060006138768360046134a0565b905060006138888261138c868661343b565b9050476138948461358b565b60006138a0478361343b565b90506138ac8482613cd2565b6138b583613d9f565b604080518681526020810183905280820186905290517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15050601a805460ff60a01b1916905550505050565b8061391757613917613e24565b6001600160a01b03841660009081526007602052604090205460ff16801561395857506001600160a01b03831660009081526007602052604090205460ff16155b1561396d57613968848484613e56565b613a6b565b6001600160a01b03841660009081526007602052604090205460ff161580156139ae57506001600160a01b03831660009081526007602052604090205460ff165b156139be57613968848484613f7a565b6001600160a01b03841660009081526007602052604090205460ff16158015613a0057506001600160a01b03831660009081526007602052604090205460ff16155b15613a1057613968848484614023565b6001600160a01b03841660009081526007602052604090205460ff168015613a5057506001600160a01b03831660009081526007602052604090205460ff165b15613a6057613968848484614067565b613a6b848484614023565b80613a7857613a786140da565b50505050565b600a546009546000918291825b600854811015613baf57826003600060088481548110613aa757fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180613b0c5750816004600060088481548110613ae557fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b15613b2357600a5460095494509450505050613bdd565b613b636003600060088481548110613b3757fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054849061343b565b9250613ba56004600060088481548110613b7957fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054839061343b565b9150600101613a8b565b50600954600a54613bbf916134a0565b821015613bd757600a54600954935093505050613bdd565b90925090505b9091565b60008183613c305760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156133f85781810151838201526020016133e0565b506000838581613c3c57fe5b0495945050505050565b600080600080613c55856140e8565b90506000613c628661410a565b90506000613c748261138c898661343b565b979296509094509092505050565b6000808080613c918886614126565b90506000613c9f8887614126565b90506000613cad8888614126565b90506000613cbf8261138c868661343b565b939b939a50919850919650505050505050565b601754613cea9030906001600160a01b031684612e83565b6017546001600160a01b031663f305d719823085600080613d09611ff1565b426040518863ffffffff1660e01b815260040180876001600160a01b03168152602001868152602001858152602001848152602001836001600160a01b0316815260200182815260200196505050505050506060604051808303818588803b158015613d7457600080fd5b505af1158015613d88573d6000803e3d6000fd5b50505050506040513d6060811015613a7857600080fd5b613da88161358b565b601a546001600160a01b03166108fc613dc24760026134a0565b6040518115909202916000818181858888f19350505050158015613dea573d6000803e3d6000fd5b506019546040516001600160a01b03909116904780156108fc02916000818181858888f193505050501580156117ca573d6000803e3d6000fd5b600f54158015613e345750601154155b15613e3e57613e54565b600f805460105560118054601255600091829055555b565b600080600080600080613e688761353c565b6001600160a01b038f16600090815260046020526040902054959b50939950919750955093509150613e9a908861343b565b6001600160a01b038a16600090815260046020908152604080832093909355600390522054613ec9908761343b565b6001600160a01b03808b1660009081526003602052604080822093909355908a1681522054613ef890866134e2565b6001600160a01b038916600090815260036020526040902055613f1a8161417f565b613f248483614208565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080613f8c8761353c565b6001600160a01b038f16600090815260036020526040902054959b50939950919750955093509150613fbe908761343b565b6001600160a01b03808b16600090815260036020908152604080832094909455918b16815260049091522054613ff490846134e2565b6001600160a01b038916600090815260046020908152604080832093909355600390522054613ef890866134e2565b6000806000806000806140358761353c565b6001600160a01b038f16600090815260036020526040902054959b50939950919750955093509150613ec9908761343b565b6000806000806000806140798761353c565b6001600160a01b038f16600090815260046020526040902054959b509399509197509550935091506140ab908861343b565b6001600160a01b038a16600090815260046020908152604080832093909355600390522054613fbe908761343b565b601054600f55601254601155565b600061101c6064614104600f548561412690919063ffffffff16565b906134a0565b600061101c60646141046011548561412690919063ffffffff16565b6000826141355750600061101c565b8282028284828161414257fe5b04146113f85760405162461bcd60e51b81526004018080602001828103825260218152602001806143676021913960400191505060405180910390fd5b600061418961347d565b905060006141978383614126565b306000908152600360205260409020549091506141b490826134e2565b3060009081526003602090815260408083209390935560079052205460ff161561420357306000908152600460205260409020546141f290846134e2565b306000908152600460205260409020555b505050565b600a54614215908361343b565b600a55600b5461422590826134e2565b600b55505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373456d706972653a3a6f6e6c79506169723a20496e73756666696369656e742050726976696c65676573416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573734c697175696469747920616c726561647920616464656420616e64206d61726b65642e45524332303a2043616e206e6f742061646420756e69737761705632526f7574657220746f20736e69706572206c6973745472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a2043616e206e6f742061646420756e697377617056325061697220746f20736e69706572206c69737445524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65728be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573736c69717569646974794665652073686f756c6420626520696e2031202d2032354578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212204c4ac71e7ed76c2f2661a0c3202d4afbbaacab0b2b68547b680514eec85b20c164736f6c634300060c0033

Deployed Bytecode Sourcemap

34774:25411:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38073:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38985:161;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;38985:161:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;58361:208;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;58361:208:0;;:::i;:::-;;59833:152;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;59833:152:0;;-1:-1:-1;59833:152:0;-1:-1:-1;59833:152:0;:::i;40106:87::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;35922:41;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;35922:41:0;;;;;;;;;;;;;;38350:95;;;;;;;;;;;;;:::i;55830:111::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;55830:111:0;-1:-1:-1;;;;;55830:111:0;;:::i;55953:128::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;55953:128:0;-1:-1:-1;;;;;55953:128:0;;:::i;36005:85::-;;;;;;;;;;;;;:::i;39154:313::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;39154:313:0;;;;;;;;;;;;;;;;;:::i;59209:119::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;59209:119:0;;:::i;40201:237::-;;;;;;;;;;;;;:::i;41275:253::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41275:253:0;;:::i;38259:83::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;56554:185;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;56554:185:0;-1:-1:-1;;;;;56554:185:0;;:::i;59079:122::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;59079:122:0;-1:-1:-1;;;;;59079:122:0;;:::i;57685:210::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;57685:210:0;;:::i;41991:479::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41991:479:0;-1:-1:-1;;;;;41991:479:0;;:::i;39475:218::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;39475:218:0;;;;;;;;:::i;35564:26::-;;;;;;;;;;;;;:::i;40446:377::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40446:377:0;;:::i;35752:37::-;;;;;;;;;;;;;:::i;56093:449::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;56093:449:0;-1:-1:-1;;;;;56093:449:0;;:::i;36097:91::-;;;;;;;;;;;;;:::i;43132:111::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43132:111:0;-1:-1:-1;;;;;43132:111:0;;:::i;40831:436::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40831:436:0;;;;;;;;;:::i;35970:28::-;;;;;;;;;;;;;:::i;36229:40::-;;;;;;;;;;;;;:::i;36522:36::-;;;;;;;;;;;;;:::i;57181:156::-;;;;;;;;;;;;;:::i;41536:447::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41536:447:0;-1:-1:-1;;;;;41536:447:0;;:::i;46964:123::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46964:123:0;-1:-1:-1;;;;;46964:123:0;;:::i;47474:115::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47474:115:0;-1:-1:-1;;;;;47474:115:0;;:::i;35651:32::-;;;;;;;;;;;;;:::i;38453:198::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38453:198:0;-1:-1:-1;;;;;38453:198:0;;:::i;16749:148::-;;;;;;;;;;;;;:::i;36278:48::-;;;;;;;;;;;;;:::i;35881:32::-;;;;;;;;;;;;;:::i;56751:132::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;56751:132:0;-1:-1:-1;;;;;56751:132:0;;:::i;39978:120::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39978:120:0;-1:-1:-1;;;;;39978:120:0;;:::i;16106:79::-;;;;;;;;;;;;;:::i;38164:87::-;;;;;;;;;;;;;:::i;56895:136::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;56895:136:0;-1:-1:-1;;;;;56895:136:0;;:::i;39701:269::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;39701:269:0;;;;;;;;:::i;17759:293::-;;;;;;;;;;;;;:::i;38659:167::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;38659:167:0;;;;;;;;:::i;58131:222::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;58131:222:0;;:::i;59993:187::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;59993:187:0;;:::i;57903:220::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;57903:220:0;;:::i;17304:89::-;;;;;;;;;;;;;:::i;43380:93::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43380:93:0;;:::i;35796:31::-;;;;;;;;;;;;;:::i;58577:210::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;58577:210:0;;:::i;58968:103::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;58968:103:0;-1:-1:-1;;;;;58968:103:0;;:::i;57509:168::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;57509:168:0;;:::i;43481:171::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43481:171:0;;;;:::i;47345:121::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47345:121:0;-1:-1:-1;;;;;47345:121:0;;:::i;36338:62::-;;;;;;;;;;;;;:::i;59687:138::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;59687:138:0;;-1:-1:-1;59687:138:0;-1:-1:-1;59687:138:0;:::i;35836:38::-;;;;;;;;;;;;;:::i;17469:214::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17469:214:0;;:::i;38834:143::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;38834:143:0;;;;;;;;;;:::i;59336:343::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;59336:343:0;-1:-1:-1;;;;;59336:343:0;;:::i;43255:110::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43255:110:0;-1:-1:-1;;;;;43255:110:0;;:::i;17052:244::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17052:244:0;-1:-1:-1;;;;;17052:244:0;;:::i;57345:156::-;;;;;;;;;;;;;:::i;38073:83::-;38143:5;38136:12;;;;;;;;-1:-1:-1;;38136:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38110:13;;38136:12;;38143:5;;38136:12;;38143:5;38136:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38073:83;:::o;38985:161::-;39060:4;39077:39;39086:12;:10;:12::i;:::-;39100:7;39109:6;39077:8;:39::i;:::-;-1:-1:-1;39134:4:0;38985:161;;;;;:::o;58361:208::-;16328:12;:10;:12::i;:::-;16318:6;;-1:-1:-1;;;;;16318:6:0;;;:22;;;16310:67;;;;;-1:-1:-1;;;16310:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16310:67:0;;;;;;;;;;;;;;;58463:1:::1;58447:12;:17;;:39;;;;;58484:2;58468:12;:18;;58447:39;58439:84;;;::::0;;-1:-1:-1;;;58439:84:0;;::::1;;::::0;::::1;::::0;;;;;;;-1:-1:-1;;;;;;;;;;;58439:84:0;;;;;;;;;;;;;::::1;;58534:12;:27:::0;58361:208::o;59833:152::-;37105:13;;-1:-1:-1;;;;;37105:13:0;37091:10;:27;37069:118;;;;-1:-1:-1;;;37069:118:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59928:15:::1;;;;;;;;;-1:-1:-1::0;;;;;59928:15:0::1;-1:-1:-1::0;;;;;59928:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;59928:22:0;-1:-1:-1;;;;;59921:39:0::1;;59961:7;:5;:7::i;:::-;59970:6;59921:56;;;;;;;;;;;;;-1:-1:-1::0;;;;;59921:56:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;;;;;59833:152:0:o;40106:87::-;40175:10;;40106:87;:::o;35922:41::-;;;-1:-1:-1;;;;;35922:41:0;;:::o;38350:95::-;38430:7;;38350:95;:::o;55830:111::-;-1:-1:-1;;;;;55915:18:0;;55891:4;55915:18;;;:9;:18;;;;;;;;55830:111;;;;:::o;55953:128::-;-1:-1:-1;;;;;56047:26:0;56023:4;56047:26;;;:17;:26;;;;;;;;;55953:128::o;36005:85::-;;;-1:-1:-1;;;;;36005:85:0;;:::o;39154:313::-;39252:4;39269:36;39279:6;39287:9;39298:6;39269:9;:36::i;:::-;39316:121;39325:6;39333:12;:10;:12::i;:::-;39347:89;39385:6;39347:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;39347:19:0;;;;;;:11;:19;;;;;;39367:12;:10;:12::i;:::-;-1:-1:-1;;;;;39347:33:0;;;;;;;;;;;;-1:-1:-1;39347:33:0;;;:89;:37;:89::i;:::-;39316:8;:121::i;:::-;-1:-1:-1;39455:4:0;39154:313;;;;;:::o;59209:119::-;16328:12;:10;:12::i;:::-;16318:6;;-1:-1:-1;;;;;16318:6:0;;;:22;;;16310:67;;;;;-1:-1:-1;;;16310:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16310:67:0;;;;;;;;;;;;;;;59280:29:::1;:40:::0;59209:119::o;40201:237::-;40254:7;40281:149;40299:130;40366:62;40384:42;40366:9;:62::i;:::-;40299;40317:42;40299:9;:62::i;:::-;:66;;:130::i;:::-;40281:13;:11;:13::i;:149::-;40274:156;;40201:237;:::o;41275:253::-;41341:7;41380;;41369;:18;;41361:73;;;;-1:-1:-1;;;41361:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41445:19;41468:10;:8;:10::i;:::-;41445:33;-1:-1:-1;41496:24:0;:7;41445:33;41496:11;:24::i;:::-;41489:31;41275:253;-1:-1:-1;;;41275:253:0:o;38259:83::-;38325:9;;;;38259:83;:::o;56554:185::-;16328:12;:10;:12::i;:::-;16318:6;;-1:-1:-1;;;;;16318:6:0;;;:22;;;16310:67;;;;;-1:-1:-1;;;16310:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16310:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;56637:24:0;::::1;;::::0;;;:9:::1;:24;::::0;;;;;::::1;;56629:57;;;::::0;;-1:-1:-1;;;56629:57:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;56629:57:0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;56699:24:0::1;56726:5;56699:24:::0;;;:9:::1;:24;::::0;;;;:32;;-1:-1:-1;;56699:32:0::1;::::0;;56554:185::o;59079:122::-;16328:12;:10;:12::i;:::-;16318:6;;-1:-1:-1;;;;;16318:6:0;;;:22;;;16310:67;;;;;-1:-1:-1;;;16310:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16310:67:0;;;;;;;;;;;;;;;59148:15:::1;:45:::0;;-1:-1:-1;;;;;;59148:45:0::1;-1:-1:-1::0;;;;;59148:45:0;;;::::1;::::0;;;::::1;::::0;;59079:122::o;57685:210::-;16328:12;:10;:12::i;:::-;16318:6;;-1:-1:-1;;;;;16318:6:0;;;:22;;;16310:67;;;;;-1:-1:-1;;;16310:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16310:67:0;;;;;;;;;;;;;;;57788:1:::1;57772:12;:17;;:39;;;;;57809:2;57793:12;:18;;57772:39;57764:84;;;::::0;;-1:-1:-1;;;57764:84:0;;::::1;;::::0;::::1;::::0;;;;;;;-1:-1:-1;;;;;;;;;;;57764:84:0;;;;;;;;;;;;;::::1;;57859:13;:28:::0;57685:210::o;41991:479::-;16328:12;:10;:12::i;:::-;16318:6;;-1:-1:-1;;;;;16318:6:0;;;:22;;;16310:67;;;;;-1:-1:-1;;;16310:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16310:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;42073:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;42065:60;;;::::0;;-1:-1:-1;;;42065:60:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;42141:9;42136:327;42160:9;:16:::0;42156:20;::::1;42136:327;;;42218:7;-1:-1:-1::0;;;;;42202:23:0::1;:9;42212:1;42202:12;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;42202:12:0::1;:23;42198:254;;;42261:9;42271:16:::0;;-1:-1:-1;;42271:20:0;;;42261:31;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;42246:9:::1;:12:::0;;-1:-1:-1;;;;;42261:31:0;;::::1;::::0;42256:1;;42246:12;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;42246:46:0::1;-1:-1:-1::0;;;;;42246:46:0;;::::1;;::::0;;42311:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;42350:11:::1;:20:::0;;;;:28;;-1:-1:-1;;42350:28:0::1;::::0;;42397:9:::1;:15:::0;;;::::1;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;42397:15:0;;;;;-1:-1:-1;;;;;;42397:15:0::1;::::0;;;;;42431:5:::1;;42198:254;42178:3;;42136:327;;;;41991:479:::0;:::o;39475:218::-;39563:4;39580:83;39589:12;:10;:12::i;:::-;39603:7;39612:50;39651:10;39612:11;:25;39624:12;:10;:12::i;:::-;-1:-1:-1;;;;;39612:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;39612:25:0;;;:34;;;;;;;;;;;:38;:50::i;35564:26::-;;;;:::o;40446:377::-;40498:14;40515:12;:10;:12::i;:::-;-1:-1:-1;;;;;40547:19:0;;;;;;:11;:19;;;;;;40498:29;;-1:-1:-1;40547:19:0;;40546:20;40538:77;;;;-1:-1:-1;;;40538:77:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40627:15;40651:19;40662:7;40651:10;:19::i;:::-;-1:-1:-1;;;;;;;;;40699:15:0;;;;;;:7;:15;;;;;;40626:44;;-1:-1:-1;40699:28:0;;:15;-1:-1:-1;40626:44:0;40699:19;:28::i;:::-;-1:-1:-1;;;;;40681:15:0;;;;;;:7;:15;;;;;:46;40748:7;;:20;;40760:7;40748:11;:20::i;:::-;40738:7;:30;40792:10;;:23;;40807:7;40792:14;:23::i;:::-;40779:10;:36;-1:-1:-1;;;40446:377:0:o;35752:37::-;;;;:::o;56093:449::-;16328:12;:10;:12::i;:::-;16318:6;;-1:-1:-1;;;;;16318:6:0;;;:22;;;16310:67;;;;;-1:-1:-1;;;16310:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16310:67:0;;;;;;;;;;;;;;;56190:13:::1;::::0;-1:-1:-1;;;;;56173:30:0;;::::1;56190:13:::0;::::1;56173:30;;56165:90;;;;-1:-1:-1::0;;;56165:90:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;56274:68:0;::::1;56299:42;56274:68;;56266:130;;;;-1:-1:-1::0;;;56266:130:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;56409:24:0::1;;::::0;;;:9:::1;:24;::::0;;;;;;;:31;;56436:4:::1;-1:-1:-1::0;;56409:31:0;;::::1;::::0;::::1;::::0;;;56461:11:::1;:26:::0;;;;;;:33;;;;::::1;::::0;::::1;::::0;;;56505:9:::1;:29:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;56505:29:0::1;::::0;;::::1;::::0;;56093:449::o;36097:91::-;;;-1:-1:-1;;;;;36097:91:0;;:::o;43132:111::-;16328:12;:10;:12::i;:::-;16318:6;;-1:-1:-1;;;;;16318:6:0;;;:22;;;16310:67;;;;;-1:-1:-1;;;16310:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16310:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;43201:27:0::1;;::::0;;;:18:::1;:27;::::0;;;;:34;;-1:-1:-1;;43201:34:0::1;43231:4;43201:34;::::0;;43132:111::o;40831:436::-;40921:7;40960;;40949;:18;;40941:62;;;;;-1:-1:-1;;;40941:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;41019:17;41014:246;;41054:15;41078:19;41089:7;41078:10;:19::i;:::-;-1:-1:-1;41053:44:0;;-1:-1:-1;41112:14:0;;-1:-1:-1;;;;;41112:14:0;41014:246;41161:23;41192:19;41203:7;41192:10;:19::i;:::-;-1:-1:-1;41159:52:0;;-1:-1:-1;41226:22:0;;-1:-1:-1;;;;;41226:22:0;35970:28;;;-1:-1:-1;;;;;35970:28:0;;:::o;36229:40::-;;;-1:-1:-1;;;36229:40:0;;;;;:::o;36522:36::-;;;;;;:::o;57181:156::-;16328:12;:10;:12::i;:::-;16318:6;;-1:-1:-1;;;;;16318:6:0;;;:22;;;16310:67;;;;;-1:-1:-1;;;16310:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16310:67:0;;;;;;;;;;;;;;;57235:23:::1;57261:24;57279:4;57261:9;:24::i;:::-;57235:50;;57296:33;57313:15;57296:16;:33::i;:::-;16388:1;57181:156::o:0;41536:447::-;16328:12;:10;:12::i;:::-;16318:6;;-1:-1:-1;;;;;16318:6:0;;;:22;;;16310:67;;;;;-1:-1:-1;;;16310:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16310:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;41733:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;41732:21;41724:61;;;::::0;;-1:-1:-1;;;41724:61:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;41799:16:0;::::1;41818:1;41799:16:::0;;;:7:::1;:16;::::0;;;;;:20;41796:108:::1;;-1:-1:-1::0;;;;;41875:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;41855:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;41836:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;41796:108:::1;-1:-1:-1::0;;;;;41914:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;41914:27:0::1;41937:4;41914:27:::0;;::::1;::::0;;;41952:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;41952:23:0::1;::::0;;::::1;::::0;;41536:447::o;46964:123::-;-1:-1:-1;;;;;47052:27:0;47028:4;47052:27;;;:18;:27;;;;;;;;;46964:123::o;47474:115::-;16328:12;:10;:12::i;:::-;16318:6;;-1:-1:-1;;;;;16318:6:0;;;:22;;;16310:67;;;;;-1:-1:-1;;;16310:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16310:67:0;;;;;;;;;;;;;;;47553:17:::1;:28:::0;;-1:-1:-1;;;;;;47553:28:0::1;-1:-1:-1::0;;;;;47553:28:0;;;::::1;::::0;;;::::1;::::0;;47474:115::o;35651:32::-;;;;:::o;38453:198::-;-1:-1:-1;;;;;38543:20:0;;38519:7;38543:20;;;:11;:20;;;;;;;;38539:49;;;-1:-1:-1;;;;;;38572:16:0;;;;;;:7;:16;;;;;;38565:23;;38539:49;-1:-1:-1;;;;;38626:16:0;;;;;;:7;:16;;;;;;38606:37;;:19;:37::i;16749:148::-;16328:12;:10;:12::i;:::-;16318:6;;-1:-1:-1;;;;;16318:6:0;;;:22;;;16310:67;;;;;-1:-1:-1;;;16310:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16310:67:0;;;;;;;;;;;;;;;16856:1:::1;16840:6:::0;;16819:40:::1;::::0;-1:-1:-1;;;;;16840:6:0;;::::1;::::0;-1:-1:-1;;;;;;;;;;;16819:40:0;16856:1;;16819:40:::1;16887:1;16870:19:::0;;-1:-1:-1;;;;;;16870:19:0::1;::::0;;16749:148::o;36278:48::-;;;;:::o;35881:32::-;;;;:::o;56751:132::-;16328:12;:10;:12::i;:::-;16318:6;;-1:-1:-1;;;;;16318:6:0;;;:22;;;16310:67;;;;;-1:-1:-1;;;16310:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16310:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;56834:34:0::1;;::::0;;;:17:::1;:34;::::0;;;;:41;;-1:-1:-1;;56834:41:0::1;56871:4;56834:41;::::0;;56751:132::o;39978:120::-;-1:-1:-1;;;;;40070:20:0;40046:4;40070:20;;;:11;:20;;;;;;;;;39978:120::o;16106:79::-;16144:7;16171:6;-1:-1:-1;;;;;16171:6:0;16106:79;:::o;38164:87::-;38236:7;38229:14;;;;;;;;-1:-1:-1;;38229:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38203:13;;38229:14;;38236:7;;38229:14;;38236:7;38229:14;;;;;;;;;;;;;;;;;;;;;;;;56895:136;16328:12;:10;:12::i;:::-;16318:6;;-1:-1:-1;;;;;16318:6:0;;;:22;;;16310:67;;;;;-1:-1:-1;;;16310:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16310:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;56981:34:0::1;57018:5;56981:34:::0;;;:17:::1;:34;::::0;;;;:42;;-1:-1:-1;;56981:42:0::1;::::0;;56895:136::o;39701:269::-;39794:4;39811:129;39820:12;:10;:12::i;:::-;39834:7;39843:96;39882:15;39843:96;;;;;;;;;;;;;;;;;:11;:25;39855:12;:10;:12::i;:::-;-1:-1:-1;;;;;39843:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;39843:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;17759:293::-;17811:14;;-1:-1:-1;;;;;17811:14:0;17829:10;17811:28;17803:76;;;;-1:-1:-1;;;17803:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17904:9;;17898:3;:15;17890:60;;;;;-1:-1:-1;;;17890:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;17995:14;;;17987:6;;17966:44;;-1:-1:-1;;;;;17995:14:0;;;;17987:6;;;;-1:-1:-1;;;;;;;;;;;17966:44:0;;18030:14;;;18021:23;;-1:-1:-1;;;;;;18021:23:0;-1:-1:-1;;;;;18030:14:0;;;18021:23;;;;;;17759:293::o;38659:167::-;38737:4;38754:42;38764:12;:10;:12::i;:::-;38778:9;38789:6;38754:9;:42::i;58131:222::-;16328:12;:10;:12::i;:::-;16318:6;;-1:-1:-1;;;;;16318:6:0;;;:22;;;16310:67;;;;;-1:-1:-1;;;16310:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16310:67:0;;;;;;;;;;;;;;;58240:1:::1;58224:12;:17;;:39;;;;;58261:2;58245:12;:18;;58224:39;58216:84;;;::::0;;-1:-1:-1;;;58216:84:0;;::::1;;::::0;::::1;::::0;;;;;;;-1:-1:-1;;;;;;;;;;;58216:84:0;;;;;;;;;;;;;::::1;;58311:19;:34:::0;58131:222::o;59993:187::-;16328:12;:10;:12::i;:::-;16318:6;;-1:-1:-1;;;;;16318:6:0;;;:22;;;16310:67;;;;;-1:-1:-1;;;16310:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16310:67:0;;;;;;;;;;;;;;;60065:15:::1;;;;;;;;;-1:-1:-1::0;;;;;60065:15:0::1;-1:-1:-1::0;;;;;60065:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;60065:22:0;60097:13:::1;::::0;60058:61:::1;::::0;;-1:-1:-1;;;60058:61:0;;-1:-1:-1;;;;;60097:13:0;;::::1;60058:61;::::0;::::1;::::0;;;;;;;;;:38;;;::::1;::::0;::::1;::::0;:61;;;;;60065:22:::1;::::0;60058:61;;;;;;;60097:13:::1;60058:38:::0;:61;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;;60142:13:0::1;::::0;60130:42:::1;::::0;;-1:-1:-1;;;60130:42:0;;::::1;::::0;::::1;::::0;;;;;-1:-1:-1;;;;;60142:13:0;;::::1;::::0;60130:34:::1;::::0;:42;;;;;60142:13:::1;::::0;60130:42;;;;;;;;60142:13;;60130:42;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;57903:220:::0;16328:12;:10;:12::i;:::-;16318:6;;-1:-1:-1;;;;;16318:6:0;;;:22;;;16310:67;;;;;-1:-1:-1;;;16310:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16310:67:0;;;;;;;;;;;;;;;58011:1:::1;57995:12;:17;;:39;;;;;58032:2;58016:12;:18;;57995:39;57987:84;;;::::0;;-1:-1:-1;;;57987:84:0;;::::1;;::::0;::::1;::::0;;;;;;;-1:-1:-1;;;;;;;;;;;57987:84:0;;;;;;;;;;;;;::::1;;58082:18;:33:::0;57903:220::o;17304:89::-;17376:9;;17304:89;:::o;43380:93::-;16328:12;:10;:12::i;:::-;16318:6;;-1:-1:-1;;;;;16318:6:0;;;:22;;;16310:67;;;;;-1:-1:-1;;;16310:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16310:67:0;;;;;;;;;;;;;;;43445:12:::1;:20:::0;43380:93::o;35796:31::-;;;;:::o;58577:210::-;16328:12;:10;:12::i;:::-;16318:6;;-1:-1:-1;;;;;16318:6:0;;;:22;;;16310:67;;;;;-1:-1:-1;;;16310:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16310:67:0;;;;;;;;;;;;;;;58680:1:::1;58664:12;:17;;:39;;;;;58701:2;58685:12;:18;;58664:39;58656:84;;;::::0;;-1:-1:-1;;;58656:84:0;;::::1;;::::0;::::1;::::0;;;;;;;-1:-1:-1;;;;;;;;;;;58656:84:0;;;;;;;;;;;;;::::1;;58751:13;:28:::0;58577:210::o;58968:103::-;16328:12;:10;:12::i;:::-;16318:6;;-1:-1:-1;;;;;16318:6:0;;;:22;;;16310:67;;;;;-1:-1:-1;;;16310:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16310:67:0;;;;;;;;;;;;;;;59042:13:::1;:21:::0;;-1:-1:-1;;;;;;59042:21:0::1;-1:-1:-1::0;;;;;59042:21:0;;;::::1;::::0;;;::::1;::::0;;58968:103::o;57509:168::-;16328:12;:10;:12::i;:::-;16318:6;;-1:-1:-1;;;;;16318:6:0;;;:22;;;16310:67;;;;;-1:-1:-1;;;16310:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16310:67:0;;;;;;;;;;;;;;;57594:1:::1;57584:6;:11;;:27;;;;;57609:2;57599:6;:12;;57584:27;57576:66;;;::::0;;-1:-1:-1;;;57576:66:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;57653:7;:16:::0;57509:168::o;43481:171::-;16328:12;:10;:12::i;:::-;16318:6;;-1:-1:-1;;;;;16318:6:0;;;:22;;;16310:67;;;;;-1:-1:-1;;;16310:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16310:67:0;;;;;;;;;;;;;;;43558:21:::1;:32:::0;;;::::1;;-1:-1:-1::0;;;43558:32:0;::::1;-1:-1:-1::0;;;;43558:32:0;;::::1;::::0;;;::::1;::::0;;;43606:38:::1;::::0;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;43481:171:::0;:::o;47345:121::-;16328:12;:10;:12::i;:::-;16318:6;;-1:-1:-1;;;;;16318:6:0;;;:22;;;16310:67;;;;;-1:-1:-1;;;16310:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16310:67:0;;;;;;;;;;;;;;;47424:23:::1;:34:::0;;-1:-1:-1;;;;;;47424:34:0::1;-1:-1:-1::0;;;;;47424:34:0;;;::::1;::::0;;;::::1;::::0;;47345:121::o;36338:62::-;;;;:::o;59687:138::-;16328:12;:10;:12::i;:::-;16318:6;;-1:-1:-1;;;;;16318:6:0;;;:22;;;16310:67;;;;;-1:-1:-1;;;16310:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16310:67:0;;;;;;;;;;;;;;;59783:13:::1;::::0;59771:46:::1;::::0;;-1:-1:-1;;;59771:46:0;;::::1;::::0;::::1;::::0;;;;;;;;;;;;;;;-1:-1:-1;;;;;59783:13:0;;::::1;::::0;59771:32:::1;::::0;59804:6;;59812:4;;;;59771:46;;;;59812:4;;;;59771:46;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;59687:138:::0;;;:::o;35836:38::-;;;;:::o;17469:214::-;16328:12;:10;:12::i;:::-;16318:6;;-1:-1:-1;;;;;16318:6:0;;;:22;;;16310:67;;;;;-1:-1:-1;;;16310:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16310:67:0;;;;;;;;;;;;;;;17550:6:::1;::::0;;;17533:23;;-1:-1:-1;;;;;;17533:23:0;;::::1;-1:-1:-1::0;;;;;17550:6:0;::::1;17533:23;::::0;;;17567:19:::1;::::0;;17609:3:::1;:10:::0;::::1;17597:9;:22:::0;17635:40:::1;::::0;17550:6;;-1:-1:-1;;;;;;;;;;;17635:40:0;17550:6;;17635:40:::1;17469:214:::0;:::o;38834:143::-;-1:-1:-1;;;;;38942:18:0;;;38915:7;38942:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;38834:143::o;59336:343::-;16328:12;:10;:12::i;:::-;16318:6;;-1:-1:-1;;;;;16318:6:0;;;:22;;;16310:67;;;;;-1:-1:-1;;;16310:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16310:67:0;;;;;;;;;;;;;;;59463:15:::1;::::0;:22:::1;::::0;;-1:-1:-1;;;59463:22:0;;;;59414:17:::1;::::0;-1:-1:-1;;;;;59463:15:0::1;::::0;:20:::1;::::0;:22:::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;;:15;:22;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;59463:22:0;-1:-1:-1;;;;;59447:38:0::1;59455:4;59447:38;:126;;59549:24;59447:126;;;59505:24;59447:126;59414:159;;59600:8;-1:-1:-1::0;;;;;59600:19:0::1;;59620:15;;;;;;;;;-1:-1:-1::0;;;;;59620:15:0::1;-1:-1:-1::0;;;;;59620:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;59620:22:0;59600:71:::1;::::0;-1:-1:-1;;;;;;59600:71:0::1;::::0;;;;;;-1:-1:-1;;;;;59600:71:0;::::1;;::::0;::::1;::::0;;;59652:4:::1;59600:71:::0;;;;;;59652:4;59659:8;;59669:1:::1;::::0;59600:71;;59659:8;59600:71:::1;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;59600:71:0;59584:13:::1;:87:::0;;-1:-1:-1;;;;;;59584:87:0::1;-1:-1:-1::0;;;;;59584:87:0;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;59336:343:0:o;43255:110::-;16328:12;:10;:12::i;:::-;16318:6;;-1:-1:-1;;;;;16318:6:0;;;:22;;;16310:67;;;;;-1:-1:-1;;;16310:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16310:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;43322:27:0::1;43352:5;43322:27:::0;;;:18:::1;:27;::::0;;;;:35;;-1:-1:-1;;43322:35:0::1;::::0;;43255:110::o;17052:244::-;16328:12;:10;:12::i;:::-;16318:6;;-1:-1:-1;;;;;16318:6:0;;;:22;;;16310:67;;;;;-1:-1:-1;;;16310:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16310:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;17141:22:0;::::1;17133:73;;;;-1:-1:-1::0;;;17133:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17243:6;::::0;;17222:38:::1;::::0;-1:-1:-1;;;;;17222:38:0;;::::1;::::0;17243:6;::::1;::::0;-1:-1:-1;;;;;;;;;;;17222:38:0;::::1;17271:6;:17:::0;;-1:-1:-1;;;;;;17271:17:0::1;-1:-1:-1::0;;;;;17271:17:0;;;::::1;::::0;;;::::1;::::0;;17052:244::o;57345:156::-;16328:12;:10;:12::i;:::-;16318:6;;-1:-1:-1;;;;;16318:6:0;;;:22;;;16310:67;;;;;-1:-1:-1;;;16310:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16310:67:0;;;;;;;;;;;;;;;57428:21:::1;57460:33;57428:21:::0;57460:13:::1;:33::i;8516:106::-:0;8604:10;8516:106;:::o;47597:337::-;-1:-1:-1;;;;;47690:19:0;;47682:68;;;;-1:-1:-1;;;47682:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;47769:21:0;;47761:68;;;;-1:-1:-1;;;47761:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;47842:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;47894:32;;;;;;;;;;;;;;;;;47597:337;;;:::o;47942:2667::-;-1:-1:-1;;;;;48064:18:0;;48056:68;;;;-1:-1:-1;;;48056:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;48143:16:0;;48135:64;;;;-1:-1:-1;;;48135:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48227:1;48218:6;:10;48210:64;;;;-1:-1:-1;;;48210:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;48294:15:0;;;;;;:9;:15;;;;;;;;48293:16;48285:60;;;;;-1:-1:-1;;;48285:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;48365:13:0;;;;;;:9;:13;;;;;;;;48364:14;48356:58;;;;;-1:-1:-1;;;48356:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;48444:10;48434:21;;;;:9;:21;;;;;;;;48433:22;48425:66;;;;;-1:-1:-1;;;48425:66:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;48509:16;;;;48504:302;;48542:28;48561:4;48567:2;48542:18;:28::i;:::-;48504:302;;;48622:1;48607:12;;:16;:59;;;;-1:-1:-1;48653:13:0;;-1:-1:-1;;;;;48645:21:0;;;48653:13;;48645:21;48607:59;:105;;;;-1:-1:-1;;;;;;48689:23:0;;;;;;:17;:23;;;;;;;;48688:24;48607:105;:148;;;;-1:-1:-1;;;;;;48734:21:0;;;;;;:17;:21;;;;;;;;48733:22;48607:148;48603:188;;48829:7;:5;:7::i;:::-;-1:-1:-1;;;;;48821:15:0;:4;-1:-1:-1;;;;;48821:15:0;;;:32;;;;;48846:7;:5;:7::i;:::-;-1:-1:-1;;;;;48840:13:0;:2;-1:-1:-1;;;;;48840:13:0;;;48821:32;48818:125;;;48886:12;;48876:6;:22;;48868:75;;;;-1:-1:-1;;;48868:75:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49238:28;49269:24;49287:4;49269:9;:24::i;:::-;49238:55;;49341:12;;49317:20;:36;49314:112;;-1:-1:-1;49402:12:0;;49314:112;49497:29;;49473:53;;;;;;;49555;;-1:-1:-1;49592:16:0;;-1:-1:-1;;;49592:16:0;;;;49591:17;49555:53;:91;;;;-1:-1:-1;49633:13:0;;-1:-1:-1;;;;;49625:21:0;;;49633:13;;49625:21;;49555:91;:129;;;;-1:-1:-1;49663:21:0;;-1:-1:-1;;;49663:21:0;;;;49555:129;49537:318;;;49734:29;;49711:52;;49807:36;49822:20;49807:14;:36::i;:::-;-1:-1:-1;;;;;50063:24:0;;49936:12;50063:24;;;:18;:24;;;;;;49951:4;;50063:24;;;:50;;-1:-1:-1;;;;;;50091:22:0;;;;;;:18;:22;;;;;;;;50063:50;50060:96;;;-1:-1:-1;50139:5:0;50060:96;50203:13;;-1:-1:-1;;;;;50195:21:0;;;50203:13;;50195:21;50192:124;;;50249:18;;50233:13;:34;50292:12;;50282:7;:22;50192:124;50361:13;;-1:-1:-1;;;;;50353:21:0;;;50361:13;;50353:21;50350:126;;50407:19;;50391:13;:35;50451:13;;50441:7;:23;50350:126;50561:38;50576:4;50581:2;50584:6;50591:7;50561:14;:38::i;:::-;47942:2667;;;;;;:::o;4926:192::-;5012:7;5048:12;5040:6;;;;5032:29;;;;-1:-1:-1;;;5032:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5084:5:0;;;4926:192::o;4487:136::-;4545:7;4572:43;4576:1;4579;4572:43;;;;;;;;;;;;;;;;;:3;:43::i;45114:163::-;45155:7;45176:15;45193;45212:19;:17;:19::i;:::-;45175:56;;-1:-1:-1;45175:56:0;-1:-1:-1;45249:20:0;45175:56;;45249:11;:20::i;:::-;45242:27;;;;45114:163;:::o;6324:132::-;6382:7;6409:39;6413:1;6416;6409:39;;;;;;;;;;;;;;;;;:3;:39::i;4023:181::-;4081:7;4113:5;;;4137:6;;;;4129:46;;;;;-1:-1:-1;;;4129:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;43912:419;43971:7;43980;43989;43998;44007;44016;44037:23;44062:12;44076:18;44098:20;44110:7;44098:11;:20::i;:::-;44036:82;;;;;;44130:15;44147:23;44172:12;44188:50;44200:7;44209:4;44215:10;44227;:8;:10::i;:::-;44188:11;:50::i;:::-;44129:109;;;;-1:-1:-1;44129:109:0;;-1:-1:-1;44289:15:0;;-1:-1:-1;44306:4:0;;-1:-1:-1;44312:10:0;;-1:-1:-1;43912:419:0;;-1:-1:-1;;;;;43912:419:0:o;51807:589::-;51957:16;;;51971:1;51957:16;;;51933:21;51957:16;;;;;51933:21;51957:16;;;;;;;;;;-1:-1:-1;51957:16:0;51933:40;;52002:4;51984;51989:1;51984:7;;;;;;;;-1:-1:-1;;;;;51984:23:0;;;:7;;;;;;;;;;:23;;;;52028:15;;:22;;;-1:-1:-1;;;52028:22:0;;;;:15;;;;;:20;;:22;;;;;51984:7;;52028:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52028:22:0;52018:7;;:4;;52023:1;;52018:7;;;;;;-1:-1:-1;;;;;52018:32:0;;;:7;;;;;;;;;:32;52095:15;;52063:62;;52080:4;;52095:15;52113:11;52063:8;:62::i;:::-;52164:15;;:224;;-1:-1:-1;;;52164:224:0;;;;;;;;:15;:224;;;;;;52342:4;52164:224;;;;;;52362:15;52164:224;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;52164:15:0;;;;:66;;52245:11;;52315:4;;52342;52362:15;52164:224;;;;;;;;;;;;;;;;:15;:224;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58795:165;58853:17;;-1:-1:-1;;;;;58853:17:0;:41;58880:13;:6;58891:1;58880:10;:13::i;:::-;58853:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;58905:23:0;;-1:-1:-1;;;;;58905:23:0;:47;58938:13;:6;58949:1;58938:10;:13::i;:::-;58905:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55518:300;55600:16;;;;55599:17;55591:65;;;;-1:-1:-1;;;55591:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;55671:23:0;;;;;;:17;:23;;;;;;;;:46;;;;-1:-1:-1;55704:13:0;;-1:-1:-1;;;;;55698:19:0;;;55704:13;;55698:19;55671:46;55667:144;;;55734:16;:23;;-1:-1:-1;;55734:23:0;55753:4;55734:23;;;55787:12;55772;:27;55518:300;;:::o;50617:1182::-;36952:16;:23;;-1:-1:-1;;;;36952:23:0;-1:-1:-1;;;36952:23:0;;;;50777:27:::1;:20:::0;50802:1:::1;50777:24;:27::i;:::-;50753:51:::0;-1:-1:-1;50815:26:0::1;50844:27;:20:::0;50869:1:::1;50844:24;:27::i;:::-;50815:56:::0;-1:-1:-1;50882:22:0::1;50907:63;50815:56:::0;50907:39:::1;:20:::0;50932:13;50907:24:::1;:39::i;:63::-;50882:88:::0;-1:-1:-1;51273:21:0::1;51339:31;51356:13:::0;51339:16:::1;:31::i;:::-;51501:18;51522:41;:21;51548:14:::0;51522:25:::1;:41::i;:::-;51501:62;;51613:44;51626:18;51646:10;51613:12;:44::i;:::-;51668:36;51689:14;51668:20;:36::i;:::-;51730:61;::::0;;;;;::::1;::::0;::::1;::::0;;;;;;;;;;;::::1;::::0;;;;;;;::::1;-1:-1:-1::0;;36998:16:0;:24;;-1:-1:-1;;;;36998:24:0;;;-1:-1:-1;;;;50617:1182:0:o;52998:834::-;53109:7;53105:40;;53131:14;:12;:14::i;:::-;-1:-1:-1;;;;;53170:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;53194:22:0;;;;;;:11;:22;;;;;;;;53193:23;53170:46;53166:597;;;53233:48;53255:6;53263:9;53274:6;53233:21;:48::i;:::-;53166:597;;;-1:-1:-1;;;;;53304:19:0;;;;;;:11;:19;;;;;;;;53303:20;:46;;;;-1:-1:-1;;;;;;53327:22:0;;;;;;:11;:22;;;;;;;;53303:46;53299:464;;;53366:46;53386:6;53394:9;53405:6;53366:19;:46::i;53299:464::-;-1:-1:-1;;;;;53435:19:0;;;;;;:11;:19;;;;;;;;53434:20;:47;;;;-1:-1:-1;;;;;;53459:22:0;;;;;;:11;:22;;;;;;;;53458:23;53434:47;53430:333;;;53498:44;53516:6;53524:9;53535:6;53498:17;:44::i;53430:333::-;-1:-1:-1;;;;;53564:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;53587:22:0;;;;;;:11;:22;;;;;;;;53564:45;53560:203;;;53626:48;53648:6;53656:9;53667:6;53626:21;:48::i;53560:203::-;53707:44;53725:6;53733:9;53744:6;53707:17;:44::i;:::-;53787:7;53783:41;;53809:15;:13;:15::i;:::-;52998:834;;;;:::o;45285:561::-;45382:7;;45418;;45335;;;;;45442:289;45466:9;:16;45462:20;;45442:289;;;45532:7;45508;:21;45516:9;45526:1;45516:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;45516:12:0;45508:21;;;;;;;;;;;;;:31;;:66;;;45567:7;45543;:21;45551:9;45561:1;45551:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;45551:12:0;45543:21;;;;;;;;;;;;;:31;45508:66;45504:97;;;45584:7;;45593;;45576:25;;;;;;;;;45504:97;45626:34;45638:7;:21;45646:9;45656:1;45646:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;45646:12:0;45638:21;;;;;;;;;;;;;45626:7;;:11;:34::i;:::-;45616:44;;45685:34;45697:7;:21;45705:9;45715:1;45705:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;45705:12:0;45697:21;;;;;;;;;;;;;45685:7;;:11;:34::i;:::-;45675:44;-1:-1:-1;45484:3:0;;45442:289;;;-1:-1:-1;45767:7:0;;45755;;:20;;:11;:20::i;:::-;45745:7;:30;45741:61;;;45785:7;;45794;;45777:25;;;;;;;;45741:61;45821:7;;-1:-1:-1;45830:7:0;-1:-1:-1;45285:561:0;;;:::o;6952:278::-;7038:7;7073:12;7066:5;7058:28;;;;-1:-1:-1;;;7058:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7097:9;7113:1;7109;:5;;;;;;;6952:278;-1:-1:-1;;;;;6952:278:0:o;44339:330::-;44399:7;44408;44417;44437:12;44452:24;44468:7;44452:15;:24::i;:::-;44437:39;;44487:18;44508:30;44530:7;44508:21;:30::i;:::-;44487:51;-1:-1:-1;44549:23:0;44575:33;44487:51;44575:17;:7;44587:4;44575:11;:17::i;:33::-;44549:59;44644:4;;-1:-1:-1;44650:10:0;;-1:-1:-1;44339:330:0;;-1:-1:-1;;;44339:330:0:o;44677:429::-;44792:7;;;;44848:24;:7;44860:11;44848;:24::i;:::-;44830:42;-1:-1:-1;44883:12:0;44898:21;:4;44907:11;44898:8;:21::i;:::-;44883:36;-1:-1:-1;44930:18:0;44951:27;:10;44966:11;44951:14;:27::i;:::-;44930:48;-1:-1:-1;44989:23:0;45015:33;44930:48;45015:17;:7;45027:4;45015:11;:17::i;:33::-;45067:7;;;;-1:-1:-1;45093:4:0;;-1:-1:-1;44677:429:0;;-1:-1:-1;;;;;;;44677:429:0:o;52404:513::-;52584:15;;52552:62;;52569:4;;-1:-1:-1;;;;;52584:15:0;52602:11;52552:8;:62::i;:::-;52657:15;;-1:-1:-1;;;;;52657:15:0;:31;52696:9;52729:4;52749:11;52657:15;;52861:7;:5;:7::i;:::-;52883:15;52657:252;;;;;;;;;;;;;-1:-1:-1;;;;;52657:252:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;52657:252:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47099:234;47165:24;47182:6;47165:16;:24::i;:::-;47201:23;;-1:-1:-1;;;;;47201:23:0;:62;47234:28;:21;47260:1;47234:25;:28::i;:::-;47201:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47275:17:0;;:49;;-1:-1:-1;;;;;47275:17:0;;;;47302:21;47275:49;;;;;:17;:49;:17;:49;47302:21;47275:17;:49;;;;;;;;;;;;;;;;;;;46565:250;46611:7;;:12;:34;;;;-1:-1:-1;46627:13:0;;:18;46611:34;46608:46;;;46647:7;;46608:46;46692:7;;;46674:15;:25;46734:13;;;46710:21;:37;-1:-1:-1;46768:11:0;;;;46790:17;46565:250;:::o;54944:566::-;55047:15;55064:23;55089:12;55103:23;55128:12;55142:18;55164:19;55175:7;55164:10;:19::i;:::-;-1:-1:-1;;;;;55212:15:0;;;;;;:7;:15;;;;;;55046:137;;-1:-1:-1;55046:137:0;;-1:-1:-1;55046:137:0;;-1:-1:-1;55046:137:0;-1:-1:-1;55046:137:0;-1:-1:-1;55046:137:0;-1:-1:-1;55212:28:0;;55232:7;55212:19;:28::i;:::-;-1:-1:-1;;;;;55194:15:0;;;;;;:7;:15;;;;;;;;:46;;;;55269:7;:15;;;;:28;;55289:7;55269:19;:28::i;:::-;-1:-1:-1;;;;;55251:15:0;;;;;;;:7;:15;;;;;;:46;;;;55329:18;;;;;;;:39;;55352:15;55329:22;:39::i;:::-;-1:-1:-1;;;;;55308:18:0;;;;;;:7;:18;;;;;:60;55382:26;55397:10;55382:14;:26::i;:::-;55419:23;55431:4;55437;55419:11;:23::i;:::-;55475:9;-1:-1:-1;;;;;55458:44:0;55467:6;-1:-1:-1;;;;;55458:44:0;;55486:15;55458:44;;;;;;;;;;;;;;;;;;54944:566;;;;;;;;;:::o;54350:586::-;54451:15;54468:23;54493:12;54507:23;54532:12;54546:18;54568:19;54579:7;54568:10;:19::i;:::-;-1:-1:-1;;;;;54616:15:0;;;;;;:7;:15;;;;;;54450:137;;-1:-1:-1;54450:137:0;;-1:-1:-1;54450:137:0;;-1:-1:-1;54450:137:0;-1:-1:-1;54450:137:0;-1:-1:-1;54450:137:0;-1:-1:-1;54616:28:0;;54450:137;54616:19;:28::i;:::-;-1:-1:-1;;;;;54598:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;54676:18;;;;;:7;:18;;;;;:39;;54699:15;54676:22;:39::i;:::-;-1:-1:-1;;;;;54655:18:0;;;;;;:7;:18;;;;;;;;:60;;;;54747:7;:18;;;;:39;;54770:15;54747:22;:39::i;53840:502::-;53939:15;53956:23;53981:12;53995:23;54020:12;54034:18;54056:19;54067:7;54056:10;:19::i;:::-;-1:-1:-1;;;;;54104:15:0;;;;;;:7;:15;;;;;;53938:137;;-1:-1:-1;53938:137:0;;-1:-1:-1;53938:137:0;;-1:-1:-1;53938:137:0;-1:-1:-1;53938:137:0;-1:-1:-1;53938:137:0;-1:-1:-1;54104:28:0;;53938:137;54104:19;:28::i;42478:642::-;42581:15;42598:23;42623:12;42637:23;42662:12;42676:18;42698:19;42709:7;42698:10;:19::i;:::-;-1:-1:-1;;;;;42746:15:0;;;;;;:7;:15;;;;;;42580:137;;-1:-1:-1;42580:137:0;;-1:-1:-1;42580:137:0;;-1:-1:-1;42580:137:0;-1:-1:-1;42580:137:0;-1:-1:-1;42580:137:0;-1:-1:-1;42746:28:0;;42766:7;42746:19;:28::i;:::-;-1:-1:-1;;;;;42728:15:0;;;;;;:7;:15;;;;;;;;:46;;;;42803:7;:15;;;;:28;;42823:7;42803:19;:28::i;46827:125::-;46881:15;;46871:7;:25;46923:21;;46907:13;:37;46827:125::o;46225:154::-;46289:7;46316:55;46355:5;46316:20;46328:7;;46316;:11;;:20;;;;:::i;:::-;:24;;:55::i;46387:166::-;46457:7;46484:61;46529:5;46484:26;46496:13;;46484:7;:11;;:26;;;;:::i;5377:471::-;5435:7;5680:6;5676:47;;-1:-1:-1;5710:1:0;5703:8;;5676:47;5747:5;;;5751:1;5747;:5;:1;5771:5;;;;;:10;5763:56;;;;-1:-1:-1;;;5763:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45858:355;45921:19;45944:10;:8;:10::i;:::-;45921:33;-1:-1:-1;45965:18:0;45986:27;:10;45921:33;45986:14;:27::i;:::-;46065:4;46049:22;;;;:7;:22;;;;;;45965:48;;-1:-1:-1;46049:38:0;;45965:48;46049:26;:38::i;:::-;46040:4;46024:22;;;;:7;:22;;;;;;;;:63;;;;46101:11;:26;;;;;;46098:107;;;46183:4;46167:22;;;;:7;:22;;;;;;:38;;46194:10;46167:26;:38::i;:::-;46158:4;46142:22;;;;:7;:22;;;;;:63;46098:107;45858:355;;;:::o;43757:147::-;43835:7;;:17;;43847:4;43835:11;:17::i;:::-;43825:7;:27;43876:10;;:20;;43891:4;43876:14;:20::i;:::-;43863:10;:33;-1:-1:-1;;43757:147:0:o

Swarm Source

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