ETH Price: $2,560.60 (+0.01%)

Token

Teh chosen one (Emerald)
 

Overview

Max Total Supply

1,000,000,000,000 Emerald

Holders

55

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
565,948,369.53125832 Emerald

Value
$0.00
0xcbc573c75d7aee5146512aa901c92e1eeecc6007
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:
Emerald

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-06-01
*/

// We believe in decentralization 


pragma solidity ^0.8.12;
// SPDX-License-Identifier: Unlicensed
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) {
    function _msgSender() internal view virtual returns (address) {
        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;

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

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

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

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

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

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

}

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

interface IUniswapV2Router02 {
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function factory() external pure returns (address);
    function WETH() external pure returns (address);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
}

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

    event SwapAndLiquifyEnabledUpdated(bool enabled);
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiqudity
    );

    modifier lockTheSwap {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }

    mapping (address => uint256) private _rOwned;
    mapping (address => uint256) private _tOwned;
    mapping (address => mapping (address => uint256)) private _allowances;
    mapping (address => bool) private botWallets;
    mapping (address => bool) private _isExcludedFromFee;
    mapping (address => bool) private isExchangeWallet;

    uint256 private constant MAX = ~uint256(0);
    uint256 private _tTotal = 1000000000000 * 10 ** 9;
    uint256 private _rTotal = (MAX - (MAX % _tTotal));
    uint256 private _tFeeTotal;

    string private _name = "Teh chosen one";
    string private _symbol = "Emerald";
    uint8 private _decimals = 9;
    bool private tradingOpen = false;
    IUniswapV2Router02 public uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
    address public uniswapV2Pair = address(0);
    bool inSwapAndLiquify;
    bool public swapAndLiquifyEnabled = true;
    uint256 public _maxBuyAmount = 20000000000 * 10**9;
    uint256 public _maxWalletAmount = 20000000000 * 10**9;
    uint256 public numTokensSellToAddToLiquidity = 3000000000 * 10**9;
    uint public ethSellAmount = 1000000000000000000;  //1 ETH
    address public marketingWallet = 0xf08231f2ABe697735a52010C00D55e74A4596460;
    address public devWallet = 0xf08231f2ABe697735a52010C00D55e74A4596460;
    address public deadWallet = 0x000000000000000000000000000000000000dEaD;

    struct Distribution {
        uint256 marketingFeePercentage;
        uint256 devFeePercentage;
    }

    struct TaxFees {
        uint256 reflectionBuyFee;
        uint256 liquidityBuyFee;
        uint256 sellReflectionFee;
        uint256 sellLiquidityFee;
        uint256 largeSellFee;
    }
    bool private doTakeFees;
    bool private isSellTxn;
    TaxFees public taxFees;
    Distribution public distribution;

    constructor () {
        _rOwned[_msgSender()] = _rTotal;
        _isExcludedFromFee[owner()] = true;
        _isExcludedFromFee[_msgSender()] = true;
        taxFees = TaxFees(0,4,0,4,0);
        distribution = Distribution(50, 50);
        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) {
        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 totalFees() public view returns (uint256) {
        return _tFeeTotal;
    }

    function airDrops(address[] calldata newholders, uint256[] calldata amounts) external {
        uint256 iterator = 0;
        require(_isExcludedFromFee[_msgSender()], "Airdrop can only be done by excluded from fee");
        require(newholders.length == amounts.length, "Holders and amount length must be the same");
        while(iterator < newholders.length){
            _tokenTransfer(_msgSender(), newholders[iterator], amounts[iterator] * 10**9, false, false);
            iterator += 1;
        }
    }

    function deliver(uint256 tAmount) public {
        address sender = _msgSender();
        (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 excludeFromFee(address[] calldata addresses) public onlyOwner {
        addRemoveFee(addresses, true);
    }

    function includeInFee(address[] calldata addresses) public onlyOwner {
        addRemoveFee(addresses, false);
    }

    function addExchange(address[] calldata addresses) public onlyOwner {
        addRemoveExchange(addresses, true);
    }

    function removeExchange(address[] calldata addresses) public onlyOwner {
        addRemoveExchange(addresses, false);
    }

    function setExtraSellEthAmount(uint ethPrice) external onlyOwner {
        ethSellAmount = ethPrice;
    }
    function createV2Pair() external onlyOwner {
        require(uniswapV2Pair == address(0),"UniswapV2Pair has already been set");
        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH());
    }
    function addRemoveExchange(address[] calldata addresses, bool flag) private {
        for (uint256 i = 0; i < addresses.length; i++) {
            address addr = addresses[i];
            isExchangeWallet[addr] = flag;
        }
    }

    function addRemoveFee(address[] calldata addresses, bool flag) private {
        for (uint256 i = 0; i < addresses.length; i++) {
            address addr = addresses[i];
            _isExcludedFromFee[addr] = flag;
        }
    }

    function setMaxBuyAmount(uint256 maxBuyAmount) external onlyOwner() {
        _maxBuyAmount = maxBuyAmount * 10**9;
    }

    function setMaxWalletAmount(uint256 maxWalletAmount) external onlyOwner() {
        _maxWalletAmount = maxWalletAmount * 10**9;
    }
    function setTaxFees(uint256 reflectionFee, uint256 liquidityFee, uint256 sellReflectionFee, uint256 sellLiquidityFee, uint256 superSellOffFee) external onlyOwner {
        taxFees.reflectionBuyFee = reflectionFee;
        taxFees.liquidityBuyFee = liquidityFee;
        taxFees.sellLiquidityFee = sellLiquidityFee;
        taxFees.sellReflectionFee = sellReflectionFee;
        taxFees.largeSellFee = superSellOffFee;
    }

    function setDistribution(uint256 marketingFeePercentage, uint256 devFeePercentage) external onlyOwner {
        require(marketingFeePercentage.add(devFeePercentage) == 100, "Fee percentage must equal 100");
        distribution.marketingFeePercentage = marketingFeePercentage;
        distribution.devFeePercentage = devFeePercentage;
    }

    function setNumTokensToSell(uint256 numTokensSellToAddToLiquidity_) external onlyOwner {
        numTokensSellToAddToLiquidity = numTokensSellToAddToLiquidity_ * 10**9;
    }

    function setWallets(address _marketingWallet, address _devWallet) external onlyOwner {
        marketingWallet = _marketingWallet;
        devWallet = _devWallet;
    }

    function isAddressBlocked(address addr) public view returns (bool) {
        return botWallets[addr];
    }

    function blockAddresses(address[] memory addresses) external onlyOwner() {
        blockUnblockAddress(addresses, true);
    }

    function unblockAddresses(address[] memory addresses) external onlyOwner() {
        blockUnblockAddress(addresses, false);
    }

    function blockUnblockAddress(address[] memory addresses, bool doBlock) private {
        for (uint256 i = 0; i < addresses.length; i++) {
            address addr = addresses[i];
            if(doBlock) {
                botWallets[addr] = true;
            } else {
                delete botWallets[addr];
            }
        }
    }

    function getContractTokenBalance() public view returns (uint256) {
        return balanceOf(address(this));
    }   

    function setSwapAndLiquifyEnabled(bool _enabled) public onlyOwner {
        swapAndLiquifyEnabled = _enabled;
        emit SwapAndLiquifyEnabledUpdated(_enabled);
    }

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

    function calculateTaxFee(uint256 _amount) private view returns (uint256) {
        uint256 reflectionFee = 0;
        if(doTakeFees) {
            reflectionFee = taxFees.reflectionBuyFee;
            if(isSellTxn) {
                reflectionFee = taxFees.sellReflectionFee;
            }
        }
        return _amount.mul(reflectionFee).div(10**2);
    }

    function calculateLiquidityFee(uint256 _amount) private view returns (uint256) {
        uint256 totalLiquidityFee = 0;
        if(doTakeFees) {
            totalLiquidityFee = taxFees.liquidityBuyFee;
            if(isSellTxn) {
                totalLiquidityFee = taxFees.sellLiquidityFee;
                uint ethPrice = getEthPrice(_amount);
                if(ethPrice >= ethSellAmount) {
                    totalLiquidityFee = totalLiquidityFee.add(taxFees.largeSellFee);
                }
            }
        }
        return _amount.mul(totalLiquidityFee).div(10**2);
    }

    function getEthPrice(uint tokenAmount) public view returns (uint)  {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();
        return uniswapV2Router.getAmountsOut(tokenAmount, path)[1];
    }
    function isExcludedFromFee(address account) public view returns(bool) {
        return _isExcludedFromFee[account];
    }

    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(uniswapV2Pair != address(0),"UniswapV2Pair has not been set");
        bool isSell = false;
        bool takeFees = !_isExcludedFromFee[from] && !_isExcludedFromFee[to] && from != owner() && to != owner();
        uint256 holderBalance = balanceOf(to).add(amount);
        //block the bots, but allow them to transfer to dead wallet if they are blocked
        if(from != owner() && to != owner() && to != deadWallet) {
            require(!botWallets[from] && !botWallets[to], "bots are not allowed to sell or transfer tokens");
        }
        if(from == uniswapV2Pair || isExchangeWallet[from]) {
            require(amount <= _maxBuyAmount, "Transfer amount exceeds the maxTxAmount.");    
            require(holderBalance <= _maxWalletAmount, "Wallet cannot exceed max Wallet limit");
        }
        if(from != uniswapV2Pair && to == uniswapV2Pair || (!isExchangeWallet[from] && isExchangeWallet[to])) { //if sell
            //only tax if tokens are going back to Uniswap
            isSell = true;
            sellTaxTokens();
        }
        if(from != uniswapV2Pair && to != uniswapV2Pair && !isExchangeWallet[from] && !isExchangeWallet[to]) {
            takeFees = false;
            require(holderBalance <= _maxWalletAmount, "Wallet cannot exceed max Wallet limit");
        }
        _tokenTransfer(from, to, amount, takeFees, isSell);
    }

    function sellTaxTokens() private {
        uint256 contractTokenBalance = balanceOf(address(this));
        if (contractTokenBalance >= numTokensSellToAddToLiquidity && !inSwapAndLiquify && swapAndLiquifyEnabled) {
            //send eth to wallets marketing and dev
            distributeShares(contractTokenBalance);
        }
    }

    function distributeShares(uint256 balanceToShareTokens) private lockTheSwap {
        swapTokensForEth(balanceToShareTokens);
        uint256 balanceToShare = address(this).balance;
        uint256 marketingShare = balanceToShare.mul(distribution.marketingFeePercentage).div(100);
        uint256 devShare = balanceToShare.mul(distribution.devFeePercentage).div(100);
        payable(marketingWallet).transfer(marketingShare);
        payable(devWallet).transfer(devShare);

    }

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

    //this method is responsible for taking all fee, if takeFee is true
    function _tokenTransfer(address sender, address recipient, uint256 amount, bool takeFees, bool isSell) private {
        doTakeFees = takeFees;
        isSellTxn = isSell;
        _transferStandard(sender, recipient, amount);
    }

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

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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":"_maxBuyAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addExchange","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"newholders","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"airDrops","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":"addresses","type":"address[]"}],"name":"blockAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"createV2Pair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"deadWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"deliver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"distribution","outputs":[{"internalType":"uint256","name":"marketingFeePercentage","type":"uint256"},{"internalType":"uint256","name":"devFeePercentage","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ethSellAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getContractTokenBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"getEthPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"includeInFee","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":"addr","type":"address"}],"name":"isAddressBlocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"addresses","type":"address[]"}],"name":"removeExchange","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"marketingFeePercentage","type":"uint256"},{"internalType":"uint256","name":"devFeePercentage","type":"uint256"}],"name":"setDistribution","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"ethPrice","type":"uint256"}],"name":"setExtraSellEthAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxBuyAmount","type":"uint256"}],"name":"setMaxBuyAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxWalletAmount","type":"uint256"}],"name":"setMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numTokensSellToAddToLiquidity_","type":"uint256"}],"name":"setNumTokensToSell","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"reflectionFee","type":"uint256"},{"internalType":"uint256","name":"liquidityFee","type":"uint256"},{"internalType":"uint256","name":"sellReflectionFee","type":"uint256"},{"internalType":"uint256","name":"sellLiquidityFee","type":"uint256"},{"internalType":"uint256","name":"superSellOffFee","type":"uint256"}],"name":"setTaxFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_marketingWallet","type":"address"},{"internalType":"address","name":"_devWallet","type":"address"}],"name":"setWallets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxFees","outputs":[{"internalType":"uint256","name":"reflectionBuyFee","type":"uint256"},{"internalType":"uint256","name":"liquidityBuyFee","type":"uint256"},{"internalType":"uint256","name":"sellReflectionFee","type":"uint256"},{"internalType":"uint256","name":"sellLiquidityFee","type":"uint256"},{"internalType":"uint256","name":"largeSellFee","type":"uint256"}],"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":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"unblockAddresses","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"},{"stateMutability":"payable","type":"receive"}]

6080604052683635c9adc5dea00000600781905562000021906000196200038c565b6200002f90600019620003af565b60085560408051808201909152600e8082526d5465682063686f73656e206f6e6560901b60209092019182526200006991600a91620002e6565b5060408051808201909152600780825266115b595c985b1960ca1b60209092019182526200009a91600b91620002e6565b50600c8054757a250d5630b4cf539739df2c5dacb4c659f2488d00096001600160b01b0319909116179055600d8054600161ff0160a01b031916600160a81b1790556801158e460913d00000600e819055600f556729a2241af62c0000601055670de0b6b3a7640000601155601280546001600160a01b031990811673f08231f2abe697735a52010c00d55e74a45964609081179092556013805482169092179091556014805490911661dead1790553480156200015757600080fd5b50600080546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600854336000908152600160208190526040822092909255600590620001c76000546001600160a01b031690565b6001600160a01b0316815260208101919091526040016000908120805460ff191692151592909217909155600190600590620002003390565b6001600160a01b0316815260208082019290925260409081016000908120805460ff191694151594909417909355805160a0810182528381526004818401819052818301859052606082018190526080909101849052601584905560168190556017849055601855601992909255815180830190925260328083529101819052601a819055601b55620002903390565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600754604051620002d891815260200190565b60405180910390a362000412565b828054620002f490620003d5565b90600052602060002090601f01602090048101928262000318576000855562000363565b82601f106200033357805160ff191683800117855562000363565b8280016001018555821562000363579182015b828111156200036357825182559160200191906001019062000346565b506200037192915062000375565b5090565b5b8082111562000371576000815560010162000376565b600082620003aa57634e487b7160e01b600052601260045260246000fd5b500690565b600082821015620003d057634e487b7160e01b600052601160045260246000fd5b500390565b600181811c90821680620003ea57607f821691505b602082108114156200040c57634e487b7160e01b600052602260045260246000fd5b50919050565b612dfd80620004226000396000f3fe6080604052600436106102cd5760003560e01c806375f0a87411610175578063a9059cbb116100dc578063dc0aa9cf11610095578063e7dad4f91161006f578063e7dad4f9146108f3578063f18dba261461092c578063f2fde38b1461094c578063f34eb0b81461096c57600080fd5b8063dc0aa9cf1461086d578063dcda6af31461088d578063dd62ed3e146108ad57600080fd5b8063a9059cbb146107c2578063ab0d8b85146107e2578063b6a9987214610802578063c49b9a8014610817578063d12a768814610837578063d3f6a1571461084d57600080fd5b80638da5cb5b1161012e5780638da5cb5b146107195780638ea5220f1461073757806391142cb31461075757806395d89b411461076d5780639b0e2e8614610782578063a457c2d7146107a257600080fd5b806375f0a874146106595780637ca2ea441461067957806385141a771461069957806385d4787b146106b9578063870d365d146106d95780638a5c5085146106f957600080fd5b8063313ce567116102345780634a74bb02116101ed5780636c0a24eb116101c75780636c0a24eb146105ee57806370a0823114610604578063715018a61461062457806371b9189c1461063957600080fd5b80634a74bb02146105645780635342acb4146105855780635ee58efc146105be57600080fd5b8063313ce567146104ad578063317d9453146104cf57806339509351146104e45780633bd5d173146105045780634549b0391461052457806349bd5a5e1461054457600080fd5b806313114a9d1161028657806313114a9d146103e55780631694505e146103fa57806318160ddd1461043857806323b872dd1461044d57806327a14fc21461046d5780632d8381191461048d57600080fd5b8063024022f7146102d9578063035ae135146102fb5780630492f0551461031b57806306fdde0314610344578063095ea7b3146103665780630ddc09761461039657600080fd5b366102d457005b600080fd5b3480156102e557600080fd5b506102f96102f4366004612713565b61098c565b005b34801561030757600080fd5b506102f9610316366004612713565b6109cf565b34801561032757600080fd5b50610331600e5481565b6040519081526020015b60405180910390f35b34801561035057600080fd5b50610359610a05565b60405161033b9190612755565b34801561037257600080fd5b506103866103813660046127bf565b610a97565b604051901515815260200161033b565b3480156103a257600080fd5b506015546016546017546018546019546103bd949392919085565b604080519586526020860194909452928401919091526060830152608082015260a00161033b565b3480156103f157600080fd5b50600954610331565b34801561040657600080fd5b50600c54610420906201000090046001600160a01b031681565b6040516001600160a01b03909116815260200161033b565b34801561044457600080fd5b50600754610331565b34801561045957600080fd5b506103866104683660046127eb565b610aae565b34801561047957600080fd5b506102f961048836600461282c565b610b17565b34801561049957600080fd5b506103316104a836600461282c565b610b55565b3480156104b957600080fd5b50600c5460405160ff909116815260200161033b565b3480156104db57600080fd5b50610331610bd9565b3480156104f057600080fd5b506103866104ff3660046127bf565b610be9565b34801561051057600080fd5b506102f961051f36600461282c565b610c1f565b34801561053057600080fd5b5061033161053f36600461285a565b610c95565b34801561055057600080fd5b50600d54610420906001600160a01b031681565b34801561057057600080fd5b50600d5461038690600160a81b900460ff1681565b34801561059157600080fd5b506103866105a0366004612886565b6001600160a01b031660009081526005602052604090205460ff1690565b3480156105ca57600080fd5b50601a54601b546105d9919082565b6040805192835260208301919091520161033b565b3480156105fa57600080fd5b50610331600f5481565b34801561061057600080fd5b5061033161061f366004612886565b610d22565b34801561063057600080fd5b506102f9610d44565b34801561064557600080fd5b506102f9610654366004612713565b610db8565b34801561066557600080fd5b50601254610420906001600160a01b031681565b34801561068557600080fd5b506102f961069436600461282c565b610dee565b3480156106a557600080fd5b50601454610420906001600160a01b031681565b3480156106c557600080fd5b506102f96106d436600461290e565b610e2c565b3480156106e557600080fd5b506103316106f436600461282c565b610e64565b34801561070557600080fd5b506102f961071436600461282c565b610ff5565b34801561072557600080fd5b506000546001600160a01b0316610420565b34801561074357600080fd5b50601354610420906001600160a01b031681565b34801561076357600080fd5b5061033160115481565b34801561077957600080fd5b50610359611024565b34801561078e57600080fd5b506102f961079d36600461290e565b611033565b3480156107ae57600080fd5b506103866107bd3660046127bf565b611068565b3480156107ce57600080fd5b506103866107dd3660046127bf565b6110b7565b3480156107ee57600080fd5b506102f96107fd366004612713565b6110c4565b34801561080e57600080fd5b506102f96110fa565b34801561082357600080fd5b506102f96108323660046129ad565b611318565b34801561084357600080fd5b5061033160105481565b34801561085957600080fd5b506102f96108683660046129c8565b61139a565b34801561087957600080fd5b506102f9610888366004612a01565b6113f2565b34801561089957600080fd5b506102f96108a8366004612a3c565b611436565b3480156108b957600080fd5b506103316108c83660046129c8565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b3480156108ff57600080fd5b5061038661090e366004612886565b6001600160a01b031660009081526004602052604090205460ff1690565b34801561093857600080fd5b506102f9610947366004612aa8565b611589565b34801561095857600080fd5b506102f9610967366004612886565b611617565b34801561097857600080fd5b506102f961098736600461282c565b611701565b6000546001600160a01b031633146109bf5760405162461bcd60e51b81526004016109b690612aca565b60405180910390fd5b6109cb8282600061173f565b5050565b6000546001600160a01b031633146109f95760405162461bcd60e51b81526004016109b690612aca565b6109cb828260016117af565b6060600a8054610a1490612aff565b80601f0160208091040260200160405190810160405280929190818152602001828054610a4090612aff565b8015610a8d5780601f10610a6257610100808354040283529160200191610a8d565b820191906000526020600020905b815481529060010190602001808311610a7057829003601f168201915b5050505050905090565b6000610aa4338484611819565b5060015b92915050565b6000610abb84848461193d565b610b0d8433610b0885604051806060016040528060288152602001612d7b602891396001600160a01b038a1660009081526003602090815260408083203384529091529020549190611e4b565b611819565b5060019392505050565b6000546001600160a01b03163314610b415760405162461bcd60e51b81526004016109b690612aca565b610b4f81633b9aca00612b50565b600f5550565b6000600854821115610bbc5760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b60648201526084016109b6565b6000610bc6611e85565b9050610bd28382611ea8565b9392505050565b6000610be430610d22565b905090565b3360008181526003602090815260408083206001600160a01b03871684529091528120549091610aa4918590610b089086611eea565b336000610c2b83611f49565b505050506001600160a01b038416600090815260016020526040902054919250610c5791905082611f98565b6001600160a01b038316600090815260016020526040902055600854610c7d9082611f98565b600855600954610c8d9084611eea565b600955505050565b6000600754831115610ce95760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c790060448201526064016109b6565b81610d08576000610cf984611f49565b50939550610aa8945050505050565b6000610d1384611f49565b50929550610aa8945050505050565b6001600160a01b038116600090815260016020526040812054610aa890610b55565b6000546001600160a01b03163314610d6e5760405162461bcd60e51b81526004016109b690612aca565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b03163314610de25760405162461bcd60e51b81526004016109b690612aca565b6109cb8282600161173f565b6000546001600160a01b03163314610e185760405162461bcd60e51b81526004016109b690612aca565b610e2681633b9aca00612b50565b60105550565b6000546001600160a01b03163314610e565760405162461bcd60e51b81526004016109b690612aca565b610e61816001611fda565b50565b604080516002808252606082018352600092839291906020830190803683370190505090503081600081518110610e9d57610e9d612b6f565b60200260200101906001600160a01b031690816001600160a01b031681525050600c60029054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610f10573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f349190612b85565b81600181518110610f4757610f47612b6f565b6001600160a01b039283166020918202929092010152600c5460405163d06ca61f60e01b8152620100009091049091169063d06ca61f90610f8e9086908590600401612be6565b600060405180830381865afa158015610fab573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610fd39190810190612c07565b600181518110610fe557610fe5612b6f565b6020026020010151915050919050565b6000546001600160a01b0316331461101f5760405162461bcd60e51b81526004016109b690612aca565b601155565b6060600b8054610a1490612aff565b6000546001600160a01b0316331461105d5760405162461bcd60e51b81526004016109b690612aca565b610e61816000611fda565b6000610aa43384610b0885604051806060016040528060258152602001612da3602591393360009081526003602090815260408083206001600160a01b038d1684529091529020549190611e4b565b6000610aa433848461193d565b6000546001600160a01b031633146110ee5760405162461bcd60e51b81526004016109b690612aca565b6109cb828260006117af565b6000546001600160a01b031633146111245760405162461bcd60e51b81526004016109b690612aca565b600d546001600160a01b0316156111885760405162461bcd60e51b815260206004820152602260248201527f556e69737761705632506169722068617320616c7265616479206265656e2073604482015261195d60f21b60648201526084016109b6565b600c60029054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156111db573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111ff9190612b85565b6001600160a01b031663c9c6539630600c60029054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611261573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112859190612b85565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156112d2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112f69190612b85565b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146113425760405162461bcd60e51b81526004016109b690612aca565b600d8054821515600160a81b0260ff60a81b199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599061138f90831515815260200190565b60405180910390a150565b6000546001600160a01b031633146113c45760405162461bcd60e51b81526004016109b690612aca565b601280546001600160a01b039384166001600160a01b03199182161790915560138054929093169116179055565b6000546001600160a01b0316331461141c5760405162461bcd60e51b81526004016109b690612aca565b601594909455601692909255601891909155601755601955565b3360009081526005602052604081205460ff166114ab5760405162461bcd60e51b815260206004820152602d60248201527f41697264726f702063616e206f6e6c7920626520646f6e65206279206578636c60448201526c756465642066726f6d2066656560981b60648201526084016109b6565b83821461150d5760405162461bcd60e51b815260206004820152602a60248201527f486f6c6465727320616e6420616d6f756e74206c656e677468206d757374206260448201526965207468652073616d6560b01b60648201526084016109b6565b83811015611582576115703386868481811061152b5761152b612b6f565b90506020020160208101906115409190612886565b85858581811061155257611552612b6f565b90506020020135633b9aca006115689190612b50565b60008061206b565b61157b600182612c8d565b905061150d565b5050505050565b6000546001600160a01b031633146115b35760405162461bcd60e51b81526004016109b690612aca565b6115bd8282611eea565b60641461160c5760405162461bcd60e51b815260206004820152601d60248201527f4665652070657263656e74616765206d75737420657175616c2031303000000060448201526064016109b6565b601a91909155601b55565b6000546001600160a01b031633146116415760405162461bcd60e51b81526004016109b690612aca565b6001600160a01b0381166116a65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109b6565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b0316331461172b5760405162461bcd60e51b81526004016109b690612aca565b61173981633b9aca00612b50565b600e5550565b60005b828110156117a957600084848381811061175e5761175e612b6f565b90506020020160208101906117739190612886565b6001600160a01b03166000908152600560205260409020805460ff191684151517905550806117a181612ca5565b915050611742565b50505050565b60005b828110156117a95760008484838181106117ce576117ce612b6f565b90506020020160208101906117e39190612886565b6001600160a01b03166000908152600660205260409020805460ff1916841515179055508061181181612ca5565b9150506117b2565b6001600160a01b03831661187b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016109b6565b6001600160a01b0382166118dc5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016109b6565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166119a15760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016109b6565b6001600160a01b038216611a035760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016109b6565b60008111611a655760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016109b6565b600d546001600160a01b0316611abd5760405162461bcd60e51b815260206004820152601e60248201527f556e697377617056325061697220686173206e6f74206265656e20736574000060448201526064016109b6565b6001600160a01b038316600090815260056020526040812054819060ff16158015611b0157506001600160a01b03841660009081526005602052604090205460ff16155b8015611b1b57506000546001600160a01b03868116911614155b8015611b3557506000546001600160a01b03858116911614155b90506000611b4c84611b4687610d22565b90611eea565b9050611b606000546001600160a01b031690565b6001600160a01b0316866001600160a01b031614158015611b8f57506000546001600160a01b03868116911614155b8015611ba957506014546001600160a01b03868116911614155b15611c54576001600160a01b03861660009081526004602052604090205460ff16158015611bf057506001600160a01b03851660009081526004602052604090205460ff16155b611c545760405162461bcd60e51b815260206004820152602f60248201527f626f747320617265206e6f7420616c6c6f77656420746f2073656c6c206f722060448201526e7472616e7366657220746f6b656e7360881b60648201526084016109b6565b600d546001600160a01b0387811691161480611c8857506001600160a01b03861660009081526006602052604090205460ff165b15611d1257600e54841115611cf05760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b60648201526084016109b6565b600f54811115611d125760405162461bcd60e51b81526004016109b690612cc0565b600d546001600160a01b03878116911614801590611d3d5750600d546001600160a01b038681169116145b80611d8457506001600160a01b03861660009081526006602052604090205460ff16158015611d8457506001600160a01b03851660009081526006602052604090205460ff165b15611d955760019250611d9561209f565b600d546001600160a01b03878116911614801590611dc15750600d546001600160a01b03868116911614155b8015611de657506001600160a01b03861660009081526006602052604090205460ff16155b8015611e0b57506001600160a01b03851660009081526006602052604090205460ff16155b15611e365760009150600f54811115611e365760405162461bcd60e51b81526004016109b690612cc0565b611e43868686858761206b565b505050505050565b60008184841115611e6f5760405162461bcd60e51b81526004016109b69190612755565b506000611e7c8486612d05565b95945050505050565b6000806000611e926120eb565b9092509050611ea18282611ea8565b9250505090565b6000610bd283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612120565b600080611ef78385612c8d565b905083811015610bd25760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016109b6565b6000806000806000806000806000611f608a61214e565b9250925092506000806000611f7e8d8686611f79611e85565b612190565b919f909e50909c50959a5093985091965092945050505050565b6000610bd283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611e4b565b60005b8251811015612066576000838281518110611ffa57611ffa612b6f565b602002602001015190508215612032576001600160a01b0381166000908152600460205260409020805460ff19166001179055612053565b6001600160a01b0381166000908152600460205260409020805460ff191690555b508061205e81612ca5565b915050611fdd565b505050565b6014805461ffff60a01b1916600160a01b8415150260ff60a81b191617600160a81b831515021790556115828585856121e0565b60006120aa30610d22565b905060105481101580156120c85750600d54600160a01b900460ff16155b80156120dd5750600d54600160a81b900460ff165b15610e6157610e61816122d7565b60085460075460009182916121008282611ea8565b821015612117576008546007549350935050509091565b90939092509050565b600081836121415760405162461bcd60e51b81526004016109b69190612755565b506000611e7c8486612d1c565b60008060008061215d856123be565b9050600061216a866123ff565b905060006121828261217c8986611f98565b90611f98565b979296509094509092505050565b600080808061219f8886612463565b905060006121ad8887612463565b905060006121bb8888612463565b905060006121cd8261217c8686611f98565b939b939a50919850919650505050505050565b6000806000806000806121f287611f49565b6001600160a01b038f16600090815260016020526040902054959b509399509197509550935091506122249087611f98565b6001600160a01b03808b1660009081526001602052604080822093909355908a16815220546122539086611eea565b6001600160a01b038916600090815260016020526040902055612275816124e2565b61227f848361252c565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516122c491815260200190565b60405180910390a3505050505050505050565b600d805460ff60a01b1916600160a01b1790556122f381612550565b601a5447906000906123139060649061230d908590612463565b90611ea8565b90506000612334606461230d601a600101548661246390919063ffffffff16565b6012546040519192506001600160a01b03169083156108fc029084906000818181858888f1935050505015801561236f573d6000803e3d6000fd5b506013546040516001600160a01b039091169082156108fc029083906000818181858888f193505050501580156123aa573d6000803e3d6000fd5b5050600d805460ff60a01b19169055505050565b6014546000908190600160a01b900460ff16156123f05750601554601454600160a81b900460ff16156123f057506017545b610bd2606461230d8584612463565b6014546000908190600160a01b900460ff16156123f05750601654601454600160a81b900460ff16156123f05750601854600061243b84610e64565b9050601154811061245757601954612454908390611eea565b91505b50610bd2606461230d85845b60008261247257506000610aa8565b600061247e8385612b50565b90508261248b8583612d1c565b14610bd25760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016109b6565b60006124ec611e85565b905060006124fa8383612463565b306000908152600160205260409020549091506125179082611eea565b30600090815260016020526040902055505050565b6008546125399083611f98565b6008556009546125499082611eea565b6009555050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061258557612585612b6f565b60200260200101906001600160a01b031690816001600160a01b031681525050600c60029054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156125f8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061261c9190612b85565b8160018151811061262f5761262f612b6f565b6001600160a01b039283166020918202929092010152600c5461265b9130916201000090041684611819565b600c5460405163791ac94760e01b8152620100009091046001600160a01b03169063791ac94790612699908590600090869030904290600401612d3e565b600060405180830381600087803b1580156126b357600080fd5b505af1158015611e43573d6000803e3d6000fd5b60008083601f8401126126d957600080fd5b50813567ffffffffffffffff8111156126f157600080fd5b6020830191508360208260051b850101111561270c57600080fd5b9250929050565b6000806020838503121561272657600080fd5b823567ffffffffffffffff81111561273d57600080fd5b612749858286016126c7565b90969095509350505050565b600060208083528351808285015260005b8181101561278257858101830151858201604001528201612766565b81811115612794576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114610e6157600080fd5b600080604083850312156127d257600080fd5b82356127dd816127aa565b946020939093013593505050565b60008060006060848603121561280057600080fd5b833561280b816127aa565b9250602084013561281b816127aa565b929592945050506040919091013590565b60006020828403121561283e57600080fd5b5035919050565b8035801515811461285557600080fd5b919050565b6000806040838503121561286d57600080fd5b8235915061287d60208401612845565b90509250929050565b60006020828403121561289857600080fd5b8135610bd2816127aa565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156128e2576128e26128a3565b604052919050565b600067ffffffffffffffff821115612904576129046128a3565b5060051b60200190565b6000602080838503121561292157600080fd5b823567ffffffffffffffff81111561293857600080fd5b8301601f8101851361294957600080fd5b803561295c612957826128ea565b6128b9565b81815260059190911b8201830190838101908783111561297b57600080fd5b928401925b828410156129a2578335612993816127aa565b82529284019290840190612980565b979650505050505050565b6000602082840312156129bf57600080fd5b610bd282612845565b600080604083850312156129db57600080fd5b82356129e6816127aa565b915060208301356129f6816127aa565b809150509250929050565b600080600080600060a08688031215612a1957600080fd5b505083359560208501359550604085013594606081013594506080013592509050565b60008060008060408587031215612a5257600080fd5b843567ffffffffffffffff80821115612a6a57600080fd5b612a76888389016126c7565b90965094506020870135915080821115612a8f57600080fd5b50612a9c878288016126c7565b95989497509550505050565b60008060408385031215612abb57600080fd5b50508035926020909101359150565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680612b1357607f821691505b60208210811415612b3457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615612b6a57612b6a612b3a565b500290565b634e487b7160e01b600052603260045260246000fd5b600060208284031215612b9757600080fd5b8151610bd2816127aa565b600081518084526020808501945080840160005b83811015612bdb5781516001600160a01b031687529582019590820190600101612bb6565b509495945050505050565b828152604060208201526000612bff6040830184612ba2565b949350505050565b60006020808385031215612c1a57600080fd5b825167ffffffffffffffff811115612c3157600080fd5b8301601f81018513612c4257600080fd5b8051612c50612957826128ea565b81815260059190911b82018301908381019087831115612c6f57600080fd5b928401925b828410156129a257835182529284019290840190612c74565b60008219821115612ca057612ca0612b3a565b500190565b6000600019821415612cb957612cb9612b3a565b5060010190565b60208082526025908201527f57616c6c65742063616e6e6f7420657863656564206d61782057616c6c6574206040820152641b1a5b5a5d60da1b606082015260800190565b600082821015612d1757612d17612b3a565b500390565b600082612d3957634e487b7160e01b600052601260045260246000fd5b500490565b85815284602082015260a060408201526000612d5d60a0830186612ba2565b6001600160a01b039490941660608301525060800152939250505056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220a60ccd85d67eee979fe9aa99405063823f31bf018b1d08590d924819224edbd564736f6c634300080c0033

Deployed Bytecode

0x6080604052600436106102cd5760003560e01c806375f0a87411610175578063a9059cbb116100dc578063dc0aa9cf11610095578063e7dad4f91161006f578063e7dad4f9146108f3578063f18dba261461092c578063f2fde38b1461094c578063f34eb0b81461096c57600080fd5b8063dc0aa9cf1461086d578063dcda6af31461088d578063dd62ed3e146108ad57600080fd5b8063a9059cbb146107c2578063ab0d8b85146107e2578063b6a9987214610802578063c49b9a8014610817578063d12a768814610837578063d3f6a1571461084d57600080fd5b80638da5cb5b1161012e5780638da5cb5b146107195780638ea5220f1461073757806391142cb31461075757806395d89b411461076d5780639b0e2e8614610782578063a457c2d7146107a257600080fd5b806375f0a874146106595780637ca2ea441461067957806385141a771461069957806385d4787b146106b9578063870d365d146106d95780638a5c5085146106f957600080fd5b8063313ce567116102345780634a74bb02116101ed5780636c0a24eb116101c75780636c0a24eb146105ee57806370a0823114610604578063715018a61461062457806371b9189c1461063957600080fd5b80634a74bb02146105645780635342acb4146105855780635ee58efc146105be57600080fd5b8063313ce567146104ad578063317d9453146104cf57806339509351146104e45780633bd5d173146105045780634549b0391461052457806349bd5a5e1461054457600080fd5b806313114a9d1161028657806313114a9d146103e55780631694505e146103fa57806318160ddd1461043857806323b872dd1461044d57806327a14fc21461046d5780632d8381191461048d57600080fd5b8063024022f7146102d9578063035ae135146102fb5780630492f0551461031b57806306fdde0314610344578063095ea7b3146103665780630ddc09761461039657600080fd5b366102d457005b600080fd5b3480156102e557600080fd5b506102f96102f4366004612713565b61098c565b005b34801561030757600080fd5b506102f9610316366004612713565b6109cf565b34801561032757600080fd5b50610331600e5481565b6040519081526020015b60405180910390f35b34801561035057600080fd5b50610359610a05565b60405161033b9190612755565b34801561037257600080fd5b506103866103813660046127bf565b610a97565b604051901515815260200161033b565b3480156103a257600080fd5b506015546016546017546018546019546103bd949392919085565b604080519586526020860194909452928401919091526060830152608082015260a00161033b565b3480156103f157600080fd5b50600954610331565b34801561040657600080fd5b50600c54610420906201000090046001600160a01b031681565b6040516001600160a01b03909116815260200161033b565b34801561044457600080fd5b50600754610331565b34801561045957600080fd5b506103866104683660046127eb565b610aae565b34801561047957600080fd5b506102f961048836600461282c565b610b17565b34801561049957600080fd5b506103316104a836600461282c565b610b55565b3480156104b957600080fd5b50600c5460405160ff909116815260200161033b565b3480156104db57600080fd5b50610331610bd9565b3480156104f057600080fd5b506103866104ff3660046127bf565b610be9565b34801561051057600080fd5b506102f961051f36600461282c565b610c1f565b34801561053057600080fd5b5061033161053f36600461285a565b610c95565b34801561055057600080fd5b50600d54610420906001600160a01b031681565b34801561057057600080fd5b50600d5461038690600160a81b900460ff1681565b34801561059157600080fd5b506103866105a0366004612886565b6001600160a01b031660009081526005602052604090205460ff1690565b3480156105ca57600080fd5b50601a54601b546105d9919082565b6040805192835260208301919091520161033b565b3480156105fa57600080fd5b50610331600f5481565b34801561061057600080fd5b5061033161061f366004612886565b610d22565b34801561063057600080fd5b506102f9610d44565b34801561064557600080fd5b506102f9610654366004612713565b610db8565b34801561066557600080fd5b50601254610420906001600160a01b031681565b34801561068557600080fd5b506102f961069436600461282c565b610dee565b3480156106a557600080fd5b50601454610420906001600160a01b031681565b3480156106c557600080fd5b506102f96106d436600461290e565b610e2c565b3480156106e557600080fd5b506103316106f436600461282c565b610e64565b34801561070557600080fd5b506102f961071436600461282c565b610ff5565b34801561072557600080fd5b506000546001600160a01b0316610420565b34801561074357600080fd5b50601354610420906001600160a01b031681565b34801561076357600080fd5b5061033160115481565b34801561077957600080fd5b50610359611024565b34801561078e57600080fd5b506102f961079d36600461290e565b611033565b3480156107ae57600080fd5b506103866107bd3660046127bf565b611068565b3480156107ce57600080fd5b506103866107dd3660046127bf565b6110b7565b3480156107ee57600080fd5b506102f96107fd366004612713565b6110c4565b34801561080e57600080fd5b506102f96110fa565b34801561082357600080fd5b506102f96108323660046129ad565b611318565b34801561084357600080fd5b5061033160105481565b34801561085957600080fd5b506102f96108683660046129c8565b61139a565b34801561087957600080fd5b506102f9610888366004612a01565b6113f2565b34801561089957600080fd5b506102f96108a8366004612a3c565b611436565b3480156108b957600080fd5b506103316108c83660046129c8565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b3480156108ff57600080fd5b5061038661090e366004612886565b6001600160a01b031660009081526004602052604090205460ff1690565b34801561093857600080fd5b506102f9610947366004612aa8565b611589565b34801561095857600080fd5b506102f9610967366004612886565b611617565b34801561097857600080fd5b506102f961098736600461282c565b611701565b6000546001600160a01b031633146109bf5760405162461bcd60e51b81526004016109b690612aca565b60405180910390fd5b6109cb8282600061173f565b5050565b6000546001600160a01b031633146109f95760405162461bcd60e51b81526004016109b690612aca565b6109cb828260016117af565b6060600a8054610a1490612aff565b80601f0160208091040260200160405190810160405280929190818152602001828054610a4090612aff565b8015610a8d5780601f10610a6257610100808354040283529160200191610a8d565b820191906000526020600020905b815481529060010190602001808311610a7057829003601f168201915b5050505050905090565b6000610aa4338484611819565b5060015b92915050565b6000610abb84848461193d565b610b0d8433610b0885604051806060016040528060288152602001612d7b602891396001600160a01b038a1660009081526003602090815260408083203384529091529020549190611e4b565b611819565b5060019392505050565b6000546001600160a01b03163314610b415760405162461bcd60e51b81526004016109b690612aca565b610b4f81633b9aca00612b50565b600f5550565b6000600854821115610bbc5760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b60648201526084016109b6565b6000610bc6611e85565b9050610bd28382611ea8565b9392505050565b6000610be430610d22565b905090565b3360008181526003602090815260408083206001600160a01b03871684529091528120549091610aa4918590610b089086611eea565b336000610c2b83611f49565b505050506001600160a01b038416600090815260016020526040902054919250610c5791905082611f98565b6001600160a01b038316600090815260016020526040902055600854610c7d9082611f98565b600855600954610c8d9084611eea565b600955505050565b6000600754831115610ce95760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c790060448201526064016109b6565b81610d08576000610cf984611f49565b50939550610aa8945050505050565b6000610d1384611f49565b50929550610aa8945050505050565b6001600160a01b038116600090815260016020526040812054610aa890610b55565b6000546001600160a01b03163314610d6e5760405162461bcd60e51b81526004016109b690612aca565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b03163314610de25760405162461bcd60e51b81526004016109b690612aca565b6109cb8282600161173f565b6000546001600160a01b03163314610e185760405162461bcd60e51b81526004016109b690612aca565b610e2681633b9aca00612b50565b60105550565b6000546001600160a01b03163314610e565760405162461bcd60e51b81526004016109b690612aca565b610e61816001611fda565b50565b604080516002808252606082018352600092839291906020830190803683370190505090503081600081518110610e9d57610e9d612b6f565b60200260200101906001600160a01b031690816001600160a01b031681525050600c60029054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610f10573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f349190612b85565b81600181518110610f4757610f47612b6f565b6001600160a01b039283166020918202929092010152600c5460405163d06ca61f60e01b8152620100009091049091169063d06ca61f90610f8e9086908590600401612be6565b600060405180830381865afa158015610fab573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610fd39190810190612c07565b600181518110610fe557610fe5612b6f565b6020026020010151915050919050565b6000546001600160a01b0316331461101f5760405162461bcd60e51b81526004016109b690612aca565b601155565b6060600b8054610a1490612aff565b6000546001600160a01b0316331461105d5760405162461bcd60e51b81526004016109b690612aca565b610e61816000611fda565b6000610aa43384610b0885604051806060016040528060258152602001612da3602591393360009081526003602090815260408083206001600160a01b038d1684529091529020549190611e4b565b6000610aa433848461193d565b6000546001600160a01b031633146110ee5760405162461bcd60e51b81526004016109b690612aca565b6109cb828260006117af565b6000546001600160a01b031633146111245760405162461bcd60e51b81526004016109b690612aca565b600d546001600160a01b0316156111885760405162461bcd60e51b815260206004820152602260248201527f556e69737761705632506169722068617320616c7265616479206265656e2073604482015261195d60f21b60648201526084016109b6565b600c60029054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156111db573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111ff9190612b85565b6001600160a01b031663c9c6539630600c60029054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611261573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112859190612b85565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156112d2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112f69190612b85565b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146113425760405162461bcd60e51b81526004016109b690612aca565b600d8054821515600160a81b0260ff60a81b199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599061138f90831515815260200190565b60405180910390a150565b6000546001600160a01b031633146113c45760405162461bcd60e51b81526004016109b690612aca565b601280546001600160a01b039384166001600160a01b03199182161790915560138054929093169116179055565b6000546001600160a01b0316331461141c5760405162461bcd60e51b81526004016109b690612aca565b601594909455601692909255601891909155601755601955565b3360009081526005602052604081205460ff166114ab5760405162461bcd60e51b815260206004820152602d60248201527f41697264726f702063616e206f6e6c7920626520646f6e65206279206578636c60448201526c756465642066726f6d2066656560981b60648201526084016109b6565b83821461150d5760405162461bcd60e51b815260206004820152602a60248201527f486f6c6465727320616e6420616d6f756e74206c656e677468206d757374206260448201526965207468652073616d6560b01b60648201526084016109b6565b83811015611582576115703386868481811061152b5761152b612b6f565b90506020020160208101906115409190612886565b85858581811061155257611552612b6f565b90506020020135633b9aca006115689190612b50565b60008061206b565b61157b600182612c8d565b905061150d565b5050505050565b6000546001600160a01b031633146115b35760405162461bcd60e51b81526004016109b690612aca565b6115bd8282611eea565b60641461160c5760405162461bcd60e51b815260206004820152601d60248201527f4665652070657263656e74616765206d75737420657175616c2031303000000060448201526064016109b6565b601a91909155601b55565b6000546001600160a01b031633146116415760405162461bcd60e51b81526004016109b690612aca565b6001600160a01b0381166116a65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109b6565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b0316331461172b5760405162461bcd60e51b81526004016109b690612aca565b61173981633b9aca00612b50565b600e5550565b60005b828110156117a957600084848381811061175e5761175e612b6f565b90506020020160208101906117739190612886565b6001600160a01b03166000908152600560205260409020805460ff191684151517905550806117a181612ca5565b915050611742565b50505050565b60005b828110156117a95760008484838181106117ce576117ce612b6f565b90506020020160208101906117e39190612886565b6001600160a01b03166000908152600660205260409020805460ff1916841515179055508061181181612ca5565b9150506117b2565b6001600160a01b03831661187b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016109b6565b6001600160a01b0382166118dc5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016109b6565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166119a15760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016109b6565b6001600160a01b038216611a035760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016109b6565b60008111611a655760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016109b6565b600d546001600160a01b0316611abd5760405162461bcd60e51b815260206004820152601e60248201527f556e697377617056325061697220686173206e6f74206265656e20736574000060448201526064016109b6565b6001600160a01b038316600090815260056020526040812054819060ff16158015611b0157506001600160a01b03841660009081526005602052604090205460ff16155b8015611b1b57506000546001600160a01b03868116911614155b8015611b3557506000546001600160a01b03858116911614155b90506000611b4c84611b4687610d22565b90611eea565b9050611b606000546001600160a01b031690565b6001600160a01b0316866001600160a01b031614158015611b8f57506000546001600160a01b03868116911614155b8015611ba957506014546001600160a01b03868116911614155b15611c54576001600160a01b03861660009081526004602052604090205460ff16158015611bf057506001600160a01b03851660009081526004602052604090205460ff16155b611c545760405162461bcd60e51b815260206004820152602f60248201527f626f747320617265206e6f7420616c6c6f77656420746f2073656c6c206f722060448201526e7472616e7366657220746f6b656e7360881b60648201526084016109b6565b600d546001600160a01b0387811691161480611c8857506001600160a01b03861660009081526006602052604090205460ff165b15611d1257600e54841115611cf05760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b60648201526084016109b6565b600f54811115611d125760405162461bcd60e51b81526004016109b690612cc0565b600d546001600160a01b03878116911614801590611d3d5750600d546001600160a01b038681169116145b80611d8457506001600160a01b03861660009081526006602052604090205460ff16158015611d8457506001600160a01b03851660009081526006602052604090205460ff165b15611d955760019250611d9561209f565b600d546001600160a01b03878116911614801590611dc15750600d546001600160a01b03868116911614155b8015611de657506001600160a01b03861660009081526006602052604090205460ff16155b8015611e0b57506001600160a01b03851660009081526006602052604090205460ff16155b15611e365760009150600f54811115611e365760405162461bcd60e51b81526004016109b690612cc0565b611e43868686858761206b565b505050505050565b60008184841115611e6f5760405162461bcd60e51b81526004016109b69190612755565b506000611e7c8486612d05565b95945050505050565b6000806000611e926120eb565b9092509050611ea18282611ea8565b9250505090565b6000610bd283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612120565b600080611ef78385612c8d565b905083811015610bd25760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016109b6565b6000806000806000806000806000611f608a61214e565b9250925092506000806000611f7e8d8686611f79611e85565b612190565b919f909e50909c50959a5093985091965092945050505050565b6000610bd283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611e4b565b60005b8251811015612066576000838281518110611ffa57611ffa612b6f565b602002602001015190508215612032576001600160a01b0381166000908152600460205260409020805460ff19166001179055612053565b6001600160a01b0381166000908152600460205260409020805460ff191690555b508061205e81612ca5565b915050611fdd565b505050565b6014805461ffff60a01b1916600160a01b8415150260ff60a81b191617600160a81b831515021790556115828585856121e0565b60006120aa30610d22565b905060105481101580156120c85750600d54600160a01b900460ff16155b80156120dd5750600d54600160a81b900460ff165b15610e6157610e61816122d7565b60085460075460009182916121008282611ea8565b821015612117576008546007549350935050509091565b90939092509050565b600081836121415760405162461bcd60e51b81526004016109b69190612755565b506000611e7c8486612d1c565b60008060008061215d856123be565b9050600061216a866123ff565b905060006121828261217c8986611f98565b90611f98565b979296509094509092505050565b600080808061219f8886612463565b905060006121ad8887612463565b905060006121bb8888612463565b905060006121cd8261217c8686611f98565b939b939a50919850919650505050505050565b6000806000806000806121f287611f49565b6001600160a01b038f16600090815260016020526040902054959b509399509197509550935091506122249087611f98565b6001600160a01b03808b1660009081526001602052604080822093909355908a16815220546122539086611eea565b6001600160a01b038916600090815260016020526040902055612275816124e2565b61227f848361252c565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516122c491815260200190565b60405180910390a3505050505050505050565b600d805460ff60a01b1916600160a01b1790556122f381612550565b601a5447906000906123139060649061230d908590612463565b90611ea8565b90506000612334606461230d601a600101548661246390919063ffffffff16565b6012546040519192506001600160a01b03169083156108fc029084906000818181858888f1935050505015801561236f573d6000803e3d6000fd5b506013546040516001600160a01b039091169082156108fc029083906000818181858888f193505050501580156123aa573d6000803e3d6000fd5b5050600d805460ff60a01b19169055505050565b6014546000908190600160a01b900460ff16156123f05750601554601454600160a81b900460ff16156123f057506017545b610bd2606461230d8584612463565b6014546000908190600160a01b900460ff16156123f05750601654601454600160a81b900460ff16156123f05750601854600061243b84610e64565b9050601154811061245757601954612454908390611eea565b91505b50610bd2606461230d85845b60008261247257506000610aa8565b600061247e8385612b50565b90508261248b8583612d1c565b14610bd25760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016109b6565b60006124ec611e85565b905060006124fa8383612463565b306000908152600160205260409020549091506125179082611eea565b30600090815260016020526040902055505050565b6008546125399083611f98565b6008556009546125499082611eea565b6009555050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061258557612585612b6f565b60200260200101906001600160a01b031690816001600160a01b031681525050600c60029054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156125f8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061261c9190612b85565b8160018151811061262f5761262f612b6f565b6001600160a01b039283166020918202929092010152600c5461265b9130916201000090041684611819565b600c5460405163791ac94760e01b8152620100009091046001600160a01b03169063791ac94790612699908590600090869030904290600401612d3e565b600060405180830381600087803b1580156126b357600080fd5b505af1158015611e43573d6000803e3d6000fd5b60008083601f8401126126d957600080fd5b50813567ffffffffffffffff8111156126f157600080fd5b6020830191508360208260051b850101111561270c57600080fd5b9250929050565b6000806020838503121561272657600080fd5b823567ffffffffffffffff81111561273d57600080fd5b612749858286016126c7565b90969095509350505050565b600060208083528351808285015260005b8181101561278257858101830151858201604001528201612766565b81811115612794576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114610e6157600080fd5b600080604083850312156127d257600080fd5b82356127dd816127aa565b946020939093013593505050565b60008060006060848603121561280057600080fd5b833561280b816127aa565b9250602084013561281b816127aa565b929592945050506040919091013590565b60006020828403121561283e57600080fd5b5035919050565b8035801515811461285557600080fd5b919050565b6000806040838503121561286d57600080fd5b8235915061287d60208401612845565b90509250929050565b60006020828403121561289857600080fd5b8135610bd2816127aa565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156128e2576128e26128a3565b604052919050565b600067ffffffffffffffff821115612904576129046128a3565b5060051b60200190565b6000602080838503121561292157600080fd5b823567ffffffffffffffff81111561293857600080fd5b8301601f8101851361294957600080fd5b803561295c612957826128ea565b6128b9565b81815260059190911b8201830190838101908783111561297b57600080fd5b928401925b828410156129a2578335612993816127aa565b82529284019290840190612980565b979650505050505050565b6000602082840312156129bf57600080fd5b610bd282612845565b600080604083850312156129db57600080fd5b82356129e6816127aa565b915060208301356129f6816127aa565b809150509250929050565b600080600080600060a08688031215612a1957600080fd5b505083359560208501359550604085013594606081013594506080013592509050565b60008060008060408587031215612a5257600080fd5b843567ffffffffffffffff80821115612a6a57600080fd5b612a76888389016126c7565b90965094506020870135915080821115612a8f57600080fd5b50612a9c878288016126c7565b95989497509550505050565b60008060408385031215612abb57600080fd5b50508035926020909101359150565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680612b1357607f821691505b60208210811415612b3457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615612b6a57612b6a612b3a565b500290565b634e487b7160e01b600052603260045260246000fd5b600060208284031215612b9757600080fd5b8151610bd2816127aa565b600081518084526020808501945080840160005b83811015612bdb5781516001600160a01b031687529582019590820190600101612bb6565b509495945050505050565b828152604060208201526000612bff6040830184612ba2565b949350505050565b60006020808385031215612c1a57600080fd5b825167ffffffffffffffff811115612c3157600080fd5b8301601f81018513612c4257600080fd5b8051612c50612957826128ea565b81815260059190911b82018301908381019087831115612c6f57600080fd5b928401925b828410156129a257835182529284019290840190612c74565b60008219821115612ca057612ca0612b3a565b500190565b6000600019821415612cb957612cb9612b3a565b5060010190565b60208082526025908201527f57616c6c65742063616e6e6f7420657863656564206d61782057616c6c6574206040820152641b1a5b5a5d60da1b606082015260800190565b600082821015612d1757612d17612b3a565b500390565b600082612d3957634e487b7160e01b600052601260045260246000fd5b500490565b85815284602082015260a060408201526000612d5d60a0830186612ba2565b6001600160a01b039490941660608301525060800152939250505056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220a60ccd85d67eee979fe9aa99405063823f31bf018b1d08590d924819224edbd564736f6c634300080c0033

Deployed Bytecode Sourcemap

17393:17712:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23596:118;;;;;;;;;;-1:-1:-1;23596:118:0;;;;;:::i;:::-;;:::i;:::-;;23722:121;;;;;;;;;;-1:-1:-1;23722:121:0;;;;;:::i;:::-;;:::i;18759:50::-;;;;;;;;;;;;;;;;;;;974:25:1;;;962:2;947:18;18759:50:0;;;;;;;;20001:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;20853:161::-;;;;;;;;;;-1:-1:-1;20853:161:0;;;;;:::i;:::-;;:::i;:::-;;;2233:14:1;;2226:22;2208:41;;2196:2;2181:18;20853:161:0;2068:187:1;19619:22:0;;;;;;;;;;-1:-1:-1;19619:22:0;;;;;;;;;;;;;;;;;;;;;;2519:25:1;;;2575:2;2560:18;;2553:34;;;;2603:18;;;2596:34;;;;2661:2;2646:18;;2639:34;2704:3;2689:19;;2682:35;2506:3;2491:19;19619:22:0;2260:463:1;21846:87:0;;;;;;;;;;-1:-1:-1;21915:10:0;;21846:87;;18523:106;;;;;;;;;;-1:-1:-1;18523:106:0;;;;;;;-1:-1:-1;;;;;18523:106:0;;;;;;-1:-1:-1;;;;;2918:32:1;;;2900:51;;2888:2;2873:18;18523:106:0;2728:229:1;20278:95:0;;;;;;;;;;-1:-1:-1;20358:7:0;;20278:95;;21022:313;;;;;;;;;;-1:-1:-1;21022:313:0;;;;;:::i;:::-;;:::i;24982:135::-;;;;;;;;;;-1:-1:-1;24982:135:0;;;;;:::i;:::-;;:::i;23208:253::-;;;;;;;;;;-1:-1:-1;23208:253:0;;;;;:::i;:::-;;:::i;20187:83::-;;;;;;;;;;-1:-1:-1;20253:9:0;;20187:83;;20253:9;;;;3750:36:1;;3738:2;3723:18;20187:83:0;3608:184:1;27021:115:0;;;;;;;;;;;;;:::i;21343:218::-;;;;;;;;;;-1:-1:-1;21343:218:0;;;;;:::i;:::-;;:::i;22467:289::-;;;;;;;;;;-1:-1:-1;22467:289:0;;;;;:::i;:::-;;:::i;22764:436::-;;;;;;;;;;-1:-1:-1;22764:436:0;;;;;:::i;:::-;;:::i;18636:41::-;;;;;;;;;;-1:-1:-1;18636:41:0;;;;-1:-1:-1;;;;;18636:41:0;;;18712:40;;;;;;;;;;-1:-1:-1;18712:40:0;;;;-1:-1:-1;;;18712:40:0;;;;;;30659:123;;;;;;;;;;-1:-1:-1;30659:123:0;;;;;:::i;:::-;-1:-1:-1;;;;;30747:27:0;30723:4;30747:27;;;:18;:27;;;;;;;;;30659:123;19648:32;;;;;;;;;;-1:-1:-1;19648:32:0;;;;;;;;;;;;;4849:25:1;;;4905:2;4890:18;;4883:34;;;;4822:18;19648:32:0;4675:248:1;18816:53:0;;;;;;;;;;;;;;;;20381:138;;;;;;;;;;-1:-1:-1;20381:138:0;;;;;:::i;:::-;;:::i;16235:148::-;;;;;;;;;;;;;:::i;23469:119::-;;;;;;;;;;-1:-1:-1;23469:119:0;;;;;:::i;:::-;;:::i;19011:75::-;;;;;;;;;;-1:-1:-1;19011:75:0;;;;-1:-1:-1;;;;;19011:75:0;;;25912:176;;;;;;;;;;-1:-1:-1;25912:176:0;;;;;:::i;:::-;;:::i;19169:70::-;;;;;;;;;;-1:-1:-1;19169:70:0;;;;-1:-1:-1;;;;;19169:70:0;;;26392:128;;;;;;;;;;-1:-1:-1;26392:128:0;;;;;:::i;:::-;;:::i;30381:272::-;;;;;;;;;;-1:-1:-1;30381:272:0;;;;;:::i;:::-;;:::i;23984:108::-;;;;;;;;;;-1:-1:-1;23984:108:0;;;;;:::i;:::-;;:::i;15599:79::-;;;;;;;;;;-1:-1:-1;15637:7:0;15664:6;-1:-1:-1;;;;;15664:6:0;15599:79;;19093:69;;;;;;;;;;-1:-1:-1;19093:69:0;;;;-1:-1:-1;;;;;19093:69:0;;;18948:47;;;;;;;;;;;;;;;;20092:87;;;;;;;;;;;;;:::i;26528:131::-;;;;;;;;;;-1:-1:-1;26528:131:0;;;;;:::i;:::-;;:::i;21569:269::-;;;;;;;;;;-1:-1:-1;21569:269:0;;;;;:::i;:::-;;:::i;20527:167::-;;;;;;;;;;-1:-1:-1;20527:167:0;;;;;:::i;:::-;;:::i;23851:125::-;;;;;;;;;;-1:-1:-1;23851:125:0;;;;;:::i;:::-;;:::i;24098:256::-;;;;;;;;;;;;;:::i;27147:171::-;;;;;;;;;;-1:-1:-1;27147:171:0;;;;;:::i;:::-;;:::i;18876:65::-;;;;;;;;;;;;;;;;26096:171;;;;;;;;;;-1:-1:-1;26096:171:0;;;;;:::i;:::-;;:::i;25123:429::-;;;;;;;;;;-1:-1:-1;25123:429:0;;;;;:::i;:::-;;:::i;21941:518::-;;;;;;;;;;-1:-1:-1;21941:518:0;;;;;:::i;:::-;;:::i;20702:143::-;;;;;;;;;;-1:-1:-1;20702:143:0;;;;;:::i;:::-;-1:-1:-1;;;;;20810:18:0;;;20783:7;20810:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;20702:143;26275:109;;;;;;;;;;-1:-1:-1;26275:109:0;;;;;:::i;:::-;-1:-1:-1;;;;;26360:16:0;26336:4;26360:16;;;:10;:16;;;;;;;;;26275:109;25560:344;;;;;;;;;;-1:-1:-1;25560:344:0;;;;;:::i;:::-;;:::i;16538:244::-;;;;;;;;;;-1:-1:-1;16538:244:0;;;;;:::i;:::-;;:::i;24851:123::-;;;;;;;;;;-1:-1:-1;24851:123:0;;;;;:::i;:::-;;:::i;23596:118::-;15811:6;;-1:-1:-1;;;;;15811:6:0;8171:10;15811:22;15803:67;;;;-1:-1:-1;;;15803:67:0;;;;;;;:::i;:::-;;;;;;;;;23676:30:::1;23689:9;;23700:5;23676:12;:30::i;:::-;23596:118:::0;;:::o;23722:121::-;15811:6;;-1:-1:-1;;;;;15811:6:0;8171:10;15811:22;15803:67;;;;-1:-1:-1;;;15803:67:0;;;;;;;:::i;:::-;23801:34:::1;23819:9;;23830:4;23801:17;:34::i;20001:83::-:0;20038:13;20071:5;20064:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20001:83;:::o;20853:161::-;20928:4;20945:39;8171:10;20968:7;20977:6;20945:8;:39::i;:::-;-1:-1:-1;21002:4:0;20853:161;;;;;:::o;21022:313::-;21120:4;21137:36;21147:6;21155:9;21166:6;21137:9;:36::i;:::-;21184:121;21193:6;8171:10;21215:89;21253:6;21215:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21215:19:0;;;;;;:11;:19;;;;;;;;8171:10;21215:33;;;;;;;;;;:37;:89::i;:::-;21184:8;:121::i;:::-;-1:-1:-1;21323:4:0;21022:313;;;;;:::o;24982:135::-;15811:6;;-1:-1:-1;;;;;15811:6:0;8171:10;15811:22;15803:67;;;;-1:-1:-1;;;15803:67:0;;;;;;;:::i;:::-;25086:23:::1;:15:::0;25104:5:::1;25086:23;:::i;:::-;25067:16;:42:::0;-1:-1:-1;24982:135:0:o;23208:253::-;23274:7;23313;;23302;:18;;23294:73;;;;-1:-1:-1;;;23294:73:0;;9820:2:1;23294:73:0;;;9802:21:1;9859:2;9839:18;;;9832:30;9898:34;9878:18;;;9871:62;-1:-1:-1;;;9949:18:1;;;9942:40;9999:19;;23294:73:0;9618:406:1;23294:73:0;23378:19;23401:10;:8;:10::i;:::-;23378:33;-1:-1:-1;23429:24:0;:7;23378:33;23429:11;:24::i;:::-;23422:31;23208:253;-1:-1:-1;;;23208:253:0:o;27021:115::-;27077:7;27104:24;27122:4;27104:9;:24::i;:::-;27097:31;;27021:115;:::o;21343:218::-;8171:10;21431:4;21480:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;21480:34:0;;;;;;;;;;21431:4;;21448:83;;21471:7;;21480:50;;21519:10;21480:38;:50::i;22467:289::-;8171:10;22519:14;22584:19;22595:7;22584:10;:19::i;:::-;-1:-1:-1;;;;;;;;;22632:15:0;;;;;;:7;:15;;;;;;22559:44;;-1:-1:-1;22632:28:0;;:15;-1:-1:-1;22559:44:0;22632:19;:28::i;:::-;-1:-1:-1;;;;;22614:15:0;;;;;;:7;:15;;;;;:46;22681:7;;:20;;22693:7;22681:11;:20::i;:::-;22671:7;:30;22725:10;;:23;;22740:7;22725:14;:23::i;:::-;22712:10;:36;-1:-1:-1;;;22467:289:0:o;22764:436::-;22854:7;22893;;22882;:18;;22874:62;;;;-1:-1:-1;;;22874:62:0;;10231:2:1;22874:62:0;;;10213:21:1;10270:2;10250:18;;;10243:30;10309:33;10289:18;;;10282:61;10360:18;;22874:62:0;10029:355:1;22874:62:0;22952:17;22947:246;;22987:15;23011:19;23022:7;23011:10;:19::i;:::-;-1:-1:-1;22986:44:0;;-1:-1:-1;23045:14:0;;-1:-1:-1;;;;;23045:14:0;22947:246;23094:23;23125:19;23136:7;23125:10;:19::i;:::-;-1:-1:-1;23092:52:0;;-1:-1:-1;23159:22:0;;-1:-1:-1;;;;;23159:22:0;20381:138;-1:-1:-1;;;;;20494:16:0;;20447:7;20494:16;;;:7;:16;;;;;;20474:37;;:19;:37::i;16235:148::-;15811:6;;-1:-1:-1;;;;;15811:6:0;8171:10;15811:22;15803:67;;;;-1:-1:-1;;;15803:67:0;;;;;;;:::i;:::-;16342:1:::1;16326:6:::0;;16305:40:::1;::::0;-1:-1:-1;;;;;16326:6:0;;::::1;::::0;16305:40:::1;::::0;16342:1;;16305:40:::1;16373:1;16356:19:::0;;-1:-1:-1;;;;;;16356:19:0::1;::::0;;16235:148::o;23469:119::-;15811:6;;-1:-1:-1;;;;;15811:6:0;8171:10;15811:22;15803:67;;;;-1:-1:-1;;;15803:67:0;;;;;;;:::i;:::-;23551:29:::1;23564:9;;23575:4;23551:12;:29::i;25912:176::-:0;15811:6;;-1:-1:-1;;;;;15811:6:0;8171:10;15811:22;15803:67;;;;-1:-1:-1;;;15803:67:0;;;;;;;:::i;:::-;26042:38:::1;:30:::0;26075:5:::1;26042:38;:::i;:::-;26010:29;:70:::0;-1:-1:-1;25912:176:0:o;26392:128::-;15811:6;;-1:-1:-1;;;;;15811:6:0;8171:10;15811:22;15803:67;;;;-1:-1:-1;;;15803:67:0;;;;;;;:::i;:::-;26476:36:::1;26496:9;26507:4;26476:19;:36::i;:::-;26392:128:::0;:::o;30381:272::-;30483:16;;;30497:1;30483:16;;;;;;;;30441:4;;;;30483:16;30497:1;30483:16;;;;;;;;;;-1:-1:-1;30483:16:0;30459:40;;30528:4;30510;30515:1;30510:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;30510:23:0;;;-1:-1:-1;;;;;30510:23:0;;;;;30554:15;;;;;;;;;-1:-1:-1;;;;;30554:15:0;-1:-1:-1;;;;;30554:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;30544:4;30549:1;30544:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;30544:32:0;;;:7;;;;;;;;;:32;30594:15;;:48;;-1:-1:-1;;;30594:48:0;;:15;;;;;;;;:29;;:48;;30624:11;;30637:4;;30594:48;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;30594:48:0;;;;;;;;;;;;:::i;:::-;30643:1;30594:51;;;;;;;;:::i;:::-;;;;;;;30587:58;;;30381:272;;;:::o;23984:108::-;15811:6;;-1:-1:-1;;;;;15811:6:0;8171:10;15811:22;15803:67;;;;-1:-1:-1;;;15803:67:0;;;;;;;:::i;:::-;24060:13:::1;:24:::0;23984:108::o;20092:87::-;20131:13;20164:7;20157:14;;;;;:::i;26528:131::-;15811:6;;-1:-1:-1;;;;;15811:6:0;8171:10;15811:22;15803:67;;;;-1:-1:-1;;;15803:67:0;;;;;;;:::i;:::-;26614:37:::1;26634:9;26645:5;26614:19;:37::i;21569:269::-:0;21662:4;21679:129;8171:10;21702:7;21711:96;21750:15;21711:96;;;;;;;;;;;;;;;;;8171:10;21711:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;21711:34:0;;;;;;;;;;;;:38;:96::i;20527:167::-;20605:4;20622:42;8171:10;20646:9;20657:6;20622:9;:42::i;23851:125::-;15811:6;;-1:-1:-1;;;;;15811:6:0;8171:10;15811:22;15803:67;;;;-1:-1:-1;;;15803:67:0;;;;;;;:::i;:::-;23933:35:::1;23951:9;;23962:5;23933:17;:35::i;24098:256::-:0;15811:6;;-1:-1:-1;;;;;15811:6:0;8171:10;15811:22;15803:67;;;;-1:-1:-1;;;15803:67:0;;;;;;;:::i;:::-;24160:13:::1;::::0;-1:-1:-1;;;;;24160:13:0::1;:27:::0;24152:73:::1;;;::::0;-1:-1:-1;;;24152:73:0;;12668:2:1;24152:73:0::1;::::0;::::1;12650:21:1::0;12707:2;12687:18;;;12680:30;12746:34;12726:18;;;12719:62;-1:-1:-1;;;12797:18:1;;;12790:32;12839:19;;24152:73:0::1;12466:398:1::0;24152:73:0::1;24270:15;;;;;;;;;-1:-1:-1::0;;;;;24270:15:0::1;-1:-1:-1::0;;;;;24270:23:0::1;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;24252:55:0::1;;24316:4;24323:15;;;;;;;;;-1:-1:-1::0;;;;;24323:15:0::1;-1:-1:-1::0;;;;;24323:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;24252:94;::::0;-1:-1:-1;;;;;;24252:94:0::1;::::0;;;;;;-1:-1:-1;;;;;13099:15:1;;;24252:94:0::1;::::0;::::1;13081:34:1::0;13151:15;;13131:18;;;13124:43;13016:18;;24252:94:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;24236:13;:110:::0;;-1:-1:-1;;;;;;24236:110:0::1;-1:-1:-1::0;;;;;24236:110:0;;;::::1;::::0;;;::::1;::::0;;24098:256::o;27147:171::-;15811:6;;-1:-1:-1;;;;;15811:6:0;8171:10;15811:22;15803:67;;;;-1:-1:-1;;;15803:67:0;;;;;;;:::i;:::-;27224:21:::1;:32:::0;;;::::1;;-1:-1:-1::0;;;27224:32:0::1;-1:-1:-1::0;;;;27224:32:0;;::::1;;::::0;;27272:38:::1;::::0;::::1;::::0;::::1;::::0;27248:8;2233:14:1;2226:22;2208:41;;2196:2;2181:18;;2068:187;27272:38:0::1;;;;;;;;27147:171:::0;:::o;26096:::-;15811:6;;-1:-1:-1;;;;;15811:6:0;8171:10;15811:22;15803:67;;;;-1:-1:-1;;;15803:67:0;;;;;;;:::i;:::-;26192:15:::1;:34:::0;;-1:-1:-1;;;;;26192:34:0;;::::1;-1:-1:-1::0;;;;;;26192:34:0;;::::1;;::::0;;;26237:9:::1;:22:::0;;;;;::::1;::::0;::::1;;::::0;;26096:171::o;25123:429::-;15811:6;;-1:-1:-1;;;;;15811:6:0;8171:10;15811:22;15803:67;;;;-1:-1:-1;;;15803:67:0;;;;;;;:::i;:::-;25296:7:::1;:40:::0;;;;25347:23;:38;;;;25396:24;:43;;;;25450:25;:45;25506:20;:38;25123:429::o;21941:518::-;8171:10;22038:16;22077:32;;;:18;:32;;;;;;;;22069:90;;;;-1:-1:-1;;;22069:90:0;;13380:2:1;22069:90:0;;;13362:21:1;13419:2;13399:18;;;13392:30;13458:34;13438:18;;;13431:62;-1:-1:-1;;;13509:18:1;;;13502:43;13562:19;;22069:90:0;13178:409:1;22069:90:0;22178:35;;;22170:90;;;;-1:-1:-1;;;22170:90:0;;13794:2:1;22170:90:0;;;13776:21:1;13833:2;13813:18;;;13806:30;13872:34;13852:18;;;13845:62;-1:-1:-1;;;13923:18:1;;;13916:40;13973:19;;22170:90:0;13592:406:1;22170:90:0;22277:28;;;22271:181;;;22321:91;8171:10;22350;;22361:8;22350:20;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;22372:7;;22380:8;22372:17;;;;;;;:::i;:::-;;;;;;;22392:5;22372:25;;;;:::i;:::-;22399:5;22406;22321:14;:91::i;:::-;22427:13;22439:1;22427:13;;:::i;:::-;;;22271:181;;;22027:432;21941:518;;;;:::o;25560:344::-;15811:6;;-1:-1:-1;;;;;15811:6:0;8171:10;15811:22;15803:67;;;;-1:-1:-1;;;15803:67:0;;;;;;;:::i;:::-;25681:44:::1;:22:::0;25708:16;25681:26:::1;:44::i;:::-;25729:3;25681:51;25673:93;;;::::0;-1:-1:-1;;;25673:93:0;;14338:2:1;25673:93:0::1;::::0;::::1;14320:21:1::0;14377:2;14357:18;;;14350:30;14416:31;14396:18;;;14389:59;14465:18;;25673:93:0::1;14136:353:1::0;25673:93:0::1;25777:12;:60:::0;;;;25848:29;:48;25560:344::o;16538:244::-;15811:6;;-1:-1:-1;;;;;15811:6:0;8171:10;15811:22;15803:67;;;;-1:-1:-1;;;15803:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16627:22:0;::::1;16619:73;;;::::0;-1:-1:-1;;;16619:73:0;;14696:2:1;16619:73:0::1;::::0;::::1;14678:21:1::0;14735:2;14715:18;;;14708:30;14774:34;14754:18;;;14747:62;-1:-1:-1;;;14825:18:1;;;14818:36;14871:19;;16619:73:0::1;14494:402:1::0;16619:73:0::1;16729:6;::::0;;16708:38:::1;::::0;-1:-1:-1;;;;;16708:38:0;;::::1;::::0;16729:6;::::1;::::0;16708:38:::1;::::0;::::1;16757:6;:17:::0;;-1:-1:-1;;;;;;16757:17:0::1;-1:-1:-1::0;;;;;16757:17:0;;;::::1;::::0;;;::::1;::::0;;16538:244::o;24851:123::-;15811:6;;-1:-1:-1;;;;;15811:6:0;8171:10;15811:22;15803:67;;;;-1:-1:-1;;;15803:67:0;;;;;;;:::i;:::-;24946:20:::1;:12:::0;24961:5:::1;24946:20;:::i;:::-;24930:13;:36:::0;-1:-1:-1;24851:123:0:o;24607:236::-;24694:9;24689:147;24709:20;;;24689:147;;;24751:12;24766:9;;24776:1;24766:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;24793:24:0;;;;;:18;:24;;;;;:31;;-1:-1:-1;;24793:31:0;;;;;;;-1:-1:-1;24731:3:0;;;;:::i;:::-;;;;24689:147;;;;24607:236;;;:::o;24360:239::-;24452:9;24447:145;24467:20;;;24447:145;;;24509:12;24524:9;;24534:1;24524:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;24551:22:0;;;;;:16;:22;;;;;:29;;-1:-1:-1;;24551:29:0;;;;;;;-1:-1:-1;24489:3:0;;;;:::i;:::-;;;;24447:145;;30790:337;-1:-1:-1;;;;;30883:19:0;;30875:68;;;;-1:-1:-1;;;30875:68:0;;15243:2:1;30875:68:0;;;15225:21:1;15282:2;15262:18;;;15255:30;15321:34;15301:18;;;15294:62;-1:-1:-1;;;15372:18:1;;;15365:34;15416:19;;30875:68:0;15041:400:1;30875:68:0;-1:-1:-1;;;;;30962:21:0;;30954:68;;;;-1:-1:-1;;;30954:68:0;;15648:2:1;30954:68:0;;;15630:21:1;15687:2;15667:18;;;15660:30;15726:34;15706:18;;;15699:62;-1:-1:-1;;;15777:18:1;;;15770:32;15819:19;;30954:68:0;15446:398:1;30954:68:0;-1:-1:-1;;;;;31035:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;31087:32;;974:25:1;;;31087:32:0;;947:18:1;31087:32:0;;;;;;;30790:337;;;:::o;31135:1702::-;-1:-1:-1;;;;;31223:18:0;;31215:68;;;;-1:-1:-1;;;31215:68:0;;16051:2:1;31215:68:0;;;16033:21:1;16090:2;16070:18;;;16063:30;16129:34;16109:18;;;16102:62;-1:-1:-1;;;16180:18:1;;;16173:35;16225:19;;31215:68:0;15849:401:1;31215:68:0;-1:-1:-1;;;;;31302:16:0;;31294:64;;;;-1:-1:-1;;;31294:64:0;;16457:2:1;31294:64:0;;;16439:21:1;16496:2;16476:18;;;16469:30;16535:34;16515:18;;;16508:62;-1:-1:-1;;;16586:18:1;;;16579:33;16629:19;;31294:64:0;16255:399:1;31294:64:0;31386:1;31377:6;:10;31369:64;;;;-1:-1:-1;;;31369:64:0;;16861:2:1;31369:64:0;;;16843:21:1;16900:2;16880:18;;;16873:30;16939:34;16919:18;;;16912:62;-1:-1:-1;;;16990:18:1;;;16983:39;17039:19;;31369:64:0;16659:405:1;31369:64:0;31452:13;;-1:-1:-1;;;;;31452:13:0;31444:69;;;;-1:-1:-1;;;31444:69:0;;17271:2:1;31444:69:0;;;17253:21:1;17310:2;17290:18;;;17283:30;17349:32;17329:18;;;17322:60;17399:18;;31444:69:0;17069:354:1;31444:69:0;-1:-1:-1;;;;;31571:24:0;;31524:11;31571:24;;;:18;:24;;;;;;31524:11;;31571:24;;31570:25;:52;;;;-1:-1:-1;;;;;;31600:22:0;;;;;;:18;:22;;;;;;;;31599:23;31570:52;:71;;;;-1:-1:-1;15637:7:0;15664:6;-1:-1:-1;;;;;31626:15:0;;;15664:6;;31626:15;;31570:71;:88;;;;-1:-1:-1;15637:7:0;15664:6;-1:-1:-1;;;;;31645:13:0;;;15664:6;;31645:13;;31570:88;31554:104;;31669:21;31693:25;31711:6;31693:13;31703:2;31693:9;:13::i;:::-;:17;;:25::i;:::-;31669:49;;31829:7;15637;15664:6;-1:-1:-1;;;;;15664:6:0;;15599:79;31829:7;-1:-1:-1;;;;;31821:15:0;:4;-1:-1:-1;;;;;31821:15:0;;;:32;;;;-1:-1:-1;15637:7:0;15664:6;-1:-1:-1;;;;;31840:13:0;;;15664:6;;31840:13;;31821:32;:52;;;;-1:-1:-1;31863:10:0;;-1:-1:-1;;;;;31857:16:0;;;31863:10;;31857:16;;31821:52;31818:180;;;-1:-1:-1;;;;;31899:16:0;;;;;;:10;:16;;;;;;;;31898:17;:36;;;;-1:-1:-1;;;;;;31920:14:0;;;;;;:10;:14;;;;;;;;31919:15;31898:36;31890:96;;;;-1:-1:-1;;;31890:96:0;;17630:2:1;31890:96:0;;;17612:21:1;17669:2;17649:18;;;17642:30;17708:34;17688:18;;;17681:62;-1:-1:-1;;;17759:18:1;;;17752:45;17814:19;;31890:96:0;17428:411:1;31890:96:0;32019:13;;-1:-1:-1;;;;;32011:21:0;;;32019:13;;32011:21;;:47;;-1:-1:-1;;;;;;32036:22:0;;;;;;:16;:22;;;;;;;;32011:47;32008:257;;;32093:13;;32083:6;:23;;32075:76;;;;-1:-1:-1;;;32075:76:0;;18046:2:1;32075:76:0;;;18028:21:1;18085:2;18065:18;;;18058:30;18124:34;18104:18;;;18097:62;-1:-1:-1;;;18175:18:1;;;18168:38;18223:19;;32075:76:0;17844:404:1;32075:76:0;32195:16;;32178:13;:33;;32170:83;;;;-1:-1:-1;;;32170:83:0;;;;;;;:::i;:::-;32286:13;;-1:-1:-1;;;;;32278:21:0;;;32286:13;;32278:21;;;;:44;;-1:-1:-1;32309:13:0;;-1:-1:-1;;;;;32303:19:0;;;32309:13;;32303:19;32278:44;:97;;;-1:-1:-1;;;;;;32328:22:0;;;;;;:16;:22;;;;;;;;32327:23;:47;;;;-1:-1:-1;;;;;;32354:20:0;;;;;;:16;:20;;;;;;;;32327:47;32275:242;;;32471:4;32462:13;;32490:15;:13;:15::i;:::-;32538:13;;-1:-1:-1;;;;;32530:21:0;;;32538:13;;32530:21;;;;:44;;-1:-1:-1;32561:13:0;;-1:-1:-1;;;;;32555:19:0;;;32561:13;;32555:19;;32530:44;:71;;;;-1:-1:-1;;;;;;32579:22:0;;;;;;:16;:22;;;;;;;;32578:23;32530:71;:96;;;;-1:-1:-1;;;;;;32606:20:0;;;;;;:16;:20;;;;;;;;32605:21;32530:96;32527:242;;;32654:5;32643:16;;32699;;32682:13;:33;;32674:83;;;;-1:-1:-1;;;32674:83:0;;;;;;;:::i;:::-;32779:50;32794:4;32800:2;32804:6;32812:8;32822:6;32779:14;:50::i;:::-;31204:1633;;;31135:1702;;;:::o;4422:192::-;4508:7;4544:12;4536:6;;;;4528:29;;;;-1:-1:-1;;;4528:29:0;;;;;;;;:::i;:::-;-1:-1:-1;4568:9:0;4580:5;4584:1;4580;:5;:::i;:::-;4568:17;4422:192;-1:-1:-1;;;;;4422:192:0:o;28720:163::-;28761:7;28782:15;28799;28818:19;:17;:19::i;:::-;28781:56;;-1:-1:-1;28781:56:0;-1:-1:-1;28855:20:0;28781:56;;28855:11;:20::i;:::-;28848:27;;;;28720:163;:::o;5820:132::-;5878:7;5905:39;5909:1;5912;5905:39;;;;;;;;;;;;;;;;;:3;:39::i;3519:181::-;3577:7;;3609:5;3613:1;3609;:5;:::i;:::-;3597:17;;3638:1;3633;:6;;3625:46;;;;-1:-1:-1;;;3625:46:0;;18991:2:1;3625:46:0;;;18973:21:1;19030:2;19010:18;;;19003:30;19069:29;19049:18;;;19042:57;19116:18;;3625:46:0;18789:351:1;27518:419:0;27577:7;27586;27595;27604;27613;27622;27643:23;27668:12;27682:18;27704:20;27716:7;27704:11;:20::i;:::-;27642:82;;;;;;27736:15;27753:23;27778:12;27794:50;27806:7;27815:4;27821:10;27833;:8;:10::i;:::-;27794:11;:50::i;:::-;27735:109;;;;-1:-1:-1;27735:109:0;;-1:-1:-1;27895:15:0;;-1:-1:-1;27912:4:0;;-1:-1:-1;27918:10:0;;-1:-1:-1;27518:419:0;;-1:-1:-1;;;;;27518:419:0:o;3983:136::-;4041:7;4068:43;4072:1;4075;4068:43;;;;;;;;;;;;;;;;;:3;:43::i;26667:346::-;26762:9;26757:249;26781:9;:16;26777:1;:20;26757:249;;;26819:12;26834:9;26844:1;26834:12;;;;;;;;:::i;:::-;;;;;;;26819:27;;26864:7;26861:134;;;-1:-1:-1;;;;;26892:16:0;;;;;;:10;:16;;;;;:23;;-1:-1:-1;;26892:23:0;26911:4;26892:23;;;26861:134;;;-1:-1:-1;;;;;26963:16:0;;;;;;:10;:16;;;;;26956:23;;-1:-1:-1;;26956:23:0;;;26861:134;-1:-1:-1;26799:3:0;;;;:::i;:::-;;;;26757:249;;;;26667:346;;:::o;34355:235::-;34477:10;:21;;-1:-1:-1;;;;34509:18:0;-1:-1:-1;;;34477:21:0;;;;-1:-1:-1;;;;34509:18:0;;-1:-1:-1;;;34509:18:0;;;;;;;34538:44;34556:6;34564:9;34575:6;34538:17;:44::i;32845:340::-;32889:28;32920:24;32938:4;32920:9;:24::i;:::-;32889:55;;32983:29;;32959:20;:53;;:74;;;;-1:-1:-1;33017:16:0;;-1:-1:-1;;;33017:16:0;;;;33016:17;32959:74;:99;;;;-1:-1:-1;33037:21:0;;-1:-1:-1;;;33037:21:0;;;;32959:99;32955:223;;;33128:38;33145:20;33128:16;:38::i;28891:256::-;28988:7;;29024;;28941;;;;29056:20;28988:7;29024;29056:11;:20::i;:::-;29046:7;:30;29042:61;;;29086:7;;29095;;29078:25;;;;;;28891:256;;:::o;29042:61::-;29122:7;;29131;;-1:-1:-1;28891:256:0;-1:-1:-1;28891:256:0:o;6448:278::-;6534:7;6569:12;6562:5;6554:28;;;;-1:-1:-1;;;6554:28:0;;;;;;;;:::i;:::-;-1:-1:-1;6593:9:0;6605:5;6609:1;6605;:5;:::i;27945:330::-;28005:7;28014;28023;28043:12;28058:24;28074:7;28058:15;:24::i;:::-;28043:39;;28093:18;28114:30;28136:7;28114:21;:30::i;:::-;28093:51;-1:-1:-1;28155:23:0;28181:33;28093:51;28181:17;:7;28193:4;28181:11;:17::i;:::-;:21;;:33::i;:::-;28155:59;28250:4;;-1:-1:-1;28256:10:0;;-1:-1:-1;27945:330:0;;-1:-1:-1;;;27945:330:0:o;28283:429::-;28398:7;;;;28454:24;:7;28466:11;28454;:24::i;:::-;28436:42;-1:-1:-1;28489:12:0;28504:21;:4;28513:11;28504:8;:21::i;:::-;28489:36;-1:-1:-1;28536:18:0;28557:27;:10;28572:11;28557:14;:27::i;:::-;28536:48;-1:-1:-1;28595:23:0;28621:33;28536:48;28621:17;:7;28633:4;28621:11;:17::i;:33::-;28673:7;;;;-1:-1:-1;28699:4:0;;-1:-1:-1;28283:429:0;;-1:-1:-1;;;;;;;28283:429:0:o;34598:502::-;34697:15;34714:23;34739:12;34753:23;34778:12;34792:18;34814:19;34825:7;34814:10;:19::i;:::-;-1:-1:-1;;;;;34862:15:0;;;;;;:7;:15;;;;;;34696:137;;-1:-1:-1;34696:137:0;;-1:-1:-1;34696:137:0;;-1:-1:-1;34696:137:0;-1:-1:-1;34696:137:0;-1:-1:-1;34696:137:0;-1:-1:-1;34862:28:0;;34696:137;34862:19;:28::i;:::-;-1:-1:-1;;;;;34844:15:0;;;;;;;:7;:15;;;;;;:46;;;;34922:18;;;;;;;:39;;34945:15;34922:22;:39::i;:::-;-1:-1:-1;;;;;34901:18:0;;;;;;:7;:18;;;;;:60;34972:26;34987:10;34972:14;:26::i;:::-;35009:23;35021:4;35027;35009:11;:23::i;:::-;35065:9;-1:-1:-1;;;;;35048:44:0;35057:6;-1:-1:-1;;;;;35048:44:0;;35076:15;35048:44;;;;974:25:1;;962:2;947:18;;828:177;35048:44:0;;;;;;;;34685:415;;;;;;34598:502;;;:::o;33193:488::-;17734:16;:23;;-1:-1:-1;;;;17734:23:0;-1:-1:-1;;;17734:23:0;;;33280:38:::1;33297:20:::0;33280:16:::1;:38::i;:::-;33430:12;:35:::0;33354:21:::1;::::0;33329:22:::1;::::0;33411:64:::1;::::0;33471:3:::1;::::0;33411:55:::1;::::0;33354:21;;33411:18:::1;:55::i;:::-;:59:::0;::::1;:64::i;:::-;33386:89;;33486:16;33505:58;33559:3;33505:49;33524:12;:29;;;33505:14;:18;;:49;;;;:::i;:58::-;33582:15;::::0;33574:49:::1;::::0;33486:77;;-1:-1:-1;;;;;;33582:15:0::1;::::0;33574:49;::::1;;;::::0;33608:14;;33582:15:::1;33574:49:::0;33582:15;33574:49;33608:14;33582:15;33574:49;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;33642:9:0::1;::::0;33634:37:::1;::::0;-1:-1:-1;;;;;33642:9:0;;::::1;::::0;33634:37;::::1;;;::::0;33662:8;;33642:9:::1;33634:37:::0;33642:9;33634:37;33662:8;33642:9;33634:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;17780:16:0;:24;;-1:-1:-1;;;;17780:24:0;;;-1:-1:-1;;;33193:488:0:o;29400:368::-;29523:10;;29464:7;;;;-1:-1:-1;;;29523:10:0;;;;29520:186;;;-1:-1:-1;29566:7:0;:24;29608:9;;-1:-1:-1;;;29608:9:0;;;;29605:90;;;-1:-1:-1;29654:25:0;;29605:90;29723:37;29754:5;29723:26;:7;29735:13;29723:11;:26::i;29776:597::-;29909:10;;29846:7;;;;-1:-1:-1;;;29909:10:0;;;;29906:401;;;-1:-1:-1;29956:23:0;;29997:9;;-1:-1:-1;;;29997:9:0;;;;29994:302;;;-1:-1:-1;30047:24:0;;30090:13;30106:20;30118:7;30106:11;:20::i;:::-;30090:36;;30160:13;;30148:8;:25;30145:136;;30240:20;;30218:43;;:17;;:21;:43::i;:::-;30198:63;;30145:136;30008:288;30324:41;30359:5;30324:30;:7;30336:17;4873:471;4931:7;5176:6;5172:47;;-1:-1:-1;5206:1:0;5199:8;;5172:47;5231:9;5243:5;5247:1;5243;:5;:::i;:::-;5231:17;-1:-1:-1;5276:1:0;5267:5;5271:1;5231:17;5267:5;:::i;:::-;:10;5259:56;;;;-1:-1:-1;;;5259:56:0;;19569:2:1;5259:56:0;;;19551:21:1;19608:2;19588:18;;;19581:30;19647:34;19627:18;;;19620:62;-1:-1:-1;;;19698:18:1;;;19691:31;19739:19;;5259:56:0;19367:397:1;29155:237:0;29218:19;29241:10;:8;:10::i;:::-;29218:33;-1:-1:-1;29262:18:0;29283:27;:10;29218:33;29283:14;:27::i;:::-;29362:4;29346:22;;;;:7;:22;;;;;;29262:48;;-1:-1:-1;29346:38:0;;29262:48;29346:26;:38::i;:::-;29337:4;29321:22;;;;:7;:22;;;;;:63;-1:-1:-1;;;29155:237:0:o;27363:147::-;27441:7;;:17;;27453:4;27441:11;:17::i;:::-;27431:7;:27;27482:10;;:20;;27497:4;27482:14;:20::i;:::-;27469:10;:33;-1:-1:-1;;27363:147:0:o;33689:585::-;33839:16;;;33853:1;33839:16;;;;;;;;33815:21;;33839:16;;;;;;;;;;-1:-1:-1;33839:16:0;33815:40;;33884:4;33866;33871:1;33866:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;33866:23:0;;;-1:-1:-1;;;;;33866:23:0;;;;;33910:15;;;;;;;;;-1:-1:-1;;;;;33910:15:0;-1:-1:-1;;;;;33910:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;33900:4;33905:1;33900:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;33900:32:0;;;:7;;;;;;;;;:32;33975:15;;33943:62;;33960:4;;33975:15;;;;33993:11;33943:8;:62::i;:::-;34042:15;;:224;;-1:-1:-1;;;34042:224:0;;:15;;;;-1:-1:-1;;;;;34042:15:0;;:66;;:224;;34123:11;;34149:1;;34193:4;;34220;;34240:15;;34042:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:367:1;77:8;87:6;141:3;134:4;126:6;122:17;118:27;108:55;;159:1;156;149:12;108:55;-1:-1:-1;182:20:1;;225:18;214:30;;211:50;;;257:1;254;247:12;211:50;294:4;286:6;282:17;270:29;;354:3;347:4;337:6;334:1;330:14;322:6;318:27;314:38;311:47;308:67;;;371:1;368;361:12;308:67;14:367;;;;;:::o;386:437::-;472:6;480;533:2;521:9;512:7;508:23;504:32;501:52;;;549:1;546;539:12;501:52;589:9;576:23;622:18;614:6;611:30;608:50;;;654:1;651;644:12;608:50;693:70;755:7;746:6;735:9;731:22;693:70;:::i;:::-;782:8;;667:96;;-1:-1:-1;386:437:1;-1:-1:-1;;;;386:437:1:o;1010:597::-;1122:4;1151:2;1180;1169:9;1162:21;1212:6;1206:13;1255:6;1250:2;1239:9;1235:18;1228:34;1280:1;1290:140;1304:6;1301:1;1298:13;1290:140;;;1399:14;;;1395:23;;1389:30;1365:17;;;1384:2;1361:26;1354:66;1319:10;;1290:140;;;1448:6;1445:1;1442:13;1439:91;;;1518:1;1513:2;1504:6;1493:9;1489:22;1485:31;1478:42;1439:91;-1:-1:-1;1591:2:1;1570:15;-1:-1:-1;;1566:29:1;1551:45;;;;1598:2;1547:54;;1010:597;-1:-1:-1;;;1010:597:1:o;1612:131::-;-1:-1:-1;;;;;1687:31:1;;1677:42;;1667:70;;1733:1;1730;1723:12;1748:315;1816:6;1824;1877:2;1865:9;1856:7;1852:23;1848:32;1845:52;;;1893:1;1890;1883:12;1845:52;1932:9;1919:23;1951:31;1976:5;1951:31;:::i;:::-;2001:5;2053:2;2038:18;;;;2025:32;;-1:-1:-1;;;1748:315:1:o;2962:456::-;3039:6;3047;3055;3108:2;3096:9;3087:7;3083:23;3079:32;3076:52;;;3124:1;3121;3114:12;3076:52;3163:9;3150:23;3182:31;3207:5;3182:31;:::i;:::-;3232:5;-1:-1:-1;3289:2:1;3274:18;;3261:32;3302:33;3261:32;3302:33;:::i;:::-;2962:456;;3354:7;;-1:-1:-1;;;3408:2:1;3393:18;;;;3380:32;;2962:456::o;3423:180::-;3482:6;3535:2;3523:9;3514:7;3510:23;3506:32;3503:52;;;3551:1;3548;3541:12;3503:52;-1:-1:-1;3574:23:1;;3423:180;-1:-1:-1;3423:180:1:o;3797:160::-;3862:20;;3918:13;;3911:21;3901:32;;3891:60;;3947:1;3944;3937:12;3891:60;3797:160;;;:::o;3962:248::-;4027:6;4035;4088:2;4076:9;4067:7;4063:23;4059:32;4056:52;;;4104:1;4101;4094:12;4056:52;4140:9;4127:23;4117:33;;4169:35;4200:2;4189:9;4185:18;4169:35;:::i;:::-;4159:45;;3962:248;;;;;:::o;4423:247::-;4482:6;4535:2;4523:9;4514:7;4510:23;4506:32;4503:52;;;4551:1;4548;4541:12;4503:52;4590:9;4577:23;4609:31;4634:5;4609:31;:::i;4928:127::-;4989:10;4984:3;4980:20;4977:1;4970:31;5020:4;5017:1;5010:15;5044:4;5041:1;5034:15;5060:275;5131:2;5125:9;5196:2;5177:13;;-1:-1:-1;;5173:27:1;5161:40;;5231:18;5216:34;;5252:22;;;5213:62;5210:88;;;5278:18;;:::i;:::-;5314:2;5307:22;5060:275;;-1:-1:-1;5060:275:1:o;5340:183::-;5400:4;5433:18;5425:6;5422:30;5419:56;;;5455:18;;:::i;:::-;-1:-1:-1;5500:1:1;5496:14;5512:4;5492:25;;5340:183::o;5528:966::-;5612:6;5643:2;5686;5674:9;5665:7;5661:23;5657:32;5654:52;;;5702:1;5699;5692:12;5654:52;5742:9;5729:23;5775:18;5767:6;5764:30;5761:50;;;5807:1;5804;5797:12;5761:50;5830:22;;5883:4;5875:13;;5871:27;-1:-1:-1;5861:55:1;;5912:1;5909;5902:12;5861:55;5948:2;5935:16;5971:60;5987:43;6027:2;5987:43;:::i;:::-;5971:60;:::i;:::-;6065:15;;;6147:1;6143:10;;;;6135:19;;6131:28;;;6096:12;;;;6171:19;;;6168:39;;;6203:1;6200;6193:12;6168:39;6227:11;;;;6247:217;6263:6;6258:3;6255:15;6247:217;;;6343:3;6330:17;6360:31;6385:5;6360:31;:::i;:::-;6404:18;;6280:12;;;;6442;;;;6247:217;;;6483:5;5528:966;-1:-1:-1;;;;;;;5528:966:1:o;6499:180::-;6555:6;6608:2;6596:9;6587:7;6583:23;6579:32;6576:52;;;6624:1;6621;6614:12;6576:52;6647:26;6663:9;6647:26;:::i;6684:388::-;6752:6;6760;6813:2;6801:9;6792:7;6788:23;6784:32;6781:52;;;6829:1;6826;6819:12;6781:52;6868:9;6855:23;6887:31;6912:5;6887:31;:::i;:::-;6937:5;-1:-1:-1;6994:2:1;6979:18;;6966:32;7007:33;6966:32;7007:33;:::i;:::-;7059:7;7049:17;;;6684:388;;;;;:::o;7077:454::-;7172:6;7180;7188;7196;7204;7257:3;7245:9;7236:7;7232:23;7228:33;7225:53;;;7274:1;7271;7264:12;7225:53;-1:-1:-1;;7297:23:1;;;7367:2;7352:18;;7339:32;;-1:-1:-1;7418:2:1;7403:18;;7390:32;;7469:2;7454:18;;7441:32;;-1:-1:-1;7520:3:1;7505:19;7492:33;;-1:-1:-1;7077:454:1;-1:-1:-1;7077:454:1:o;7536:773::-;7658:6;7666;7674;7682;7735:2;7723:9;7714:7;7710:23;7706:32;7703:52;;;7751:1;7748;7741:12;7703:52;7791:9;7778:23;7820:18;7861:2;7853:6;7850:14;7847:34;;;7877:1;7874;7867:12;7847:34;7916:70;7978:7;7969:6;7958:9;7954:22;7916:70;:::i;:::-;8005:8;;-1:-1:-1;7890:96:1;-1:-1:-1;8093:2:1;8078:18;;8065:32;;-1:-1:-1;8109:16:1;;;8106:36;;;8138:1;8135;8128:12;8106:36;;8177:72;8241:7;8230:8;8219:9;8215:24;8177:72;:::i;:::-;7536:773;;;;-1:-1:-1;8268:8:1;-1:-1:-1;;;;7536:773:1:o;8314:248::-;8382:6;8390;8443:2;8431:9;8422:7;8418:23;8414:32;8411:52;;;8459:1;8456;8449:12;8411:52;-1:-1:-1;;8482:23:1;;;8552:2;8537:18;;;8524:32;;-1:-1:-1;8314:248:1:o;8567:356::-;8769:2;8751:21;;;8788:18;;;8781:30;8847:34;8842:2;8827:18;;8820:62;8914:2;8899:18;;8567:356::o;8928:380::-;9007:1;9003:12;;;;9050;;;9071:61;;9125:4;9117:6;9113:17;9103:27;;9071:61;9178:2;9170:6;9167:14;9147:18;9144:38;9141:161;;;9224:10;9219:3;9215:20;9212:1;9205:31;9259:4;9256:1;9249:15;9287:4;9284:1;9277:15;9141:161;;8928:380;;;:::o;9313:127::-;9374:10;9369:3;9365:20;9362:1;9355:31;9405:4;9402:1;9395:15;9429:4;9426:1;9419:15;9445:168;9485:7;9551:1;9547;9543:6;9539:14;9536:1;9533:21;9528:1;9521:9;9514:17;9510:45;9507:71;;;9558:18;;:::i;:::-;-1:-1:-1;9598:9:1;;9445:168::o;10389:127::-;10450:10;10445:3;10441:20;10438:1;10431:31;10481:4;10478:1;10471:15;10505:4;10502:1;10495:15;10521:251;10591:6;10644:2;10632:9;10623:7;10619:23;10615:32;10612:52;;;10660:1;10657;10650:12;10612:52;10692:9;10686:16;10711:31;10736:5;10711:31;:::i;10777:461::-;10830:3;10868:5;10862:12;10895:6;10890:3;10883:19;10921:4;10950:2;10945:3;10941:12;10934:19;;10987:2;10980:5;10976:14;11008:1;11018:195;11032:6;11029:1;11026:13;11018:195;;;11097:13;;-1:-1:-1;;;;;11093:39:1;11081:52;;11153:12;;;;11188:15;;;;11129:1;11047:9;11018:195;;;-1:-1:-1;11229:3:1;;10777:461;-1:-1:-1;;;;;10777:461:1:o;11243:332::-;11450:6;11439:9;11432:25;11493:2;11488;11477:9;11473:18;11466:30;11413:4;11513:56;11565:2;11554:9;11550:18;11542:6;11513:56;:::i;:::-;11505:64;11243:332;-1:-1:-1;;;;11243:332:1:o;11580:881::-;11675:6;11706:2;11749;11737:9;11728:7;11724:23;11720:32;11717:52;;;11765:1;11762;11755:12;11717:52;11798:9;11792:16;11831:18;11823:6;11820:30;11817:50;;;11863:1;11860;11853:12;11817:50;11886:22;;11939:4;11931:13;;11927:27;-1:-1:-1;11917:55:1;;11968:1;11965;11958:12;11917:55;11997:2;11991:9;12020:60;12036:43;12076:2;12036:43;:::i;12020:60::-;12114:15;;;12196:1;12192:10;;;;12184:19;;12180:28;;;12145:12;;;;12220:19;;;12217:39;;;12252:1;12249;12242:12;12217:39;12276:11;;;;12296:135;12312:6;12307:3;12304:15;12296:135;;;12378:10;;12366:23;;12329:12;;;;12409;;;;12296:135;;14003:128;14043:3;14074:1;14070:6;14067:1;14064:13;14061:39;;;14080:18;;:::i;:::-;-1:-1:-1;14116:9:1;;14003:128::o;14901:135::-;14940:3;-1:-1:-1;;14961:17:1;;14958:43;;;14981:18;;:::i;:::-;-1:-1:-1;15028:1:1;15017:13;;14901:135::o;18253:401::-;18455:2;18437:21;;;18494:2;18474:18;;;18467:30;18533:34;18528:2;18513:18;;18506:62;-1:-1:-1;;;18599:2:1;18584:18;;18577:35;18644:3;18629:19;;18253:401::o;18659:125::-;18699:4;18727:1;18724;18721:8;18718:34;;;18732:18;;:::i;:::-;-1:-1:-1;18769:9:1;;18659:125::o;19145:217::-;19185:1;19211;19201:132;;19255:10;19250:3;19246:20;19243:1;19236:31;19290:4;19287:1;19280:15;19318:4;19315:1;19308:15;19201:132;-1:-1:-1;19347:9:1;;19145:217::o;19769:582::-;20068:6;20057:9;20050:25;20111:6;20106:2;20095:9;20091:18;20084:34;20154:3;20149:2;20138:9;20134:18;20127:31;20031:4;20175:57;20227:3;20216:9;20212:19;20204:6;20175:57;:::i;:::-;-1:-1:-1;;;;;20268:32:1;;;;20263:2;20248:18;;20241:60;-1:-1:-1;20332:3:1;20317:19;20310:35;20167:65;19769:582;-1:-1:-1;;;19769:582:1:o

Swarm Source

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