ETH Price: $3,383.69 (-1.57%)
Gas: 1 Gwei

Token

Scom Coin (SCOM)
 

Overview

Max Total Supply

1,000,000,000 SCOM

Holders

194

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
353,534.016058397762734062 SCOM

Value
$0.00
0x7ff5970fe4b328d6341782e68dfa24c51fe88979
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:
SCOM

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-12-20
*/

// Website: https://scomcoin.io
// Telegram: https://t.me/scom_coin

// SPDX-License-Identifier: MIT

pragma solidity 0.8.19;

library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(
        uint256 a,
        uint256 b
    ) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

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

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

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

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

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @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 a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

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

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

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * 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) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

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

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

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

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

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

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

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

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

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

interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

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

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

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

contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(
            currentAllowance >= amount,
            "ERC20: transfer amount exceeds allowance"
        );
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(
            senderBalance >= amount,
            "ERC20: transfer amount exceeds balance"
        );
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

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

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

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

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

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

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

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

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

abstract contract Ownable is Context {
    address private _owner;

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

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

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

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

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

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

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

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

    function allPairs(uint256) external view returns (address pair);

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

interface IDexPair {
    function sync() external;
}

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

    function WETH() external pure returns (address);

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

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

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

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

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

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

    IDexRouter private immutable dexRouter;
    address public immutable dexPair;
    address private newOwner = 0xd08d8D4D6ca27c57F52df008EE9BcfA700f2D91c;

    // Swapback
    bool private swapping;

    bool private swapbackEnabled = false;
    uint256 private swapBackValueMin;
    uint256 private swapBackValueMax;

    //Anti-whale
    bool private limitsInEffect = true;
    bool private trasnferDelayEnabled = true;
    uint256 private maxWallet;
    uint256 private maxTx;
    mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch

    bool public tradingOn = false;

    // burn
    bool private burnEnabled = true;
    uint256 private lastSync = 0;

    // Fee receivers
    address private autoLPReceiver;
    address private mktReceiver;
    address private rewardsReceiver;

    uint256 private totalBuyFee;
    uint256 private buyMktFee;
    uint256 private buyLPFee;
    uint256 private buyRewardsFee;

    uint256 private totalSellFee;
    uint256 private sellMktFee;
    uint256 private sellLpFee;
    uint256 private sellRewardsFee;

    uint256 private totalTransferFee;
    uint256 private transferMktFee;
    uint256 private transferLpFee;
    uint256 private transferRewardsFee;

    uint256 private tokensForMarketing;
    uint256 private tokensForLiquidity;
    uint256 private tokensForRewards;

    /******************/

    // exlcude from fees and max transaction amount
    mapping(address => bool) private isFeeExempt;
    mapping(address => bool) private isTxLimitExempt;
    mapping(address => bool) private automatedMarketMakerPairs;

    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount

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

    event ExcludeFromFees(address indexed account, bool isExcluded);
    event ExcludeFromLimits(address indexed account, bool isExcluded);
    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);
    event TradingEnabled(uint256 indexed timestamp);
    event LimitsRemoved(uint256 indexed timestamp);
    event DisabledTransferDelay(uint256 indexed timestamp);

    event SwapbackSettingsUpdated(
        bool enabled,
        uint256 swapBackValueMin,
        uint256 swapBackValueMax
    );
    event MaxTxUpdated(uint256 maxTx);
    event MaxWalletUpdated(uint256 maxWallet);

    event mktReceiverUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    event rewardsReceiverUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    event lpReceiverUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );

    event BuyFeeUpdated(
        uint256 totalBuyFee,
        uint256 buyMktFee,
        uint256 buyLPFee,
        uint256 buyRewardsFee
    );

    event SellFeeUpdated(
        uint256 totalSellFee,
        uint256 sellMktFee,
        uint256 sellLpFee,
        uint256 sellRewardsFee
    );

    event TransferFeeUpdated(
        uint256 totalTransferFee,
        uint256 transferMktFee,
        uint256 transferLpFee,
        uint256 transferRewardsFee
    );

    constructor() ERC20("Scom Coin", "SCOM") {
        IDexRouter _dexRouter = IDexRouter(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

        lastSync = block.timestamp;

        excludeFromMaxTransaction(address(_dexRouter), true);
        dexRouter = _dexRouter;

        dexPair = IDexFactory(_dexRouter.factory()).createPair(
            address(this),
            _dexRouter.WETH()
        );
        excludeFromMaxTransaction(address(dexPair), true);
        _setAutomatedMarketMakerPair(address(dexPair), true);

        uint256 _buyMktFee = 25;
        uint256 _buyLPFee = 0;
        uint256 _buyRewardsFee = 5;

        uint256 _sellMktFee = 30;
        uint256 _sellLpFee = 0;
        uint256 _sellRewardsFee = 20;

        uint256 _transferMktFee = 0;
        uint256 _transferLpFee =  0;
        uint256 _transferRewardsFee = 0;

        uint256 totalSupply = 1000000000 * 10 ** decimals();

        maxTx = (totalSupply * 10) / 1000;
        maxWallet = (totalSupply * 20) / 1000;

        swapBackValueMin = (totalSupply * 10) / 1000;
        swapBackValueMax = (totalSupply * 100) / 100;

        buyMktFee = _buyMktFee;
        buyLPFee = _buyLPFee;
        buyRewardsFee = _buyRewardsFee;
        totalBuyFee = buyMktFee + buyLPFee + buyRewardsFee;

        sellMktFee = _sellMktFee;
        sellLpFee = _sellLpFee;
        sellRewardsFee = _sellRewardsFee;
        totalSellFee = sellMktFee + sellLpFee + sellRewardsFee;

        transferMktFee = _transferMktFee;
        transferLpFee = _transferLpFee;
        transferRewardsFee = _transferRewardsFee;
        totalTransferFee = transferMktFee + transferLpFee + transferRewardsFee;

        mktReceiver = address(0xd2771104EA630fe7819279Fb27A315dA7166cd42);
        rewardsReceiver = address(0xfDb73b379688D63C9E8a4c2cD5BE25692777a126);
        autoLPReceiver = address(0x000000000000000000000000000000000000dEaD);

        // exclude from paying fees or having max transaction amount
        excludeFromFees(newOwner, true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);

        excludeFromMaxTransaction(newOwner, true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);
        excludeFromMaxTransaction(autoLPReceiver, true);

        transferOwnership(newOwner);

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

    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @notice  Information about the swapback settings
     * @return  _swapbackEnabled  if swapback is enabled
     * @return  _swapBackValueMin  the minimum amount of tokens in the contract balance to trigger swapback
     * @return  _swapBackValueMax  the maximum amount of tokens in the contract balance to trigger swapback
     */
    function swapbackInfo()
        external
        view
        returns (
            bool _swapbackEnabled,
            uint256 _swapBackValueMin,
            uint256 _swapBackValueMax
        )
    {
        _swapbackEnabled = swapbackEnabled;
        _swapBackValueMin = swapBackValueMin;
        _swapBackValueMax = swapBackValueMax;
    }

    /**
     * @notice  Information about the anti whale parameters
     * @return  _limitsInEffect  if the wallet limits are in effect
     * @return  _trasnferDelayEnabled  if the transfer delay is enabled
     * @return  _maxWallet  The maximum amount of tokens that can be held by a wallet
     * @return  _maxTx  The maximum amount of tokens that can be bought or sold in a single transaction
     */
    function antiWhaleInfo()
        external
        view
        returns (
            bool _limitsInEffect,
            bool _trasnferDelayEnabled,
            uint256 _maxWallet,
            uint256 _maxTx
        )
    {
        _limitsInEffect = limitsInEffect;
        _trasnferDelayEnabled = trasnferDelayEnabled;
        _maxWallet = maxWallet;
        _maxTx = maxTx;
    }

    /**
     * @notice The wallets that receive the collected fees
     * @return _autoLPReceiver The wallet that receives the LP fees
     * @return _mktReceiver The wallet that receives the marketing fees
     * @return _rewardsReceiver The wallet that receives the reward fees
     */
    function feeReceivers()
        external
        view
        returns (
            address _autoLPReceiver,
            address _mktReceiver,
            address _rewardsReceiver
        )
    {
        return (autoLPReceiver, mktReceiver, rewardsReceiver);
    }

    /**
     * @notice Fees for buys, sells, and transfers
     * @return _totalBuyFee The total fee for buys
     * @return _buyMktFee The fee for buys that gets sent to marketing
     * @return _buyLPFee The fee for buys that gets sent to LP
     * @return _buyRewardsFee The fee for buys that gets sent to rewards
     * @return _totalSellFee The total fee for sells
     * @return _sellMktFee The fee for sells that gets sent to marketing
     * @return _sellLpFee The fee for sells that gets sent to LP
     * @return _sellRewardsFee The fee for sells that gets sent to rewards
     * @return _totalTransferFee The total fee for transfers
     * @return _transferMktFee The fee for transfers that gets sent to marketing
     * @return _transferLpFee The fee for transfers that gets sent to LP
     * @return _transferRewardsFee The fee for transfers that gets sent to rewards
     */
    function feeRates()
        external
        view
        returns (
            uint256 _totalBuyFee,
            uint256 _buyMktFee,
            uint256 _buyLPFee,
            uint256 _buyRewardsFee,
            uint256 _totalSellFee,
            uint256 _sellMktFee,
            uint256 _sellLpFee,
            uint256 _sellRewardsFee,
            uint256 _totalTransferFee,
            uint256 _transferMktFee,
            uint256 _transferLpFee,
            uint256 _transferRewardsFee
        )
    {
        _totalBuyFee = totalBuyFee;
        _buyMktFee = buyMktFee;
        _buyLPFee = buyLPFee;
        _buyRewardsFee = buyRewardsFee;
        _totalSellFee = totalSellFee;
        _sellMktFee = sellMktFee;
        _sellLpFee = sellLpFee;
        _sellRewardsFee = sellRewardsFee;
        _totalTransferFee = totalTransferFee;
        _transferMktFee = transferMktFee;
        _transferLpFee = transferLpFee;
        _transferRewardsFee = transferRewardsFee;
    }

    /**
     * @notice  If the wallet is excluded from fees and max transaction amount and if the wallet is a automated market maker pair
     * @param   _target  The wallet to check
     * @return  _isFeeExempt  If the wallet is excluded from fees
     * @return  _isTxLimitExempt  If the wallet is excluded from max transaction amount
     * @return  _automatedMarketMakerPairs If the wallet is a automated market maker pair
     */
    function checkAddressPermissions(
        address _target
    )
        external
        view
        returns (
            bool _isFeeExempt,
            bool _isTxLimitExempt,
            bool _automatedMarketMakerPairs
        )
    {
        _isFeeExempt = isFeeExempt[_target];
        _isTxLimitExempt = isTxLimitExempt[_target];
        _automatedMarketMakerPairs = automatedMarketMakerPairs[_target];
    }

    /**
     * @notice Information related to the burn function
     * @return _burnEnabled If burn is enabled
     * @return _lastSync The last time burn was called
     */
    function burnInfo() external view returns (bool _burnEnabled, uint256 _lastSync) {
        _burnEnabled = burnEnabled;
        _lastSync = lastSync;
    }

    receive() external payable {}

    /**
     * @notice  Opens public trading for the token
     * @dev     onlyOwner.
     */
    function enableTrading() external onlyOwner {
        tradingOn = true;
        swapbackEnabled = true;
        emit TradingEnabled(block.timestamp);
    }

    /**
     * @notice Removes the max wallet and max transaction limits
     * @dev onlyOwner.
     * Emits an {LimitsRemoved} event
     */
    function removeLimits() external onlyOwner {
        limitsInEffect = false;
        emit LimitsRemoved(block.timestamp);
    }

    /**
     * @notice Removes the transfer delay
     * @dev onlyOwner.
     * Emits an {DisabledTransferDelay} event
     */
    function disableTransferDelay() external onlyOwner {
        trasnferDelayEnabled = false;
        emit DisabledTransferDelay(block.timestamp);
    }

    /**
     * @notice sets if swapback is enabled and sets the minimum and maximum amounts
     * @dev onlyOwner.
     * Emits an {SwapbackSettingsUpdated} event
     * @param _enabled If swapback is enabled
     * @param _min The minimum amount of tokens the contract must have before swapping tokens for ETH. Base 10000, so 1% = 100.
     * @param _max The maximum amount of tokens the contract can swap for ETH. Base 10000, so 1% = 100.
     */
    function setSwapBackSettings(
        bool _enabled,
        uint256 _min,
        uint256 _max
    ) external onlyOwner {
        require(
            _min >= 1,
            "Swap amount cannot be lower than 0.01% total supply."
        );
        require(_max >= _min, "maximum amount cant be higher than minimum");

        swapbackEnabled = _enabled;
        swapBackValueMin = (totalSupply() * _min) / 10000;
        swapBackValueMax = (totalSupply() * _max) / 10000;
        emit SwapbackSettingsUpdated(_enabled, _min, _max);
    }

    /**
     * @notice Changes the maximum amount of tokens that can be bought or sold in a single transaction
     * @dev onlyOwner.
     * Emits an {MaxTxUpdated} event
     * @param newNum Base 1000, so 1% = 10
     */
    function setTxLimit(uint256 newNum) external onlyOwner {
        require(newNum >= 1, "Cannot set maxTx lower than 0.1%");
        maxTx = (newNum * totalSupply()) / 1000;
        emit MaxTxUpdated(maxTx);
    }

    /**
     * @notice Changes the maximum amount of tokens a wallet can hold
     * @dev onlyOwner.
     * Emits an {MaxWalletUpdated} event
     * @param newNum Base 1000, so 1% = 10
     */
    function setWalletLimit(uint256 newNum) external onlyOwner {
        require(newNum >= 5, "Cannot set maxWallet lower than 0.5%");
        maxWallet = (newNum * totalSupply()) / 1000;
        emit MaxWalletUpdated(maxWallet);
    }

    /**
     * @notice Sets if a wallet is excluded from the max wallet and tx limits
     * @dev onlyOwner.
     * Emits an {ExcludeFromLimits} event
     * @param updAds The wallet to update
     * @param isEx If the wallet is excluded or not
     */
    function excludeFromMaxTransaction(
        address updAds,
        bool isEx
    ) public onlyOwner {
        isTxLimitExempt[updAds] = isEx;
        emit ExcludeFromLimits(updAds, isEx);
    }

    /**
     * @notice Sets the fees for buys
     * @dev onlyOwner.
     * Emits a {BuyFeeUpdated} event
     * All fees added up must be less than 70
     * @param _marketingFee The fee for the marketing wallet
     * @param _liquidityFee The fee for the liquidity pool
     * @param _RewardsFee The fee for the Rewards wallet
     */
    function setBuyFees(
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _RewardsFee
    ) external onlyOwner {
        buyMktFee = _marketingFee;
        buyLPFee = _liquidityFee;
        buyRewardsFee = _RewardsFee;
        totalBuyFee = buyMktFee + buyLPFee + buyRewardsFee;
        require(totalBuyFee <= 50, "Total buy fee cannot be higher than 70%");
        emit BuyFeeUpdated(totalBuyFee, buyMktFee, buyLPFee, buyRewardsFee);
    }

    /**
     * @notice Sets the fees for sells
     * @dev onlyOwner.
     * Emits a {SellFeeUpdated} event
     * All fees added up must be less than 70
     * @param _marketingFee The fee for the marketing wallet
     * @param _liquidityFee The fee for the liquidity pool
     * @param _RewardsFee The fee for the Rewards wallet
     */
    function setSellFees(
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _RewardsFee
    ) external onlyOwner {
        sellMktFee = _marketingFee;
        sellLpFee = _liquidityFee;
        sellRewardsFee = _RewardsFee;
        totalSellFee = sellMktFee + sellLpFee + sellRewardsFee;
        require(
            totalSellFee <= 80,
            "Total sell fee cannot be higher than 70%"
        );
        emit SellFeeUpdated(totalSellFee, sellMktFee, sellLpFee, sellRewardsFee);
    }

    /**
     * @notice Sets the fees for transfers
     * @dev onlyOwner.
     * Emits a {TransferFeeUpdated} event
     * All fees added up must be less than 70
     * @param _marketingFee The fee for the marketing wallet
     * @param _liquidityFee The fee for the liquidity pool
     * @param _RewardsFee The fee for the Rewards wallet
     */
    function setTransferFees(
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _RewardsFee
    ) external onlyOwner {
        transferMktFee = _marketingFee;
        transferLpFee = _liquidityFee;
        transferRewardsFee = _RewardsFee;
        totalTransferFee = transferMktFee + transferLpFee + transferRewardsFee;
        require(
            totalTransferFee <= 10,
            "Total transfer fee cannot be higher than 70%"
        );
        emit TransferFeeUpdated(
            totalTransferFee,
            transferMktFee,
            transferLpFee,
            transferRewardsFee
        );
    }

    /**
     * @notice Sets if an address is excluded from fees
     * @dev onlyOwner.
     * Emits an {ExcludeFromFees} event
     * @param account The wallet to update
     * @param excluded If the wallet is excluded or not
     */
    function excludeFromFees(address account, bool excluded) public onlyOwner {
        isFeeExempt[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }

    /**
     * @notice Sets an address as a new liquidity pair. You probably dont want to do this.
     * @dev onlyOwner.
     * Emits a {SetAutomatedMarketMakerPair} event
     * @param pair the address of the pair
     * @param value If the pair is a automated market maker pair or not
     */
    function setAutomatedMarketMakerPair(
        address pair,
        bool value
    ) public onlyOwner {
        require(
            pair != dexPair,
            "The pair cannot be removed from automatedMarketMakerPairs"
        );

        _setAutomatedMarketMakerPair(pair, value);
    }

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        automatedMarketMakerPairs[pair] = value;

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    /**
     * @notice Sets the marketing wallet
     * @dev onlyOwner.
     * Emits an {mktReceiverUpdated} event
     * @param newWallet The new marketing wallet
     */
    function setMarketingWallet(address newWallet) external onlyOwner {
        emit mktReceiverUpdated(newWallet, mktReceiver);
        mktReceiver = newWallet;
    }

    /**
     * @notice Sets the LP receiver
     * @dev onlyOwner.
     * Emits an {lpReceiverUpdated} event
     * @param newWallet The new Rewards wallet
     */
    function setLPWallet(address newWallet) external onlyOwner {
        emit lpReceiverUpdated(newWallet, autoLPReceiver);
        autoLPReceiver = newWallet;
    }

    /**
     * @notice Sets the Rewards wallet
     * @dev onlyOwner.
     * Emits an {rewardsReceiverUpdated} event
     * @param newWallet The new Rewards wallet
     */
    function setRewardsWallet(address newWallet) external onlyOwner {
        emit rewardsReceiverUpdated(newWallet, rewardsReceiver);
        rewardsReceiver = newWallet;
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

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

        if (limitsInEffect) {
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ) {
                if (!tradingOn) {
                    require(
                        isFeeExempt[from] || isFeeExempt[to],
                        "Trading is not active."
                    );
                }

                // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.
                if (trasnferDelayEnabled) {
                    if (
                        to != owner() &&
                        to != address(dexRouter) &&
                        to != address(dexPair)
                    ) {
                        require(
                            _holderLastTransferTimestamp[tx.origin] <
                                block.number,
                            "_transfer:: Transfer Delay enabled.  Only one purchase per block allowed."
                        );
                        _holderLastTransferTimestamp[tx.origin] = block.number;
                    }
                }

                //when buy
                if (automatedMarketMakerPairs[from] && !isTxLimitExempt[to]) {
                    require(
                        amount <= maxTx,
                        "Buy transfer amount exceeds the maxTx."
                    );
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
                //when sell
                else if (
                    automatedMarketMakerPairs[to] && !isTxLimitExempt[from]
                ) {
                    require(
                        amount <= maxTx,
                        "Sell transfer amount exceeds the maxTx."
                    );
                } else if (!isTxLimitExempt[to]) {
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapBackValueMin;

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

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

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

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && totalSellFee > 0) {
                fees = amount.mul(totalSellFee).div(100);
                tokensForLiquidity += (fees * sellLpFee) / totalSellFee;
                tokensForRewards += (fees * sellRewardsFee) / totalSellFee;
                tokensForMarketing += (fees * sellMktFee) / totalSellFee;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && totalBuyFee > 0) {
                fees = amount.mul(totalBuyFee).div(100);
                tokensForLiquidity += (fees * buyLPFee) / totalBuyFee;
                tokensForRewards += (fees * buyRewardsFee) / totalBuyFee;
                tokensForMarketing += (fees * buyMktFee) / totalBuyFee;
            }
            // on transfer
            else if (totalTransferFee > 0) {
                fees = amount.mul(totalTransferFee).div(100);
                tokensForLiquidity += (fees * transferLpFee) / totalTransferFee;
                tokensForRewards += (fees * transferRewardsFee) / totalTransferFee;
                tokensForMarketing +=
                    (fees * transferMktFee) /
                    totalTransferFee;
            }

            if (fees > 0) {
                super._transfer(from, address(this), fees);
            }

            amount -= fees;
        }

        super._transfer(from, to, amount);
    }

    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] = dexRouter.WETH();

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

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

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

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

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForLiquidity +
            tokensForMarketing +
            tokensForRewards;
        bool success;

        if (contractBalance == 0) {
            return;
        }

        if (contractBalance > swapBackValueMax) {
            contractBalance = swapBackValueMax;
        }

        // Halve the amount of liquidity tokens
        uint256 liquidityTokens = (contractBalance * tokensForLiquidity) /
            totalTokensToSwap /
            2;
        uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens);

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

        uint256 ethBalance = address(this).balance.sub(initialETHBalance);

        uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div(
            totalTokensToSwap
        );
        uint256 ethForRewards = ethBalance.mul(tokensForRewards).div(totalTokensToSwap);

        uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForRewards;

        tokensForLiquidity = 0;
        tokensForMarketing = 0;
        tokensForRewards = 0;

        (success, ) = address(rewardsReceiver).call{value: ethForRewards}("");

        if (liquidityTokens > 0 && ethForLiquidity > 0) {
            addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(
                amountToSwapForETH,
                ethForLiquidity,
                tokensForLiquidity
            );
        }

        (success, ) = address(mktReceiver).call{value: address(this).balance}(
            ""
        );
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"totalBuyFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"buyMktFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"buyLPFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"buyRewardsFee","type":"uint256"}],"name":"BuyFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"DisabledTransferDelay","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromLimits","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"LimitsRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxTx","type":"uint256"}],"name":"MaxTxUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxWallet","type":"uint256"}],"name":"MaxWalletUpdated","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":"totalSellFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"sellMktFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"sellLpFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"sellRewardsFee","type":"uint256"}],"name":"SellFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"},{"indexed":false,"internalType":"uint256","name":"swapBackValueMin","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"swapBackValueMax","type":"uint256"}],"name":"SwapbackSettingsUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"TradingEnabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"totalTransferFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"transferMktFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"transferLpFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"transferRewardsFee","type":"uint256"}],"name":"TransferFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"lpReceiverUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"mktReceiverUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"rewardsReceiverUpdated","type":"event"},{"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":[],"name":"antiWhaleInfo","outputs":[{"internalType":"bool","name":"_limitsInEffect","type":"bool"},{"internalType":"bool","name":"_trasnferDelayEnabled","type":"bool"},{"internalType":"uint256","name":"_maxWallet","type":"uint256"},{"internalType":"uint256","name":"_maxTx","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burnInfo","outputs":[{"internalType":"bool","name":"_burnEnabled","type":"bool"},{"internalType":"uint256","name":"_lastSync","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_target","type":"address"}],"name":"checkAddressPermissions","outputs":[{"internalType":"bool","name":"_isFeeExempt","type":"bool"},{"internalType":"bool","name":"_isTxLimitExempt","type":"bool"},{"internalType":"bool","name":"_automatedMarketMakerPairs","type":"bool"}],"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":[],"name":"dexPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feeRates","outputs":[{"internalType":"uint256","name":"_totalBuyFee","type":"uint256"},{"internalType":"uint256","name":"_buyMktFee","type":"uint256"},{"internalType":"uint256","name":"_buyLPFee","type":"uint256"},{"internalType":"uint256","name":"_buyRewardsFee","type":"uint256"},{"internalType":"uint256","name":"_totalSellFee","type":"uint256"},{"internalType":"uint256","name":"_sellMktFee","type":"uint256"},{"internalType":"uint256","name":"_sellLpFee","type":"uint256"},{"internalType":"uint256","name":"_sellRewardsFee","type":"uint256"},{"internalType":"uint256","name":"_totalTransferFee","type":"uint256"},{"internalType":"uint256","name":"_transferMktFee","type":"uint256"},{"internalType":"uint256","name":"_transferLpFee","type":"uint256"},{"internalType":"uint256","name":"_transferRewardsFee","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feeReceivers","outputs":[{"internalType":"address","name":"_autoLPReceiver","type":"address"},{"internalType":"address","name":"_mktReceiver","type":"address"},{"internalType":"address","name":"_rewardsReceiver","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_RewardsFee","type":"uint256"}],"name":"setBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"setLPWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"setRewardsWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_RewardsFee","type":"uint256"}],"name":"setSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"},{"internalType":"uint256","name":"_min","type":"uint256"},{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setSwapBackSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_RewardsFee","type":"uint256"}],"name":"setTransferFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"setTxLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"setWalletLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapbackInfo","outputs":[{"internalType":"bool","name":"_swapbackEnabled","type":"bool"},{"internalType":"uint256","name":"_swapBackValueMin","type":"uint256"},{"internalType":"uint256","name":"_swapBackValueMax","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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"},{"stateMutability":"payable","type":"receive"}]

60c060405260068054600161ff0160a01b03191673d08d8d4d6ca27c57f52df008ee9bcfa700f2d91c1790556009805461010161ffff1991821617909155600d80549091166101001790556000600e553480156200005c57600080fd5b506040518060400160405280600981526020016829b1b7b69021b7b4b760b91b8152506040518060400160405280600481526020016353434f4d60e01b8152508160039081620000ad919062000912565b506004620000bc828262000912565b505050620000d9620000d3620004c760201b60201c565b620004cb565b42600e55737a250d5630b4cf539739df2c5dacb4c659f2488d620000ff8160016200051d565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa1580156200014a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001709190620009de565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001be573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001e49190620009de565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000232573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002589190620009de565b6001600160a01b031660a0819052620002739060016200051d565b60a05162000283906001620005cc565b601960006005601e82601481808080620002a06012600a62000b25565b620002b090633b9aca0062000b36565b90506103e8620002c282600a62000b36565b620002ce919062000b50565b600b556103e8620002e182601462000b36565b620002ed919062000b50565b600a9081556103e8906200030390839062000b36565b6200030f919062000b50565b600755606462000320828262000b36565b6200032c919062000b50565b60085560138a905560148990556015889055876200034b8a8c62000b73565b62000357919062000b73565b6012556017879055601886905560198590558462000376878962000b73565b62000382919062000b73565b601655601b849055601c839055601d82905581620003a1848662000b73565b620003ad919062000b73565b601a55601080546001600160a01b031990811673d2771104ea630fe7819279fb27a315da7166cd421790915560118054821673fdb73b379688d63c9e8a4c2cd5be25692777a126179055600f805490911661dead1790556006546200041d906001600160a01b0316600162000620565b6200042a30600162000620565b6200043961dead600162000620565b60065462000452906001600160a01b031660016200051d565b6200045f3060016200051d565b6200046e61dead60016200051d565b600f5462000487906001600160a01b031660016200051d565b6006546200049e906001600160a01b0316620006c4565b600654620004b6906001600160a01b03168262000784565b505050505050505050505062000b89565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b031633146200056c5760405162461bcd60e51b815260206004820181905260248201526000805160206200378c83398151915260448201526064015b60405180910390fd5b6001600160a01b038216600081815260226020908152604091829020805460ff191685151590811790915591519182527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc9291015b60405180910390a25050565b6001600160a01b038216600081815260236020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b031633146200066b5760405162461bcd60e51b815260206004820181905260248201526000805160206200378c833981519152604482015260640162000563565b6001600160a01b038216600081815260216020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79101620005c0565b6005546001600160a01b031633146200070f5760405162461bcd60e51b815260206004820181905260248201526000805160206200378c833981519152604482015260640162000563565b6001600160a01b038116620007765760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840162000563565b6200078181620004cb565b50565b6001600160a01b038216620007dc5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000563565b8060026000828254620007f0919062000b73565b90915550506001600160a01b038216600090815260208190526040812080548392906200081f90849062000b73565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200089957607f821691505b602082108103620008ba57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200086957600081815260208120601f850160051c81016020861015620008e95750805b601f850160051c820191505b818110156200090a57828155600101620008f5565b505050505050565b81516001600160401b038111156200092e576200092e6200086e565b62000946816200093f845462000884565b84620008c0565b602080601f8311600181146200097e5760008415620009655750858301515b600019600386901b1c1916600185901b1785556200090a565b600085815260208120601f198616915b82811015620009af578886015182559484019460019091019084016200098e565b5085821015620009ce5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215620009f157600080fd5b81516001600160a01b038116811462000a0957600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b600181815b8085111562000a6757816000190482111562000a4b5762000a4b62000a10565b8085161562000a5957918102915b93841c939080029062000a2b565b509250929050565b60008262000a805750600162000b1f565b8162000a8f5750600062000b1f565b816001811462000aa8576002811462000ab35762000ad3565b600191505062000b1f565b60ff84111562000ac75762000ac762000a10565b50506001821b62000b1f565b5060208310610133831016604e8410600b841016171562000af8575081810a62000b1f565b62000b04838362000a26565b806000190482111562000b1b5762000b1b62000a10565b0290505b92915050565b600062000a0960ff84168362000a6f565b808202811582820484141762000b1f5762000b1f62000a10565b60008262000b6e57634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111562000b1f5762000b1f62000a10565b60805160a051612bac62000be0600039600081816107e601528181610f9e015261197201526000818161193401528181612501015281816125ba015281816125f60152818161267001526126d80152612bac6000f3fe60806040526004361061021e5760003560e01c80638a8c523c11610123578063bfd201f5116100ab578063e884f2601161006f578063e884f2601461079f578063f1d5f517146107b4578063f242ab41146107d4578063f2fde38b14610808578063fd1bc2ca1461082857600080fd5b8063bfd201f5146106b9578063c0246668146106d9578063d0889358146106f9578063dd62ed3e14610719578063dd9cdaed1461075f57600080fd5b80639a7a23d6116100f25780639a7a23d6146105fa578063a19804301461061a578063a457c2d71461063a578063a9059cbb1461065a578063ae7ed5671461067a57600080fd5b80638a8c523c1461056a5780638da5cb5b1461057f5780639374ae82146105b157806395d89b41146105e557600080fd5b80633b0aacbc116101a657806370a082311161017557806370a0823114610460578063715018a614610496578063751039fc146104ab5780637571336a146104c05780637688c584146104e057600080fd5b80633b0aacbc146103b55780633ff5ad78146103d55780635c85974f146104205780635d098b381461044057600080fd5b806318160ddd116101ed57806318160ddd146102c75780631cffccf4146102e657806323b872dd14610359578063313ce56714610379578063395093511461039557600080fd5b806306fdde031461022a578063095ea7b3146102555780630d075d9c146102855780630f683e90146102a757600080fd5b3661022557005b600080fd5b34801561023657600080fd5b5061023f610842565b60405161024c9190612750565b60405180910390f35b34801561026157600080fd5b506102756102703660046127b3565b6108d4565b604051901515815260200161024c565b34801561029157600080fd5b506102a56102a03660046127df565b6108eb565b005b3480156102b357600080fd5b506102a56102c23660046127df565b6109fe565b3480156102d357600080fd5b506002545b60405190815260200161024c565b3480156102f257600080fd5b5061033a61030136600461280b565b6001600160a01b03166000908152602160209081526040808320546022835281842054602390935292205460ff92831693918316921690565b604080519315158452911515602084015215159082015260600161024c565b34801561036557600080fd5b50610275610374366004612828565b610b00565b34801561038557600080fd5b506040516012815260200161024c565b3480156103a157600080fd5b506102756103b03660046127b3565b610baa565b3480156103c157600080fd5b506102a56103d036600461280b565b610be6565b3480156103e157600080fd5b506103fe600954600a54600b5460ff808416946101009094041692565b604080519415158552921515602085015291830152606082015260800161024c565b34801561042c57600080fd5b506102a561043b366004612869565b610c6d565b34801561044c57600080fd5b506102a561045b36600461280b565b610d44565b34801561046c57600080fd5b506102d861047b36600461280b565b6001600160a01b031660009081526020819052604090205490565b3480156104a257600080fd5b506102a5610dcb565b3480156104b757600080fd5b506102a5610e01565b3480156104cc57600080fd5b506102a56104db366004612897565b610e62565b3480156104ec57600080fd5b50601254601354601454601554601654601754601854601954601a54601b54601c54601d54604080519c8d5260208d019b909b52998b019890985260608a0196909652608089019490945260a088019290925260c087015260e08601526101008501526101208401526101408301526101608201526101800161024c565b34801561057657600080fd5b506102a5610eec565b34801561058b57600080fd5b506005546001600160a01b03165b6040516001600160a01b03909116815260200161024c565b3480156105bd57600080fd5b50600d54600e5461010090910460ff169060408051921515835260208301919091520161024c565b3480156105f157600080fd5b5061023f610f63565b34801561060657600080fd5b506102a5610615366004612897565b610f72565b34801561062657600080fd5b506102a561063536600461280b565b611051565b34801561064657600080fd5b506102756106553660046127b3565b6110d8565b34801561066657600080fd5b506102756106753660046127b3565b611171565b34801561068657600080fd5b50600654600754600854600160a81b90920460ff169160408051931515845260208401929092529082015260600161024c565b3480156106c557600080fd5b506102a56106d43660046127df565b61117e565b3480156106e557600080fd5b506102a56106f4366004612897565b611284565b34801561070557600080fd5b506102a56107143660046128cc565b611306565b34801561072557600080fd5b506102d86107343660046128ff565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561076b57600080fd5b50600f54601054601154604080516001600160a01b039485168152928416602084015292169181019190915260600161024c565b3480156107ab57600080fd5b506102a561149c565b3480156107c057600080fd5b506102a56107cf366004612869565b6114fe565b3480156107e057600080fd5b506105997f000000000000000000000000000000000000000000000000000000000000000081565b34801561081457600080fd5b506102a561082336600461280b565b6115da565b34801561083457600080fd5b50600d546102759060ff1681565b60606003805461085190612938565b80601f016020809104026020016040519081016040528092919081815260200182805461087d90612938565b80156108ca5780601f1061089f576101008083540402835291602001916108ca565b820191906000526020600020905b8154815290600101906020018083116108ad57829003601f168201915b5050505050905090565b60006108e1338484611675565b5060015b92915050565b6005546001600160a01b0316331461091e5760405162461bcd60e51b815260040161091590612972565b60405180910390fd5b6013839055601482905560158190558061093883856129bd565b61094291906129bd565b6012819055603210156109a75760405162461bcd60e51b815260206004820152602760248201527f546f74616c20627579206665652063616e6e6f7420626520686967686572207460448201526668616e2037302560c81b6064820152608401610915565b6012546013546014546015546040805194855260208501939093529183015260608201527f3d839c4d8187eded7cfbdfb38e8c68ae748d7c674400c8c3b8c837ba2933d1ac906080015b60405180910390a1505050565b6005546001600160a01b03163314610a285760405162461bcd60e51b815260040161091590612972565b60178390556018829055601981905580610a4283856129bd565b610a4c91906129bd565b601681905560501015610ab25760405162461bcd60e51b815260206004820152602860248201527f546f74616c2073656c6c206665652063616e6e6f7420626520686967686572206044820152677468616e2037302560c01b6064820152608401610915565b6016546017546018546019546040805194855260208501939093529183015260608201527f5453929bc359b94bdd2542a6d8391ca15fe386d74f044db5277328a36de3c650906080016109f1565b6000610b0d848484611799565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610b925760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610915565b610b9f8533858403611675565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916108e1918590610be19086906129bd565b611675565b6005546001600160a01b03163314610c105760405162461bcd60e51b815260040161091590612972565b600f546040516001600160a01b03918216918316907f1c3fdcf16dce794746858765f6acfdac41e7355deba3a0d04cef33a3710ca47c90600090a3600f80546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610c975760405162461bcd60e51b815260040161091590612972565b6001811015610ce85760405162461bcd60e51b815260206004820181905260248201527f43616e6e6f7420736574206d61785478206c6f776572207468616e20302e31256044820152606401610915565b6103e8610cf460025490565b610cfe90836129d0565b610d0891906129e7565b600b8190556040519081527fff3dd5e80294197918c284bbfc3dadd97d0b40ce92106110946329088f80068a906020015b60405180910390a150565b6005546001600160a01b03163314610d6e5760405162461bcd60e51b815260040161091590612972565b6010546040516001600160a01b03918216918316907fa90d7598849ffffb63cb2a2b23157fa85704d50370070de404a308243fe1daec90600090a3601080546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610df55760405162461bcd60e51b815260040161091590612972565b610dff6000612068565b565b6005546001600160a01b03163314610e2b5760405162461bcd60e51b815260040161091590612972565b6009805460ff1916905560405142907ff4eaa75eae08ae80c3daf791438dac1cff2cfd3b0bad2304ec7bbb067e50261690600090a2565b6005546001600160a01b03163314610e8c5760405162461bcd60e51b815260040161091590612972565b6001600160a01b038216600081815260226020908152604091829020805460ff191685151590811790915591519182527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc9291015b60405180910390a25050565b6005546001600160a01b03163314610f165760405162461bcd60e51b815260040161091590612972565b600d805460ff191660011790556006805460ff60a81b1916600160a81b17905560405142907fb3da2db3dfc3778f99852546c6e9ab39ec253f9de7b0847afec61bd27878e92390600090a2565b60606004805461085190612938565b6005546001600160a01b03163314610f9c5760405162461bcd60e51b815260040161091590612972565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316036110435760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610915565b61104d82826120ba565b5050565b6005546001600160a01b0316331461107b5760405162461bcd60e51b815260040161091590612972565b6011546040516001600160a01b03918216918316907f4ce50633956fe1b911cca77c10a57fd1f044be5162496688c0e5f0e82ddf7bd890600090a3601180546001600160a01b0319166001600160a01b0392909216919091179055565b3360009081526001602090815260408083206001600160a01b03861684529091528120548281101561115a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610915565b6111673385858403611675565b5060019392505050565b60006108e1338484611799565b6005546001600160a01b031633146111a85760405162461bcd60e51b815260040161091590612972565b601b839055601c829055601d819055806111c283856129bd565b6111cc91906129bd565b601a819055600a10156112365760405162461bcd60e51b815260206004820152602c60248201527f546f74616c207472616e73666572206665652063616e6e6f742062652068696760448201526b686572207468616e2037302560a01b6064820152608401610915565b601a54601b54601c54601d546040805194855260208501939093529183015260608201527f29ca25f871e92385edcc1db1ce9c82a11549def46dbee1cff41bbed1dcac6ecb906080016109f1565b6005546001600160a01b031633146112ae5760405162461bcd60e51b815260040161091590612972565b6001600160a01b038216600081815260216020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79101610ee0565b6005546001600160a01b031633146113305760405162461bcd60e51b815260040161091590612972565b600182101561139e5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e604482015273101817181892903a37ba30b61039bab838363c9760611b6064820152608401610915565b818110156114015760405162461bcd60e51b815260206004820152602a60248201527f6d6178696d756d20616d6f756e742063616e7420626520686967686572207468604482015269616e206d696e696d756d60b01b6064820152608401610915565b6006805460ff60a81b1916600160a81b8515150217905560025461271090839061142b91906129d0565b61143591906129e7565b6007556127108161144560025490565b61144f91906129d0565b61145991906129e7565b600855604080518415158152602081018490529081018290527f52cd2cdb42ff0eeec9362d7ed5b04f64c8d022697128b5378fc51cea7e63c779906060016109f1565b6005546001600160a01b031633146114c65760405162461bcd60e51b815260040161091590612972565b6009805461ff001916905560405142907f26e776fcf7ca20aa79b5b946e9b5111f47205539ece9d7a7995271dd6a8b5bad90600090a2565b6005546001600160a01b031633146115285760405162461bcd60e51b815260040161091590612972565b60058110156115855760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610915565b6103e861159160025490565b61159b90836129d0565b6115a591906129e7565b600a8190556040519081527f12528a3c61e0f3b2d6fc707a9fc58b1af86e252cad0d7f4c154ebeabb162dace90602001610d39565b6005546001600160a01b031633146116045760405162461bcd60e51b815260040161091590612972565b6001600160a01b0381166116695760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610915565b61167281612068565b50565b6001600160a01b0383166116d75760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610915565b6001600160a01b0382166117385760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610915565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166117bf5760405162461bcd60e51b815260040161091590612a09565b6001600160a01b0382166117e55760405162461bcd60e51b815260040161091590612a4e565b806000036117fe576117f98383600061210e565b505050565b60095460ff1615611c9d576005546001600160a01b0384811691161480159061183557506005546001600160a01b03838116911614155b801561184957506001600160a01b03821615155b801561186057506001600160a01b03821661dead14155b80156118765750600654600160a01b900460ff16155b15611c9d57600d5460ff16611909576001600160a01b03831660009081526021602052604090205460ff16806118c457506001600160a01b03821660009081526021602052604090205460ff165b6119095760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610915565b600954610100900460ff1615611a55576005546001600160a01b0383811691161480159061196957507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b80156119a757507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b15611a5557326000908152600c60205260409020544311611a425760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610915565b326000908152600c602052604090204390555b6001600160a01b03831660009081526023602052604090205460ff168015611a9657506001600160a01b03821660009081526022602052604090205460ff16155b15611b6b57600b54811115611afc5760405162461bcd60e51b815260206004820152602660248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201526536b0bc2a3c1760d11b6064820152608401610915565b600a546001600160a01b038316600090815260208190526040902054611b2290836129bd565b1115611b665760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610915565b611c9d565b6001600160a01b03821660009081526023602052604090205460ff168015611bac57506001600160a01b03831660009081526022602052604090205460ff16155b15611c1357600b54811115611b665760405162461bcd60e51b815260206004820152602760248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152661036b0bc2a3c1760c91b6064820152608401610915565b6001600160a01b03821660009081526022602052604090205460ff16611c9d57600a546001600160a01b038316600090815260208190526040902054611c5990836129bd565b1115611c9d5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610915565b3060009081526020819052604090205460075481108015908190611cca5750600654600160a81b900460ff165b8015611ce05750600654600160a01b900460ff16155b8015611d0557506001600160a01b03851660009081526023602052604090205460ff16155b8015611d2a57506001600160a01b03851660009081526021602052604090205460ff16155b8015611d4f57506001600160a01b03841660009081526021602052604090205460ff16155b15611d7d576006805460ff60a01b1916600160a01b179055611d6f612263565b6006805460ff60a01b191690555b6006546001600160a01b03861660009081526021602052604090205460ff600160a01b909204821615911680611dcb57506001600160a01b03851660009081526021602052604090205460ff165b15611dd4575060005b60008115612054576001600160a01b03861660009081526023602052604090205460ff168015611e0657506000601654115b15611ec457611e2b6064611e256016548861247f90919063ffffffff16565b90612492565b905060165460185482611e3e91906129d0565b611e4891906129e7565b601f6000828254611e5991906129bd565b9091555050601654601954611e6e90836129d0565b611e7891906129e7565b60206000828254611e8991906129bd565b9091555050601654601754611e9e90836129d0565b611ea891906129e7565b601e6000828254611eb991906129bd565b909155506120369050565b6001600160a01b03871660009081526023602052604090205460ff168015611eee57506000601254115b15611f8057611f0d6064611e256012548861247f90919063ffffffff16565b905060125460145482611f2091906129d0565b611f2a91906129e7565b601f6000828254611f3b91906129bd565b9091555050601254601554611f5090836129d0565b611f5a91906129e7565b60206000828254611f6b91906129bd565b9091555050601254601354611e9e90836129d0565b601a541561203657611fa26064611e25601a548861247f90919063ffffffff16565b9050601a54601c5482611fb591906129d0565b611fbf91906129e7565b601f6000828254611fd091906129bd565b9091555050601a54601d54611fe590836129d0565b611fef91906129e7565b6020600082825461200091906129bd565b9091555050601a54601b5461201590836129d0565b61201f91906129e7565b601e600082825461203091906129bd565b90915550505b80156120475761204787308361210e565b6120518186612a91565b94505b61205f87878761210e565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260236020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166121345760405162461bcd60e51b815260040161091590612a09565b6001600160a01b03821661215a5760405162461bcd60e51b815260040161091590612a4e565b6001600160a01b038316600090815260208190526040902054818110156121d25760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610915565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906122099084906129bd565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161225591815260200190565b60405180910390a350505050565b3060009081526020819052604081205490506000602054601e54601f5461228a91906129bd565b61229491906129bd565b90506000826000036122a557505050565b6008548311156122b55760085492505b6000600283601f54866122c891906129d0565b6122d291906129e7565b6122dc91906129e7565b905060006122ea858361249e565b9050476122f6826124aa565b6000612302478361249e565b9050600061231f87611e25601e548561247f90919063ffffffff16565b9050600061233c88611e256020548661247f90919063ffffffff16565b905060008161234b8486612a91565b6123559190612a91565b6000601f819055601e81905560208190556011546040519293506001600160a01b031691849181818185875af1925050503d80600081146123b2576040519150601f19603f3d011682016040523d82523d6000602084013e6123b7565b606091505b509098505086158015906123cb5750600081115b1561241e576123da878261266a565b601f54604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6010546040516001600160a01b03909116904790600081818185875af1925050503d806000811461246b576040519150601f19603f3d011682016040523d82523d6000602084013e612470565b606091505b50505050505050505050505050565b600061248b82846129d0565b9392505050565b600061248b82846129e7565b600061248b8284612a91565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106124df576124df612aa4565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561255d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125819190612aba565b8160018151811061259457612594612aa4565b60200260200101906001600160a01b031690816001600160a01b0316815250506125df307f000000000000000000000000000000000000000000000000000000000000000084611675565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790612634908590600090869030904290600401612ad7565b600060405180830381600087803b15801561264e57600080fd5b505af1158015612662573d6000803e3d6000fd5b505050505050565b612695307f000000000000000000000000000000000000000000000000000000000000000084611675565b600f5460405163f305d71960e01b81523060048201526024810184905260006044820181905260648201526001600160a01b0391821660848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000009091169063f305d71990839060c40160606040518083038185885af1158015612724573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906127499190612b48565b5050505050565b600060208083528351808285015260005b8181101561277d57858101830151858201604001528201612761565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461167257600080fd5b600080604083850312156127c657600080fd5b82356127d18161279e565b946020939093013593505050565b6000806000606084860312156127f457600080fd5b505081359360208301359350604090920135919050565b60006020828403121561281d57600080fd5b813561248b8161279e565b60008060006060848603121561283d57600080fd5b83356128488161279e565b925060208401356128588161279e565b929592945050506040919091013590565b60006020828403121561287b57600080fd5b5035919050565b8035801515811461289257600080fd5b919050565b600080604083850312156128aa57600080fd5b82356128b58161279e565b91506128c360208401612882565b90509250929050565b6000806000606084860312156128e157600080fd5b6128ea84612882565b95602085013595506040909401359392505050565b6000806040838503121561291257600080fd5b823561291d8161279e565b9150602083013561292d8161279e565b809150509250929050565b600181811c9082168061294c57607f821691505b60208210810361296c57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b808201808211156108e5576108e56129a7565b80820281158282048414176108e5576108e56129a7565b600082612a0457634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b818103818111156108e5576108e56129a7565b634e487b7160e01b600052603260045260246000fd5b600060208284031215612acc57600080fd5b815161248b8161279e565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612b275784516001600160a01b031683529383019391830191600101612b02565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215612b5d57600080fd5b835192506020840151915060408401519050925092509256fea264697066735822122052e37dfdf71c26a0016cd6b930ed32c5b6e37e800ec54869caf0783eb511e70864736f6c634300081300334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x60806040526004361061021e5760003560e01c80638a8c523c11610123578063bfd201f5116100ab578063e884f2601161006f578063e884f2601461079f578063f1d5f517146107b4578063f242ab41146107d4578063f2fde38b14610808578063fd1bc2ca1461082857600080fd5b8063bfd201f5146106b9578063c0246668146106d9578063d0889358146106f9578063dd62ed3e14610719578063dd9cdaed1461075f57600080fd5b80639a7a23d6116100f25780639a7a23d6146105fa578063a19804301461061a578063a457c2d71461063a578063a9059cbb1461065a578063ae7ed5671461067a57600080fd5b80638a8c523c1461056a5780638da5cb5b1461057f5780639374ae82146105b157806395d89b41146105e557600080fd5b80633b0aacbc116101a657806370a082311161017557806370a0823114610460578063715018a614610496578063751039fc146104ab5780637571336a146104c05780637688c584146104e057600080fd5b80633b0aacbc146103b55780633ff5ad78146103d55780635c85974f146104205780635d098b381461044057600080fd5b806318160ddd116101ed57806318160ddd146102c75780631cffccf4146102e657806323b872dd14610359578063313ce56714610379578063395093511461039557600080fd5b806306fdde031461022a578063095ea7b3146102555780630d075d9c146102855780630f683e90146102a757600080fd5b3661022557005b600080fd5b34801561023657600080fd5b5061023f610842565b60405161024c9190612750565b60405180910390f35b34801561026157600080fd5b506102756102703660046127b3565b6108d4565b604051901515815260200161024c565b34801561029157600080fd5b506102a56102a03660046127df565b6108eb565b005b3480156102b357600080fd5b506102a56102c23660046127df565b6109fe565b3480156102d357600080fd5b506002545b60405190815260200161024c565b3480156102f257600080fd5b5061033a61030136600461280b565b6001600160a01b03166000908152602160209081526040808320546022835281842054602390935292205460ff92831693918316921690565b604080519315158452911515602084015215159082015260600161024c565b34801561036557600080fd5b50610275610374366004612828565b610b00565b34801561038557600080fd5b506040516012815260200161024c565b3480156103a157600080fd5b506102756103b03660046127b3565b610baa565b3480156103c157600080fd5b506102a56103d036600461280b565b610be6565b3480156103e157600080fd5b506103fe600954600a54600b5460ff808416946101009094041692565b604080519415158552921515602085015291830152606082015260800161024c565b34801561042c57600080fd5b506102a561043b366004612869565b610c6d565b34801561044c57600080fd5b506102a561045b36600461280b565b610d44565b34801561046c57600080fd5b506102d861047b36600461280b565b6001600160a01b031660009081526020819052604090205490565b3480156104a257600080fd5b506102a5610dcb565b3480156104b757600080fd5b506102a5610e01565b3480156104cc57600080fd5b506102a56104db366004612897565b610e62565b3480156104ec57600080fd5b50601254601354601454601554601654601754601854601954601a54601b54601c54601d54604080519c8d5260208d019b909b52998b019890985260608a0196909652608089019490945260a088019290925260c087015260e08601526101008501526101208401526101408301526101608201526101800161024c565b34801561057657600080fd5b506102a5610eec565b34801561058b57600080fd5b506005546001600160a01b03165b6040516001600160a01b03909116815260200161024c565b3480156105bd57600080fd5b50600d54600e5461010090910460ff169060408051921515835260208301919091520161024c565b3480156105f157600080fd5b5061023f610f63565b34801561060657600080fd5b506102a5610615366004612897565b610f72565b34801561062657600080fd5b506102a561063536600461280b565b611051565b34801561064657600080fd5b506102756106553660046127b3565b6110d8565b34801561066657600080fd5b506102756106753660046127b3565b611171565b34801561068657600080fd5b50600654600754600854600160a81b90920460ff169160408051931515845260208401929092529082015260600161024c565b3480156106c557600080fd5b506102a56106d43660046127df565b61117e565b3480156106e557600080fd5b506102a56106f4366004612897565b611284565b34801561070557600080fd5b506102a56107143660046128cc565b611306565b34801561072557600080fd5b506102d86107343660046128ff565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561076b57600080fd5b50600f54601054601154604080516001600160a01b039485168152928416602084015292169181019190915260600161024c565b3480156107ab57600080fd5b506102a561149c565b3480156107c057600080fd5b506102a56107cf366004612869565b6114fe565b3480156107e057600080fd5b506105997f000000000000000000000000bfc9489b3b657abfccf9869c110e31fd9a4bba7a81565b34801561081457600080fd5b506102a561082336600461280b565b6115da565b34801561083457600080fd5b50600d546102759060ff1681565b60606003805461085190612938565b80601f016020809104026020016040519081016040528092919081815260200182805461087d90612938565b80156108ca5780601f1061089f576101008083540402835291602001916108ca565b820191906000526020600020905b8154815290600101906020018083116108ad57829003601f168201915b5050505050905090565b60006108e1338484611675565b5060015b92915050565b6005546001600160a01b0316331461091e5760405162461bcd60e51b815260040161091590612972565b60405180910390fd5b6013839055601482905560158190558061093883856129bd565b61094291906129bd565b6012819055603210156109a75760405162461bcd60e51b815260206004820152602760248201527f546f74616c20627579206665652063616e6e6f7420626520686967686572207460448201526668616e2037302560c81b6064820152608401610915565b6012546013546014546015546040805194855260208501939093529183015260608201527f3d839c4d8187eded7cfbdfb38e8c68ae748d7c674400c8c3b8c837ba2933d1ac906080015b60405180910390a1505050565b6005546001600160a01b03163314610a285760405162461bcd60e51b815260040161091590612972565b60178390556018829055601981905580610a4283856129bd565b610a4c91906129bd565b601681905560501015610ab25760405162461bcd60e51b815260206004820152602860248201527f546f74616c2073656c6c206665652063616e6e6f7420626520686967686572206044820152677468616e2037302560c01b6064820152608401610915565b6016546017546018546019546040805194855260208501939093529183015260608201527f5453929bc359b94bdd2542a6d8391ca15fe386d74f044db5277328a36de3c650906080016109f1565b6000610b0d848484611799565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610b925760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610915565b610b9f8533858403611675565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916108e1918590610be19086906129bd565b611675565b6005546001600160a01b03163314610c105760405162461bcd60e51b815260040161091590612972565b600f546040516001600160a01b03918216918316907f1c3fdcf16dce794746858765f6acfdac41e7355deba3a0d04cef33a3710ca47c90600090a3600f80546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610c975760405162461bcd60e51b815260040161091590612972565b6001811015610ce85760405162461bcd60e51b815260206004820181905260248201527f43616e6e6f7420736574206d61785478206c6f776572207468616e20302e31256044820152606401610915565b6103e8610cf460025490565b610cfe90836129d0565b610d0891906129e7565b600b8190556040519081527fff3dd5e80294197918c284bbfc3dadd97d0b40ce92106110946329088f80068a906020015b60405180910390a150565b6005546001600160a01b03163314610d6e5760405162461bcd60e51b815260040161091590612972565b6010546040516001600160a01b03918216918316907fa90d7598849ffffb63cb2a2b23157fa85704d50370070de404a308243fe1daec90600090a3601080546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610df55760405162461bcd60e51b815260040161091590612972565b610dff6000612068565b565b6005546001600160a01b03163314610e2b5760405162461bcd60e51b815260040161091590612972565b6009805460ff1916905560405142907ff4eaa75eae08ae80c3daf791438dac1cff2cfd3b0bad2304ec7bbb067e50261690600090a2565b6005546001600160a01b03163314610e8c5760405162461bcd60e51b815260040161091590612972565b6001600160a01b038216600081815260226020908152604091829020805460ff191685151590811790915591519182527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc9291015b60405180910390a25050565b6005546001600160a01b03163314610f165760405162461bcd60e51b815260040161091590612972565b600d805460ff191660011790556006805460ff60a81b1916600160a81b17905560405142907fb3da2db3dfc3778f99852546c6e9ab39ec253f9de7b0847afec61bd27878e92390600090a2565b60606004805461085190612938565b6005546001600160a01b03163314610f9c5760405162461bcd60e51b815260040161091590612972565b7f000000000000000000000000bfc9489b3b657abfccf9869c110e31fd9a4bba7a6001600160a01b0316826001600160a01b0316036110435760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610915565b61104d82826120ba565b5050565b6005546001600160a01b0316331461107b5760405162461bcd60e51b815260040161091590612972565b6011546040516001600160a01b03918216918316907f4ce50633956fe1b911cca77c10a57fd1f044be5162496688c0e5f0e82ddf7bd890600090a3601180546001600160a01b0319166001600160a01b0392909216919091179055565b3360009081526001602090815260408083206001600160a01b03861684529091528120548281101561115a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610915565b6111673385858403611675565b5060019392505050565b60006108e1338484611799565b6005546001600160a01b031633146111a85760405162461bcd60e51b815260040161091590612972565b601b839055601c829055601d819055806111c283856129bd565b6111cc91906129bd565b601a819055600a10156112365760405162461bcd60e51b815260206004820152602c60248201527f546f74616c207472616e73666572206665652063616e6e6f742062652068696760448201526b686572207468616e2037302560a01b6064820152608401610915565b601a54601b54601c54601d546040805194855260208501939093529183015260608201527f29ca25f871e92385edcc1db1ce9c82a11549def46dbee1cff41bbed1dcac6ecb906080016109f1565b6005546001600160a01b031633146112ae5760405162461bcd60e51b815260040161091590612972565b6001600160a01b038216600081815260216020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79101610ee0565b6005546001600160a01b031633146113305760405162461bcd60e51b815260040161091590612972565b600182101561139e5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e604482015273101817181892903a37ba30b61039bab838363c9760611b6064820152608401610915565b818110156114015760405162461bcd60e51b815260206004820152602a60248201527f6d6178696d756d20616d6f756e742063616e7420626520686967686572207468604482015269616e206d696e696d756d60b01b6064820152608401610915565b6006805460ff60a81b1916600160a81b8515150217905560025461271090839061142b91906129d0565b61143591906129e7565b6007556127108161144560025490565b61144f91906129d0565b61145991906129e7565b600855604080518415158152602081018490529081018290527f52cd2cdb42ff0eeec9362d7ed5b04f64c8d022697128b5378fc51cea7e63c779906060016109f1565b6005546001600160a01b031633146114c65760405162461bcd60e51b815260040161091590612972565b6009805461ff001916905560405142907f26e776fcf7ca20aa79b5b946e9b5111f47205539ece9d7a7995271dd6a8b5bad90600090a2565b6005546001600160a01b031633146115285760405162461bcd60e51b815260040161091590612972565b60058110156115855760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610915565b6103e861159160025490565b61159b90836129d0565b6115a591906129e7565b600a8190556040519081527f12528a3c61e0f3b2d6fc707a9fc58b1af86e252cad0d7f4c154ebeabb162dace90602001610d39565b6005546001600160a01b031633146116045760405162461bcd60e51b815260040161091590612972565b6001600160a01b0381166116695760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610915565b61167281612068565b50565b6001600160a01b0383166116d75760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610915565b6001600160a01b0382166117385760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610915565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166117bf5760405162461bcd60e51b815260040161091590612a09565b6001600160a01b0382166117e55760405162461bcd60e51b815260040161091590612a4e565b806000036117fe576117f98383600061210e565b505050565b60095460ff1615611c9d576005546001600160a01b0384811691161480159061183557506005546001600160a01b03838116911614155b801561184957506001600160a01b03821615155b801561186057506001600160a01b03821661dead14155b80156118765750600654600160a01b900460ff16155b15611c9d57600d5460ff16611909576001600160a01b03831660009081526021602052604090205460ff16806118c457506001600160a01b03821660009081526021602052604090205460ff165b6119095760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610915565b600954610100900460ff1615611a55576005546001600160a01b0383811691161480159061196957507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316826001600160a01b031614155b80156119a757507f000000000000000000000000bfc9489b3b657abfccf9869c110e31fd9a4bba7a6001600160a01b0316826001600160a01b031614155b15611a5557326000908152600c60205260409020544311611a425760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610915565b326000908152600c602052604090204390555b6001600160a01b03831660009081526023602052604090205460ff168015611a9657506001600160a01b03821660009081526022602052604090205460ff16155b15611b6b57600b54811115611afc5760405162461bcd60e51b815260206004820152602660248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201526536b0bc2a3c1760d11b6064820152608401610915565b600a546001600160a01b038316600090815260208190526040902054611b2290836129bd565b1115611b665760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610915565b611c9d565b6001600160a01b03821660009081526023602052604090205460ff168015611bac57506001600160a01b03831660009081526022602052604090205460ff16155b15611c1357600b54811115611b665760405162461bcd60e51b815260206004820152602760248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152661036b0bc2a3c1760c91b6064820152608401610915565b6001600160a01b03821660009081526022602052604090205460ff16611c9d57600a546001600160a01b038316600090815260208190526040902054611c5990836129bd565b1115611c9d5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610915565b3060009081526020819052604090205460075481108015908190611cca5750600654600160a81b900460ff165b8015611ce05750600654600160a01b900460ff16155b8015611d0557506001600160a01b03851660009081526023602052604090205460ff16155b8015611d2a57506001600160a01b03851660009081526021602052604090205460ff16155b8015611d4f57506001600160a01b03841660009081526021602052604090205460ff16155b15611d7d576006805460ff60a01b1916600160a01b179055611d6f612263565b6006805460ff60a01b191690555b6006546001600160a01b03861660009081526021602052604090205460ff600160a01b909204821615911680611dcb57506001600160a01b03851660009081526021602052604090205460ff165b15611dd4575060005b60008115612054576001600160a01b03861660009081526023602052604090205460ff168015611e0657506000601654115b15611ec457611e2b6064611e256016548861247f90919063ffffffff16565b90612492565b905060165460185482611e3e91906129d0565b611e4891906129e7565b601f6000828254611e5991906129bd565b9091555050601654601954611e6e90836129d0565b611e7891906129e7565b60206000828254611e8991906129bd565b9091555050601654601754611e9e90836129d0565b611ea891906129e7565b601e6000828254611eb991906129bd565b909155506120369050565b6001600160a01b03871660009081526023602052604090205460ff168015611eee57506000601254115b15611f8057611f0d6064611e256012548861247f90919063ffffffff16565b905060125460145482611f2091906129d0565b611f2a91906129e7565b601f6000828254611f3b91906129bd565b9091555050601254601554611f5090836129d0565b611f5a91906129e7565b60206000828254611f6b91906129bd565b9091555050601254601354611e9e90836129d0565b601a541561203657611fa26064611e25601a548861247f90919063ffffffff16565b9050601a54601c5482611fb591906129d0565b611fbf91906129e7565b601f6000828254611fd091906129bd565b9091555050601a54601d54611fe590836129d0565b611fef91906129e7565b6020600082825461200091906129bd565b9091555050601a54601b5461201590836129d0565b61201f91906129e7565b601e600082825461203091906129bd565b90915550505b80156120475761204787308361210e565b6120518186612a91565b94505b61205f87878761210e565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260236020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166121345760405162461bcd60e51b815260040161091590612a09565b6001600160a01b03821661215a5760405162461bcd60e51b815260040161091590612a4e565b6001600160a01b038316600090815260208190526040902054818110156121d25760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610915565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906122099084906129bd565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161225591815260200190565b60405180910390a350505050565b3060009081526020819052604081205490506000602054601e54601f5461228a91906129bd565b61229491906129bd565b90506000826000036122a557505050565b6008548311156122b55760085492505b6000600283601f54866122c891906129d0565b6122d291906129e7565b6122dc91906129e7565b905060006122ea858361249e565b9050476122f6826124aa565b6000612302478361249e565b9050600061231f87611e25601e548561247f90919063ffffffff16565b9050600061233c88611e256020548661247f90919063ffffffff16565b905060008161234b8486612a91565b6123559190612a91565b6000601f819055601e81905560208190556011546040519293506001600160a01b031691849181818185875af1925050503d80600081146123b2576040519150601f19603f3d011682016040523d82523d6000602084013e6123b7565b606091505b509098505086158015906123cb5750600081115b1561241e576123da878261266a565b601f54604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6010546040516001600160a01b03909116904790600081818185875af1925050503d806000811461246b576040519150601f19603f3d011682016040523d82523d6000602084013e612470565b606091505b50505050505050505050505050565b600061248b82846129d0565b9392505050565b600061248b82846129e7565b600061248b8284612a91565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106124df576124df612aa4565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561255d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125819190612aba565b8160018151811061259457612594612aa4565b60200260200101906001600160a01b031690816001600160a01b0316815250506125df307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611675565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790612634908590600090869030904290600401612ad7565b600060405180830381600087803b15801561264e57600080fd5b505af1158015612662573d6000803e3d6000fd5b505050505050565b612695307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611675565b600f5460405163f305d71960e01b81523060048201526024810184905260006044820181905260648201526001600160a01b0391821660848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d9091169063f305d71990839060c40160606040518083038185885af1158015612724573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906127499190612b48565b5050505050565b600060208083528351808285015260005b8181101561277d57858101830151858201604001528201612761565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461167257600080fd5b600080604083850312156127c657600080fd5b82356127d18161279e565b946020939093013593505050565b6000806000606084860312156127f457600080fd5b505081359360208301359350604090920135919050565b60006020828403121561281d57600080fd5b813561248b8161279e565b60008060006060848603121561283d57600080fd5b83356128488161279e565b925060208401356128588161279e565b929592945050506040919091013590565b60006020828403121561287b57600080fd5b5035919050565b8035801515811461289257600080fd5b919050565b600080604083850312156128aa57600080fd5b82356128b58161279e565b91506128c360208401612882565b90509250929050565b6000806000606084860312156128e157600080fd5b6128ea84612882565b95602085013595506040909401359392505050565b6000806040838503121561291257600080fd5b823561291d8161279e565b9150602083013561292d8161279e565b809150509250929050565b600181811c9082168061294c57607f821691505b60208210810361296c57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b808201808211156108e5576108e56129a7565b80820281158282048414176108e5576108e56129a7565b600082612a0457634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b818103818111156108e5576108e56129a7565b634e487b7160e01b600052603260045260246000fd5b600060208284031215612acc57600080fd5b815161248b8161279e565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612b275784516001600160a01b031683529383019391830191600101612b02565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215612b5d57600080fd5b835192506020840151915060408401519050925092509256fea264697066735822122052e37dfdf71c26a0016cd6b930ed32c5b6e37e800ec54869caf0783eb511e70864736f6c63430008130033

Deployed Bytecode Sourcemap

25249:27604:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10983:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13216:194;;;;;;;;;;-1:-1:-1;13216:194:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;13216:194:0;1023:187:1;40447:476:0;;;;;;;;;;-1:-1:-1;40447:476:0;;;;;:::i;:::-;;:::i;:::-;;41279:528;;;;;;;;;;-1:-1:-1;41279:528:0;;;;;:::i;:::-;;:::i;12103:108::-;;;;;;;;;;-1:-1:-1;12191:12:0;;12103:108;;;1682:25:1;;;1670:2;1655:18;12103:108:0;1536:177:1;36063:428:0;;;;;;;;;;-1:-1:-1;36063:428:0;;;;;:::i;:::-;-1:-1:-1;;;;;36335:20:0;36193:17;36335:20;;;:11;:20;;;;;;;;;36385:15;:24;;;;;;36449:25;:34;;;;;;36335:20;;;;;36385:24;;;;36449:34;;36063:428;;;;;2179:14:1;;2172:22;2154:41;;2238:14;;2231:22;2226:2;2211:18;;2204:50;2297:14;2290:22;2270:18;;;2263:50;2142:2;2127:18;36063:428:0;1970:349:1;13888:529:0;;;;;;;;;;-1:-1:-1;13888:529:0;;;;;:::i;:::-;;:::i;31503:93::-;;;;;;;;;;-1:-1:-1;31503:93:0;;31586:2;2927:36:1;;2915:2;2900:18;31503:93:0;2785:184:1;14822:290:0;;;;;;;;;;-1:-1:-1;14822:290:0;;;;;:::i;:::-;;:::i;44582:164::-;;;;;;;;;;-1:-1:-1;44582:164:0;;;;;:::i;:::-;;:::i;32729:393::-;;;;;;;;;;;;32987:14;;33080:9;;33109:5;;32987:14;;;;;;33036:20;;;;;32729:393;;;;;3218:14:1;;3211:22;3193:41;;3277:14;;3270:22;3265:2;3250:18;;3243:50;3309:18;;;3302:34;3367:2;3352:18;;3345:34;3180:3;3165:19;32729:393:0;2974:411:1;38968:215:0;;;;;;;;;;-1:-1:-1;38968:215:0;;;;;:::i;:::-;;:::i;44238:166::-;;;;;;;;;;-1:-1:-1;44238:166:0;;;;;:::i;:::-;;:::i;12274:143::-;;;;;;;;;;-1:-1:-1;12274:143:0;;;;;:::i;:::-;-1:-1:-1;;;;;12391:18:0;12364:7;12391:18;;;;;;;;;;;;12274:143;22128:103;;;;;;;;;;;;;:::i;37292:130::-;;;;;;;;;;;;;:::i;39893:200::-;;;;;;;;;;-1:-1:-1;39893:200:0;;;;;:::i;:::-;;:::i;34610:1003::-;;;;;;;;;;-1:-1:-1;35157:11:0;;35192:9;;35224:8;;35260:13;;35300:12;;35337:10;;35371:9;;35409:14;;35454:16;;35499:14;;35541:13;;35587:18;;34610:1003;;;4517:25:1;;;4573:2;4558:18;;4551:34;;;;4601:18;;;4594:34;;;;4659:2;4644:18;;4637:34;;;;4702:3;4687:19;;4680:35;;;;4746:3;4731:19;;4724:35;;;;4790:3;4775:19;;4768:35;4834:3;4819:19;;4812:35;4878:3;4863:19;;4856:35;4922:3;4907:19;;4900:35;4966:3;4951:19;;4944:36;5011:3;4996:19;;4989:36;4504:3;4489:19;34610:1003:0;4060:971:1;36978:159:0;;;;;;;;;;;;;:::i;21477:87::-;;;;;;;;;;-1:-1:-1;21550:6:0;;-1:-1:-1;;;;;21550:6:0;21477:87;;;-1:-1:-1;;;;;5200:32:1;;;5182:51;;5170:2;5155:18;21477:87:0;5036:203:1;36678:157:0;;;;;;;;;;-1:-1:-1;36785:11:0;;36819:8;;36785:11;;;;;;;36678:157;;;5437:14:1;;5430:22;5412:41;;5484:2;5469:18;;5462:34;;;;5385:18;36678:157:0;5244:258:1;11202:104:0;;;;;;;;;;;;;:::i;43556:300::-;;;;;;;;;;-1:-1:-1;43556:300:0;;;;;:::i;:::-;;:::i;44932:176::-;;;;;;;;;;-1:-1:-1;44932:176:0;;;;;:::i;:::-;;:::i;15611:475::-;;;;;;;;;;-1:-1:-1;15611:475:0;;;;;:::i;:::-;;:::i;12630:200::-;;;;;;;;;;-1:-1:-1;12630:200:0;;;;;:::i;:::-;;:::i;31955:353::-;;;;;;;;;;-1:-1:-1;32191:15:0;;32237:16;;32284;;-1:-1:-1;;;32191:15:0;;;;;;31955:353;;;5728:14:1;;5721:22;5703:41;;5775:2;5760:18;;5753:34;;;;5803:18;;;5796:34;5691:2;5676:18;31955:353:0;5507:329:1;42171:651:0;;;;;;;;;;-1:-1:-1;42171:651:0;;;;;:::i;:::-;;:::i;43071:174::-;;;;;;;;;;-1:-1:-1;43071:174:0;;;;;:::i;:::-;;:::i;38179:553::-;;;;;;;;;;-1:-1:-1;38179:553:0;;;;;:::i;:::-;;:::i;12893:176::-;;;;;;;;;;-1:-1:-1;12893:176:0;;;;;:::i;:::-;-1:-1:-1;;;;;13034:18:0;;;13007:7;13034:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;12893:176;33424:274;;;;;;;;;;-1:-1:-1;33645:14:0;;33661:11;;33674:15;;33424:274;;;-1:-1:-1;;;;;33645:14:0;;;6795:34:1;;33661:11:0;;;6860:2:1;6845:18;;6838:43;33674:15:0;;6897:18:1;;;6890:43;;;;6745:2;6730:18;33424:274:0;6555:384:1;37562:152:0;;;;;;;;;;;;;:::i;39390:235::-;;;;;;;;;;-1:-1:-1;39390:235:0;;;;;:::i;:::-;;:::i;25368:32::-;;;;;;;;;;;;;;;22386:238;;;;;;;;;;-1:-1:-1;22386:238:0;;;;;:::i;:::-;;:::i;25946:29::-;;;;;;;;;;-1:-1:-1;25946:29:0;;;;;;;;10983:100;11037:13;11070:5;11063:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10983:100;:::o;13216:194::-;13324:4;13341:39;10069:10;13364:7;13373:6;13341:8;:39::i;:::-;-1:-1:-1;13398:4:0;13216:194;;;;;:::o;40447:476::-;21550:6;;-1:-1:-1;;;;;21550:6:0;10069:10;21697:23;21689:68;;;;-1:-1:-1;;;21689:68:0;;;;;;;:::i;:::-;;;;;;;;;40598:9:::1;:25:::0;;;40634:8:::1;:24:::0;;;40669:13:::1;:27:::0;;;40685:11;40721:20:::1;40645:13:::0;40610;40721:20:::1;:::i;:::-;:36;;;;:::i;:::-;40707:11;:50:::0;;;40791:2:::1;-1:-1:-1::0;40776:17:0::1;40768:69;;;::::0;-1:-1:-1;;;40768:69:0;;8154:2:1;40768:69:0::1;::::0;::::1;8136:21:1::0;8193:2;8173:18;;;8166:30;8232:34;8212:18;;;8205:62;-1:-1:-1;;;8283:18:1;;;8276:37;8330:19;;40768:69:0::1;7952:403:1::0;40768:69:0::1;40867:11;::::0;40880:9:::1;::::0;40891:8:::1;::::0;40901:13:::1;::::0;40853:62:::1;::::0;;8591:25:1;;;8647:2;8632:18;;8625:34;;;;8675:18;;;8668:34;8733:2;8718:18;;8711:34;40853:62:0::1;::::0;8578:3:1;8563:19;40853:62:0::1;;;;;;;;40447:476:::0;;;:::o;41279:528::-;21550:6;;-1:-1:-1;;;;;21550:6:0;10069:10;21697:23;21689:68;;;;-1:-1:-1;;;21689:68:0;;;;;;;:::i;:::-;41431:10:::1;:26:::0;;;41468:9:::1;:25:::0;;;41504:14:::1;:28:::0;;;41521:11;41558:22:::1;41480:13:::0;41444;41558:22:::1;:::i;:::-;:39;;;;:::i;:::-;41543:12;:54:::0;;;41646:2:::1;-1:-1:-1::0;41630:18:0::1;41608:108;;;::::0;-1:-1:-1;;;41608:108:0;;8958:2:1;41608:108:0::1;::::0;::::1;8940:21:1::0;8997:2;8977:18;;;8970:30;9036:34;9016:18;;;9009:62;-1:-1:-1;;;9087:18:1;;;9080:38;9135:19;;41608:108:0::1;8756:404:1::0;41608:108:0::1;41747:12;::::0;41761:10:::1;::::0;41773:9:::1;::::0;41784:14:::1;::::0;41732:67:::1;::::0;;8591:25:1;;;8647:2;8632:18;;8625:34;;;;8675:18;;;8668:34;8733:2;8718:18;;8711:34;41732:67:0::1;::::0;8578:3:1;8563:19;41732:67:0::1;8360:391:1::0;13888:529:0;14028:4;14045:36;14055:6;14063:9;14074:6;14045:9;:36::i;:::-;-1:-1:-1;;;;;14121:19:0;;14094:24;14121:19;;;:11;:19;;;;;;;;10069:10;14121:33;;;;;;;;14187:26;;;;14165:116;;;;-1:-1:-1;;;14165:116:0;;9367:2:1;14165:116:0;;;9349:21:1;9406:2;9386:18;;;9379:30;9445:34;9425:18;;;9418:62;-1:-1:-1;;;9496:18:1;;;9489:38;9544:19;;14165:116:0;9165:404:1;14165:116:0;14317:57;14326:6;10069:10;14367:6;14348:16;:25;14317:8;:57::i;:::-;-1:-1:-1;14405:4:0;;13888:529;-1:-1:-1;;;;13888:529:0:o;14822:290::-;10069:10;14935:4;15024:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;15024:34:0;;;;;;;;;;14935:4;;14952:130;;15002:7;;15024:47;;15061:10;;15024:47;:::i;:::-;14952:8;:130::i;44582:164::-;21550:6;;-1:-1:-1;;;;;21550:6:0;10069:10;21697:23;21689:68;;;;-1:-1:-1;;;21689:68:0;;;;;;;:::i;:::-;44686:14:::1;::::0;44657:44:::1;::::0;-1:-1:-1;;;;;44686:14:0;;::::1;::::0;44657:44;::::1;::::0;::::1;::::0;44686:14:::1;::::0;44657:44:::1;44712:14;:26:::0;;-1:-1:-1;;;;;;44712:26:0::1;-1:-1:-1::0;;;;;44712:26:0;;;::::1;::::0;;;::::1;::::0;;44582:164::o;38968:215::-;21550:6;;-1:-1:-1;;;;;21550:6:0;10069:10;21697:23;21689:68;;;;-1:-1:-1;;;21689:68:0;;;;;;;:::i;:::-;39052:1:::1;39042:6;:11;;39034:56;;;::::0;-1:-1:-1;;;39034:56:0;;9776:2:1;39034:56:0::1;::::0;::::1;9758:21:1::0;;;9795:18;;;9788:30;9854:34;9834:18;;;9827:62;9906:18;;39034:56:0::1;9574:356:1::0;39034:56:0::1;39136:4;39119:13;12191:12:::0;;;12103:108;39119:13:::1;39110:22;::::0;:6;:22:::1;:::i;:::-;39109:31;;;;:::i;:::-;39101:5;:39:::0;;;39156:19:::1;::::0;1682:25:1;;;39156:19:0::1;::::0;1670:2:1;1655:18;39156:19:0::1;;;;;;;;38968:215:::0;:::o;44238:166::-;21550:6;;-1:-1:-1;;;;;21550:6:0;10069:10;21697:23;21689:68;;;;-1:-1:-1;;;21689:68:0;;;;;;;:::i;:::-;44350:11:::1;::::0;44320:42:::1;::::0;-1:-1:-1;;;;;44350:11:0;;::::1;::::0;44320:42;::::1;::::0;::::1;::::0;44350:11:::1;::::0;44320:42:::1;44373:11;:23:::0;;-1:-1:-1;;;;;;44373:23:0::1;-1:-1:-1::0;;;;;44373:23:0;;;::::1;::::0;;;::::1;::::0;;44238:166::o;22128:103::-;21550:6;;-1:-1:-1;;;;;21550:6:0;10069:10;21697:23;21689:68;;;;-1:-1:-1;;;21689:68:0;;;;;;;:::i;:::-;22193:30:::1;22220:1;22193:18;:30::i;:::-;22128:103::o:0;37292:130::-;21550:6;;-1:-1:-1;;;;;21550:6:0;10069:10;21697:23;21689:68;;;;-1:-1:-1;;;21689:68:0;;;;;;;:::i;:::-;37346:14:::1;:22:::0;;-1:-1:-1;;37346:22:0::1;::::0;;37384:30:::1;::::0;37398:15:::1;::::0;37384:30:::1;::::0;37363:5:::1;::::0;37384:30:::1;37292:130::o:0;39893:200::-;21550:6;;-1:-1:-1;;;;;21550:6:0;10069:10;21697:23;21689:68;;;;-1:-1:-1;;;21689:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;40008:23:0;::::1;;::::0;;;:15:::1;:23;::::0;;;;;;;;:30;;-1:-1:-1;;40008:30:0::1;::::0;::::1;;::::0;;::::1;::::0;;;40054:31;;1163:41:1;;;40054:31:0::1;::::0;1136:18:1;40054:31:0::1;;;;;;;;39893:200:::0;;:::o;36978:159::-;21550:6;;-1:-1:-1;;;;;21550:6:0;10069:10;21697:23;21689:68;;;;-1:-1:-1;;;21689:68:0;;;;;;;:::i;:::-;37033:9:::1;:16:::0;;-1:-1:-1;;37033:16:0::1;37045:4;37033:16;::::0;;37060:15:::1;:22:::0;;-1:-1:-1;;;;37060:22:0::1;-1:-1:-1::0;;;37060:22:0::1;::::0;;37098:31:::1;::::0;37113:15:::1;::::0;37098:31:::1;::::0;37033:9:::1;::::0;37098:31:::1;36978:159::o:0;11202:104::-;11258:13;11291:7;11284:14;;;;;:::i;43556:300::-;21550:6;;-1:-1:-1;;;;;21550:6:0;10069:10;21697:23;21689:68;;;;-1:-1:-1;;;21689:68:0;;;;;;;:::i;:::-;43702:7:::1;-1:-1:-1::0;;;;;43694:15:0::1;:4;-1:-1:-1::0;;;;;43694:15:0::1;::::0;43672:122:::1;;;::::0;-1:-1:-1;;;43672:122:0;;10532:2:1;43672:122:0::1;::::0;::::1;10514:21:1::0;10571:2;10551:18;;;10544:30;10610:34;10590:18;;;10583:62;10681:27;10661:18;;;10654:55;10726:19;;43672:122:0::1;10330:421:1::0;43672:122:0::1;43807:41;43836:4;43842:5;43807:28;:41::i;:::-;43556:300:::0;;:::o;44932:176::-;21550:6;;-1:-1:-1;;;;;21550:6:0;10069:10;21697:23;21689:68;;;;-1:-1:-1;;;21689:68:0;;;;;;;:::i;:::-;45046:15:::1;::::0;45012:50:::1;::::0;-1:-1:-1;;;;;45046:15:0;;::::1;::::0;45012:50;::::1;::::0;::::1;::::0;45046:15:::1;::::0;45012:50:::1;45073:15;:27:::0;;-1:-1:-1;;;;;;45073:27:0::1;-1:-1:-1::0;;;;;45073:27:0;;;::::1;::::0;;;::::1;::::0;;44932:176::o;15611:475::-;10069:10;15729:4;15773:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;15773:34:0;;;;;;;;;;15840:35;;;;15818:122;;;;-1:-1:-1;;;15818:122:0;;10958:2:1;15818:122:0;;;10940:21:1;10997:2;10977:18;;;10970:30;11036:34;11016:18;;;11009:62;-1:-1:-1;;;11087:18:1;;;11080:35;11132:19;;15818:122:0;10756:401:1;15818:122:0;15976:67;10069:10;15999:7;16027:15;16008:16;:34;15976:8;:67::i;:::-;-1:-1:-1;16074:4:0;;15611:475;-1:-1:-1;;;15611:475:0:o;12630:200::-;12741:4;12758:42;10069:10;12782:9;12793:6;12758:9;:42::i;42171:651::-;21550:6;;-1:-1:-1;;;;;21550:6:0;10069:10;21697:23;21689:68;;;;-1:-1:-1;;;21689:68:0;;;;;;;:::i;:::-;42327:14:::1;:30:::0;;;42368:13:::1;:29:::0;;;42408:18:::1;:32:::0;;;42429:11;42470:30:::1;42384:13:::0;42344;42470:30:::1;:::i;:::-;:51;;;;:::i;:::-;42451:16;:70:::0;;;42574:2:::1;-1:-1:-1::0;42554:22:0::1;42532:116;;;::::0;-1:-1:-1;;;42532:116:0;;11364:2:1;42532:116:0::1;::::0;::::1;11346:21:1::0;11403:2;11383:18;;;11376:30;11442:34;11422:18;;;11415:62;-1:-1:-1;;;11493:18:1;;;11486:42;11545:19;;42532:116:0::1;11162:408:1::0;42532:116:0::1;42697:16;::::0;42728:14:::1;::::0;42757:13:::1;::::0;42785:18:::1;::::0;42664:150:::1;::::0;;8591:25:1;;;8647:2;8632:18;;8625:34;;;;8675:18;;;8668:34;8733:2;8718:18;;8711:34;42664:150:0::1;::::0;8578:3:1;8563:19;42664:150:0::1;8360:391:1::0;43071:174:0;21550:6;;-1:-1:-1;;;;;21550:6:0;10069:10;21697:23;21689:68;;;;-1:-1:-1;;;21689:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;43156:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;;;;:31;;-1:-1:-1;;43156:31:0::1;::::0;::::1;;::::0;;::::1;::::0;;;43203:34;;1163:41:1;;;43203:34:0::1;::::0;1136:18:1;43203:34:0::1;1023:187:1::0;38179:553:0;21550:6;;-1:-1:-1;;;;;21550:6:0;10069:10;21697:23;21689:68;;;;-1:-1:-1;;;21689:68:0;;;;;;;:::i;:::-;38345:1:::1;38337:4;:9;;38315:111;;;::::0;-1:-1:-1;;;38315:111:0;;11777:2:1;38315:111:0::1;::::0;::::1;11759:21:1::0;11816:2;11796:18;;;11789:30;11855:34;11835:18;;;11828:62;-1:-1:-1;;;11906:18:1;;;11899:50;11966:19;;38315:111:0::1;11575:416:1::0;38315:111:0::1;38453:4;38445;:12;;38437:67;;;::::0;-1:-1:-1;;;38437:67:0;;12198:2:1;38437:67:0::1;::::0;::::1;12180:21:1::0;12237:2;12217:18;;;12210:30;12276:34;12256:18;;;12249:62;-1:-1:-1;;;12327:18:1;;;12320:40;12377:19;;38437:67:0::1;11996:406:1::0;38437:67:0::1;38517:15;:26:::0;;-1:-1:-1;;;;38517:26:0::1;-1:-1:-1::0;;;38517:26:0;::::1;;;;::::0;;12191:12;;38598:5:::1;::::0;38590:4;;38574:20:::1;;;;:::i;:::-;38573:30;;;;:::i;:::-;38554:16;:49:::0;38658:5:::1;38650:4:::0;38634:13:::1;12191:12:::0;;;12103:108;38634:13:::1;:20;;;;:::i;:::-;38633:30;;;;:::i;:::-;38614:16;:49:::0;38679:45:::1;::::0;;5728:14:1;;5721:22;5703:41;;5775:2;5760:18;;5753:34;;;5803:18;;;5796:34;;;38679:45:0::1;::::0;5691:2:1;5676:18;38679:45:0::1;5507:329:1::0;37562:152:0;21550:6;;-1:-1:-1;;;;;21550:6:0;10069:10;21697:23;21689:68;;;;-1:-1:-1;;;21689:68:0;;;;;;;:::i;:::-;37624:20:::1;:28:::0;;-1:-1:-1;;37624:28:0::1;::::0;;37668:38:::1;::::0;37690:15:::1;::::0;37668:38:::1;::::0;37647:5:::1;::::0;37668:38:::1;37562:152::o:0;39390:235::-;21550:6;;-1:-1:-1;;;;;21550:6:0;10069:10;21697:23;21689:68;;;;-1:-1:-1;;;21689:68:0;;;;;;;:::i;:::-;39478:1:::1;39468:6;:11;;39460:60;;;::::0;-1:-1:-1;;;39460:60:0;;12609:2:1;39460:60:0::1;::::0;::::1;12591:21:1::0;12648:2;12628:18;;;12621:30;12687:34;12667:18;;;12660:62;-1:-1:-1;;;12738:18:1;;;12731:34;12782:19;;39460:60:0::1;12407:400:1::0;39460:60:0::1;39570:4;39553:13;12191:12:::0;;;12103:108;39553:13:::1;39544:22;::::0;:6;:22:::1;:::i;:::-;39543:31;;;;:::i;:::-;39531:9;:43:::0;;;39590:27:::1;::::0;1682:25:1;;;39590:27:0::1;::::0;1670:2:1;1655:18;39590:27:0::1;1536:177:1::0;22386:238:0;21550:6;;-1:-1:-1;;;;;21550:6:0;10069:10;21697:23;21689:68;;;;-1:-1:-1;;;21689:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;22489:22:0;::::1;22467:110;;;::::0;-1:-1:-1;;;22467:110:0;;13014:2:1;22467:110:0::1;::::0;::::1;12996:21:1::0;13053:2;13033:18;;;13026:30;13092:34;13072:18;;;13065:62;-1:-1:-1;;;13143:18:1;;;13136:36;13189:19;;22467:110:0::1;12812:402:1::0;22467:110:0::1;22588:28;22607:8;22588:18;:28::i;:::-;22386:238:::0;:::o;19394:380::-;-1:-1:-1;;;;;19530:19:0;;19522:68;;;;-1:-1:-1;;;19522:68:0;;13421:2:1;19522:68:0;;;13403:21:1;13460:2;13440:18;;;13433:30;13499:34;13479:18;;;13472:62;-1:-1:-1;;;13550:18:1;;;13543:34;13594:19;;19522:68:0;13219:400:1;19522:68:0;-1:-1:-1;;;;;19609:21:0;;19601:68;;;;-1:-1:-1;;;19601:68:0;;13826:2:1;19601:68:0;;;13808:21:1;13865:2;13845:18;;;13838:30;13904:34;13884:18;;;13877:62;-1:-1:-1;;;13955:18:1;;;13948:32;13997:19;;19601:68:0;13624:398:1;19601:68:0;-1:-1:-1;;;;;19682:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;19734:32;;1682:25:1;;;19734:32:0;;1655:18:1;19734:32:0;;;;;;;19394:380;;;:::o;45116:4889::-;-1:-1:-1;;;;;45248:18:0;;45240:68;;;;-1:-1:-1;;;45240:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;45327:16:0;;45319:64;;;;-1:-1:-1;;;45319:64:0;;;;;;;:::i;:::-;45400:6;45410:1;45400:11;45396:93;;45428:28;45444:4;45450:2;45454:1;45428:15;:28::i;:::-;45116:4889;;;:::o;45396:93::-;45505:14;;;;45501:2265;;;21550:6;;-1:-1:-1;;;;;45558:15:0;;;21550:6;;45558:15;;;;:49;;-1:-1:-1;21550:6:0;;-1:-1:-1;;;;;45594:13:0;;;21550:6;;45594:13;;45558:49;:86;;;;-1:-1:-1;;;;;;45628:16:0;;;;45558:86;:128;;;;-1:-1:-1;;;;;;45665:21:0;;45679:6;45665:21;;45558:128;:158;;;;-1:-1:-1;45708:8:0;;-1:-1:-1;;;45708:8:0;;;;45707:9;45558:158;45536:2219;;;45756:9;;;;45751:203;;-1:-1:-1;;;;;45824:17:0;;;;;;:11;:17;;;;;;;;;:36;;-1:-1:-1;;;;;;45845:15:0;;;;;;:11;:15;;;;;;;;45824:36;45790:144;;;;-1:-1:-1;;;45790:144:0;;15039:2:1;45790:144:0;;;15021:21:1;15078:2;15058:18;;;15051:30;-1:-1:-1;;;15097:18:1;;;15090:52;15159:18;;45790:144:0;14837:346:1;45790:144:0;46110:20;;;;;;;46106:629;;;21550:6;;-1:-1:-1;;;;;46185:13:0;;;21550:6;;46185:13;;;;:66;;;46241:9;-1:-1:-1;;;;;46227:24:0;:2;-1:-1:-1;;;;;46227:24:0;;;46185:66;:117;;;;;46294:7;-1:-1:-1;;;;;46280:22:0;:2;-1:-1:-1;;;;;46280:22:0;;;46185:117;46155:561;;;46420:9;46391:39;;;;:28;:39;;;;;;46466:12;-1:-1:-1;46353:258:0;;;;-1:-1:-1;;;46353:258:0;;15390:2:1;46353:258:0;;;15372:21:1;15429:2;15409:18;;;15402:30;15468:34;15448:18;;;15441:62;15539:34;15519:18;;;15512:62;-1:-1:-1;;;15590:19:1;;;15583:40;15640:19;;46353:258:0;15188:477:1;46353:258:0;46667:9;46638:39;;;;:28;:39;;;;;46680:12;46638:54;;46155:561;-1:-1:-1;;;;;46787:31:0;;;;;;:25;:31;;;;;;;;:55;;;;-1:-1:-1;;;;;;46823:19:0;;;;;;:15;:19;;;;;;;;46822:20;46787:55;46783:957;;;46911:5;;46901:6;:15;;46867:139;;;;-1:-1:-1;;;46867:139:0;;15872:2:1;46867:139:0;;;15854:21:1;15911:2;15891:18;;;15884:30;15950:34;15930:18;;;15923:62;-1:-1:-1;;;16001:18:1;;;15994:36;16047:19;;46867:139:0;15670:402:1;46867:139:0;47089:9;;-1:-1:-1;;;;;12391:18:0;;12364:7;12391:18;;;;;;;;;;;47063:22;;:6;:22;:::i;:::-;:35;;47029:140;;;;-1:-1:-1;;;47029:140:0;;16279:2:1;47029:140:0;;;16261:21:1;16318:2;16298:18;;;16291:30;-1:-1:-1;;;16337:18:1;;;16330:49;16396:18;;47029:140:0;16077:343:1;47029:140:0;46783:957;;;-1:-1:-1;;;;;47267:29:0;;;;;;:25;:29;;;;;;;;:55;;;;-1:-1:-1;;;;;;47301:21:0;;;;;;:15;:21;;;;;;;;47300:22;47267:55;47241:499;;;47409:5;;47399:6;:15;;47365:140;;;;-1:-1:-1;;;47365:140:0;;16627:2:1;47365:140:0;;;16609:21:1;16666:2;16646:18;;;16639:30;16705:34;16685:18;;;16678:62;-1:-1:-1;;;16756:18:1;;;16749:37;16803:19;;47365:140:0;16425:403:1;47241:499:0;-1:-1:-1;;;;;47536:19:0;;;;;;:15;:19;;;;;;;;47531:209;;47640:9;;-1:-1:-1;;;;;12391:18:0;;12364:7;12391:18;;;;;;;;;;;47614:22;;:6;:22;:::i;:::-;:35;;47580:140;;;;-1:-1:-1;;;47580:140:0;;16279:2:1;47580:140:0;;;16261:21:1;16318:2;16298:18;;;16291:30;-1:-1:-1;;;16337:18:1;;;16330:49;16396:18;;47580:140:0;16077:343:1;47580:140:0;47827:4;47778:28;12391:18;;;;;;;;;;;47885:16;;47861:40;;;;;;;47932:39;;-1:-1:-1;47956:15:0;;-1:-1:-1;;;47956:15:0;;;;47932:39;:65;;;;-1:-1:-1;47989:8:0;;-1:-1:-1;;;47989:8:0;;;;47988:9;47932:65;:114;;;;-1:-1:-1;;;;;;48015:31:0;;;;;;:25;:31;;;;;;;;48014:32;47932:114;:149;;;;-1:-1:-1;;;;;;48064:17:0;;;;;;:11;:17;;;;;;;;48063:18;47932:149;:182;;;;-1:-1:-1;;;;;;48099:15:0;;;;;;:11;:15;;;;;;;;48098:16;47932:182;47914:314;;;48141:8;:15;;-1:-1:-1;;;;48141:15:0;-1:-1:-1;;;48141:15:0;;;48173:10;:8;:10::i;:::-;48200:8;:16;;-1:-1:-1;;;;48200:16:0;;;47914:314;48256:8;;-1:-1:-1;;;;;48366:17:0;;48240:12;48366:17;;;:11;:17;;;;;;48256:8;-1:-1:-1;;;48256:8:0;;;;;48255:9;;48366:17;;:36;;-1:-1:-1;;;;;;48387:15:0;;;;;;:11;:15;;;;;;;;48366:36;48362:84;;;-1:-1:-1;48429:5:0;48362:84;48458:12;48563:7;48559:1393;;;-1:-1:-1;;;;;48615:29:0;;;;;;:25;:29;;;;;;;;:49;;;;;48663:1;48648:12;;:16;48615:49;48611:1192;;;48692:33;48721:3;48692:24;48703:12;;48692:6;:10;;:24;;;;:::i;:::-;:28;;:33::i;:::-;48685:40;;48787:12;;48774:9;;48767:4;:16;;;;:::i;:::-;48766:33;;;;:::i;:::-;48744:18;;:55;;;;;;;:::i;:::-;;;;-1:-1:-1;;48864:12:0;;48846:14;;48839:21;;:4;:21;:::i;:::-;48838:38;;;;:::i;:::-;48818:16;;:58;;;;;;;:::i;:::-;;;;-1:-1:-1;;48939:12:0;;48925:10;;48918:17;;:4;:17;:::i;:::-;48917:34;;;;:::i;:::-;48895:18;;:56;;;;;;;:::i;:::-;;;;-1:-1:-1;48611:1192:0;;-1:-1:-1;48611:1192:0;;-1:-1:-1;;;;;49013:31:0;;;;;;:25;:31;;;;;;;;:50;;;;;49062:1;49048:11;;:15;49013:50;49009:794;;;49091:32;49119:3;49091:23;49102:11;;49091:6;:10;;:23;;;;:::i;:32::-;49084:39;;49184:11;;49172:8;;49165:4;:15;;;;:::i;:::-;49164:31;;;;:::i;:::-;49142:18;;:53;;;;;;;:::i;:::-;;;;-1:-1:-1;;49259:11:0;;49242:13;;49235:20;;:4;:20;:::i;:::-;49234:36;;;;:::i;:::-;49214:16;;:56;;;;;;;:::i;:::-;;;;-1:-1:-1;;49332:11:0;;49319:9;;49312:16;;:4;:16;:::i;49009:794::-;49410:16;;:20;49406:397;;49458:37;49491:3;49458:28;49469:16;;49458:6;:10;;:28;;;;:::i;:37::-;49451:44;;49561:16;;49544:13;;49537:4;:20;;;;:::i;:::-;49536:41;;;;:::i;:::-;49514:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;49646:16:0;;49624:18;;49617:25;;:4;:25;:::i;:::-;49616:46;;;;:::i;:::-;49596:16;;:66;;;;;;;:::i;:::-;;;;-1:-1:-1;;49771:16:0;;49732:14;;49725:21;;:4;:21;:::i;:::-;49724:63;;;;:::i;:::-;49681:18;;:106;;;;;;;:::i;:::-;;;;-1:-1:-1;;49406:397:0;49823:8;;49819:91;;49852:42;49868:4;49882;49889;49852:15;:42::i;:::-;49926:14;49936:4;49926:14;;:::i;:::-;;;48559:1393;49964:33;49980:4;49986:2;49990:6;49964:15;:33::i;:::-;45229:4776;;;;45116:4889;;;:::o;22784:191::-;22877:6;;;-1:-1:-1;;;;;22894:17:0;;;-1:-1:-1;;;;;;22894:17:0;;;;;;;22927:40;;22877:6;;;22894:17;22877:6;;22927:40;;22858:16;;22927:40;22847:128;22784:191;:::o;43864:188::-;-1:-1:-1;;;;;43947:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;43947:39:0;;;;;;;;;;44004:40;;43947:39;;:31;44004:40;;;43864:188;;:::o;16576:770::-;-1:-1:-1;;;;;16716:20:0;;16708:70;;;;-1:-1:-1;;;16708:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16797:23:0;;16789:71;;;;-1:-1:-1;;;16789:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16957:17:0;;16933:21;16957:17;;;;;;;;;;;17007:23;;;;16985:111;;;;-1:-1:-1;;;16985:111:0;;17168:2:1;16985:111:0;;;17150:21:1;17207:2;17187:18;;;17180:30;17246:34;17226:18;;;17219:62;-1:-1:-1;;;17297:18:1;;;17290:36;17343:19;;16985:111:0;16966:402:1;16985:111:0;-1:-1:-1;;;;;17132:17:0;;;:9;:17;;;;;;;;;;;17152:22;;;17132:42;;17196:20;;;;;;;;:30;;17168:6;;17132:9;17196:30;;17168:6;;17196:30;:::i;:::-;;;;;;;;17261:9;-1:-1:-1;;;;;17244:35:0;17253:6;-1:-1:-1;;;;;17244:35:0;;17272:6;17244:35;;;;1682:25:1;;1670:2;1655:18;;1536:177;17244:35:0;;;;;;;;16697:649;16576:770;;;:::o;51108:1742::-;51191:4;51147:23;12391:18;;;;;;;;;;;51147:50;;51208:25;51304:16;;51270:18;;51236;;:52;;;;:::i;:::-;:84;;;;:::i;:::-;51208:112;;51331:12;51360:15;51379:1;51360:20;51356:59;;51397:7;;;51108:1742::o;51356:59::-;51449:16;;51431:15;:34;51427:101;;;51500:16;;51482:34;;51427:101;51589:23;51702:1;51669:17;51634:18;;51616:15;:36;;;;:::i;:::-;51615:71;;;;:::i;:::-;:88;;;;:::i;:::-;51589:114;-1:-1:-1;51714:26:0;51743:36;:15;51589:114;51743:19;:36::i;:::-;51714:65;-1:-1:-1;51820:21:0;51854:36;51714:65;51854:16;:36::i;:::-;51903:18;51924:44;:21;51950:17;51924:25;:44::i;:::-;51903:65;;51981:23;52007:81;52060:17;52007:34;52022:18;;52007:10;:14;;:34;;;;:::i;:81::-;51981:107;;52099:21;52123:55;52160:17;52123:32;52138:16;;52123:10;:14;;:32;;;;:::i;:55::-;52099:79;-1:-1:-1;52191:23:0;52099:79;52217:28;52230:15;52217:10;:28;:::i;:::-;:44;;;;:::i;:::-;52295:1;52274:18;:22;;;52307:18;:22;;;52340:16;:20;;;52395:15;;52387:55;;52191:70;;-1:-1:-1;;;;;;52395:15:0;;52424:13;;52387:55;52295:1;52387:55;52424:13;52395:15;52387:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52373:69:0;;-1:-1:-1;;52459:19:0;;;;;:42;;;52500:1;52482:15;:19;52459:42;52455:278;;;52518:46;52531:15;52548;52518:12;:46::i;:::-;52688:18;;52584:137;;;17785:25:1;;;17841:2;17826:18;;17819:34;;;17869:18;;;17862:34;;;;52584:137:0;;;;;;17773:2:1;52584:137:0;;;52455:278;52767:11;;52759:83;;-1:-1:-1;;;;;52767:11:0;;;;52792:21;;52759:83;;;;52792:21;52767:11;52759:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;51108:1742:0:o;3348:98::-;3406:7;3433:5;3437:1;3433;:5;:::i;:::-;3426:12;3348:98;-1:-1:-1;;;3348:98:0:o;3747:::-;3805:7;3832:5;3836:1;3832;:5;:::i;2991:98::-;3049:7;3076:5;3080:1;3076;:5;:::i;50013:571::-;50163:16;;;50177:1;50163:16;;;;;;;;50139:21;;50163:16;;;;;;;;;;-1:-1:-1;50163:16:0;50139:40;;50208:4;50190;50195:1;50190:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;50190:23:0;;;-1:-1:-1;;;;;50190:23:0;;;;;50234:9;-1:-1:-1;;;;;50234:14:0;;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50224:4;50229:1;50224:7;;;;;;;;:::i;:::-;;;;;;:26;-1:-1:-1;;;;;50224:26:0;;;-1:-1:-1;;;;;50224:26:0;;;;;50263:56;50280:4;50295:9;50307:11;50263:8;:56::i;:::-;50358:218;;-1:-1:-1;;;50358:218:0;;-1:-1:-1;;;;;50358:9:0;:60;;;;:218;;50433:11;;50459:1;;50503:4;;50530;;50550:15;;50358:218;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50068:516;50013:571;:::o;50592:508::-;50740:56;50757:4;50772:9;50784:11;50740:8;:56::i;:::-;51037:14;;50839:253;;-1:-1:-1;;;50839:253:0;;50905:4;50839:253;;;19753:34:1;19803:18;;;19796:34;;;50951:1:0;19846:18:1;;;19839:34;;;19889:18;;;19882:34;-1:-1:-1;;;;;51037:14:0;;;19932:19:1;;;19925:44;51066:15:0;19985:19:1;;;19978:35;50839:9:0;:25;;;;;;50872:9;;19687:19:1;;50839:253:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;50592:508;;:::o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1215:316::-;1292:6;1300;1308;1361:2;1349:9;1340:7;1336:23;1332:32;1329:52;;;1377:1;1374;1367:12;1329:52;-1:-1:-1;;1400:23:1;;;1470:2;1455:18;;1442:32;;-1:-1:-1;1521:2:1;1506:18;;;1493:32;;1215:316;-1:-1:-1;1215:316:1:o;1718:247::-;1777:6;1830:2;1818:9;1809:7;1805:23;1801:32;1798:52;;;1846:1;1843;1836:12;1798:52;1885:9;1872:23;1904:31;1929:5;1904:31;:::i;2324:456::-;2401:6;2409;2417;2470:2;2458:9;2449:7;2445:23;2441:32;2438:52;;;2486:1;2483;2476:12;2438:52;2525:9;2512:23;2544:31;2569:5;2544:31;:::i;:::-;2594:5;-1:-1:-1;2651:2:1;2636:18;;2623:32;2664:33;2623:32;2664:33;:::i;:::-;2324:456;;2716:7;;-1:-1:-1;;;2770:2:1;2755:18;;;;2742:32;;2324:456::o;3390:180::-;3449:6;3502:2;3490:9;3481:7;3477:23;3473:32;3470:52;;;3518:1;3515;3508:12;3470:52;-1:-1:-1;3541:23:1;;3390:180;-1:-1:-1;3390:180:1:o;3575:160::-;3640:20;;3696:13;;3689:21;3679:32;;3669:60;;3725:1;3722;3715:12;3669:60;3575:160;;;:::o;3740:315::-;3805:6;3813;3866:2;3854:9;3845:7;3841:23;3837:32;3834:52;;;3882:1;3879;3872:12;3834:52;3921:9;3908:23;3940:31;3965:5;3940:31;:::i;:::-;3990:5;-1:-1:-1;4014:35:1;4045:2;4030:18;;4014:35;:::i;:::-;4004:45;;3740:315;;;;;:::o;5841:316::-;5915:6;5923;5931;5984:2;5972:9;5963:7;5959:23;5955:32;5952:52;;;6000:1;5997;5990:12;5952:52;6023:26;6039:9;6023:26;:::i;:::-;6013:36;6096:2;6081:18;;6068:32;;-1:-1:-1;6147:2:1;6132:18;;;6119:32;;5841:316;-1:-1:-1;;;5841:316:1:o;6162:388::-;6230:6;6238;6291:2;6279:9;6270:7;6266:23;6262:32;6259:52;;;6307:1;6304;6297:12;6259:52;6346:9;6333:23;6365:31;6390:5;6365:31;:::i;:::-;6415:5;-1:-1:-1;6472:2:1;6457:18;;6444:32;6485:33;6444:32;6485:33;:::i;:::-;6537:7;6527:17;;;6162:388;;;;;:::o;6944:380::-;7023:1;7019:12;;;;7066;;;7087:61;;7141:4;7133:6;7129:17;7119:27;;7087:61;7194:2;7186:6;7183:14;7163:18;7160:38;7157:161;;7240:10;7235:3;7231:20;7228:1;7221:31;7275:4;7272:1;7265:15;7303:4;7300:1;7293:15;7157:161;;6944:380;;;:::o;7329:356::-;7531:2;7513:21;;;7550:18;;;7543:30;7609:34;7604:2;7589:18;;7582:62;7676:2;7661:18;;7329:356::o;7690:127::-;7751:10;7746:3;7742:20;7739:1;7732:31;7782:4;7779:1;7772:15;7806:4;7803:1;7796:15;7822:125;7887:9;;;7908:10;;;7905:36;;;7921:18;;:::i;9935:168::-;10008:9;;;10039;;10056:15;;;10050:22;;10036:37;10026:71;;10077:18;;:::i;10108:217::-;10148:1;10174;10164:132;;10218:10;10213:3;10209:20;10206:1;10199:31;10253:4;10250:1;10243:15;10281:4;10278:1;10271:15;10164:132;-1:-1:-1;10310:9:1;;10108:217::o;14027:401::-;14229:2;14211:21;;;14268:2;14248:18;;;14241:30;14307:34;14302:2;14287:18;;14280:62;-1:-1:-1;;;14373:2:1;14358:18;;14351:35;14418:3;14403:19;;14027:401::o;14433:399::-;14635:2;14617:21;;;14674:2;14654:18;;;14647:30;14713:34;14708:2;14693:18;;14686:62;-1:-1:-1;;;14779:2:1;14764:18;;14757:33;14822:3;14807:19;;14433:399::o;16833:128::-;16900:9;;;16921:11;;;16918:37;;;16935:18;;:::i;18039:127::-;18100:10;18095:3;18091:20;18088:1;18081:31;18131:4;18128:1;18121:15;18155:4;18152:1;18145:15;18171:251;18241:6;18294:2;18282:9;18273:7;18269:23;18265:32;18262:52;;;18310:1;18307;18300:12;18262:52;18342:9;18336:16;18361:31;18386:5;18361:31;:::i;18427:980::-;18689:4;18737:3;18726:9;18722:19;18768:6;18757:9;18750:25;18794:2;18832:6;18827:2;18816:9;18812:18;18805:34;18875:3;18870:2;18859:9;18855:18;18848:31;18899:6;18934;18928:13;18965:6;18957;18950:22;19003:3;18992:9;18988:19;18981:26;;19042:2;19034:6;19030:15;19016:29;;19063:1;19073:195;19087:6;19084:1;19081:13;19073:195;;;19152:13;;-1:-1:-1;;;;;19148:39:1;19136:52;;19243:15;;;;19208:12;;;;19184:1;19102:9;19073:195;;;-1:-1:-1;;;;;;;19324:32:1;;;;19319:2;19304:18;;19297:60;-1:-1:-1;;;19388:3:1;19373:19;19366:35;19285:3;18427:980;-1:-1:-1;;;18427:980:1:o;20024:306::-;20112:6;20120;20128;20181:2;20169:9;20160:7;20156:23;20152:32;20149:52;;;20197:1;20194;20187:12;20149:52;20226:9;20220:16;20210:26;;20276:2;20265:9;20261:18;20255:25;20245:35;;20320:2;20309:9;20305:18;20299:25;20289:35;;20024:306;;;;;:::o

Swarm Source

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