ETH Price: $3,299.58 (-3.29%)
Gas: 22 Gwei

Token

Capital Aggregator Token (CAT)
 

Overview

Max Total Supply

1,000,000,000,000 CAT

Holders

949

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Filtered by Token Holder
youarenowmanuallybreathing.eth
Balance
0.602744023 CAT

Value
$0.00
0xabf61252a5fdc6406907e389ae987f0db75fd6ce
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:
CAT

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

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

/*

    Capital Aggregator Token: $CAT
    - The aggregator of aggregators. Granting holders exposure to a range of cross chain yield generating tokens.
    - Buy one token ($CAT) to earn yield generated from multiple other aggregator projects.

    Tokenomics:
    10% of each buy goes to existing holders (reflection).
    10% of each sell is divided into:
        4% Marketing Wallet: For marketing, growth and promotion of CAT.
        4% Treasury Wallet: Invests in multi-chain farming projects to redirect yield into buy backs of CAT.
        2% Auto-Adds Liquidity: Automatically adds liquidity to CAT.

    Website:
    https://www.aggregator.capital/

    Telegram:
    https://t.me/aggregatorcoin

    Twitter:
    https://twitter.com/Aggregatorcoin

    Medium:
    https://medium.com/@aggregatorcoin

    Credit to RFI (Reflect Finance), MCC (Multi-Chain Capital) + SAFEMOON (SafeMoon) + EMPIRE (EmpireDEX).

*/

// SPDX-License-Identifier: Unlicensed
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 CAT 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 = "Capital Aggregator Token";
    string private _symbol = "CAT";
    uint8 private _decimals = 9;
    
    uint256 public _taxFee = 2;
    uint256 private _previousTaxFee = _taxFee;
    
    uint256 public _liquidityFee = 8;
    uint256 private _previousLiquidityFee = _liquidityFee;

    uint256 public _liquidityFeeOnBuy = 0;
    uint256 public _taxFeeOnBuy = 10;

    uint256 public _liquidityFeeOnSell = 8;
    uint256 public _taxFeeOnSell = 2;

    IUniswapV2Router02 public uniswapV2Router;
    address public uniswapV2Pair;
    address payable public _CATWalletAddress = 0x62B44f4Be6ad2d5Cf3250178217cC1c1FE443E56;
    address payable public _marketingWalletAddress = 0xa609dCA9010513C686Fd4574b0E241D1B35C1b4D;
    
    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;
    uint256 private snipeBlockAmt;
    uint256 public snipersCaught = 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 (uint256 _snipeBlockAmt) 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);

        snipeBlockAmt = _snipeBlockAmt;
        
        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)); 
        _CATWalletAddress.transfer(address(this).balance); 
    }
    
    function _setMWallet(address payable mAddress) external onlyOwner() {
        _marketingWalletAddress = mAddress;
    }

    function _setCWallet(address payable cAddress) external onlyOwner() {
        _CATWalletAddress = 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 (block.number - _liqAddBlock < snipeBlockAmt) {
                    _isSniper[to] = true;
                    snipersCaught ++;
                    emit SniperCaught(to); //pow
                }
            }
        }

        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 {
        _CATWalletAddress.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":[{"internalType":"uint256","name":"_snipeBlockAmt","type":"uint256"}],"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":"_CATWalletAddress","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":"snipersCaught","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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"}]

683635c9adc5dea000006009556818ce40f6d0219fffff19600a5560c0604052601860808190527f4361706974616c2041676772656761746f7220546f6b656e000000000000000060a09081526200005b91600c91906200057c565b506040805180820190915260038082526210d05560ea1b60209092019182526200008891600d916200057c565b50600e805460ff199081166009179091556002600f819055601081905560086011819055601281905560006013819055600a601455601591909155601691909155601980546001600160a01b03199081167362b44f4be6ad2d5cf3250178217cc1c1fe443e5617909155601a805460ff60a81b19921673a609dca9010513c686fd4574b0e241d1b35c1b4d1791909116600160a81b179055674563918244f40000601b556611c37937e08000601c55601f805490921690915560208190556022553480156200015657600080fd5b5060405162004c1e38038062004c1e833981810160405260208110156200017c57600080fd5b505160006200018a620004d8565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600a5460036000620001e5620004d8565b6001600160a01b03166001600160a01b03168152602001908152602001600020819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200025c57600080fd5b505afa15801562000271573d6000803e3d6000fd5b505050506040513d60208110156200028857600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039283169263c9c653969230929186169163ad5c464891600480820192602092909190829003018186803b158015620002d957600080fd5b505afa158015620002ee573d6000803e3d6000fd5b505050506040513d60208110156200030557600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b1580156200035857600080fd5b505af11580156200036d573d6000803e3d6000fd5b505050506040513d60208110156200038457600080fd5b5051601880546001600160a01b03199081166001600160a01b039384161790915560178054909116918316919091179055600160066000620003c5620004dc565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff1996871617905530815260068452828120805486166001908117909155601880548416835260079095529281208054909516831790945591546008805492830181559093527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319169290911691909117905560218290556200047933620004eb565b62000483620004d8565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6009546040518082815260200191505060405180910390a3505062000618565b3390565b6000546001600160a01b031690565b620004f5620004d8565b6000546001600160a01b0390811691161462000558576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b03166000908152601d60205260409020805460ff19166001179055565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620005bf57805160ff1916838001178555620005ef565b82800160010185558215620005ef579182015b82811115620005ef578251825591602001919060010190620005d2565b50620005fd92915062000601565b5090565b5b80821115620005fd576000815560010162000602565b6145f680620006286000396000f3fe6080604052600436106103f35760003560e01c806370a0823111610208578063bf5976d311610118578063d52dfc14116100ab578063e7d20a371161007a578063e7d20a3714610ecb578063ea2f0b3714610efe578063eba62b4014610f31578063f2fde38b14610f46578063f429389014610f79576103fa565b8063d52dfc1414610e3c578063dd46706414610e51578063dd62ed3e14610e7b578063e79d416014610eb6576103fa565b8063c49b9a80116100e7578063c49b9a8014610d44578063ccf4094f14610d70578063d12a768814610da3578063d2ae9a0d14610db8576103fa565b8063bf5976d314610ca8578063c344fdab14610cbd578063c393d45f14610ce7578063c4081a4c14610d1a576103fa565b8063999f148c1161019b578063aac6e0621161016a578063aac6e06214610beb578063ae84637f14610c15578063b21cb20c14610c3f578063b6c5232414610c69578063bc33718214610c7e576103fa565b8063999f148c14610b31578063a457c2d714610b64578063a69df4b514610b9d578063a9059cbb14610bb2576103fa565b8063834caa58116101d7578063834caa5814610aa157806388f8202014610ad45780638da5cb5b14610b0757806395d89b4114610b1c576103fa565b806370a0823114610a2f578063715018a614610a625780637d1db4a514610a775780638199040e14610a8c576103fa565b80633685d419116103035780634549b0391161029657806351bc3c851161026557806351bc3c851461096c57806352390c02146109815780635342acb4146109b45780635e90d661146109e75780636bc87c3a14610a1a576103fa565b80634549b039146108fb57806349bd5a5e1461092d5780634a74bb021461094257806350a8e01614610957576103fa565b80633c0a73ae116102d25780633c0a73ae1461086b5780633e3e9598146108805780634144d9e4146108b3578063437823ec146108c8576103fa565b80633685d419146107c057806339509351146107f35780633b124fe71461082c5780633bd5d17314610841576103fa565b80631d7f3676116103865780632d838119116103555780632d838119146106db578063313ce5671461070557806333251a0b14610730578063340ac20f14610763578063357bf15c14610796576103fa565b80631d7f36761461062657806323b872dd1461065957806326e336cf1461069c5780632b112e49146106c6576103fa565b806313114a9d116103c257806313114a9d146105865780631694505e146105ad57806318160ddd146105de57806318e9b8b7146105f3576103fa565b806306fdde03146103ff578063095ea7b3146104895780631136529b146104d657806311d7ed8214610502576103fa565b366103fa57005b600080fd5b34801561040b57600080fd5b50610414610f8e565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561044e578181015183820152602001610436565b50505050905090810190601f16801561047b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561049557600080fd5b506104c2600480360360408110156104ac57600080fd5b506001600160a01b038135169060200135611024565b604080519115158252519081900360200190f35b3480156104e257600080fd5b50610500600480360360208110156104f957600080fd5b5035611042565b005b34801561050e57600080fd5b506105006004803603604081101561052557600080fd5b8135919081019060408101602082013564010000000081111561054757600080fd5b82018360208201111561055957600080fd5b8035906020019184600183028401116401000000008311171561057b57600080fd5b5090925090506110f0565b34801561059257600080fd5b5061059b611241565b60408051918252519081900360200190f35b3480156105b957600080fd5b506105c2611247565b604080516001600160a01b039092168252519081900360200190f35b3480156105ea57600080fd5b5061059b611256565b3480156105ff57600080fd5b506104c26004803603602081101561061657600080fd5b50356001600160a01b031661125c565b34801561063257600080fd5b506104c26004803603602081101561064957600080fd5b50356001600160a01b031661127e565b34801561066557600080fd5b506104c26004803603606081101561067c57600080fd5b506001600160a01b0381358116916020810135909116906040013561129c565b3480156106a857600080fd5b50610500600480360360208110156106bf57600080fd5b5035611323565b3480156106d257600080fd5b5061059b611380565b3480156106e757600080fd5b5061059b600480360360208110156106fe57600080fd5b50356113b0565b34801561071157600080fd5b5061071a611410565b6040805160ff9092168252519081900360200190f35b34801561073c57600080fd5b506105006004803603602081101561075357600080fd5b50356001600160a01b0316611419565b34801561076f57600080fd5b506105006004803603602081101561078657600080fd5b50356001600160a01b03166114f6565b3480156107a257600080fd5b50610500600480360360208110156107b957600080fd5b5035611570565b3480156107cc57600080fd5b50610500600480360360208110156107e357600080fd5b50356001600160a01b031661161e565b3480156107ff57600080fd5b506104c26004803603604081101561081657600080fd5b506001600160a01b0381351690602001356117df565b34801561083857600080fd5b5061059b61182d565b34801561084d57600080fd5b506105006004803603602081101561086457600080fd5b5035611833565b34801561087757600080fd5b5061059b61190d565b34801561088c57600080fd5b50610500600480360360208110156108a357600080fd5b50356001600160a01b0316611913565b3480156108bf57600080fd5b506105c2611a90565b3480156108d457600080fd5b50610500600480360360208110156108eb57600080fd5b50356001600160a01b0316611a9f565b34801561090757600080fd5b5061059b6004803603604081101561091e57600080fd5b50803590602001351515611b1b565b34801561093957600080fd5b506105c2611bad565b34801561094e57600080fd5b506104c2611bbc565b34801561096357600080fd5b506104c2611bcc565b34801561097857600080fd5b50610500611bd5565b34801561098d57600080fd5b50610500600480360360208110156109a457600080fd5b50356001600160a01b0316611c46565b3480156109c057600080fd5b506104c2600480360360208110156109d757600080fd5b50356001600160a01b0316611dcc565b3480156109f357600080fd5b5061050060048036036020811015610a0a57600080fd5b50356001600160a01b0316611dea565b348015610a2657600080fd5b5061059b611e64565b348015610a3b57600080fd5b5061059b60048036036020811015610a5257600080fd5b50356001600160a01b0316611e6a565b348015610a6e57600080fd5b50610500611ecc565b348015610a8357600080fd5b5061059b611f5c565b348015610a9857600080fd5b5061059b611f62565b348015610aad57600080fd5b5061050060048036036020811015610ac457600080fd5b50356001600160a01b0316611f68565b348015610ae057600080fd5b506104c260048036036020811015610af757600080fd5b50356001600160a01b0316611fe4565b348015610b1357600080fd5b506105c2612002565b348015610b2857600080fd5b50610414612011565b348015610b3d57600080fd5b5061050060048036036020811015610b5457600080fd5b50356001600160a01b0316612072565b348015610b7057600080fd5b506104c260048036036040811015610b8757600080fd5b506001600160a01b0381351690602001356120eb565b348015610ba957600080fd5b50610500612153565b348015610bbe57600080fd5b506104c260048036036040811015610bd557600080fd5b506001600160a01b038135169060200135612241565b348015610bf757600080fd5b5061050060048036036020811015610c0e57600080fd5b5035612255565b348015610c2157600080fd5b5061050060048036036020811015610c3857600080fd5b5035612303565b348015610c4b57600080fd5b5061050060048036036020811015610c6257600080fd5b50356124b8565b348015610c7557600080fd5b5061059b612566565b348015610c8a57600080fd5b5061050060048036036020811015610ca157600080fd5b503561256c565b348015610cb457600080fd5b5061059b6125c9565b348015610cc957600080fd5b5061050060048036036020811015610ce057600080fd5b50356125cf565b348015610cf357600080fd5b5061050060048036036020811015610d0a57600080fd5b50356001600160a01b031661267d565b348015610d2657600080fd5b5061050060048036036020811015610d3d57600080fd5b50356126f7565b348015610d5057600080fd5b5061050060048036036020811015610d6757600080fd5b503515156127b7565b348015610d7c57600080fd5b5061050060048036036020811015610d9357600080fd5b50356001600160a01b0316612862565b348015610daf57600080fd5b5061059b6128dc565b348015610dc457600080fd5b5061050060048036036040811015610ddb57600080fd5b81359190810190604081016020820135640100000000811115610dfd57600080fd5b820183602082011115610e0f57600080fd5b80359060200191846001830284011164010000000083111715610e3157600080fd5b5090925090506128e2565b348015610e4857600080fd5b5061059b6129d7565b348015610e5d57600080fd5b5061050060048036036020811015610e7457600080fd5b50356129dd565b348015610e8757600080fd5b5061059b60048036036040811015610e9e57600080fd5b506001600160a01b0381358116916020013516612a7b565b348015610ec257600080fd5b5061059b612aa6565b348015610ed757600080fd5b5061050060048036036020811015610eee57600080fd5b50356001600160a01b0316612aac565b348015610f0a57600080fd5b5061050060048036036020811015610f2157600080fd5b50356001600160a01b0316612cd5565b348015610f3d57600080fd5b506105c2612d4e565b348015610f5257600080fd5b5061050060048036036020811015610f6957600080fd5b50356001600160a01b0316612d5d565b348015610f8557600080fd5b50610500612e43565b600c8054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561101a5780601f10610fef5761010080835404028352916020019161101a565b820191906000526020600020905b815481529060010190602001808311610ffd57829003601f168201915b5050505050905090565b6000611038611031612ea5565b8484612ea9565b5060015b92915050565b61104a612ea5565b6000546001600160a01b0390811691161461109a576040805162461bcd60e51b8152602060048201819052602482015260008051602061447b833981519152604482015290519081900360640190fd5b600181101580156110ac575060198111155b6110eb576040805162461bcd60e51b8152602060048201819052602482015260008051602061452d833981519152604482015290519081900360640190fd5b601455565b6018546001600160a01b031633146111395760405162461bcd60e51b81526004018080602001828103825260298152602001806142ec6029913960400191505060405180910390fd5b601760009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561118757600080fd5b505afa15801561119b573d6000803e3d6000fd5b505050506040513d60208110156111b157600080fd5b50516001600160a01b031663a9059cbb6111c9612002565b856040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050602060405180830381600087803b15801561121057600080fd5b505af1158015611224573d6000803e3d6000fd5b505050506040513d602081101561123a57600080fd5b5050505050565b600b5490565b6017546001600160a01b031681565b60095490565b6001600160a01b0381166000908152601e602052604090205460ff165b919050565b6001600160a01b03166000908152601d602052604090205460ff1690565b60006112a9848484612f95565b611319846112b5612ea5565b61131485604051806060016040528060288152602001614453602891396001600160a01b038a166000908152600560205260408120906112f3612ea5565b6001600160a01b031681526020810191909152604001600020549190613440565b612ea9565b5060019392505050565b61132b612ea5565b6000546001600160a01b0390811691161461137b576040805162461bcd60e51b8152602060048201819052602482015260008051602061447b833981519152604482015290519081900360640190fd5b601c55565b60006113ab6113a36113926000611e6a565b61139d61dead611e6a565b906134d7565b61139d611256565b905090565b6000600a548211156113f35760405162461bcd60e51b815260040180806020018281038252602a815260200180614315602a913960400191505060405180910390fd5b60006113fd613519565b9050611409838261353c565b9392505050565b600e5460ff1690565b611421612ea5565b6000546001600160a01b03908116911614611471576040805162461bcd60e51b8152602060048201819052602482015260008051602061447b833981519152604482015290519081900360640190fd5b6001600160a01b0381166000908152601e602052604090205460ff166114d5576040805162461bcd60e51b815260206004820152601460248201527322a92199181d1024b9903737ba1039b734b832b960611b604482015290519081900360640190fd5b6001600160a01b03166000908152601e60205260409020805460ff19169055565b6114fe612ea5565b6000546001600160a01b0390811691161461154e576040805162461bcd60e51b8152602060048201819052602482015260008051602061447b833981519152604482015290519081900360640190fd5b601780546001600160a01b0319166001600160a01b0392909216919091179055565b611578612ea5565b6000546001600160a01b039081169116146115c8576040805162461bcd60e51b8152602060048201819052602482015260008051602061447b833981519152604482015290519081900360640190fd5b600181101580156115da575060198111155b611619576040805162461bcd60e51b8152602060048201819052602482015260008051602061452d833981519152604482015290519081900360640190fd5b601155565b611626612ea5565b6000546001600160a01b03908116911614611676576040805162461bcd60e51b8152602060048201819052602482015260008051602061447b833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff166116e3576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b6008548110156117db57816001600160a01b03166008828154811061170757fe5b6000918252602090912001546001600160a01b031614156117d35760088054600019810190811061173457fe5b600091825260209091200154600880546001600160a01b03909216918390811061175a57fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600482526040808220829055600790925220805460ff1916905560088054806117ac57fe5b600082815260209020810160001990810180546001600160a01b03191690550190556117db565b6001016116e6565b5050565b60006110386117ec612ea5565b8461131485600560006117fd612ea5565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549061357e565b600f5481565b600061183d612ea5565b6001600160a01b03811660009081526007602052604090205490915060ff16156118985760405162461bcd60e51b815260040180806020018281038252602c81526020018061454d602c913960400191505060405180910390fd5b60006118a3836135d8565b505050506001600160a01b0384166000908152600360205260409020549192506118cf919050826134d7565b6001600160a01b038316600090815260036020526040902055600a546118f590826134d7565b600a55600b54611905908461357e565b600b55505050565b60135481565b61191b612ea5565b6000546001600160a01b0390811691161461196b576040805162461bcd60e51b8152602060048201819052602482015260008051602061447b833981519152604482015290519081900360640190fd5b6018546001600160a01b03828116911614156119b85760405162461bcd60e51b815260040180806020018281038252602f815260200180614424602f913960400191505060405180910390fd5b6001600160a01b038116737a250d5630b4cf539739df2c5dacb4c659f2488d1415611a145760405162461bcd60e51b81526004018080602001828103825260318152602001806143aa6031913960400191505060405180910390fd5b6001600160a01b03166000818152601e602090815260408083208054600160ff1991821681179092556007909352908320805490921681179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319169091179055565b601a546001600160a01b031681565b611aa7612ea5565b6000546001600160a01b03908116911614611af7576040805162461bcd60e51b8152602060048201819052602482015260008051602061447b833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b6000600954831115611b74576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b81611b93576000611b84846135d8565b5093955061103c945050505050565b6000611b9e846135d8565b5092955061103c945050505050565b6018546001600160a01b031681565b601a54600160a81b900460ff1681565b601f5460ff1681565b611bdd612ea5565b6000546001600160a01b03908116911614611c2d576040805162461bcd60e51b8152602060048201819052602482015260008051602061447b833981519152604482015290519081900360640190fd5b6000611c3830611e6a565b9050611c4381613627565b50565b611c4e612ea5565b6000546001600160a01b03908116911614611c9e576040805162461bcd60e51b8152602060048201819052602482015260008051602061447b833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff1615611d0c576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b03811660009081526003602052604090205415611d66576001600160a01b038116600090815260036020526040902054611d4c906113b0565b6001600160a01b0382166000908152600460205260409020555b6001600160a01b03166000818152600760205260408120805460ff191660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319169091179055565b6001600160a01b031660009081526006602052604090205460ff1690565b611df2612ea5565b6000546001600160a01b03908116911614611e42576040805162461bcd60e51b8152602060048201819052602482015260008051602061447b833981519152604482015290519081900360640190fd5b601980546001600160a01b0319166001600160a01b0392909216919091179055565b60115481565b6001600160a01b03811660009081526007602052604081205460ff1615611eaa57506001600160a01b038116600090815260046020526040902054611279565b6001600160a01b03821660009081526003602052604090205461103c906113b0565b611ed4612ea5565b6000546001600160a01b03908116911614611f24576040805162461bcd60e51b8152602060048201819052602482015260008051602061447b833981519152604482015290519081900360640190fd5b600080546040516001600160a01b039091169060008051602061449b833981519152908390a3600080546001600160a01b0319169055565b601b5481565b60165481565b611f70612ea5565b6000546001600160a01b03908116911614611fc0576040805162461bcd60e51b8152602060048201819052602482015260008051602061447b833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152601d60205260409020805460ff19166001179055565b6001600160a01b031660009081526007602052604090205460ff1690565b6000546001600160a01b031690565b600d8054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561101a5780601f10610fef5761010080835404028352916020019161101a565b61207a612ea5565b6000546001600160a01b039081169116146120ca576040805162461bcd60e51b8152602060048201819052602482015260008051602061447b833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152601d60205260409020805460ff19169055565b60006110386120f8612ea5565b846113148560405180606001604052806025815260200161459c6025913960056000612122612ea5565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190613440565b6001546001600160a01b0316331461219c5760405162461bcd60e51b81526004018080602001828103825260238152602001806145796023913960400191505060405180910390fd5b60025442116121f2576040805162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300604482015290519081900360640190fd5b600154600080546040516001600160a01b03938416939091169160008051602061449b83398151915291a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b600061103861224e612ea5565b8484612f95565b61225d612ea5565b6000546001600160a01b039081169116146122ad576040805162461bcd60e51b8152602060048201819052602482015260008051602061447b833981519152604482015290519081900360640190fd5b600181101580156122bf575060198111155b6122fe576040805162461bcd60e51b8152602060048201819052602482015260008051602061452d833981519152604482015290519081900360640190fd5b601555565b61230b612ea5565b6000546001600160a01b0390811691161461235b576040805162461bcd60e51b8152602060048201819052602482015260008051602061447b833981519152604482015290519081900360640190fd5b601760009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156123a957600080fd5b505afa1580156123bd573d6000803e3d6000fd5b505050506040513d60208110156123d357600080fd5b50516018546040805163095ea7b360e01b81526001600160a01b039283166004820152602481018590529051919092169163095ea7b39160448083019260209291908290030181600087803b15801561242b57600080fd5b505af115801561243f573d6000803e3d6000fd5b505050506040513d602081101561245557600080fd5b50506018546040805163ae84637f60e01b81526004810184905290516001600160a01b039092169163ae84637f9160248082019260009290919082900301818387803b1580156124a457600080fd5b505af115801561123a573d6000803e3d6000fd5b6124c0612ea5565b6000546001600160a01b03908116911614612510576040805162461bcd60e51b8152602060048201819052602482015260008051602061447b833981519152604482015290519081900360640190fd5b60018110158015612522575060198111155b612561576040805162461bcd60e51b8152602060048201819052602482015260008051602061452d833981519152604482015290519081900360640190fd5b601355565b60025490565b612574612ea5565b6000546001600160a01b039081169116146125c4576040805162461bcd60e51b8152602060048201819052602482015260008051602061447b833981519152604482015290519081900360640190fd5b601b55565b60145481565b6125d7612ea5565b6000546001600160a01b03908116911614612627576040805162461bcd60e51b8152602060048201819052602482015260008051602061447b833981519152604482015290519081900360640190fd5b60018110158015612639575060198111155b612678576040805162461bcd60e51b8152602060048201819052602482015260008051602061452d833981519152604482015290519081900360640190fd5b601655565b612685612ea5565b6000546001600160a01b039081169116146126d5576040805162461bcd60e51b8152602060048201819052602482015260008051602061447b833981519152604482015290519081900360640190fd5b601880546001600160a01b0319166001600160a01b0392909216919091179055565b6126ff612ea5565b6000546001600160a01b0390811691161461274f576040805162461bcd60e51b8152602060048201819052602482015260008051602061447b833981519152604482015290519081900360640190fd5b60018110158015612761575060198111155b6127b2576040805162461bcd60e51b815260206004820152601a60248201527f7461784665652073686f756c6420626520696e2031202d203235000000000000604482015290519081900360640190fd5b600f55565b6127bf612ea5565b6000546001600160a01b0390811691161461280f576040805162461bcd60e51b8152602060048201819052602482015260008051602061447b833981519152604482015290519081900360640190fd5b601a8054821515600160a81b810260ff60a81b199092169190911790915560408051918252517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599181900360200190a150565b61286a612ea5565b6000546001600160a01b039081169116146128ba576040805162461bcd60e51b8152602060048201819052602482015260008051602061447b833981519152604482015290519081900360640190fd5b601a80546001600160a01b0319166001600160a01b0392909216919091179055565b601c5481565b6128ea612ea5565b6000546001600160a01b0390811691161461293a576040805162461bcd60e51b8152602060048201819052602482015260008051602061447b833981519152604482015290519081900360640190fd5b6018546040805163d2ae9a0d60e01b81526004810186815260248201928352604482018590526001600160a01b039093169263d2ae9a0d928792879287929091606401848480828437600081840152601f19601f820116905080830192505050945050505050600060405180830381600087803b1580156129ba57600080fd5b505af11580156129ce573d6000803e3d6000fd5b50505050505050565b60155481565b6129e5612ea5565b6000546001600160a01b03908116911614612a35576040805162461bcd60e51b8152602060048201819052602482015260008051602061447b833981519152604482015290519081900360640190fd5b60008054600180546001600160a01b03199081166001600160a01b03841617909155168155428201600255604051819060008051602061449b833981519152908290a350565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b60225481565b612ab4612ea5565b6000546001600160a01b03908116911614612b04576040805162461bcd60e51b8152602060048201819052602482015260008051602061447b833981519152604482015290519081900360640190fd5b601754604080516315ab88c960e31b815290516000926001600160a01b03169163ad5c4648916004808301926020929190829003018186803b158015612b4957600080fd5b505afa158015612b5d573d6000803e3d6000fd5b505050506040513d6020811015612b7357600080fd5b50516001600160a01b03163010612b8b576002612b8e565b60035b9050816001600160a01b031663e70c2f96601760009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015612bed57600080fd5b505afa158015612c01573d6000803e3d6000fd5b505050506040513d6020811015612c1757600080fd5b50516040516001600160e01b031960e084901b1681526001600160a01b038216600482019081523060248301819052918691600091604401836003811115612c5b57fe5b8152602001828152602001945050505050602060405180830381600087803b158015612c8657600080fd5b505af1158015612c9a573d6000803e3d6000fd5b505050506040513d6020811015612cb057600080fd5b5051601880546001600160a01b0319166001600160a01b039092169190911790555050565b612cdd612ea5565b6000546001600160a01b03908116911614612d2d576040805162461bcd60e51b8152602060048201819052602482015260008051602061447b833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19169055565b6019546001600160a01b031681565b612d65612ea5565b6000546001600160a01b03908116911614612db5576040805162461bcd60e51b8152602060048201819052602482015260008051602061447b833981519152604482015290519081900360640190fd5b6001600160a01b038116612dfa5760405162461bcd60e51b815260040180806020018281038252602681526020018061433f6026913960400191505060405180910390fd5b600080546040516001600160a01b038085169392169160008051602061449b83398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b612e4b612ea5565b6000546001600160a01b03908116911614612e9b576040805162461bcd60e51b8152602060048201819052602482015260008051602061447b833981519152604482015290519081900360640190fd5b47611c43816137cd565b3390565b6001600160a01b038316612eee5760405162461bcd60e51b81526004018080602001828103825260248152602001806145096024913960400191505060405180910390fd5b6001600160a01b038216612f335760405162461bcd60e51b81526004018080602001828103825260228152602001806143656022913960400191505060405180910390fd5b6001600160a01b03808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316612fda5760405162461bcd60e51b81526004018080602001828103825260258152602001806144e46025913960400191505060405180910390fd5b6001600160a01b03821661301f5760405162461bcd60e51b81526004018080602001828103825260238152602001806142c96023913960400191505060405180910390fd5b6000811161305e5760405162461bcd60e51b81526004018080602001828103825260298152602001806144bb6029913960400191505060405180910390fd5b6001600160a01b0383166000908152601e602052604090205460ff16156130cc576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a20736e69706572732063616e206e6f74207472616e7366657200604482015290519081900360640190fd5b6001600160a01b0382166000908152601e602052604090205460ff161561313a576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a20736e69706572732063616e206e6f74207472616e7366657200604482015290519081900360640190fd5b336000908152601e602052604090205460ff161561319f576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a20736e69706572732063616e206e6f74207472616e7366657200604482015290519081900360640190fd5b601f5460ff166131b8576131b38383613852565b613299565b60006020541180156131d757506018546001600160a01b038481169116145b80156131fc57506001600160a01b0383166000908152601d602052604090205460ff16155b801561322157506001600160a01b0382166000908152601d602052604090205460ff16155b156132995760215460205443031015613299576001600160a01b0382166000818152601e6020908152604091829020805460ff19166001908117909155602280549091019055815192835290517f18e6e5ce5c121466e41a954e72765d1ea02b8e6919043b61f0dab08b4c6572e59281900390910190a15b6132a1612002565b6001600160a01b0316836001600160a01b0316141580156132db57506132c5612002565b6001600160a01b0316826001600160a01b031614155b1561332157601b548111156133215760405162461bcd60e51b81526004018080602001828103825260288152602001806143db6028913960400191505060405180910390fd5b600061332c30611e6a565b9050601b54811061333c5750601b545b601c548110801590819061335a5750601a54600160a01b900460ff16155b801561337457506018546001600160a01b03868116911614155b80156133895750601a54600160a81b900460ff165b1561339c57601c54915061339c826138e3565b6001600160a01b03851660009081526006602052604090205460019060ff16806133de57506001600160a01b03851660009081526006602052604090205460ff165b156133e7575060005b6018546001600160a01b038781169116141561340a57601354601155601454600f555b6018546001600160a01b0387811691161461342c57601554601155601654600f555b613438868686846139a6565b505050505050565b600081848411156134cf5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561349457818101518382015260200161347c565b50505050905090810190601f1680156134c15780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600061140983836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613440565b6000806000613526613b1a565b9092509050613535828261353c565b9250505090565b600061140983836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613c7d565b600082820183811015611409576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60008060008060008060008060006135ef8a613ce2565b925092509250600080600061360d8d8686613608613519565b613d1e565b919f909e50909c50959a5093985091965092945050505050565b6040805160028082526060808301845292602083019080368337019050509050308160008151811061365557fe5b6001600160a01b03928316602091820292909201810191909152601754604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b1580156136a957600080fd5b505afa1580156136bd573d6000803e3d6000fd5b505050506040513d60208110156136d357600080fd5b50518151829060019081106136e457fe5b6001600160a01b03928316602091820292909201015260175461370a9130911684612ea9565b60175460405163791ac94760e01b8152600481018481526000602483018190523060648401819052426084850181905260a060448601908152875160a487015287516001600160a01b039097169663791ac947968a968a9594939092909160c40190602080880191028083838b5b83811015613790578181015183820152602001613778565b505050509050019650505050505050600060405180830381600087803b1580156137b957600080fd5b505af1158015613438573d6000803e3d6000fd5b6019546001600160a01b03166108fc6137e783600261353c565b6040518115909202916000818181858888f1935050505015801561380f573d6000803e3d6000fd5b50601a546001600160a01b03166108fc61382a83600261353c565b6040518115909202916000818181858888f193505050501580156117db573d6000803e3d6000fd5b601f5460ff16156138945760405162461bcd60e51b81526004018080602001828103825260238152602001806143876023913960400191505060405180910390fd5b6001600160a01b0382166000908152601d602052604090205460ff1680156138c957506018546001600160a01b038281169116145b156117db57601f805460ff19166001179055436020555050565b601a805460ff60a01b1916600160a01b179055600061390382600461353c565b9050600061391283600461353c565b905060006139248261139d86866134d7565b90504761393084613627565b600061393c47836134d7565b90506139488482613d6e565b61395183613e3b565b604080518681526020810183905280820186905290517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15050601a805460ff60a01b1916905550505050565b806139b3576139b3613ec0565b6001600160a01b03841660009081526007602052604090205460ff1680156139f457506001600160a01b03831660009081526007602052604090205460ff16155b15613a0957613a04848484613ef2565b613b07565b6001600160a01b03841660009081526007602052604090205460ff16158015613a4a57506001600160a01b03831660009081526007602052604090205460ff165b15613a5a57613a04848484614016565b6001600160a01b03841660009081526007602052604090205460ff16158015613a9c57506001600160a01b03831660009081526007602052604090205460ff16155b15613aac57613a048484846140bf565b6001600160a01b03841660009081526007602052604090205460ff168015613aec57506001600160a01b03831660009081526007602052604090205460ff165b15613afc57613a04848484614103565b613b078484846140bf565b80613b1457613b14614176565b50505050565b600a546009546000918291825b600854811015613c4b57826003600060088481548110613b4357fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180613ba85750816004600060088481548110613b8157fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b15613bbf57600a5460095494509450505050613c79565b613bff6003600060088481548110613bd357fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205484906134d7565b9250613c416004600060088481548110613c1557fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205483906134d7565b9150600101613b27565b50600954600a54613c5b9161353c565b821015613c7357600a54600954935093505050613c79565b90925090505b9091565b60008183613ccc5760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561349457818101518382015260200161347c565b506000838581613cd857fe5b0495945050505050565b600080600080613cf185614184565b90506000613cfe866141a6565b90506000613d108261139d89866134d7565b979296509094509092505050565b6000808080613d2d88866141c2565b90506000613d3b88876141c2565b90506000613d4988886141c2565b90506000613d5b8261139d86866134d7565b939b939a50919850919650505050505050565b601754613d869030906001600160a01b031684612ea9565b6017546001600160a01b031663f305d719823085600080613da5612002565b426040518863ffffffff1660e01b815260040180876001600160a01b03168152602001868152602001858152602001848152602001836001600160a01b0316815260200182815260200196505050505050506060604051808303818588803b158015613e1057600080fd5b505af1158015613e24573d6000803e3d6000fd5b50505050506040513d6060811015613b1457600080fd5b613e4481613627565b601a546001600160a01b03166108fc613e5e47600261353c565b6040518115909202916000818181858888f19350505050158015613e86573d6000803e3d6000fd5b506019546040516001600160a01b03909116904780156108fc02916000818181858888f193505050501580156117db573d6000803e3d6000fd5b600f54158015613ed05750601154155b15613eda57613ef0565b600f805460105560118054601255600091829055555b565b600080600080600080613f04876135d8565b6001600160a01b038f16600090815260046020526040902054959b50939950919750955093509150613f3690886134d7565b6001600160a01b038a16600090815260046020908152604080832093909355600390522054613f6590876134d7565b6001600160a01b03808b1660009081526003602052604080822093909355908a1681522054613f94908661357e565b6001600160a01b038916600090815260036020526040902055613fb68161421b565b613fc084836142a4565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080614028876135d8565b6001600160a01b038f16600090815260036020526040902054959b5093995091975095509350915061405a90876134d7565b6001600160a01b03808b16600090815260036020908152604080832094909455918b16815260049091522054614090908461357e565b6001600160a01b038916600090815260046020908152604080832093909355600390522054613f94908661357e565b6000806000806000806140d1876135d8565b6001600160a01b038f16600090815260036020526040902054959b50939950919750955093509150613f6590876134d7565b600080600080600080614115876135d8565b6001600160a01b038f16600090815260046020526040902054959b5093995091975095509350915061414790886134d7565b6001600160a01b038a1660009081526004602090815260408083209390935560039052205461405a90876134d7565b601054600f55601254601155565b600061103c60646141a0600f54856141c290919063ffffffff16565b9061353c565b600061103c60646141a0601154856141c290919063ffffffff16565b6000826141d15750600061103c565b828202828482816141de57fe5b04146114095760405162461bcd60e51b81526004018080602001828103825260218152602001806144036021913960400191505060405180910390fd5b6000614225613519565b9050600061423383836141c2565b30600090815260036020526040902054909150614250908261357e565b3060009081526003602090815260408083209390935560079052205460ff161561429f573060009081526004602052604090205461428e908461357e565b306000908152600460205260409020555b505050565b600a546142b190836134d7565b600a55600b546142c1908261357e565b600b55505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373456d706972653a3a6f6e6c79506169723a20496e73756666696369656e742050726976696c65676573416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573734c697175696469747920616c726561647920616464656420616e64206d61726b65642e45524332303a2043616e206e6f742061646420756e69737761705632526f7574657220746f20736e69706572206c6973745472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a2043616e206e6f742061646420756e697377617056325061697220746f20736e69706572206c69737445524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65728be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573736c69717569646974794665652073686f756c6420626520696e2031202d2032354578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122088ce15d400a934ca2a489a2b4f3b458a33d1687b130a6f5e20184233262a7a9964736f6c634300060c00330000000000000000000000000000000000000000000000000000000000000019

Deployed Bytecode

0x6080604052600436106103f35760003560e01c806370a0823111610208578063bf5976d311610118578063d52dfc14116100ab578063e7d20a371161007a578063e7d20a3714610ecb578063ea2f0b3714610efe578063eba62b4014610f31578063f2fde38b14610f46578063f429389014610f79576103fa565b8063d52dfc1414610e3c578063dd46706414610e51578063dd62ed3e14610e7b578063e79d416014610eb6576103fa565b8063c49b9a80116100e7578063c49b9a8014610d44578063ccf4094f14610d70578063d12a768814610da3578063d2ae9a0d14610db8576103fa565b8063bf5976d314610ca8578063c344fdab14610cbd578063c393d45f14610ce7578063c4081a4c14610d1a576103fa565b8063999f148c1161019b578063aac6e0621161016a578063aac6e06214610beb578063ae84637f14610c15578063b21cb20c14610c3f578063b6c5232414610c69578063bc33718214610c7e576103fa565b8063999f148c14610b31578063a457c2d714610b64578063a69df4b514610b9d578063a9059cbb14610bb2576103fa565b8063834caa58116101d7578063834caa5814610aa157806388f8202014610ad45780638da5cb5b14610b0757806395d89b4114610b1c576103fa565b806370a0823114610a2f578063715018a614610a625780637d1db4a514610a775780638199040e14610a8c576103fa565b80633685d419116103035780634549b0391161029657806351bc3c851161026557806351bc3c851461096c57806352390c02146109815780635342acb4146109b45780635e90d661146109e75780636bc87c3a14610a1a576103fa565b80634549b039146108fb57806349bd5a5e1461092d5780634a74bb021461094257806350a8e01614610957576103fa565b80633c0a73ae116102d25780633c0a73ae1461086b5780633e3e9598146108805780634144d9e4146108b3578063437823ec146108c8576103fa565b80633685d419146107c057806339509351146107f35780633b124fe71461082c5780633bd5d17314610841576103fa565b80631d7f3676116103865780632d838119116103555780632d838119146106db578063313ce5671461070557806333251a0b14610730578063340ac20f14610763578063357bf15c14610796576103fa565b80631d7f36761461062657806323b872dd1461065957806326e336cf1461069c5780632b112e49146106c6576103fa565b806313114a9d116103c257806313114a9d146105865780631694505e146105ad57806318160ddd146105de57806318e9b8b7146105f3576103fa565b806306fdde03146103ff578063095ea7b3146104895780631136529b146104d657806311d7ed8214610502576103fa565b366103fa57005b600080fd5b34801561040b57600080fd5b50610414610f8e565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561044e578181015183820152602001610436565b50505050905090810190601f16801561047b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561049557600080fd5b506104c2600480360360408110156104ac57600080fd5b506001600160a01b038135169060200135611024565b604080519115158252519081900360200190f35b3480156104e257600080fd5b50610500600480360360208110156104f957600080fd5b5035611042565b005b34801561050e57600080fd5b506105006004803603604081101561052557600080fd5b8135919081019060408101602082013564010000000081111561054757600080fd5b82018360208201111561055957600080fd5b8035906020019184600183028401116401000000008311171561057b57600080fd5b5090925090506110f0565b34801561059257600080fd5b5061059b611241565b60408051918252519081900360200190f35b3480156105b957600080fd5b506105c2611247565b604080516001600160a01b039092168252519081900360200190f35b3480156105ea57600080fd5b5061059b611256565b3480156105ff57600080fd5b506104c26004803603602081101561061657600080fd5b50356001600160a01b031661125c565b34801561063257600080fd5b506104c26004803603602081101561064957600080fd5b50356001600160a01b031661127e565b34801561066557600080fd5b506104c26004803603606081101561067c57600080fd5b506001600160a01b0381358116916020810135909116906040013561129c565b3480156106a857600080fd5b50610500600480360360208110156106bf57600080fd5b5035611323565b3480156106d257600080fd5b5061059b611380565b3480156106e757600080fd5b5061059b600480360360208110156106fe57600080fd5b50356113b0565b34801561071157600080fd5b5061071a611410565b6040805160ff9092168252519081900360200190f35b34801561073c57600080fd5b506105006004803603602081101561075357600080fd5b50356001600160a01b0316611419565b34801561076f57600080fd5b506105006004803603602081101561078657600080fd5b50356001600160a01b03166114f6565b3480156107a257600080fd5b50610500600480360360208110156107b957600080fd5b5035611570565b3480156107cc57600080fd5b50610500600480360360208110156107e357600080fd5b50356001600160a01b031661161e565b3480156107ff57600080fd5b506104c26004803603604081101561081657600080fd5b506001600160a01b0381351690602001356117df565b34801561083857600080fd5b5061059b61182d565b34801561084d57600080fd5b506105006004803603602081101561086457600080fd5b5035611833565b34801561087757600080fd5b5061059b61190d565b34801561088c57600080fd5b50610500600480360360208110156108a357600080fd5b50356001600160a01b0316611913565b3480156108bf57600080fd5b506105c2611a90565b3480156108d457600080fd5b50610500600480360360208110156108eb57600080fd5b50356001600160a01b0316611a9f565b34801561090757600080fd5b5061059b6004803603604081101561091e57600080fd5b50803590602001351515611b1b565b34801561093957600080fd5b506105c2611bad565b34801561094e57600080fd5b506104c2611bbc565b34801561096357600080fd5b506104c2611bcc565b34801561097857600080fd5b50610500611bd5565b34801561098d57600080fd5b50610500600480360360208110156109a457600080fd5b50356001600160a01b0316611c46565b3480156109c057600080fd5b506104c2600480360360208110156109d757600080fd5b50356001600160a01b0316611dcc565b3480156109f357600080fd5b5061050060048036036020811015610a0a57600080fd5b50356001600160a01b0316611dea565b348015610a2657600080fd5b5061059b611e64565b348015610a3b57600080fd5b5061059b60048036036020811015610a5257600080fd5b50356001600160a01b0316611e6a565b348015610a6e57600080fd5b50610500611ecc565b348015610a8357600080fd5b5061059b611f5c565b348015610a9857600080fd5b5061059b611f62565b348015610aad57600080fd5b5061050060048036036020811015610ac457600080fd5b50356001600160a01b0316611f68565b348015610ae057600080fd5b506104c260048036036020811015610af757600080fd5b50356001600160a01b0316611fe4565b348015610b1357600080fd5b506105c2612002565b348015610b2857600080fd5b50610414612011565b348015610b3d57600080fd5b5061050060048036036020811015610b5457600080fd5b50356001600160a01b0316612072565b348015610b7057600080fd5b506104c260048036036040811015610b8757600080fd5b506001600160a01b0381351690602001356120eb565b348015610ba957600080fd5b50610500612153565b348015610bbe57600080fd5b506104c260048036036040811015610bd557600080fd5b506001600160a01b038135169060200135612241565b348015610bf757600080fd5b5061050060048036036020811015610c0e57600080fd5b5035612255565b348015610c2157600080fd5b5061050060048036036020811015610c3857600080fd5b5035612303565b348015610c4b57600080fd5b5061050060048036036020811015610c6257600080fd5b50356124b8565b348015610c7557600080fd5b5061059b612566565b348015610c8a57600080fd5b5061050060048036036020811015610ca157600080fd5b503561256c565b348015610cb457600080fd5b5061059b6125c9565b348015610cc957600080fd5b5061050060048036036020811015610ce057600080fd5b50356125cf565b348015610cf357600080fd5b5061050060048036036020811015610d0a57600080fd5b50356001600160a01b031661267d565b348015610d2657600080fd5b5061050060048036036020811015610d3d57600080fd5b50356126f7565b348015610d5057600080fd5b5061050060048036036020811015610d6757600080fd5b503515156127b7565b348015610d7c57600080fd5b5061050060048036036020811015610d9357600080fd5b50356001600160a01b0316612862565b348015610daf57600080fd5b5061059b6128dc565b348015610dc457600080fd5b5061050060048036036040811015610ddb57600080fd5b81359190810190604081016020820135640100000000811115610dfd57600080fd5b820183602082011115610e0f57600080fd5b80359060200191846001830284011164010000000083111715610e3157600080fd5b5090925090506128e2565b348015610e4857600080fd5b5061059b6129d7565b348015610e5d57600080fd5b5061050060048036036020811015610e7457600080fd5b50356129dd565b348015610e8757600080fd5b5061059b60048036036040811015610e9e57600080fd5b506001600160a01b0381358116916020013516612a7b565b348015610ec257600080fd5b5061059b612aa6565b348015610ed757600080fd5b5061050060048036036020811015610eee57600080fd5b50356001600160a01b0316612aac565b348015610f0a57600080fd5b5061050060048036036020811015610f2157600080fd5b50356001600160a01b0316612cd5565b348015610f3d57600080fd5b506105c2612d4e565b348015610f5257600080fd5b5061050060048036036020811015610f6957600080fd5b50356001600160a01b0316612d5d565b348015610f8557600080fd5b50610500612e43565b600c8054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561101a5780601f10610fef5761010080835404028352916020019161101a565b820191906000526020600020905b815481529060010190602001808311610ffd57829003601f168201915b5050505050905090565b6000611038611031612ea5565b8484612ea9565b5060015b92915050565b61104a612ea5565b6000546001600160a01b0390811691161461109a576040805162461bcd60e51b8152602060048201819052602482015260008051602061447b833981519152604482015290519081900360640190fd5b600181101580156110ac575060198111155b6110eb576040805162461bcd60e51b8152602060048201819052602482015260008051602061452d833981519152604482015290519081900360640190fd5b601455565b6018546001600160a01b031633146111395760405162461bcd60e51b81526004018080602001828103825260298152602001806142ec6029913960400191505060405180910390fd5b601760009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561118757600080fd5b505afa15801561119b573d6000803e3d6000fd5b505050506040513d60208110156111b157600080fd5b50516001600160a01b031663a9059cbb6111c9612002565b856040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050602060405180830381600087803b15801561121057600080fd5b505af1158015611224573d6000803e3d6000fd5b505050506040513d602081101561123a57600080fd5b5050505050565b600b5490565b6017546001600160a01b031681565b60095490565b6001600160a01b0381166000908152601e602052604090205460ff165b919050565b6001600160a01b03166000908152601d602052604090205460ff1690565b60006112a9848484612f95565b611319846112b5612ea5565b61131485604051806060016040528060288152602001614453602891396001600160a01b038a166000908152600560205260408120906112f3612ea5565b6001600160a01b031681526020810191909152604001600020549190613440565b612ea9565b5060019392505050565b61132b612ea5565b6000546001600160a01b0390811691161461137b576040805162461bcd60e51b8152602060048201819052602482015260008051602061447b833981519152604482015290519081900360640190fd5b601c55565b60006113ab6113a36113926000611e6a565b61139d61dead611e6a565b906134d7565b61139d611256565b905090565b6000600a548211156113f35760405162461bcd60e51b815260040180806020018281038252602a815260200180614315602a913960400191505060405180910390fd5b60006113fd613519565b9050611409838261353c565b9392505050565b600e5460ff1690565b611421612ea5565b6000546001600160a01b03908116911614611471576040805162461bcd60e51b8152602060048201819052602482015260008051602061447b833981519152604482015290519081900360640190fd5b6001600160a01b0381166000908152601e602052604090205460ff166114d5576040805162461bcd60e51b815260206004820152601460248201527322a92199181d1024b9903737ba1039b734b832b960611b604482015290519081900360640190fd5b6001600160a01b03166000908152601e60205260409020805460ff19169055565b6114fe612ea5565b6000546001600160a01b0390811691161461154e576040805162461bcd60e51b8152602060048201819052602482015260008051602061447b833981519152604482015290519081900360640190fd5b601780546001600160a01b0319166001600160a01b0392909216919091179055565b611578612ea5565b6000546001600160a01b039081169116146115c8576040805162461bcd60e51b8152602060048201819052602482015260008051602061447b833981519152604482015290519081900360640190fd5b600181101580156115da575060198111155b611619576040805162461bcd60e51b8152602060048201819052602482015260008051602061452d833981519152604482015290519081900360640190fd5b601155565b611626612ea5565b6000546001600160a01b03908116911614611676576040805162461bcd60e51b8152602060048201819052602482015260008051602061447b833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff166116e3576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b6008548110156117db57816001600160a01b03166008828154811061170757fe5b6000918252602090912001546001600160a01b031614156117d35760088054600019810190811061173457fe5b600091825260209091200154600880546001600160a01b03909216918390811061175a57fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600482526040808220829055600790925220805460ff1916905560088054806117ac57fe5b600082815260209020810160001990810180546001600160a01b03191690550190556117db565b6001016116e6565b5050565b60006110386117ec612ea5565b8461131485600560006117fd612ea5565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549061357e565b600f5481565b600061183d612ea5565b6001600160a01b03811660009081526007602052604090205490915060ff16156118985760405162461bcd60e51b815260040180806020018281038252602c81526020018061454d602c913960400191505060405180910390fd5b60006118a3836135d8565b505050506001600160a01b0384166000908152600360205260409020549192506118cf919050826134d7565b6001600160a01b038316600090815260036020526040902055600a546118f590826134d7565b600a55600b54611905908461357e565b600b55505050565b60135481565b61191b612ea5565b6000546001600160a01b0390811691161461196b576040805162461bcd60e51b8152602060048201819052602482015260008051602061447b833981519152604482015290519081900360640190fd5b6018546001600160a01b03828116911614156119b85760405162461bcd60e51b815260040180806020018281038252602f815260200180614424602f913960400191505060405180910390fd5b6001600160a01b038116737a250d5630b4cf539739df2c5dacb4c659f2488d1415611a145760405162461bcd60e51b81526004018080602001828103825260318152602001806143aa6031913960400191505060405180910390fd5b6001600160a01b03166000818152601e602090815260408083208054600160ff1991821681179092556007909352908320805490921681179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319169091179055565b601a546001600160a01b031681565b611aa7612ea5565b6000546001600160a01b03908116911614611af7576040805162461bcd60e51b8152602060048201819052602482015260008051602061447b833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b6000600954831115611b74576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b81611b93576000611b84846135d8565b5093955061103c945050505050565b6000611b9e846135d8565b5092955061103c945050505050565b6018546001600160a01b031681565b601a54600160a81b900460ff1681565b601f5460ff1681565b611bdd612ea5565b6000546001600160a01b03908116911614611c2d576040805162461bcd60e51b8152602060048201819052602482015260008051602061447b833981519152604482015290519081900360640190fd5b6000611c3830611e6a565b9050611c4381613627565b50565b611c4e612ea5565b6000546001600160a01b03908116911614611c9e576040805162461bcd60e51b8152602060048201819052602482015260008051602061447b833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff1615611d0c576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b03811660009081526003602052604090205415611d66576001600160a01b038116600090815260036020526040902054611d4c906113b0565b6001600160a01b0382166000908152600460205260409020555b6001600160a01b03166000818152600760205260408120805460ff191660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319169091179055565b6001600160a01b031660009081526006602052604090205460ff1690565b611df2612ea5565b6000546001600160a01b03908116911614611e42576040805162461bcd60e51b8152602060048201819052602482015260008051602061447b833981519152604482015290519081900360640190fd5b601980546001600160a01b0319166001600160a01b0392909216919091179055565b60115481565b6001600160a01b03811660009081526007602052604081205460ff1615611eaa57506001600160a01b038116600090815260046020526040902054611279565b6001600160a01b03821660009081526003602052604090205461103c906113b0565b611ed4612ea5565b6000546001600160a01b03908116911614611f24576040805162461bcd60e51b8152602060048201819052602482015260008051602061447b833981519152604482015290519081900360640190fd5b600080546040516001600160a01b039091169060008051602061449b833981519152908390a3600080546001600160a01b0319169055565b601b5481565b60165481565b611f70612ea5565b6000546001600160a01b03908116911614611fc0576040805162461bcd60e51b8152602060048201819052602482015260008051602061447b833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152601d60205260409020805460ff19166001179055565b6001600160a01b031660009081526007602052604090205460ff1690565b6000546001600160a01b031690565b600d8054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561101a5780601f10610fef5761010080835404028352916020019161101a565b61207a612ea5565b6000546001600160a01b039081169116146120ca576040805162461bcd60e51b8152602060048201819052602482015260008051602061447b833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152601d60205260409020805460ff19169055565b60006110386120f8612ea5565b846113148560405180606001604052806025815260200161459c6025913960056000612122612ea5565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190613440565b6001546001600160a01b0316331461219c5760405162461bcd60e51b81526004018080602001828103825260238152602001806145796023913960400191505060405180910390fd5b60025442116121f2576040805162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300604482015290519081900360640190fd5b600154600080546040516001600160a01b03938416939091169160008051602061449b83398151915291a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b600061103861224e612ea5565b8484612f95565b61225d612ea5565b6000546001600160a01b039081169116146122ad576040805162461bcd60e51b8152602060048201819052602482015260008051602061447b833981519152604482015290519081900360640190fd5b600181101580156122bf575060198111155b6122fe576040805162461bcd60e51b8152602060048201819052602482015260008051602061452d833981519152604482015290519081900360640190fd5b601555565b61230b612ea5565b6000546001600160a01b0390811691161461235b576040805162461bcd60e51b8152602060048201819052602482015260008051602061447b833981519152604482015290519081900360640190fd5b601760009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156123a957600080fd5b505afa1580156123bd573d6000803e3d6000fd5b505050506040513d60208110156123d357600080fd5b50516018546040805163095ea7b360e01b81526001600160a01b039283166004820152602481018590529051919092169163095ea7b39160448083019260209291908290030181600087803b15801561242b57600080fd5b505af115801561243f573d6000803e3d6000fd5b505050506040513d602081101561245557600080fd5b50506018546040805163ae84637f60e01b81526004810184905290516001600160a01b039092169163ae84637f9160248082019260009290919082900301818387803b1580156124a457600080fd5b505af115801561123a573d6000803e3d6000fd5b6124c0612ea5565b6000546001600160a01b03908116911614612510576040805162461bcd60e51b8152602060048201819052602482015260008051602061447b833981519152604482015290519081900360640190fd5b60018110158015612522575060198111155b612561576040805162461bcd60e51b8152602060048201819052602482015260008051602061452d833981519152604482015290519081900360640190fd5b601355565b60025490565b612574612ea5565b6000546001600160a01b039081169116146125c4576040805162461bcd60e51b8152602060048201819052602482015260008051602061447b833981519152604482015290519081900360640190fd5b601b55565b60145481565b6125d7612ea5565b6000546001600160a01b03908116911614612627576040805162461bcd60e51b8152602060048201819052602482015260008051602061447b833981519152604482015290519081900360640190fd5b60018110158015612639575060198111155b612678576040805162461bcd60e51b8152602060048201819052602482015260008051602061452d833981519152604482015290519081900360640190fd5b601655565b612685612ea5565b6000546001600160a01b039081169116146126d5576040805162461bcd60e51b8152602060048201819052602482015260008051602061447b833981519152604482015290519081900360640190fd5b601880546001600160a01b0319166001600160a01b0392909216919091179055565b6126ff612ea5565b6000546001600160a01b0390811691161461274f576040805162461bcd60e51b8152602060048201819052602482015260008051602061447b833981519152604482015290519081900360640190fd5b60018110158015612761575060198111155b6127b2576040805162461bcd60e51b815260206004820152601a60248201527f7461784665652073686f756c6420626520696e2031202d203235000000000000604482015290519081900360640190fd5b600f55565b6127bf612ea5565b6000546001600160a01b0390811691161461280f576040805162461bcd60e51b8152602060048201819052602482015260008051602061447b833981519152604482015290519081900360640190fd5b601a8054821515600160a81b810260ff60a81b199092169190911790915560408051918252517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599181900360200190a150565b61286a612ea5565b6000546001600160a01b039081169116146128ba576040805162461bcd60e51b8152602060048201819052602482015260008051602061447b833981519152604482015290519081900360640190fd5b601a80546001600160a01b0319166001600160a01b0392909216919091179055565b601c5481565b6128ea612ea5565b6000546001600160a01b0390811691161461293a576040805162461bcd60e51b8152602060048201819052602482015260008051602061447b833981519152604482015290519081900360640190fd5b6018546040805163d2ae9a0d60e01b81526004810186815260248201928352604482018590526001600160a01b039093169263d2ae9a0d928792879287929091606401848480828437600081840152601f19601f820116905080830192505050945050505050600060405180830381600087803b1580156129ba57600080fd5b505af11580156129ce573d6000803e3d6000fd5b50505050505050565b60155481565b6129e5612ea5565b6000546001600160a01b03908116911614612a35576040805162461bcd60e51b8152602060048201819052602482015260008051602061447b833981519152604482015290519081900360640190fd5b60008054600180546001600160a01b03199081166001600160a01b03841617909155168155428201600255604051819060008051602061449b833981519152908290a350565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b60225481565b612ab4612ea5565b6000546001600160a01b03908116911614612b04576040805162461bcd60e51b8152602060048201819052602482015260008051602061447b833981519152604482015290519081900360640190fd5b601754604080516315ab88c960e31b815290516000926001600160a01b03169163ad5c4648916004808301926020929190829003018186803b158015612b4957600080fd5b505afa158015612b5d573d6000803e3d6000fd5b505050506040513d6020811015612b7357600080fd5b50516001600160a01b03163010612b8b576002612b8e565b60035b9050816001600160a01b031663e70c2f96601760009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015612bed57600080fd5b505afa158015612c01573d6000803e3d6000fd5b505050506040513d6020811015612c1757600080fd5b50516040516001600160e01b031960e084901b1681526001600160a01b038216600482019081523060248301819052918691600091604401836003811115612c5b57fe5b8152602001828152602001945050505050602060405180830381600087803b158015612c8657600080fd5b505af1158015612c9a573d6000803e3d6000fd5b505050506040513d6020811015612cb057600080fd5b5051601880546001600160a01b0319166001600160a01b039092169190911790555050565b612cdd612ea5565b6000546001600160a01b03908116911614612d2d576040805162461bcd60e51b8152602060048201819052602482015260008051602061447b833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19169055565b6019546001600160a01b031681565b612d65612ea5565b6000546001600160a01b03908116911614612db5576040805162461bcd60e51b8152602060048201819052602482015260008051602061447b833981519152604482015290519081900360640190fd5b6001600160a01b038116612dfa5760405162461bcd60e51b815260040180806020018281038252602681526020018061433f6026913960400191505060405180910390fd5b600080546040516001600160a01b038085169392169160008051602061449b83398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b612e4b612ea5565b6000546001600160a01b03908116911614612e9b576040805162461bcd60e51b8152602060048201819052602482015260008051602061447b833981519152604482015290519081900360640190fd5b47611c43816137cd565b3390565b6001600160a01b038316612eee5760405162461bcd60e51b81526004018080602001828103825260248152602001806145096024913960400191505060405180910390fd5b6001600160a01b038216612f335760405162461bcd60e51b81526004018080602001828103825260228152602001806143656022913960400191505060405180910390fd5b6001600160a01b03808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316612fda5760405162461bcd60e51b81526004018080602001828103825260258152602001806144e46025913960400191505060405180910390fd5b6001600160a01b03821661301f5760405162461bcd60e51b81526004018080602001828103825260238152602001806142c96023913960400191505060405180910390fd5b6000811161305e5760405162461bcd60e51b81526004018080602001828103825260298152602001806144bb6029913960400191505060405180910390fd5b6001600160a01b0383166000908152601e602052604090205460ff16156130cc576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a20736e69706572732063616e206e6f74207472616e7366657200604482015290519081900360640190fd5b6001600160a01b0382166000908152601e602052604090205460ff161561313a576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a20736e69706572732063616e206e6f74207472616e7366657200604482015290519081900360640190fd5b336000908152601e602052604090205460ff161561319f576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a20736e69706572732063616e206e6f74207472616e7366657200604482015290519081900360640190fd5b601f5460ff166131b8576131b38383613852565b613299565b60006020541180156131d757506018546001600160a01b038481169116145b80156131fc57506001600160a01b0383166000908152601d602052604090205460ff16155b801561322157506001600160a01b0382166000908152601d602052604090205460ff16155b156132995760215460205443031015613299576001600160a01b0382166000818152601e6020908152604091829020805460ff19166001908117909155602280549091019055815192835290517f18e6e5ce5c121466e41a954e72765d1ea02b8e6919043b61f0dab08b4c6572e59281900390910190a15b6132a1612002565b6001600160a01b0316836001600160a01b0316141580156132db57506132c5612002565b6001600160a01b0316826001600160a01b031614155b1561332157601b548111156133215760405162461bcd60e51b81526004018080602001828103825260288152602001806143db6028913960400191505060405180910390fd5b600061332c30611e6a565b9050601b54811061333c5750601b545b601c548110801590819061335a5750601a54600160a01b900460ff16155b801561337457506018546001600160a01b03868116911614155b80156133895750601a54600160a81b900460ff165b1561339c57601c54915061339c826138e3565b6001600160a01b03851660009081526006602052604090205460019060ff16806133de57506001600160a01b03851660009081526006602052604090205460ff165b156133e7575060005b6018546001600160a01b038781169116141561340a57601354601155601454600f555b6018546001600160a01b0387811691161461342c57601554601155601654600f555b613438868686846139a6565b505050505050565b600081848411156134cf5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561349457818101518382015260200161347c565b50505050905090810190601f1680156134c15780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600061140983836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613440565b6000806000613526613b1a565b9092509050613535828261353c565b9250505090565b600061140983836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613c7d565b600082820183811015611409576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60008060008060008060008060006135ef8a613ce2565b925092509250600080600061360d8d8686613608613519565b613d1e565b919f909e50909c50959a5093985091965092945050505050565b6040805160028082526060808301845292602083019080368337019050509050308160008151811061365557fe5b6001600160a01b03928316602091820292909201810191909152601754604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b1580156136a957600080fd5b505afa1580156136bd573d6000803e3d6000fd5b505050506040513d60208110156136d357600080fd5b50518151829060019081106136e457fe5b6001600160a01b03928316602091820292909201015260175461370a9130911684612ea9565b60175460405163791ac94760e01b8152600481018481526000602483018190523060648401819052426084850181905260a060448601908152875160a487015287516001600160a01b039097169663791ac947968a968a9594939092909160c40190602080880191028083838b5b83811015613790578181015183820152602001613778565b505050509050019650505050505050600060405180830381600087803b1580156137b957600080fd5b505af1158015613438573d6000803e3d6000fd5b6019546001600160a01b03166108fc6137e783600261353c565b6040518115909202916000818181858888f1935050505015801561380f573d6000803e3d6000fd5b50601a546001600160a01b03166108fc61382a83600261353c565b6040518115909202916000818181858888f193505050501580156117db573d6000803e3d6000fd5b601f5460ff16156138945760405162461bcd60e51b81526004018080602001828103825260238152602001806143876023913960400191505060405180910390fd5b6001600160a01b0382166000908152601d602052604090205460ff1680156138c957506018546001600160a01b038281169116145b156117db57601f805460ff19166001179055436020555050565b601a805460ff60a01b1916600160a01b179055600061390382600461353c565b9050600061391283600461353c565b905060006139248261139d86866134d7565b90504761393084613627565b600061393c47836134d7565b90506139488482613d6e565b61395183613e3b565b604080518681526020810183905280820186905290517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15050601a805460ff60a01b1916905550505050565b806139b3576139b3613ec0565b6001600160a01b03841660009081526007602052604090205460ff1680156139f457506001600160a01b03831660009081526007602052604090205460ff16155b15613a0957613a04848484613ef2565b613b07565b6001600160a01b03841660009081526007602052604090205460ff16158015613a4a57506001600160a01b03831660009081526007602052604090205460ff165b15613a5a57613a04848484614016565b6001600160a01b03841660009081526007602052604090205460ff16158015613a9c57506001600160a01b03831660009081526007602052604090205460ff16155b15613aac57613a048484846140bf565b6001600160a01b03841660009081526007602052604090205460ff168015613aec57506001600160a01b03831660009081526007602052604090205460ff165b15613afc57613a04848484614103565b613b078484846140bf565b80613b1457613b14614176565b50505050565b600a546009546000918291825b600854811015613c4b57826003600060088481548110613b4357fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180613ba85750816004600060088481548110613b8157fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b15613bbf57600a5460095494509450505050613c79565b613bff6003600060088481548110613bd357fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205484906134d7565b9250613c416004600060088481548110613c1557fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205483906134d7565b9150600101613b27565b50600954600a54613c5b9161353c565b821015613c7357600a54600954935093505050613c79565b90925090505b9091565b60008183613ccc5760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561349457818101518382015260200161347c565b506000838581613cd857fe5b0495945050505050565b600080600080613cf185614184565b90506000613cfe866141a6565b90506000613d108261139d89866134d7565b979296509094509092505050565b6000808080613d2d88866141c2565b90506000613d3b88876141c2565b90506000613d4988886141c2565b90506000613d5b8261139d86866134d7565b939b939a50919850919650505050505050565b601754613d869030906001600160a01b031684612ea9565b6017546001600160a01b031663f305d719823085600080613da5612002565b426040518863ffffffff1660e01b815260040180876001600160a01b03168152602001868152602001858152602001848152602001836001600160a01b0316815260200182815260200196505050505050506060604051808303818588803b158015613e1057600080fd5b505af1158015613e24573d6000803e3d6000fd5b50505050506040513d6060811015613b1457600080fd5b613e4481613627565b601a546001600160a01b03166108fc613e5e47600261353c565b6040518115909202916000818181858888f19350505050158015613e86573d6000803e3d6000fd5b506019546040516001600160a01b03909116904780156108fc02916000818181858888f193505050501580156117db573d6000803e3d6000fd5b600f54158015613ed05750601154155b15613eda57613ef0565b600f805460105560118054601255600091829055555b565b600080600080600080613f04876135d8565b6001600160a01b038f16600090815260046020526040902054959b50939950919750955093509150613f3690886134d7565b6001600160a01b038a16600090815260046020908152604080832093909355600390522054613f6590876134d7565b6001600160a01b03808b1660009081526003602052604080822093909355908a1681522054613f94908661357e565b6001600160a01b038916600090815260036020526040902055613fb68161421b565b613fc084836142a4565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080614028876135d8565b6001600160a01b038f16600090815260036020526040902054959b5093995091975095509350915061405a90876134d7565b6001600160a01b03808b16600090815260036020908152604080832094909455918b16815260049091522054614090908461357e565b6001600160a01b038916600090815260046020908152604080832093909355600390522054613f94908661357e565b6000806000806000806140d1876135d8565b6001600160a01b038f16600090815260036020526040902054959b50939950919750955093509150613f6590876134d7565b600080600080600080614115876135d8565b6001600160a01b038f16600090815260046020526040902054959b5093995091975095509350915061414790886134d7565b6001600160a01b038a1660009081526004602090815260408083209390935560039052205461405a90876134d7565b601054600f55601254601155565b600061103c60646141a0600f54856141c290919063ffffffff16565b9061353c565b600061103c60646141a0601154856141c290919063ffffffff16565b6000826141d15750600061103c565b828202828482816141de57fe5b04146114095760405162461bcd60e51b81526004018080602001828103825260218152602001806144036021913960400191505060405180910390fd5b6000614225613519565b9050600061423383836141c2565b30600090815260036020526040902054909150614250908261357e565b3060009081526003602090815260408083209390935560079052205460ff161561429f573060009081526004602052604090205461428e908461357e565b306000908152600460205260409020555b505050565b600a546142b190836134d7565b600a55600b546142c1908261357e565b600b55505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373456d706972653a3a6f6e6c79506169723a20496e73756666696369656e742050726976696c65676573416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573734c697175696469747920616c726561647920616464656420616e64206d61726b65642e45524332303a2043616e206e6f742061646420756e69737761705632526f7574657220746f20736e69706572206c6973745472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a2043616e206e6f742061646420756e697377617056325061697220746f20736e69706572206c69737445524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65728be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573736c69717569646974794665652073686f756c6420626520696e2031202d2032354578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122088ce15d400a934ca2a489a2b4f3b458a33d1687b130a6f5e20184233262a7a9964736f6c634300060c0033

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

0000000000000000000000000000000000000000000000000000000000000019

-----Decoded View---------------
Arg [0] : _snipeBlockAmt (uint256): 25

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


Deployed Bytecode Sourcemap

35183:25752:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38612:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39524:161;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;39524:161:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;59111:208;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;59111:208:0;;:::i;:::-;;60583:152;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;60583:152:0;;-1:-1:-1;60583:152:0;-1:-1:-1;60583:152:0;:::i;40645:87::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;36321:41;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;36321:41:0;;;;;;;;;;;;;;38889:95;;;;;;;;;;;;;:::i;56580:111::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;56580:111:0;-1:-1:-1;;;;;56580:111:0;;:::i;56703:128::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;56703:128:0;-1:-1:-1;;;;;56703:128:0;;:::i;39693:313::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;39693:313:0;;;;;;;;;;;;;;;;;:::i;59959:119::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;59959:119:0;;:::i;40740:237::-;;;;;;;;;;;;;:::i;41814:253::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41814:253:0;;:::i;38798:83::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;57304:185;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;57304:185:0;-1:-1:-1;;;;;57304:185:0;;:::i;59829:122::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;59829:122:0;-1:-1:-1;;;;;59829:122:0;;:::i;58435:210::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;58435:210:0;;:::i;42530:479::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42530:479:0;-1:-1:-1;;;;;42530:479:0;;:::i;40014:218::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;40014:218:0;;;;;;;;:::i;35962:26::-;;;;;;;;;;;;;:::i;40985:377::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40985:377:0;;:::i;36150:37::-;;;;;;;;;;;;;:::i;56843:449::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;56843:449:0;-1:-1:-1;;;;;56843:449:0;;:::i;36496:91::-;;;;;;;;;;;;;:::i;43671:111::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43671:111:0;-1:-1:-1;;;;;43671:111:0;;:::i;41370:436::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41370:436:0;;;;;;;;;:::i;36369:28::-;;;;;;;;;;;;;:::i;36628:40::-;;;;;;;;;;;;;:::i;36921:36::-;;;;;;;;;;;;;:::i;57931:156::-;;;;;;;;;;;;;:::i;42075:447::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42075:447:0;-1:-1:-1;;;;;42075:447:0;;:::i;47503:123::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47503:123:0;-1:-1:-1;;;;;47503:123:0;;:::i;48013:115::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48013:115:0;-1:-1:-1;;;;;48013:115:0;;:::i;36049:32::-;;;;;;;;;;;;;:::i;38992:198::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38992:198:0;-1:-1:-1;;;;;38992:198:0;;:::i;17158:148::-;;;;;;;;;;;;;:::i;36677:48::-;;;;;;;;;;;;;:::i;36280:32::-;;;;;;;;;;;;;:::i;57501:132::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;57501:132:0;-1:-1:-1;;;;;57501:132:0;;:::i;40517:120::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40517:120:0;-1:-1:-1;;;;;40517:120:0;;:::i;16515:79::-;;;;;;;;;;;;;:::i;38703:87::-;;;;;;;;;;;;;:::i;57645:136::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;57645:136:0;-1:-1:-1;;;;;57645:136:0;;:::i;40240:269::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;40240:269:0;;;;;;;;:::i;18168:293::-;;;;;;;;;;;;;:::i;39198:167::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;39198:167:0;;;;;;;;:::i;58881:222::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;58881:222:0;;:::i;60743:187::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;60743:187:0;;:::i;58653:220::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;58653:220:0;;:::i;17713:89::-;;;;;;;;;;;;;:::i;43919:93::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43919:93:0;;:::i;36194:32::-;;;;;;;;;;;;;:::i;59327:210::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;59327:210:0;;:::i;59718:103::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;59718:103:0;-1:-1:-1;;;;;59718:103:0;;:::i;58259:168::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;58259:168:0;;:::i;44020:171::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44020:171:0;;;;:::i;47884:121::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47884:121:0;-1:-1:-1;;;;;47884:121:0;;:::i;36737:62::-;;;;;;;;;;;;;:::i;60437:138::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;60437:138:0;;-1:-1:-1;60437:138:0;-1:-1:-1;60437:138:0;:::i;36235:38::-;;;;;;;;;;;;;:::i;17878:214::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17878:214:0;;:::i;39373:143::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;39373:143:0;;;;;;;;;;:::i;37039:32::-;;;;;;;;;;;;;:::i;60086:343::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;60086:343:0;-1:-1:-1;;;;;60086:343:0;;:::i;43794:110::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43794:110:0;-1:-1:-1;;;;;43794:110:0;;:::i;36404:85::-;;;;;;;;;;;;;:::i;17461:244::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17461:244:0;-1:-1:-1;;;;;17461:244:0;;:::i;58095:156::-;;;;;;;;;;;;;:::i;38612:83::-;38682:5;38675:12;;;;;;;;-1:-1:-1;;38675:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38649:13;;38675:12;;38682:5;;38675:12;;38682:5;38675:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38612:83;:::o;39524:161::-;39599:4;39616:39;39625:12;:10;:12::i;:::-;39639:7;39648:6;39616:8;:39::i;:::-;-1:-1:-1;39673:4:0;39524:161;;;;;:::o;59111:208::-;16737:12;:10;:12::i;:::-;16727:6;;-1:-1:-1;;;;;16727:6:0;;;:22;;;16719:67;;;;;-1:-1:-1;;;16719:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16719:67:0;;;;;;;;;;;;;;;59213:1:::1;59197:12;:17;;:39;;;;;59234:2;59218:12;:18;;59197:39;59189:84;;;::::0;;-1:-1:-1;;;59189:84:0;;::::1;;::::0;::::1;::::0;;;;;;;-1:-1:-1;;;;;;;;;;;59189:84:0;;;;;;;;;;;;;::::1;;59284:12;:27:::0;59111:208::o;60583:152::-;37579:13;;-1:-1:-1;;;;;37579:13:0;37565:10;:27;37543:118;;;;-1:-1:-1;;;37543:118:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60678:15:::1;;;;;;;;;-1:-1:-1::0;;;;;60678:15:0::1;-1:-1:-1::0;;;;;60678:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;60678:22:0;-1:-1:-1;;;;;60671:39:0::1;;60711:7;:5;:7::i;:::-;60720:6;60671:56;;;;;;;;;;;;;-1:-1:-1::0;;;;;60671:56:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;;;;;60583:152:0:o;40645:87::-;40714:10;;40645:87;:::o;36321:41::-;;;-1:-1:-1;;;;;36321:41:0;;:::o;38889:95::-;38969:7;;38889:95;:::o;56580:111::-;-1:-1:-1;;;;;56665:18:0;;56641:4;56665:18;;;:9;:18;;;;;;;;56580:111;;;;:::o;56703:128::-;-1:-1:-1;;;;;56797:26:0;56773:4;56797:26;;;:17;:26;;;;;;;;;56703:128::o;39693:313::-;39791:4;39808:36;39818:6;39826:9;39837:6;39808:9;:36::i;:::-;39855:121;39864:6;39872:12;:10;:12::i;:::-;39886:89;39924:6;39886:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;39886:19:0;;;;;;:11;:19;;;;;;39906:12;:10;:12::i;:::-;-1:-1:-1;;;;;39886:33:0;;;;;;;;;;;;-1:-1:-1;39886:33:0;;;:89;:37;:89::i;:::-;39855:8;:121::i;:::-;-1:-1:-1;39994:4:0;39693:313;;;;;:::o;59959:119::-;16737:12;:10;:12::i;:::-;16727:6;;-1:-1:-1;;;;;16727:6:0;;;:22;;;16719:67;;;;;-1:-1:-1;;;16719:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16719:67:0;;;;;;;;;;;;;;;60030:29:::1;:40:::0;59959:119::o;40740:237::-;40793:7;40820:149;40838:130;40905:62;40923:42;40905:9;:62::i;:::-;40838;40856:42;40838:9;:62::i;:::-;:66;;:130::i;:::-;40820:13;:11;:13::i;:149::-;40813:156;;40740:237;:::o;41814:253::-;41880:7;41919;;41908;:18;;41900:73;;;;-1:-1:-1;;;41900:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41984:19;42007:10;:8;:10::i;:::-;41984:33;-1:-1:-1;42035:24:0;:7;41984:33;42035:11;:24::i;:::-;42028:31;41814:253;-1:-1:-1;;;41814:253:0:o;38798:83::-;38864:9;;;;38798:83;:::o;57304:185::-;16737:12;:10;:12::i;:::-;16727:6;;-1:-1:-1;;;;;16727:6:0;;;:22;;;16719:67;;;;;-1:-1:-1;;;16719:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16719:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;57387:24:0;::::1;;::::0;;;:9:::1;:24;::::0;;;;;::::1;;57379:57;;;::::0;;-1:-1:-1;;;57379:57:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;57379:57:0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;57449:24:0::1;57476:5;57449:24:::0;;;:9:::1;:24;::::0;;;;:32;;-1:-1:-1;;57449:32:0::1;::::0;;57304:185::o;59829:122::-;16737:12;:10;:12::i;:::-;16727:6;;-1:-1:-1;;;;;16727:6:0;;;:22;;;16719:67;;;;;-1:-1:-1;;;16719:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16719:67:0;;;;;;;;;;;;;;;59898:15:::1;:45:::0;;-1:-1:-1;;;;;;59898:45:0::1;-1:-1:-1::0;;;;;59898:45:0;;;::::1;::::0;;;::::1;::::0;;59829:122::o;58435:210::-;16737:12;:10;:12::i;:::-;16727:6;;-1:-1:-1;;;;;16727:6:0;;;:22;;;16719:67;;;;;-1:-1:-1;;;16719:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16719:67:0;;;;;;;;;;;;;;;58538:1:::1;58522:12;:17;;:39;;;;;58559:2;58543:12;:18;;58522:39;58514:84;;;::::0;;-1:-1:-1;;;58514:84:0;;::::1;;::::0;::::1;::::0;;;;;;;-1:-1:-1;;;;;;;;;;;58514:84:0;;;;;;;;;;;;;::::1;;58609:13;:28:::0;58435:210::o;42530:479::-;16737:12;:10;:12::i;:::-;16727:6;;-1:-1:-1;;;;;16727:6:0;;;:22;;;16719:67;;;;;-1:-1:-1;;;16719:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16719:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;42612:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;42604:60;;;::::0;;-1:-1:-1;;;42604:60:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;42680:9;42675:327;42699:9;:16:::0;42695:20;::::1;42675:327;;;42757:7;-1:-1:-1::0;;;;;42741:23:0::1;:9;42751:1;42741:12;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;42741:12:0::1;:23;42737:254;;;42800:9;42810:16:::0;;-1:-1:-1;;42810:20:0;;;42800:31;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;42785:9:::1;:12:::0;;-1:-1:-1;;;;;42800:31:0;;::::1;::::0;42795:1;;42785:12;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;42785:46:0::1;-1:-1:-1::0;;;;;42785:46:0;;::::1;;::::0;;42850:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;42889:11:::1;:20:::0;;;;:28;;-1:-1:-1;;42889:28:0::1;::::0;;42936:9:::1;:15:::0;;;::::1;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;42936:15:0;;;;;-1:-1:-1;;;;;;42936:15:0::1;::::0;;;;;42970:5:::1;;42737:254;42717:3;;42675:327;;;;42530:479:::0;:::o;40014:218::-;40102:4;40119:83;40128:12;:10;:12::i;:::-;40142:7;40151:50;40190:10;40151:11;:25;40163:12;:10;:12::i;:::-;-1:-1:-1;;;;;40151:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;40151:25:0;;;:34;;;;;;;;;;;:38;:50::i;35962:26::-;;;;:::o;40985:377::-;41037:14;41054:12;:10;:12::i;:::-;-1:-1:-1;;;;;41086:19:0;;;;;;:11;:19;;;;;;41037:29;;-1:-1:-1;41086:19:0;;41085:20;41077:77;;;;-1:-1:-1;;;41077:77:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41166:15;41190:19;41201:7;41190:10;:19::i;:::-;-1:-1:-1;;;;;;;;;41238:15:0;;;;;;:7;:15;;;;;;41165:44;;-1:-1:-1;41238:28:0;;:15;-1:-1:-1;41165:44:0;41238:19;:28::i;:::-;-1:-1:-1;;;;;41220:15:0;;;;;;:7;:15;;;;;:46;41287:7;;:20;;41299:7;41287:11;:20::i;:::-;41277:7;:30;41331:10;;:23;;41346:7;41331:14;:23::i;:::-;41318:10;:36;-1:-1:-1;;;40985:377:0:o;36150:37::-;;;;:::o;56843:449::-;16737:12;:10;:12::i;:::-;16727:6;;-1:-1:-1;;;;;16727:6:0;;;:22;;;16719:67;;;;;-1:-1:-1;;;16719:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16719:67:0;;;;;;;;;;;;;;;56940:13:::1;::::0;-1:-1:-1;;;;;56923:30:0;;::::1;56940:13:::0;::::1;56923:30;;56915:90;;;;-1:-1:-1::0;;;56915:90:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;57024:68:0;::::1;57049:42;57024:68;;57016:130;;;;-1:-1:-1::0;;;57016:130:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;57159:24:0::1;;::::0;;;:9:::1;:24;::::0;;;;;;;:31;;57186:4:::1;-1:-1:-1::0;;57159:31:0;;::::1;::::0;::::1;::::0;;;57211:11:::1;:26:::0;;;;;;:33;;;;::::1;::::0;::::1;::::0;;;57255:9:::1;:29:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;57255:29:0::1;::::0;;::::1;::::0;;56843:449::o;36496:91::-;;;-1:-1:-1;;;;;36496:91:0;;:::o;43671:111::-;16737:12;:10;:12::i;:::-;16727:6;;-1:-1:-1;;;;;16727:6:0;;;:22;;;16719:67;;;;;-1:-1:-1;;;16719:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16719:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;43740:27:0::1;;::::0;;;:18:::1;:27;::::0;;;;:34;;-1:-1:-1;;43740:34:0::1;43770:4;43740:34;::::0;;43671:111::o;41370:436::-;41460:7;41499;;41488;:18;;41480:62;;;;;-1:-1:-1;;;41480:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;41558:17;41553:246;;41593:15;41617:19;41628:7;41617:10;:19::i;:::-;-1:-1:-1;41592:44:0;;-1:-1:-1;41651:14:0;;-1:-1:-1;;;;;41651:14:0;41553:246;41700:23;41731:19;41742:7;41731:10;:19::i;:::-;-1:-1:-1;41698:52:0;;-1:-1:-1;41765:22:0;;-1:-1:-1;;;;;41765:22:0;36369:28;;;-1:-1:-1;;;;;36369:28:0;;:::o;36628:40::-;;;-1:-1:-1;;;36628:40:0;;;;;:::o;36921:36::-;;;;;;:::o;57931:156::-;16737:12;:10;:12::i;:::-;16727:6;;-1:-1:-1;;;;;16727:6:0;;;:22;;;16719:67;;;;;-1:-1:-1;;;16719:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16719:67:0;;;;;;;;;;;;;;;57985:23:::1;58011:24;58029:4;58011:9;:24::i;:::-;57985:50;;58046:33;58063:15;58046:16;:33::i;:::-;16797:1;57931:156::o:0;42075:447::-;16737:12;:10;:12::i;:::-;16727:6;;-1:-1:-1;;;;;16727:6:0;;;:22;;;16719:67;;;;;-1:-1:-1;;;16719:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16719:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;42272:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;42271:21;42263:61;;;::::0;;-1:-1:-1;;;42263:61:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;42338:16:0;::::1;42357:1;42338:16:::0;;;:7:::1;:16;::::0;;;;;:20;42335:108:::1;;-1:-1:-1::0;;;;;42414:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;42394:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;42375:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;42335:108:::1;-1:-1:-1::0;;;;;42453:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;42453:27:0::1;42476:4;42453:27:::0;;::::1;::::0;;;42491:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;42491:23:0::1;::::0;;::::1;::::0;;42075:447::o;47503:123::-;-1:-1:-1;;;;;47591:27:0;47567:4;47591:27;;;:18;:27;;;;;;;;;47503:123::o;48013:115::-;16737:12;:10;:12::i;:::-;16727:6;;-1:-1:-1;;;;;16727:6:0;;;:22;;;16719:67;;;;;-1:-1:-1;;;16719:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16719:67:0;;;;;;;;;;;;;;;48092:17:::1;:28:::0;;-1:-1:-1;;;;;;48092:28:0::1;-1:-1:-1::0;;;;;48092:28:0;;;::::1;::::0;;;::::1;::::0;;48013:115::o;36049:32::-;;;;:::o;38992:198::-;-1:-1:-1;;;;;39082:20:0;;39058:7;39082:20;;;:11;:20;;;;;;;;39078:49;;;-1:-1:-1;;;;;;39111:16:0;;;;;;:7;:16;;;;;;39104:23;;39078:49;-1:-1:-1;;;;;39165:16:0;;;;;;:7;:16;;;;;;39145:37;;:19;:37::i;17158:148::-;16737:12;:10;:12::i;:::-;16727:6;;-1:-1:-1;;;;;16727:6:0;;;:22;;;16719:67;;;;;-1:-1:-1;;;16719:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16719:67:0;;;;;;;;;;;;;;;17265:1:::1;17249:6:::0;;17228:40:::1;::::0;-1:-1:-1;;;;;17249:6:0;;::::1;::::0;-1:-1:-1;;;;;;;;;;;17228:40:0;17265:1;;17228:40:::1;17296:1;17279:19:::0;;-1:-1:-1;;;;;;17279:19:0::1;::::0;;17158:148::o;36677:48::-;;;;:::o;36280:32::-;;;;:::o;57501:132::-;16737:12;:10;:12::i;:::-;16727:6;;-1:-1:-1;;;;;16727:6:0;;;:22;;;16719:67;;;;;-1:-1:-1;;;16719:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16719:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;57584:34:0::1;;::::0;;;:17:::1;:34;::::0;;;;:41;;-1:-1:-1;;57584:41:0::1;57621:4;57584:41;::::0;;57501:132::o;40517:120::-;-1:-1:-1;;;;;40609:20:0;40585:4;40609:20;;;:11;:20;;;;;;;;;40517:120::o;16515:79::-;16553:7;16580:6;-1:-1:-1;;;;;16580:6:0;16515:79;:::o;38703:87::-;38775:7;38768:14;;;;;;;;-1:-1:-1;;38768:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38742:13;;38768:14;;38775:7;;38768:14;;38775:7;38768:14;;;;;;;;;;;;;;;;;;;;;;;;57645:136;16737:12;:10;:12::i;:::-;16727:6;;-1:-1:-1;;;;;16727:6:0;;;:22;;;16719:67;;;;;-1:-1:-1;;;16719:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16719:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;57731:34:0::1;57768:5;57731:34:::0;;;:17:::1;:34;::::0;;;;:42;;-1:-1:-1;;57731:42:0::1;::::0;;57645:136::o;40240:269::-;40333:4;40350:129;40359:12;:10;:12::i;:::-;40373:7;40382:96;40421:15;40382:96;;;;;;;;;;;;;;;;;:11;:25;40394:12;:10;:12::i;:::-;-1:-1:-1;;;;;40382:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;40382:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;18168:293::-;18220:14;;-1:-1:-1;;;;;18220:14:0;18238:10;18220:28;18212:76;;;;-1:-1:-1;;;18212:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18313:9;;18307:3;:15;18299:60;;;;;-1:-1:-1;;;18299:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;18404:14;;;18396:6;;18375:44;;-1:-1:-1;;;;;18404:14:0;;;;18396:6;;;;-1:-1:-1;;;;;;;;;;;18375:44:0;;18439:14;;;18430:23;;-1:-1:-1;;;;;;18430:23:0;-1:-1:-1;;;;;18439:14:0;;;18430:23;;;;;;18168:293::o;39198:167::-;39276:4;39293:42;39303:12;:10;:12::i;:::-;39317:9;39328:6;39293:9;:42::i;58881:222::-;16737:12;:10;:12::i;:::-;16727:6;;-1:-1:-1;;;;;16727:6:0;;;:22;;;16719:67;;;;;-1:-1:-1;;;16719:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16719:67:0;;;;;;;;;;;;;;;58990:1:::1;58974:12;:17;;:39;;;;;59011:2;58995:12;:18;;58974:39;58966:84;;;::::0;;-1:-1:-1;;;58966:84:0;;::::1;;::::0;::::1;::::0;;;;;;;-1:-1:-1;;;;;;;;;;;58966:84:0;;;;;;;;;;;;;::::1;;59061:19;:34:::0;58881:222::o;60743:187::-;16737:12;:10;:12::i;:::-;16727:6;;-1:-1:-1;;;;;16727:6:0;;;:22;;;16719:67;;;;;-1:-1:-1;;;16719:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16719:67:0;;;;;;;;;;;;;;;60815:15:::1;;;;;;;;;-1:-1:-1::0;;;;;60815:15:0::1;-1:-1:-1::0;;;;;60815:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;60815:22:0;60847:13:::1;::::0;60808:61:::1;::::0;;-1:-1:-1;;;60808:61:0;;-1:-1:-1;;;;;60847:13:0;;::::1;60808:61;::::0;::::1;::::0;;;;;;;;;:38;;;::::1;::::0;::::1;::::0;:61;;;;;60815:22:::1;::::0;60808:61;;;;;;;60847:13:::1;60808:38:::0;:61;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;;60892:13:0::1;::::0;60880:42:::1;::::0;;-1:-1:-1;;;60880:42:0;;::::1;::::0;::::1;::::0;;;;;-1:-1:-1;;;;;60892:13:0;;::::1;::::0;60880:34:::1;::::0;:42;;;;;60892:13:::1;::::0;60880:42;;;;;;;;60892:13;;60880:42;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;58653:220:::0;16737:12;:10;:12::i;:::-;16727:6;;-1:-1:-1;;;;;16727:6:0;;;:22;;;16719:67;;;;;-1:-1:-1;;;16719:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16719:67:0;;;;;;;;;;;;;;;58761:1:::1;58745:12;:17;;:39;;;;;58782:2;58766:12;:18;;58745:39;58737:84;;;::::0;;-1:-1:-1;;;58737:84:0;;::::1;;::::0;::::1;::::0;;;;;;;-1:-1:-1;;;;;;;;;;;58737:84:0;;;;;;;;;;;;;::::1;;58832:18;:33:::0;58653:220::o;17713:89::-;17785:9;;17713:89;:::o;43919:93::-;16737:12;:10;:12::i;:::-;16727:6;;-1:-1:-1;;;;;16727:6:0;;;:22;;;16719:67;;;;;-1:-1:-1;;;16719:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16719:67:0;;;;;;;;;;;;;;;43984:12:::1;:20:::0;43919:93::o;36194:32::-;;;;:::o;59327:210::-;16737:12;:10;:12::i;:::-;16727:6;;-1:-1:-1;;;;;16727:6:0;;;:22;;;16719:67;;;;;-1:-1:-1;;;16719:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16719:67:0;;;;;;;;;;;;;;;59430:1:::1;59414:12;:17;;:39;;;;;59451:2;59435:12;:18;;59414:39;59406:84;;;::::0;;-1:-1:-1;;;59406:84:0;;::::1;;::::0;::::1;::::0;;;;;;;-1:-1:-1;;;;;;;;;;;59406:84:0;;;;;;;;;;;;;::::1;;59501:13;:28:::0;59327:210::o;59718:103::-;16737:12;:10;:12::i;:::-;16727:6;;-1:-1:-1;;;;;16727:6:0;;;:22;;;16719:67;;;;;-1:-1:-1;;;16719:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16719:67:0;;;;;;;;;;;;;;;59792:13:::1;:21:::0;;-1:-1:-1;;;;;;59792:21:0::1;-1:-1:-1::0;;;;;59792:21:0;;;::::1;::::0;;;::::1;::::0;;59718:103::o;58259:168::-;16737:12;:10;:12::i;:::-;16727:6;;-1:-1:-1;;;;;16727:6:0;;;:22;;;16719:67;;;;;-1:-1:-1;;;16719:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16719:67:0;;;;;;;;;;;;;;;58344:1:::1;58334:6;:11;;:27;;;;;58359:2;58349:6;:12;;58334:27;58326:66;;;::::0;;-1:-1:-1;;;58326:66:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;58403:7;:16:::0;58259:168::o;44020:171::-;16737:12;:10;:12::i;:::-;16727:6;;-1:-1:-1;;;;;16727:6:0;;;:22;;;16719:67;;;;;-1:-1:-1;;;16719:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16719:67:0;;;;;;;;;;;;;;;44097:21:::1;:32:::0;;;::::1;;-1:-1:-1::0;;;44097:32:0;::::1;-1:-1:-1::0;;;;44097:32:0;;::::1;::::0;;;::::1;::::0;;;44145:38:::1;::::0;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;44020:171:::0;:::o;47884:121::-;16737:12;:10;:12::i;:::-;16727:6;;-1:-1:-1;;;;;16727:6:0;;;:22;;;16719:67;;;;;-1:-1:-1;;;16719:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16719:67:0;;;;;;;;;;;;;;;47963:23:::1;:34:::0;;-1:-1:-1;;;;;;47963:34:0::1;-1:-1:-1::0;;;;;47963:34:0;;;::::1;::::0;;;::::1;::::0;;47884:121::o;36737:62::-;;;;:::o;60437:138::-;16737:12;:10;:12::i;:::-;16727:6;;-1:-1:-1;;;;;16727:6:0;;;:22;;;16719:67;;;;;-1:-1:-1;;;16719:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16719:67:0;;;;;;;;;;;;;;;60533:13:::1;::::0;60521:46:::1;::::0;;-1:-1:-1;;;60521:46:0;;::::1;::::0;::::1;::::0;;;;;;;;;;;;;;;-1:-1:-1;;;;;60533:13:0;;::::1;::::0;60521:32:::1;::::0;60554:6;;60562:4;;;;60521:46;;;;60562:4;;;;60521:46;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;60437:138:::0;;;:::o;36235:38::-;;;;:::o;17878:214::-;16737:12;:10;:12::i;:::-;16727:6;;-1:-1:-1;;;;;16727:6:0;;;:22;;;16719:67;;;;;-1:-1:-1;;;16719:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16719:67:0;;;;;;;;;;;;;;;17959:6:::1;::::0;;;17942:23;;-1:-1:-1;;;;;;17942:23:0;;::::1;-1:-1:-1::0;;;;;17959:6:0;::::1;17942:23;::::0;;;17976:19:::1;::::0;;18018:3:::1;:10:::0;::::1;18006:9;:22:::0;18044:40:::1;::::0;17959:6;;-1:-1:-1;;;;;;;;;;;18044:40:0;17959:6;;18044:40:::1;17878:214:::0;:::o;39373:143::-;-1:-1:-1;;;;;39481:18:0;;;39454:7;39481:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;39373:143::o;37039:32::-;;;;:::o;60086:343::-;16737:12;:10;:12::i;:::-;16727:6;;-1:-1:-1;;;;;16727:6:0;;;:22;;;16719:67;;;;;-1:-1:-1;;;16719:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16719:67:0;;;;;;;;;;;;;;;60213:15:::1;::::0;:22:::1;::::0;;-1:-1:-1;;;60213:22:0;;;;60164:17:::1;::::0;-1:-1:-1;;;;;60213: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;60213:22:0;-1:-1:-1;;;;;60197:38:0::1;60205:4;60197:38;:126;;60299:24;60197:126;;;60255:24;60197:126;60164:159;;60350:8;-1:-1:-1::0;;;;;60350:19:0::1;;60370:15;;;;;;;;;-1:-1:-1::0;;;;;60370:15:0::1;-1:-1:-1::0;;;;;60370:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;60370:22:0;60350:71:::1;::::0;-1:-1:-1;;;;;;60350:71:0::1;::::0;;;;;;-1:-1:-1;;;;;60350:71:0;::::1;;::::0;::::1;::::0;;;60402:4:::1;60350:71:::0;;;;;;60402:4;60409:8;;60419:1:::1;::::0;60350:71;;60409:8;60350:71:::1;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;60350:71:0;60334:13:::1;:87:::0;;-1:-1:-1;;;;;;60334:87:0::1;-1:-1:-1::0;;;;;60334:87:0;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;60086:343:0:o;43794:110::-;16737:12;:10;:12::i;:::-;16727:6;;-1:-1:-1;;;;;16727:6:0;;;:22;;;16719:67;;;;;-1:-1:-1;;;16719:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16719:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;43861:27:0::1;43891:5;43861:27:::0;;;:18:::1;:27;::::0;;;;:35;;-1:-1:-1;;43861:35:0::1;::::0;;43794:110::o;36404:85::-;;;-1:-1:-1;;;;;36404:85:0;;:::o;17461:244::-;16737:12;:10;:12::i;:::-;16727:6;;-1:-1:-1;;;;;16727:6:0;;;:22;;;16719:67;;;;;-1:-1:-1;;;16719:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16719:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;17550:22:0;::::1;17542:73;;;;-1:-1:-1::0;;;17542:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17652:6;::::0;;17631:38:::1;::::0;-1:-1:-1;;;;;17631:38:0;;::::1;::::0;17652:6;::::1;::::0;-1:-1:-1;;;;;;;;;;;17631:38:0;::::1;17680:6;:17:::0;;-1:-1:-1;;;;;;17680:17:0::1;-1:-1:-1::0;;;;;17680:17:0;;;::::1;::::0;;;::::1;::::0;;17461:244::o;58095:156::-;16737:12;:10;:12::i;:::-;16727:6;;-1:-1:-1;;;;;16727:6:0;;;:22;;;16719:67;;;;;-1:-1:-1;;;16719:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16719:67:0;;;;;;;;;;;;;;;58178:21:::1;58210:33;58178:21:::0;58210:13:::1;:33::i;8925:106::-:0;9013:10;8925:106;:::o;48136:337::-;-1:-1:-1;;;;;48229:19:0;;48221:68;;;;-1:-1:-1;;;48221:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;48308:21:0;;48300:68;;;;-1:-1:-1;;;48300:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;48381:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;48433:32;;;;;;;;;;;;;;;;;48136:337;;;:::o;48481:2878::-;-1:-1:-1;;;;;48603:18:0;;48595:68;;;;-1:-1:-1;;;48595:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;48682:16:0;;48674:64;;;;-1:-1:-1;;;48674:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48766:1;48757:6;:10;48749:64;;;;-1:-1:-1;;;48749:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;48833:15:0;;;;;;:9;:15;;;;;;;;48832:16;48824:60;;;;;-1:-1:-1;;;48824:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;48904:13:0;;;;;;:9;:13;;;;;;;;48903:14;48895:58;;;;;-1:-1:-1;;;48895:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;48983:10;48973:21;;;;:9;:21;;;;;;;;48972:22;48964:66;;;;;-1:-1:-1;;;48964:66:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;49048:16;;;;49043:513;;49081:28;49100:4;49106:2;49081:18;:28::i;:::-;49043:513;;;49161:1;49146:12;;:16;:59;;;;-1:-1:-1;49192:13:0;;-1:-1:-1;;;;;49184:21:0;;;49192:13;;49184:21;49146:59;:105;;;;-1:-1:-1;;;;;;49228:23:0;;;;;;:17;:23;;;;;;;;49227:24;49146:105;:148;;;;-1:-1:-1;;;;;;49273:21:0;;;;;;:17;:21;;;;;;;;49272:22;49146:148;49142:403;;;49363:13;;49348:12;;49333;:27;:43;49329:201;;;-1:-1:-1;;;;;49401:13:0;;;;;;:9;:13;;;;;;;;;:20;;-1:-1:-1;;49401:20:0;49417:4;49401:20;;;;;;49444:13;:16;;;;;;;49488;;;;;;;;;;;;;;;;;49329:201;49579:7;:5;:7::i;:::-;-1:-1:-1;;;;;49571:15:0;:4;-1:-1:-1;;;;;49571:15:0;;;:32;;;;;49596:7;:5;:7::i;:::-;-1:-1:-1;;;;;49590:13:0;:2;-1:-1:-1;;;;;49590:13:0;;;49571:32;49568:125;;;49636:12;;49626:6;:22;;49618:75;;;;-1:-1:-1;;;49618:75:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49988:28;50019:24;50037:4;50019:9;:24::i;:::-;49988:55;;50091:12;;50067:20;:36;50064:112;;-1:-1:-1;50152:12:0;;50064:112;50247:29;;50223:53;;;;;;;50305;;-1:-1:-1;50342:16:0;;-1:-1:-1;;;50342:16:0;;;;50341:17;50305:53;:91;;;;-1:-1:-1;50383:13:0;;-1:-1:-1;;;;;50375:21:0;;;50383:13;;50375:21;;50305:91;:129;;;;-1:-1:-1;50413:21:0;;-1:-1:-1;;;50413:21:0;;;;50305:129;50287:318;;;50484:29;;50461:52;;50557:36;50572:20;50557:14;:36::i;:::-;-1:-1:-1;;;;;50813:24:0;;50686:12;50813:24;;;:18;:24;;;;;;50701:4;;50813:24;;;:50;;-1:-1:-1;;;;;;50841:22:0;;;;;;:18;:22;;;;;;;;50813:50;50810:96;;;-1:-1:-1;50889:5:0;50810:96;50953:13;;-1:-1:-1;;;;;50945:21:0;;;50953:13;;50945:21;50942:124;;;50999:18;;50983:13;:34;51042:12;;51032:7;:22;50942:124;51111:13;;-1:-1:-1;;;;;51103:21:0;;;51111:13;;51103:21;51100:126;;51157:19;;51141:13;:35;51201:13;;51191:7;:23;51100:126;51311:38;51326:4;51331:2;51334:6;51341:7;51311:14;:38::i;:::-;48481:2878;;;;;;:::o;5335:192::-;5421:7;5457:12;5449:6;;;;5441:29;;;;-1:-1:-1;;;5441:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5493:5:0;;;5335:192::o;4896:136::-;4954:7;4981:43;4985:1;4988;4981:43;;;;;;;;;;;;;;;;;:3;:43::i;45653:163::-;45694:7;45715:15;45732;45751:19;:17;:19::i;:::-;45714:56;;-1:-1:-1;45714:56:0;-1:-1:-1;45788:20:0;45714:56;;45788:11;:20::i;:::-;45781:27;;;;45653:163;:::o;6733:132::-;6791:7;6818:39;6822:1;6825;6818:39;;;;;;;;;;;;;;;;;:3;:39::i;4432:181::-;4490:7;4522:5;;;4546:6;;;;4538:46;;;;;-1:-1:-1;;;4538:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;44451:419;44510:7;44519;44528;44537;44546;44555;44576:23;44601:12;44615:18;44637:20;44649:7;44637:11;:20::i;:::-;44575:82;;;;;;44669:15;44686:23;44711:12;44727:50;44739:7;44748:4;44754:10;44766;:8;:10::i;:::-;44727:11;:50::i;:::-;44668:109;;;;-1:-1:-1;44668:109:0;;-1:-1:-1;44828:15:0;;-1:-1:-1;44845:4:0;;-1:-1:-1;44851:10:0;;-1:-1:-1;44451:419:0;;-1:-1:-1;;;;;44451:419:0:o;52557:589::-;52707:16;;;52721:1;52707:16;;;52683:21;52707:16;;;;;52683:21;52707:16;;;;;;;;;;-1:-1:-1;52707:16:0;52683:40;;52752:4;52734;52739:1;52734:7;;;;;;;;-1:-1:-1;;;;;52734:23:0;;;:7;;;;;;;;;;:23;;;;52778:15;;:22;;;-1:-1:-1;;;52778:22:0;;;;:15;;;;;:20;;:22;;;;;52734:7;;52778:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52778:22:0;52768:7;;:4;;52773:1;;52768:7;;;;;;-1:-1:-1;;;;;52768:32:0;;;:7;;;;;;;;;:32;52845:15;;52813:62;;52830:4;;52845:15;52863:11;52813:8;:62::i;:::-;52914:15;;:224;;-1:-1:-1;;;52914:224:0;;;;;;;;:15;:224;;;;;;53092:4;52914:224;;;;;;53112:15;52914:224;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;52914:15:0;;;;:66;;52995:11;;53065:4;;53092;53112:15;52914:224;;;;;;;;;;;;;;;;:15;:224;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59545:165;59603:17;;-1:-1:-1;;;;;59603:17:0;:41;59630:13;:6;59641:1;59630:10;:13::i;:::-;59603:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;59655:23:0;;-1:-1:-1;;;;;59655:23:0;:47;59688:13;:6;59699:1;59688:10;:13::i;:::-;59655:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56268:300;56350:16;;;;56349:17;56341:65;;;;-1:-1:-1;;;56341:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;56421:23:0;;;;;;:17;:23;;;;;;;;:46;;;;-1:-1:-1;56454:13:0;;-1:-1:-1;;;;;56448:19:0;;;56454:13;;56448:19;56421:46;56417:144;;;56484:16;:23;;-1:-1:-1;;56484:23:0;56503:4;56484:23;;;56537:12;56522;:27;56268:300;;:::o;51367:1182::-;37426:16;:23;;-1:-1:-1;;;;37426:23:0;-1:-1:-1;;;37426:23:0;;;;51527:27:::1;:20:::0;51552:1:::1;51527:24;:27::i;:::-;51503:51:::0;-1:-1:-1;51565:26:0::1;51594:27;:20:::0;51619:1:::1;51594:24;:27::i;:::-;51565:56:::0;-1:-1:-1;51632:22:0::1;51657:63;51565:56:::0;51657:39:::1;:20:::0;51682:13;51657:24:::1;:39::i;:63::-;51632:88:::0;-1:-1:-1;52023:21:0::1;52089:31;52106:13:::0;52089:16:::1;:31::i;:::-;52251:18;52272:41;:21;52298:14:::0;52272:25:::1;:41::i;:::-;52251:62;;52363:44;52376:18;52396:10;52363:12;:44::i;:::-;52418:36;52439:14;52418:20;:36::i;:::-;52480:61;::::0;;;;;::::1;::::0;::::1;::::0;;;;;;;;;;;::::1;::::0;;;;;;;::::1;-1:-1:-1::0;;37472:16:0;:24;;-1:-1:-1;;;;37472:24:0;;;-1:-1:-1;;;;51367:1182:0:o;53748:834::-;53859:7;53855:40;;53881:14;:12;:14::i;:::-;-1:-1:-1;;;;;53920:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;53944:22:0;;;;;;:11;:22;;;;;;;;53943:23;53920:46;53916:597;;;53983:48;54005:6;54013:9;54024:6;53983:21;:48::i;:::-;53916:597;;;-1:-1:-1;;;;;54054:19:0;;;;;;:11;:19;;;;;;;;54053:20;:46;;;;-1:-1:-1;;;;;;54077:22:0;;;;;;:11;:22;;;;;;;;54053:46;54049:464;;;54116:46;54136:6;54144:9;54155:6;54116:19;:46::i;54049:464::-;-1:-1:-1;;;;;54185:19:0;;;;;;:11;:19;;;;;;;;54184:20;:47;;;;-1:-1:-1;;;;;;54209:22:0;;;;;;:11;:22;;;;;;;;54208:23;54184:47;54180:333;;;54248:44;54266:6;54274:9;54285:6;54248:17;:44::i;54180:333::-;-1:-1:-1;;;;;54314:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;54337:22:0;;;;;;:11;:22;;;;;;;;54314:45;54310:203;;;54376:48;54398:6;54406:9;54417:6;54376:21;:48::i;54310:203::-;54457:44;54475:6;54483:9;54494:6;54457:17;:44::i;:::-;54537:7;54533:41;;54559:15;:13;:15::i;:::-;53748:834;;;;:::o;45824:561::-;45921:7;;45957;;45874;;;;;45981:289;46005:9;:16;46001:20;;45981:289;;;46071:7;46047;:21;46055:9;46065:1;46055:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;46055:12:0;46047:21;;;;;;;;;;;;;:31;;:66;;;46106:7;46082;:21;46090:9;46100:1;46090:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;46090:12:0;46082:21;;;;;;;;;;;;;:31;46047:66;46043:97;;;46123:7;;46132;;46115:25;;;;;;;;;46043:97;46165:34;46177:7;:21;46185:9;46195:1;46185:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;46185:12:0;46177:21;;;;;;;;;;;;;46165:7;;:11;:34::i;:::-;46155:44;;46224:34;46236:7;:21;46244:9;46254:1;46244:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;46244:12:0;46236:21;;;;;;;;;;;;;46224:7;;:11;:34::i;:::-;46214:44;-1:-1:-1;46023:3:0;;45981:289;;;-1:-1:-1;46306:7:0;;46294;;:20;;:11;:20::i;:::-;46284:7;:30;46280:61;;;46324:7;;46333;;46316:25;;;;;;;;46280:61;46360:7;;-1:-1:-1;46369:7:0;-1:-1:-1;45824:561:0;;;:::o;7361:278::-;7447:7;7482:12;7475:5;7467:28;;;;-1:-1:-1;;;7467:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7506:9;7522:1;7518;:5;;;;;;;7361:278;-1:-1:-1;;;;;7361:278:0:o;44878:330::-;44938:7;44947;44956;44976:12;44991:24;45007:7;44991:15;:24::i;:::-;44976:39;;45026:18;45047:30;45069:7;45047:21;:30::i;:::-;45026:51;-1:-1:-1;45088:23:0;45114:33;45026:51;45114:17;:7;45126:4;45114:11;:17::i;:33::-;45088:59;45183:4;;-1:-1:-1;45189:10:0;;-1:-1:-1;44878:330:0;;-1:-1:-1;;;44878:330:0:o;45216:429::-;45331:7;;;;45387:24;:7;45399:11;45387;:24::i;:::-;45369:42;-1:-1:-1;45422:12:0;45437:21;:4;45446:11;45437:8;:21::i;:::-;45422:36;-1:-1:-1;45469:18:0;45490:27;:10;45505:11;45490:14;:27::i;:::-;45469:48;-1:-1:-1;45528:23:0;45554:33;45469:48;45554:17;:7;45566:4;45554:11;:17::i;:33::-;45606:7;;;;-1:-1:-1;45632:4:0;;-1:-1:-1;45216:429:0;;-1:-1:-1;;;;;;;45216:429:0:o;53154:513::-;53334:15;;53302:62;;53319:4;;-1:-1:-1;;;;;53334:15:0;53352:11;53302:8;:62::i;:::-;53407:15;;-1:-1:-1;;;;;53407:15:0;:31;53446:9;53479:4;53499:11;53407:15;;53611:7;:5;:7::i;:::-;53633:15;53407:252;;;;;;;;;;;;;-1:-1:-1;;;;;53407:252:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;53407:252:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47638:234;47704:24;47721:6;47704:16;:24::i;:::-;47740:23;;-1:-1:-1;;;;;47740:23:0;:62;47773:28;:21;47799:1;47773:25;:28::i;:::-;47740:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47814:17:0;;:49;;-1:-1:-1;;;;;47814:17:0;;;;47841:21;47814:49;;;;;:17;:49;:17;:49;47841:21;47814:17;:49;;;;;;;;;;;;;;;;;;;47104:250;47150:7;;:12;:34;;;;-1:-1:-1;47166:13:0;;:18;47150:34;47147:46;;;47186:7;;47147:46;47231:7;;;47213:15;:25;47273:13;;;47249:21;:37;-1:-1:-1;47307:11:0;;;;47329:17;47104:250;:::o;55694:566::-;55797:15;55814:23;55839:12;55853:23;55878:12;55892:18;55914:19;55925:7;55914:10;:19::i;:::-;-1:-1:-1;;;;;55962:15:0;;;;;;:7;:15;;;;;;55796:137;;-1:-1:-1;55796:137:0;;-1:-1:-1;55796:137:0;;-1:-1:-1;55796:137:0;-1:-1:-1;55796:137:0;-1:-1:-1;55796:137:0;-1:-1:-1;55962:28:0;;55982:7;55962:19;:28::i;:::-;-1:-1:-1;;;;;55944:15:0;;;;;;:7;:15;;;;;;;;:46;;;;56019:7;:15;;;;:28;;56039:7;56019:19;:28::i;:::-;-1:-1:-1;;;;;56001:15:0;;;;;;;:7;:15;;;;;;:46;;;;56079:18;;;;;;;:39;;56102:15;56079:22;:39::i;:::-;-1:-1:-1;;;;;56058:18:0;;;;;;:7;:18;;;;;:60;56132:26;56147:10;56132:14;:26::i;:::-;56169:23;56181:4;56187;56169:11;:23::i;:::-;56225:9;-1:-1:-1;;;;;56208:44:0;56217:6;-1:-1:-1;;;;;56208:44:0;;56236:15;56208:44;;;;;;;;;;;;;;;;;;55694:566;;;;;;;;;:::o;55100:586::-;55201:15;55218:23;55243:12;55257:23;55282:12;55296:18;55318:19;55329:7;55318:10;:19::i;:::-;-1:-1:-1;;;;;55366:15:0;;;;;;:7;:15;;;;;;55200:137;;-1:-1:-1;55200:137:0;;-1:-1:-1;55200:137:0;;-1:-1:-1;55200:137:0;-1:-1:-1;55200:137:0;-1:-1:-1;55200:137:0;-1:-1:-1;55366:28:0;;55200:137;55366:19;:28::i;:::-;-1:-1:-1;;;;;55348:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;55426:18;;;;;:7;:18;;;;;:39;;55449:15;55426:22;:39::i;:::-;-1:-1:-1;;;;;55405:18:0;;;;;;:7;:18;;;;;;;;:60;;;;55497:7;:18;;;;:39;;55520:15;55497:22;:39::i;54590:502::-;54689:15;54706:23;54731:12;54745:23;54770:12;54784:18;54806:19;54817:7;54806:10;:19::i;:::-;-1:-1:-1;;;;;54854:15:0;;;;;;:7;:15;;;;;;54688:137;;-1:-1:-1;54688:137:0;;-1:-1:-1;54688:137:0;;-1:-1:-1;54688:137:0;-1:-1:-1;54688:137:0;-1:-1:-1;54688:137:0;-1:-1:-1;54854:28:0;;54688:137;54854:19;:28::i;43017:642::-;43120:15;43137:23;43162:12;43176:23;43201:12;43215:18;43237:19;43248:7;43237:10;:19::i;:::-;-1:-1:-1;;;;;43285:15:0;;;;;;:7;:15;;;;;;43119:137;;-1:-1:-1;43119:137:0;;-1:-1:-1;43119:137:0;;-1:-1:-1;43119:137:0;-1:-1:-1;43119:137:0;-1:-1:-1;43119:137:0;-1:-1:-1;43285:28:0;;43305:7;43285:19;:28::i;:::-;-1:-1:-1;;;;;43267:15:0;;;;;;:7;:15;;;;;;;;:46;;;;43342:7;:15;;;;:28;;43362:7;43342:19;:28::i;47366:125::-;47420:15;;47410:7;:25;47462:21;;47446:13;:37;47366:125::o;46764:154::-;46828:7;46855:55;46894:5;46855:20;46867:7;;46855;:11;;:20;;;;:::i;:::-;:24;;:55::i;46926:166::-;46996:7;47023:61;47068:5;47023:26;47035:13;;47023:7;:11;;:26;;;;:::i;5786:471::-;5844:7;6089:6;6085:47;;-1:-1:-1;6119:1:0;6112:8;;6085:47;6156:5;;;6160:1;6156;:5;:1;6180:5;;;;;:10;6172:56;;;;-1:-1:-1;;;6172:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46397:355;46460:19;46483:10;:8;:10::i;:::-;46460:33;-1:-1:-1;46504:18:0;46525:27;:10;46460:33;46525:14;:27::i;:::-;46604:4;46588:22;;;;:7;:22;;;;;;46504:48;;-1:-1:-1;46588:38:0;;46504:48;46588:26;:38::i;:::-;46579:4;46563:22;;;;:7;:22;;;;;;;;:63;;;;46640:11;:26;;;;;;46637:107;;;46722:4;46706:22;;;;:7;:22;;;;;;:38;;46733:10;46706:26;:38::i;:::-;46697:4;46681:22;;;;:7;:22;;;;;:63;46637:107;46397:355;;;:::o;44296:147::-;44374:7;;:17;;44386:4;44374:11;:17::i;:::-;44364:7;:27;44415:10;;:20;;44430:4;44415:14;:20::i;:::-;44402:10;:33;-1:-1:-1;;44296:147:0:o

Swarm Source

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