ETH Price: $2,613.00 (+0.75%)

Token

BLOCKBYTEAI (BYTE)
 

Overview

Max Total Supply

1,000,000 BYTE

Holders

48

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
18,528.773242571054379869 BYTE

Value
$0.00
0x6d13ce4d2bf927af41e3b39949fc1309a25534b0
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:
BLOCKBYTEAI

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-01-17
*/

/**
Website: https://blockbyteai.com/
tg: t.me/blockbyteai
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.18;

interface IERC20 {
    function totalSupply() external view returns (uint256);

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

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

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

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

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

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

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

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */

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

        return c;
    }

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

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

        return c;
    }

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

        if (a == 0) {
            return 0;
        }

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

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

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

        return c;
    }

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

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

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

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

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

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(
            address(this).balance >= amount,
            "Address: insufficient balance"
        );

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

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

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

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

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

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

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

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

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


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

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

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

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

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


}

interface IUniswapV2Factory {
    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 IUniswapV2Pair {
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );
    event Transfer(address indexed from, address indexed to, uint256 value);

    function name() external pure returns (string memory);

    function symbol() external pure returns (string memory);

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

    function balanceOf(address owner) external view returns (uint256);

    function allowance(address owner, address spender)
        external
        view
        returns (uint256);

    function approve(address spender, uint256 value) external returns (bool);

    function transfer(address to, uint256 value) external returns (bool);

    function transferFrom(
        address from,
        address to,
        uint256 value
    ) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

    function nonces(address owner) external view returns (uint256);

    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

    function getReserves()
        external
        view
        returns (
            uint112 reserve0,
            uint112 reserve1,
            uint32 blockTimestampLast
        );

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

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

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

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

    function WETH() external pure returns (address);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountETH);

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

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

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

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

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

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

    mapping(address => bool) private _isExcludedFromFee;

    mapping(address => bool) private _isExcludedFromLimit;

    uint256 private _tTotal = 1000000 * 10**18;

    address payable private _marketingAddress = payable(address(0x2b9762eCCB6ef3283fBf39aBca83c8dE08820d4d));

    string private _name = "BLOCKBYTEAI";
    string private _symbol = "BYTE";
    uint8 private _decimals = 18;

    struct BuyFee {
        uint8 liquidity;
        uint8 marketing;
    }

    struct SellFee {
        uint8 liquidity;
        uint8 marketing;
    }

    BuyFee public buyFee;
    SellFee public sellFee;

    uint8 private _liquidityFee;
    uint8 private _marketingFee;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;

    bool inSwapAndLiquify;
    bool public swapAndLiquifyEnabled = true;

    uint256 private _maxTxAmount = _tTotal.div(1000).mul(20); // 2%
    uint256 private numTokensSellToAddToLiquidity = _tTotal.div(1000).mul(3); //0.3%
    uint256 private _maxWalletSize = _tTotal.div(1000).mul(20); // 2%

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

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

    uint256 launchedAt = 0;
    bool tradingOpen = false;

    mapping (address => uint256) _lastTrade;

    constructor() {
        _rOwned[_msgSender()] = _tTotal;

        buyFee.liquidity = 2;
        buyFee.marketing = 3;

        sellFee.liquidity = 2;
        sellFee.marketing = 3;

        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        // Create a uniswap pair for this new token
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());

        // set the rest of the contract variables
        uniswapV2Router = _uniswapV2Router;

        // exclude owner, and this contract from fee
        _isExcludedFromFee[owner()] = true;
        _isExcludedFromFee[address(this)] = true;
        _isExcludedFromFee[_marketingAddress] = true;

        _isExcludedFromLimit[_marketingAddress] = true;
        _isExcludedFromLimit[owner()] = true;
        _isExcludedFromLimit[address(this)] = true;

        emit Transfer(address(0), _msgSender(), _tTotal);
    }

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

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

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

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

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

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

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

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

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

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

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


    function setTax(
        uint8 buy_liquidity,
        uint8 buy_marketing,
        uint8 sell_liquidity,
        uint8 sell_marketing

    ) external onlyOwner {
        buyFee.marketing = buy_marketing;
        buyFee.liquidity = buy_liquidity;

        sellFee.marketing = sell_marketing;
        sellFee.liquidity = sell_liquidity;
    }

    function setNumTokensSellToAddToLiquidity(uint256 numTokens) external onlyOwner {
        numTokensSellToAddToLiquidity = numTokens;
    }



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

    //to recieve ETH from uniswapV2Router when swapping
    receive() external payable {}

    function _getTValues(uint256 tAmount)
        private
        view
        returns (
            uint256,
            uint256,
            uint256
        )
    {
        uint256 tLiquidity = calculateLiquidityFee(tAmount);
        uint256 tWallet = calculateMarketingFee(tAmount);
        uint256 tTransferAmount = tAmount.sub(tLiquidity).sub(tWallet);

        return (tTransferAmount, tLiquidity, tWallet);
    }

    function _takeLiquidity(uint256 tLiquidity) private {
        _rOwned[address(this)] = _rOwned[address(this)].add(tLiquidity);
    }

    function _takeWalletFee(uint256 tWallet) private {
        _rOwned[address(this)] = _rOwned[address(this)].add(tWallet);
    }

    function calculateLiquidityFee(uint256 _amount)
        private
        view
        returns (uint256)
    {
        return _amount.mul(_liquidityFee).div(10**2);
    }

    function calculateMarketingFee(uint256 _amount)
        private
        view
        returns (uint256)
    {
        return _amount.mul(_marketingFee).div(10**2);
    }

   
    function removeAllFee() private {
        _liquidityFee = 0;
        _marketingFee = 0;
     
    }

    function setBuy() private {
        _liquidityFee = buyFee.liquidity;
        _marketingFee = buyFee.marketing;
      
    }

    function setSell() private {
        _liquidityFee = sellFee.liquidity;
        _marketingFee = sellFee.marketing;
      
    }



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

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

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) private {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");
        
        if ( from != owner() && to != owner() ) require(tradingOpen, "Trading not yet enabled."); //transfers disabled before openTrading

        // is the token balance of this contract address over the min number of
        // tokens that we need to initiate a swap + liquidity lock?
        // also, don't get caught in a circular liquidity event.
        // also, don't swap & liquify if sender is uniswap pair.
        uint256 contractTokenBalance = balanceOf(address(this));

        if (contractTokenBalance >= _maxTxAmount) {
            contractTokenBalance = _maxTxAmount;
        }

        bool overMinTokenBalance = contractTokenBalance >=
            numTokensSellToAddToLiquidity;
        if (
            overMinTokenBalance &&
            !inSwapAndLiquify &&
            from != uniswapV2Pair &&
            swapAndLiquifyEnabled
        ) {
            contractTokenBalance = numTokensSellToAddToLiquidity;
            //add liquidity
            swapAndLiquify(contractTokenBalance);
        }

        //indicates if fee should be deducted from transfer
        bool takeFee = true;

        //if any account belongs to _isExcludedFromFee account then remove the fee
        if (_isExcludedFromFee[from] || _isExcludedFromFee[to]) {
            takeFee = false;
        }
        if (takeFee) {
            if (!_isExcludedFromLimit[from] && !_isExcludedFromLimit[to]) {
                require(
                    amount <= _maxTxAmount,
                    "Transfer amount exceeds the maxTxAmount."
                );
                if (to != uniswapV2Pair) {
                    require(
                        amount + balanceOf(to) <= _maxWalletSize,
                        "Recipient exceeds max wallet size."
                    );
                }

              
            }
        }

        //transfer amount, it will take liquidity fee
        _tokenTransfer(from, to, amount, takeFee);
    }

    function swapAndLiquify(uint256 tokens) private lockTheSwap {
        // Split the contract balance into halves
        uint256 denominator = (buyFee.liquidity + sellFee.liquidity + buyFee.marketing + sellFee.marketing) * 2;
        uint256 tokensToAddLiquidityWith = (tokens * (buyFee.liquidity + sellFee.liquidity)) / denominator;
        uint256 toSwap = tokens - tokensToAddLiquidityWith;

        uint256 initialBalance = address(this).balance;

        swapTokensForEth(toSwap);

        uint256 deltaBalance = address(this).balance - initialBalance;
        uint256 unitBalance = deltaBalance / (denominator - (buyFee.liquidity + sellFee.liquidity));
        uint256 ethToAddLiquidityWith = unitBalance * (buyFee.liquidity + sellFee.liquidity);

        if (ethToAddLiquidityWith > 0) {
            // Add liquidity to uniswap
            addLiquidity(tokensToAddLiquidityWith, ethToAddLiquidityWith);
        }

        // Send ETH to marketing
        uint256 marketingAmt = unitBalance * 2 * (buyFee.marketing + sellFee.marketing);
       

        if (marketingAmt > 0) {
            payable(_marketingAddress).transfer(marketingAmt);
        }

    
    }

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

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

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

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

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

    //this method is responsible for taking all fee, if takeFee is true
    function _tokenTransfer(
        address sender,
        address recipient,
        uint256 amount,
        bool takeFee
    ) private {
        if (takeFee) {
            removeAllFee();
            if (sender == uniswapV2Pair) {
                setBuy();
            }
            if (recipient == uniswapV2Pair) {
                setSell();
            }
        }

        _transferStandard(sender, recipient, amount);

        removeAllFee();
    }

    function _transferStandard(
        address sender,
        address recipient,
        uint256 tAmount
    ) private {
        (
            uint256 tTransferAmount,
            uint256 tLiquidity,
            uint256 tWallet
        ) = _getTValues(tAmount);

        _rOwned[sender] = _rOwned[sender].sub(tAmount);
        _rOwned[recipient] = _rOwned[recipient].add(tTransferAmount);
        _takeLiquidity(tLiquidity);
        _takeWalletFee(tWallet);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function openTrading() external onlyOwner() {
    require(!tradingOpen, "Trading is already enabled");
    tradingOpen = true;
    if(launchedAt == 0){
        launchedAt = block.number;
    }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"minTokensBeforeSwap","type":"uint256"}],"name":"MinTokensBeforeSwapUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyFee","outputs":[{"internalType":"uint8","name":"liquidity","type":"uint8"},{"internalType":"uint8","name":"marketing","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"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":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellFee","outputs":[{"internalType":"uint8","name":"liquidity","type":"uint8"},{"internalType":"uint8","name":"marketing","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numTokens","type":"uint256"}],"name":"setNumTokensSellToAddToLiquidity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"buy_liquidity","type":"uint8"},{"internalType":"uint8","name":"buy_marketing","type":"uint8"},{"internalType":"uint8","name":"sell_liquidity","type":"uint8"},{"internalType":"uint8","name":"sell_marketing","type":"uint8"}],"name":"setTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

69d3c21bcecceda1000000600655600780546001600160a01b031916732b9762eccb6ef3283fbf39abca83c8de08820d4d179055610100604052600b60c09081526a424c4f434b42595445414960a81b60e0526008906200006190826200063c565b506040805180820190915260048152634259544560e01b60208201526009906200008c90826200063c565b50600a805460ff19166012179055600d805463ff00000019166301000000179055600654620000e990601490620000d5906103e8620008826200047a602090811b91909117901c565b620004cd60201b620008cb1790919060201c565b600e55620001106003620000d56103e86006546200047a60201b620008821790919060201c565b600f55620001376014620000d56103e86006546200047a60201b620008821790919060201c565b60105560006011556012805460ff191690553480156200015657600080fd5b50600080546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506006543360009081526002602090815260409182902092909255600b805461030261ffff199182168117909255600c80549091169091179055805163c45a015560e01b81529051737a250d5630b4cf539739df2c5dacb4c659f2488d92839263c45a015592600480830193928290030181865afa1580156200021e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000244919062000708565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000292573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002b8919062000708565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000306573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200032c919062000708565b6001600160a01b0390811660a0528116608052600160046000620003586000546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff19968716179055308152600484528281208054861660019081179091556007805484168352848320805488168317905554909216815260059384905291822080549094168117909355620003db6000546001600160a01b031690565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff199586161790553081526005909252902080549091166001179055620004233390565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6006546040516200046b91815260200190565b60405180910390a350620007cc565b6000620004c483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506200055b60201b60201c565b90505b92915050565b600082600003620004e157506000620004c7565b6000620004ef838562000733565b905082620004fe858362000759565b14620004c45760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084015b60405180910390fd5b600081836200057f5760405162461bcd60e51b81526004016200055291906200077c565b5060006200058e848662000759565b95945050505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620005c257607f821691505b602082108103620005e357634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200063757600081815260208120601f850160051c81016020861015620006125750805b601f850160051c820191505b8181101562000633578281556001016200061e565b5050505b505050565b81516001600160401b0381111562000658576200065862000597565b6200067081620006698454620005ad565b84620005e9565b602080601f831160018114620006a857600084156200068f5750858301515b600019600386901b1c1916600185901b17855562000633565b600085815260208120601f198616915b82811015620006d957888601518255948401946001909101908401620006b8565b5085821015620006f85787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200071b57600080fd5b81516001600160a01b0381168114620004c457600080fd5b8082028115828204841417620004c757634e487b7160e01b600052601160045260246000fd5b6000826200077757634e487b7160e01b600052601260045260246000fd5b500490565b600060208083528351808285015260005b81811015620007ab578581018301518582016040015282016200078d565b506000604082860101526040601f19601f8301168501019250505092915050565b60805160a051611abc620008316000396000818161030101528181610c6001528181610dba0152818161111c01526111820152600081816101b20152818161125e0152818161131701528181611353015281816113c501526114210152611abc6000f3fe6080604052600436106101395760003560e01c80634a74bb02116100ab578063a457c2d71161006f578063a457c2d7146103c2578063a9059cbb146103e2578063c49b9a8014610402578063c9567bf914610422578063dd62ed3e14610437578063f0f165af1461047d57600080fd5b80634a74bb021461032357806370a0823114610344578063715018a61461037a5780638da5cb5b1461038f57806395d89b41146103ad57600080fd5b806323b872dd116100fd57806323b872dd1461022d5780632b14ca561461024d578063313ce5671461028a57806339509351146102ac57806347062402146102cc57806349bd5a5e146102ef57600080fd5b806306fdde0314610145578063095ea7b3146101705780631694505e146101a057806318160ddd146101ec5780631853ef291461020b57600080fd5b3661014057005b600080fd5b34801561015157600080fd5b5061015a61049d565b6040516101679190611679565b60405180910390f35b34801561017c57600080fd5b5061019061018b3660046116df565b61052f565b6040519015158152602001610167565b3480156101ac57600080fd5b506101d47f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610167565b3480156101f857600080fd5b506006545b604051908152602001610167565b34801561021757600080fd5b5061022b610226366004611721565b610546565b005b34801561023957600080fd5b50610190610248366004611775565b6105b8565b34801561025957600080fd5b50600c546102709060ff8082169161010090041682565b6040805160ff938416815292909116602083015201610167565b34801561029657600080fd5b50600a5460405160ff9091168152602001610167565b3480156102b857600080fd5b506101906102c73660046116df565b610621565b3480156102d857600080fd5b50600b546102709060ff8082169161010090041682565b3480156102fb57600080fd5b506101d47f000000000000000000000000000000000000000000000000000000000000000081565b34801561032f57600080fd5b50600d54610190906301000000900460ff1681565b34801561035057600080fd5b506101fd61035f3660046117b6565b6001600160a01b031660009081526002602052604090205490565b34801561038657600080fd5b5061022b610657565b34801561039b57600080fd5b506000546001600160a01b03166101d4565b3480156103b957600080fd5b5061015a6106cb565b3480156103ce57600080fd5b506101906103dd3660046116df565b6106da565b3480156103ee57600080fd5b506101906103fd3660046116df565b610729565b34801561040e57600080fd5b5061022b61041d3660046117d3565b610736565b34801561042e57600080fd5b5061022b6107b8565b34801561044357600080fd5b506101fd6104523660046117f5565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b34801561048957600080fd5b5061022b61049836600461182e565b610853565b6060600880546104ac90611847565b80601f01602080910402602001604051908101604052809291908181526020018280546104d890611847565b80156105255780601f106104fa57610100808354040283529160200191610525565b820191906000526020600020905b81548152906001019060200180831161050857829003601f168201915b5050505050905090565b600061053c33848461094d565b5060015b92915050565b6000546001600160a01b031633146105795760405162461bcd60e51b815260040161057090611881565b60405180910390fd5b600b805461ffff1990811661010060ff968716810260ff199081169290921797871697909717909255600c805490911692851690950216179116179055565b60006105c5848484610a71565b610617843361061285604051806060016040528060288152602001611a3a602891396001600160a01b038a1660009081526003602090815260408083203384529091529020549190610e84565b61094d565b5060019392505050565b3360008181526003602090815260408083206001600160a01b0387168452909152812054909161053c9185906106129086610ebe565b6000546001600160a01b031633146106815760405162461bcd60e51b815260040161057090611881565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6060600980546104ac90611847565b600061053c338461061285604051806060016040528060258152602001611a62602591393360009081526003602090815260408083206001600160a01b038d1684529091529020549190610e84565b600061053c338484610a71565b6000546001600160a01b031633146107605760405162461bcd60e51b815260040161057090611881565b600d805482151563010000000263ff000000199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc159906107ad90831515815260200190565b60405180910390a150565b6000546001600160a01b031633146107e25760405162461bcd60e51b815260040161057090611881565b60125460ff16156108355760405162461bcd60e51b815260206004820152601a60248201527f54726164696e6720697320616c726561647920656e61626c65640000000000006044820152606401610570565b6012805460ff1916600117905560115460000361085157436011555b565b6000546001600160a01b0316331461087d5760405162461bcd60e51b815260040161057090611881565b600f55565b60006108c483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250610f1d565b9392505050565b6000826000036108dd57506000610540565b60006108e983856118cc565b9050826108f685836118e3565b146108c45760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610570565b6001600160a01b0383166109af5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610570565b6001600160a01b038216610a105760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610570565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610ad55760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610570565b6001600160a01b038216610b375760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610570565b60008111610b995760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610570565b6000546001600160a01b03848116911614801590610bc557506000546001600160a01b03838116911614155b15610c1c5760125460ff16610c1c5760405162461bcd60e51b815260206004820152601860248201527f54726164696e67206e6f742079657420656e61626c65642e00000000000000006044820152606401610570565b30600090815260026020526040902054600e548110610c3a5750600e545b600f5481108015908190610c575750600d5462010000900460ff16155b8015610c9557507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614155b8015610caa5750600d546301000000900460ff165b15610cbd57600f549150610cbd82610f4b565b6001600160a01b03851660009081526004602052604090205460019060ff1680610cff57506001600160a01b03851660009081526004602052604090205460ff165b15610d08575060005b8015610e70576001600160a01b03861660009081526005602052604090205460ff16158015610d5057506001600160a01b03851660009081526005602052604090205460ff16155b15610e7057600e54841115610db85760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b6064820152608401610570565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614610e70576010546001600160a01b038616600090815260026020526040902054610e179086611905565b1115610e705760405162461bcd60e51b815260206004820152602260248201527f526563697069656e742065786365656473206d61782077616c6c65742073697a604482015261329760f11b6064820152608401610570565b610e7c86868684611104565b505050505050565b60008184841115610ea85760405162461bcd60e51b81526004016105709190611679565b506000610eb58486611918565b95945050505050565b600080610ecb8385611905565b9050838110156108c45760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610570565b60008183610f3e5760405162461bcd60e51b81526004016105709190611679565b506000610eb584866118e3565b600d805462ff0000191662010000179055600c54600b5460009161010080820460ff90811693918204811692610f8592908216911661192b565b610f8f919061192b565b610f99919061192b565b610fa4906002611944565b600c54600b5460ff92831693506000928492610fc492908216911661192b565b610fd19060ff16856118cc565b610fdb91906118e3565b90506000610fe98285611918565b905047610ff582611207565b60006110018247611918565b600c54600b5491925060009161101d9160ff908116911661192b565b61102a9060ff1687611918565b61103490836118e3565b600c54600b549192506000916110509160ff908116911661192b565b61105d9060ff16836118cc565b9050801561106f5761106f86826113bf565b600c54600b546000916110919160ff610100928390048116929091041661192b565b60ff1661109f8460026118cc565b6110a991906118cc565b905080156110ed576007546040516001600160a01b039091169082156108fc029083906000818181858888f193505050501580156110eb573d6000803e3d6000fd5b505b5050600d805462ff00001916905550505050505050565b80156111e65761111a600d805461ffff19169055565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b03160361118057611180600b54600d805461010080840460ff90811690910261ffff19909216931692909217919091179055565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b0316036111e6576111e6600c54600d805461010080840460ff90811690910261ffff19909216931692909217919091179055565b6111f184848461149f565b611201600d805461ffff19169055565b50505050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061123c5761123c611967565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156112ba573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112de919061197d565b816001815181106112f1576112f1611967565b60200260200101906001600160a01b031690816001600160a01b03168152505061133c307f00000000000000000000000000000000000000000000000000000000000000008461094d565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac9479061139190859060009086903090429060040161199a565b600060405180830381600087803b1580156113ab57600080fd5b505af1158015610e7c573d6000803e3d6000fd5b6113ea307f00000000000000000000000000000000000000000000000000000000000000008461094d565b60405163f305d71960e01b8152306004820181905260248201849052600060448301819052606483015260848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f305d71990839060c40160606040518083038185885af1158015611473573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906114989190611a0b565b5050505050565b60008060006114ad84611587565b6001600160a01b03891660009081526002602052604090205492955090935091506114d890856115c9565b6001600160a01b0380881660009081526002602052604080822093909355908716815220546115079084610ebe565b6001600160a01b0386166000908152600260205260409020556115298261160b565b6115328161160b565b846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405161157791815260200190565b60405180910390a3505050505050565b60008060008061159685611638565b905060006115a386611659565b905060006115bb826115b589866115c9565b906115c9565b979296509094509092505050565b60006108c483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610e84565b306000908152600260205260409020546116259082610ebe565b3060009081526002602052604090205550565b600d546000906105409060649061165390859060ff166108cb565b90610882565b600d5460009061054090606490611653908590610100900460ff166108cb565b600060208083528351808285015260005b818110156116a65785810183015185820160400152820161168a565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146116dc57600080fd5b50565b600080604083850312156116f257600080fd5b82356116fd816116c7565b946020939093013593505050565b803560ff8116811461171c57600080fd5b919050565b6000806000806080858703121561173757600080fd5b6117408561170b565b935061174e6020860161170b565b925061175c6040860161170b565b915061176a6060860161170b565b905092959194509250565b60008060006060848603121561178a57600080fd5b8335611795816116c7565b925060208401356117a5816116c7565b929592945050506040919091013590565b6000602082840312156117c857600080fd5b81356108c4816116c7565b6000602082840312156117e557600080fd5b813580151581146108c457600080fd5b6000806040838503121561180857600080fd5b8235611813816116c7565b91506020830135611823816116c7565b809150509250929050565b60006020828403121561184057600080fd5b5035919050565b600181811c9082168061185b57607f821691505b60208210810361187b57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417610540576105406118b6565b60008261190057634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115610540576105406118b6565b81810381811115610540576105406118b6565b60ff8181168382160190811115610540576105406118b6565b60ff8181168382160290811690818114611960576119606118b6565b5092915050565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561198f57600080fd5b81516108c4816116c7565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156119ea5784516001600160a01b0316835293830193918301916001016119c5565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215611a2057600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212201bede28ae560349bdb3780eae48443042bc89458236b828632e988ac0cd1a73e64736f6c63430008120033

Deployed Bytecode

0x6080604052600436106101395760003560e01c80634a74bb02116100ab578063a457c2d71161006f578063a457c2d7146103c2578063a9059cbb146103e2578063c49b9a8014610402578063c9567bf914610422578063dd62ed3e14610437578063f0f165af1461047d57600080fd5b80634a74bb021461032357806370a0823114610344578063715018a61461037a5780638da5cb5b1461038f57806395d89b41146103ad57600080fd5b806323b872dd116100fd57806323b872dd1461022d5780632b14ca561461024d578063313ce5671461028a57806339509351146102ac57806347062402146102cc57806349bd5a5e146102ef57600080fd5b806306fdde0314610145578063095ea7b3146101705780631694505e146101a057806318160ddd146101ec5780631853ef291461020b57600080fd5b3661014057005b600080fd5b34801561015157600080fd5b5061015a61049d565b6040516101679190611679565b60405180910390f35b34801561017c57600080fd5b5061019061018b3660046116df565b61052f565b6040519015158152602001610167565b3480156101ac57600080fd5b506101d47f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610167565b3480156101f857600080fd5b506006545b604051908152602001610167565b34801561021757600080fd5b5061022b610226366004611721565b610546565b005b34801561023957600080fd5b50610190610248366004611775565b6105b8565b34801561025957600080fd5b50600c546102709060ff8082169161010090041682565b6040805160ff938416815292909116602083015201610167565b34801561029657600080fd5b50600a5460405160ff9091168152602001610167565b3480156102b857600080fd5b506101906102c73660046116df565b610621565b3480156102d857600080fd5b50600b546102709060ff8082169161010090041682565b3480156102fb57600080fd5b506101d47f000000000000000000000000163b7ecb76979e38397feabeeb7d9a9d11d6156481565b34801561032f57600080fd5b50600d54610190906301000000900460ff1681565b34801561035057600080fd5b506101fd61035f3660046117b6565b6001600160a01b031660009081526002602052604090205490565b34801561038657600080fd5b5061022b610657565b34801561039b57600080fd5b506000546001600160a01b03166101d4565b3480156103b957600080fd5b5061015a6106cb565b3480156103ce57600080fd5b506101906103dd3660046116df565b6106da565b3480156103ee57600080fd5b506101906103fd3660046116df565b610729565b34801561040e57600080fd5b5061022b61041d3660046117d3565b610736565b34801561042e57600080fd5b5061022b6107b8565b34801561044357600080fd5b506101fd6104523660046117f5565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b34801561048957600080fd5b5061022b61049836600461182e565b610853565b6060600880546104ac90611847565b80601f01602080910402602001604051908101604052809291908181526020018280546104d890611847565b80156105255780601f106104fa57610100808354040283529160200191610525565b820191906000526020600020905b81548152906001019060200180831161050857829003601f168201915b5050505050905090565b600061053c33848461094d565b5060015b92915050565b6000546001600160a01b031633146105795760405162461bcd60e51b815260040161057090611881565b60405180910390fd5b600b805461ffff1990811661010060ff968716810260ff199081169290921797871697909717909255600c805490911692851690950216179116179055565b60006105c5848484610a71565b610617843361061285604051806060016040528060288152602001611a3a602891396001600160a01b038a1660009081526003602090815260408083203384529091529020549190610e84565b61094d565b5060019392505050565b3360008181526003602090815260408083206001600160a01b0387168452909152812054909161053c9185906106129086610ebe565b6000546001600160a01b031633146106815760405162461bcd60e51b815260040161057090611881565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6060600980546104ac90611847565b600061053c338461061285604051806060016040528060258152602001611a62602591393360009081526003602090815260408083206001600160a01b038d1684529091529020549190610e84565b600061053c338484610a71565b6000546001600160a01b031633146107605760405162461bcd60e51b815260040161057090611881565b600d805482151563010000000263ff000000199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc159906107ad90831515815260200190565b60405180910390a150565b6000546001600160a01b031633146107e25760405162461bcd60e51b815260040161057090611881565b60125460ff16156108355760405162461bcd60e51b815260206004820152601a60248201527f54726164696e6720697320616c726561647920656e61626c65640000000000006044820152606401610570565b6012805460ff1916600117905560115460000361085157436011555b565b6000546001600160a01b0316331461087d5760405162461bcd60e51b815260040161057090611881565b600f55565b60006108c483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250610f1d565b9392505050565b6000826000036108dd57506000610540565b60006108e983856118cc565b9050826108f685836118e3565b146108c45760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610570565b6001600160a01b0383166109af5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610570565b6001600160a01b038216610a105760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610570565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610ad55760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610570565b6001600160a01b038216610b375760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610570565b60008111610b995760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610570565b6000546001600160a01b03848116911614801590610bc557506000546001600160a01b03838116911614155b15610c1c5760125460ff16610c1c5760405162461bcd60e51b815260206004820152601860248201527f54726164696e67206e6f742079657420656e61626c65642e00000000000000006044820152606401610570565b30600090815260026020526040902054600e548110610c3a5750600e545b600f5481108015908190610c575750600d5462010000900460ff16155b8015610c9557507f000000000000000000000000163b7ecb76979e38397feabeeb7d9a9d11d615646001600160a01b0316856001600160a01b031614155b8015610caa5750600d546301000000900460ff165b15610cbd57600f549150610cbd82610f4b565b6001600160a01b03851660009081526004602052604090205460019060ff1680610cff57506001600160a01b03851660009081526004602052604090205460ff165b15610d08575060005b8015610e70576001600160a01b03861660009081526005602052604090205460ff16158015610d5057506001600160a01b03851660009081526005602052604090205460ff16155b15610e7057600e54841115610db85760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b6064820152608401610570565b7f000000000000000000000000163b7ecb76979e38397feabeeb7d9a9d11d615646001600160a01b0316856001600160a01b031614610e70576010546001600160a01b038616600090815260026020526040902054610e179086611905565b1115610e705760405162461bcd60e51b815260206004820152602260248201527f526563697069656e742065786365656473206d61782077616c6c65742073697a604482015261329760f11b6064820152608401610570565b610e7c86868684611104565b505050505050565b60008184841115610ea85760405162461bcd60e51b81526004016105709190611679565b506000610eb58486611918565b95945050505050565b600080610ecb8385611905565b9050838110156108c45760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610570565b60008183610f3e5760405162461bcd60e51b81526004016105709190611679565b506000610eb584866118e3565b600d805462ff0000191662010000179055600c54600b5460009161010080820460ff90811693918204811692610f8592908216911661192b565b610f8f919061192b565b610f99919061192b565b610fa4906002611944565b600c54600b5460ff92831693506000928492610fc492908216911661192b565b610fd19060ff16856118cc565b610fdb91906118e3565b90506000610fe98285611918565b905047610ff582611207565b60006110018247611918565b600c54600b5491925060009161101d9160ff908116911661192b565b61102a9060ff1687611918565b61103490836118e3565b600c54600b549192506000916110509160ff908116911661192b565b61105d9060ff16836118cc565b9050801561106f5761106f86826113bf565b600c54600b546000916110919160ff610100928390048116929091041661192b565b60ff1661109f8460026118cc565b6110a991906118cc565b905080156110ed576007546040516001600160a01b039091169082156108fc029083906000818181858888f193505050501580156110eb573d6000803e3d6000fd5b505b5050600d805462ff00001916905550505050505050565b80156111e65761111a600d805461ffff19169055565b7f000000000000000000000000163b7ecb76979e38397feabeeb7d9a9d11d615646001600160a01b0316846001600160a01b03160361118057611180600b54600d805461010080840460ff90811690910261ffff19909216931692909217919091179055565b7f000000000000000000000000163b7ecb76979e38397feabeeb7d9a9d11d615646001600160a01b0316836001600160a01b0316036111e6576111e6600c54600d805461010080840460ff90811690910261ffff19909216931692909217919091179055565b6111f184848461149f565b611201600d805461ffff19169055565b50505050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061123c5761123c611967565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156112ba573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112de919061197d565b816001815181106112f1576112f1611967565b60200260200101906001600160a01b031690816001600160a01b03168152505061133c307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461094d565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac9479061139190859060009086903090429060040161199a565b600060405180830381600087803b1580156113ab57600080fd5b505af1158015610e7c573d6000803e3d6000fd5b6113ea307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461094d565b60405163f305d71960e01b8152306004820181905260248201849052600060448301819052606483015260848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03169063f305d71990839060c40160606040518083038185885af1158015611473573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906114989190611a0b565b5050505050565b60008060006114ad84611587565b6001600160a01b03891660009081526002602052604090205492955090935091506114d890856115c9565b6001600160a01b0380881660009081526002602052604080822093909355908716815220546115079084610ebe565b6001600160a01b0386166000908152600260205260409020556115298261160b565b6115328161160b565b846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405161157791815260200190565b60405180910390a3505050505050565b60008060008061159685611638565b905060006115a386611659565b905060006115bb826115b589866115c9565b906115c9565b979296509094509092505050565b60006108c483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610e84565b306000908152600260205260409020546116259082610ebe565b3060009081526002602052604090205550565b600d546000906105409060649061165390859060ff166108cb565b90610882565b600d5460009061054090606490611653908590610100900460ff166108cb565b600060208083528351808285015260005b818110156116a65785810183015185820160400152820161168a565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146116dc57600080fd5b50565b600080604083850312156116f257600080fd5b82356116fd816116c7565b946020939093013593505050565b803560ff8116811461171c57600080fd5b919050565b6000806000806080858703121561173757600080fd5b6117408561170b565b935061174e6020860161170b565b925061175c6040860161170b565b915061176a6060860161170b565b905092959194509250565b60008060006060848603121561178a57600080fd5b8335611795816116c7565b925060208401356117a5816116c7565b929592945050506040919091013590565b6000602082840312156117c857600080fd5b81356108c4816116c7565b6000602082840312156117e557600080fd5b813580151581146108c457600080fd5b6000806040838503121561180857600080fd5b8235611813816116c7565b91506020830135611823816116c7565b809150509250929050565b60006020828403121561184057600080fd5b5035919050565b600181811c9082168061185b57607f821691505b60208210810361187b57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417610540576105406118b6565b60008261190057634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115610540576105406118b6565b81810381811115610540576105406118b6565b60ff8181168382160190811115610540576105406118b6565b60ff8181168382160290811690818114611960576119606118b6565b5092915050565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561198f57600080fd5b81516108c4816116c7565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156119ea5784516001600160a01b0316835293830193918301916001016119c5565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215611a2057600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212201bede28ae560349bdb3780eae48443042bc89458236b828632e988ac0cd1a73e64736f6c63430008120033

Deployed Bytecode Sourcemap

24755:13745:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27615:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28519:193;;;;;;;;;;-1:-1:-1;28519:193:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;28519:193:0;1023:187:1;25701:51:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1406:32:1;;;1388:51;;1376:2;1361:18;25701:51:0;1215:230:1;27892:95:0;;;;;;;;;;-1:-1:-1;27972:7:0;;27892:95;;;1596:25:1;;;1584:2;1569:18;27892:95:0;1450:177:1;29892:352:0;;;;;;;;;;-1:-1:-1;29892:352:0;;;;;:::i;:::-;;:::i;:::-;;28720:446;;;;;;;;;;-1:-1:-1;28720:446:0;;;;;:::i;:::-;;:::i;25600:22::-;;;;;;;;;;-1:-1:-1;25600:22:0;;;;;;;;;;;;;;;;;;;2848:4:1;2836:17;;;2818:36;;2890:17;;;;2885:2;2870:18;;2863:45;2791:18;25600:22:0;2652:262:1;27801:83:0;;;;;;;;;;-1:-1:-1;27867:9:0;;27801:83;;27867:9;;;;3061:36:1;;3049:2;3034:18;27801:83:0;2919:184:1;29174:300:0;;;;;;;;;;-1:-1:-1;29174:300:0;;;;;:::i;:::-;;:::i;25573:20::-;;;;;;;;;;-1:-1:-1;25573:20:0;;;;;;;;;;;;;;;25759:38;;;;;;;;;;;;;;;25834:40;;;;;;;;;;-1:-1:-1;25834:40:0;;;;;;;;;;;27995:117;;;;;;;;;;-1:-1:-1;27995:117:0;;;;;:::i;:::-;-1:-1:-1;;;;;28088:16:0;28061:7;28088:16;;;:7;:16;;;;;;;27995:117;15253:148;;;;;;;;;;;;;:::i;14611:79::-;;;;;;;;;;-1:-1:-1;14649:7:0;14676:6;-1:-1:-1;;;;;14676:6:0;14611:79;;27706:87;;;;;;;;;;;;;:::i;29482:400::-;;;;;;;;;;-1:-1:-1;29482:400:0;;;;;:::i;:::-;;:::i;28120:199::-;;;;;;;;;;-1:-1:-1;28120:199:0;;;;;:::i;:::-;;:::i;30404:171::-;;;;;;;;;;-1:-1:-1;30404:171:0;;;;;:::i;:::-;;:::i;38293:204::-;;;;;;;;;;;;;:::i;28327:184::-;;;;;;;;;;-1:-1:-1;28327:184:0;;;;;:::i;:::-;-1:-1:-1;;;;;28476:18:0;;;28444:7;28476:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;28327:184;30252:140;;;;;;;;;;-1:-1:-1;30252:140:0;;;;;:::i;:::-;;:::i;27615:83::-;27652:13;27685:5;27678:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27615:83;:::o;28519:193::-;28621:4;28643:39;7455:10;28666:7;28675:6;28643:8;:39::i;:::-;-1:-1:-1;28700:4:0;28519:193;;;;;:::o;29892:352::-;14823:6;;-1:-1:-1;;;;;14823:6:0;7455:10;14823:22;14815:67;;;;-1:-1:-1;;;14815:67:0;;;;;;;:::i;:::-;;;;;;;;;30069:6:::1;:32:::0;;-1:-1:-1;;30112:32:0;;;30069::::1;;::::0;;::::1;::::0;::::1;-1:-1:-1::0;;30112:32:0;;;;;;;;;::::1;::::0;;;::::1;::::0;;;30157:7:::1;:34:::0;;30202;;;30157;;::::1;::::0;;::::1;30202::::0;;;::::1;;::::0;;29892:352::o;28720:446::-;28852:4;28869:36;28879:6;28887:9;28898:6;28869:9;:36::i;:::-;28916:220;28939:6;7455:10;28987:138;29043:6;28987:138;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28987:19:0;;;;;;:11;:19;;;;;;;;7455:10;28987:33;;;;;;;;;;:37;:138::i;:::-;28916:8;:220::i;:::-;-1:-1:-1;29154:4:0;28720:446;;;;;:::o;29174:300::-;7455:10;29289:4;29383:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;29383:34:0;;;;;;;;;;29289:4;;29311:133;;29361:7;;29383:50;;29422:10;29383:38;:50::i;15253:148::-;14823:6;;-1:-1:-1;;;;;14823:6:0;7455:10;14823:22;14815:67;;;;-1:-1:-1;;;14815:67:0;;;;;;;:::i;:::-;15360:1:::1;15344:6:::0;;15323:40:::1;::::0;-1:-1:-1;;;;;15344:6:0;;::::1;::::0;15323:40:::1;::::0;15360:1;;15323:40:::1;15391:1;15374:19:::0;;-1:-1:-1;;;;;;15374:19:0::1;::::0;;15253:148::o;27706:87::-;27745:13;27778:7;27771:14;;;;;:::i;29482:400::-;29602:4;29624:228;7455:10;29674:7;29696:145;29753:15;29696:145;;;;;;;;;;;;;;;;;7455:10;29696:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;29696:34:0;;;;;;;;;;;;:38;:145::i;28120:199::-;28225:4;28247:42;7455:10;28271:9;28282:6;28247:9;:42::i;30404:171::-;14823:6;;-1:-1:-1;;;;;14823:6:0;7455:10;14823:22;14815:67;;;;-1:-1:-1;;;14815:67:0;;;;;;;:::i;:::-;30481:21:::1;:32:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;30481:32:0;;::::1;;::::0;;30529:38:::1;::::0;::::1;::::0;::::1;::::0;30505:8;1188:14:1;1181:22;1163:41;;1151:2;1136:18;;1023:187;30529:38:0::1;;;;;;;;30404:171:::0;:::o;38293:204::-;14823:6;;-1:-1:-1;;;;;14823:6:0;7455:10;14823:22;14815:67;;;;-1:-1:-1;;;14815:67:0;;;;;;;:::i;:::-;38353:11:::1;::::0;::::1;;38352:12;38344:51;;;::::0;-1:-1:-1;;;38344:51:0;;5372:2:1;38344:51:0::1;::::0;::::1;5354:21:1::0;5411:2;5391:18;;;5384:30;5450:28;5430:18;;;5423:56;5496:18;;38344:51:0::1;5170:350:1::0;38344:51:0::1;38402:11;:18:::0;;-1:-1:-1;;38402:18:0::1;38416:4;38402:18;::::0;;38430:10:::1;::::0;38402:11:::1;38430:15:::0;38427:63:::1;;38470:12;38457:10;:25:::0;38427:63:::1;38293:204::o:0;30252:140::-;14823:6;;-1:-1:-1;;;;;14823:6:0;7455:10;14823:22;14815:67;;;;-1:-1:-1;;;14815:67:0;;;;;;;:::i;:::-;30343:29:::1;:41:::0;30252:140::o;5099:132::-;5157:7;5184:39;5188:1;5191;5184:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;5177:46;5099:132;-1:-1:-1;;;5099:132:0:o;4604:252::-;4662:7;4688:1;4693;4688:6;4684:47;;-1:-1:-1;4718:1:0;4711:8;;4684:47;4743:9;4755:5;4759:1;4755;:5;:::i;:::-;4743:17;-1:-1:-1;4788:1:0;4779:5;4783:1;4743:17;4779:5;:::i;:::-;:10;4771:56;;;;-1:-1:-1;;;4771:56:0;;6254:2:1;4771:56:0;;;6236:21:1;6293:2;6273:18;;;6266:30;6332:34;6312:18;;;6305:62;-1:-1:-1;;;6383:18:1;;;6376:31;6424:19;;4771:56:0;6052:397:1;32151:371:0;-1:-1:-1;;;;;32278:19:0;;32270:68;;;;-1:-1:-1;;;32270:68:0;;6656:2:1;32270:68:0;;;6638:21:1;6695:2;6675:18;;;6668:30;6734:34;6714:18;;;6707:62;-1:-1:-1;;;6785:18:1;;;6778:34;6829:19;;32270:68:0;6454:400:1;32270:68:0;-1:-1:-1;;;;;32357:21:0;;32349:68;;;;-1:-1:-1;;;32349:68:0;;7061:2:1;32349:68:0;;;7043:21:1;7100:2;7080:18;;;7073:30;7139:34;7119:18;;;7112:62;-1:-1:-1;;;7190:18:1;;;7183:32;7232:19;;32349:68:0;6859:398:1;32349:68:0;-1:-1:-1;;;;;32430:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;32482:32;;1596:25:1;;;32482:32:0;;1569:18:1;32482:32:0;;;;;;;32151:371;;;:::o;32530:2331::-;-1:-1:-1;;;;;32652:18:0;;32644:68;;;;-1:-1:-1;;;32644:68:0;;7464:2:1;32644:68:0;;;7446:21:1;7503:2;7483:18;;;7476:30;7542:34;7522:18;;;7515:62;-1:-1:-1;;;7593:18:1;;;7586:35;7638:19;;32644:68:0;7262:401:1;32644:68:0;-1:-1:-1;;;;;32731:16:0;;32723:64;;;;-1:-1:-1;;;32723:64:0;;7870:2:1;32723:64:0;;;7852:21:1;7909:2;7889:18;;;7882:30;7948:34;7928:18;;;7921:62;-1:-1:-1;;;7999:18:1;;;7992:33;8042:19;;32723:64:0;7668:399:1;32723:64:0;32815:1;32806:6;:10;32798:64;;;;-1:-1:-1;;;32798:64:0;;8274:2:1;32798:64:0;;;8256:21:1;8313:2;8293:18;;;8286:30;8352:34;8332:18;;;8325:62;-1:-1:-1;;;8403:18:1;;;8396:39;8452:19;;32798:64:0;8072:405:1;32798:64:0;14649:7;14676:6;-1:-1:-1;;;;;32888:15:0;;;14676:6;;32888:15;;;;:32;;-1:-1:-1;14649:7:0;14676:6;-1:-1:-1;;;;;32907:13:0;;;14676:6;;32907:13;;32888:32;32883:88;;;32931:11;;;;32923:48;;;;-1:-1:-1;;;32923:48:0;;8684:2:1;32923:48:0;;;8666:21:1;8723:2;8703:18;;;8696:30;8762:26;8742:18;;;8735:54;8806:18;;32923:48:0;8482:348:1;32923:48:0;33355:4;33306:28;28088:16;;;:7;:16;;;;;;33402:12;;33378:36;;33374:104;;-1:-1:-1;33454:12:0;;33374:104;33554:29;;33517:66;;;;;;;33612:53;;-1:-1:-1;33649:16:0;;;;;;;33648:17;33612:53;:91;;;;;33690:13;-1:-1:-1;;;;;33682:21:0;:4;-1:-1:-1;;;;;33682:21:0;;;33612:91;:129;;;;-1:-1:-1;33720:21:0;;;;;;;33612:129;33594:318;;;33791:29;;33768:52;;33864:36;33879:20;33864:14;:36::i;:::-;-1:-1:-1;;;;;34105:24:0;;33985:12;34105:24;;;:18;:24;;;;;;34000:4;;34105:24;;;:50;;-1:-1:-1;;;;;;34133:22:0;;;;;;:18;:22;;;;;;;;34105:50;34101:98;;;-1:-1:-1;34182:5:0;34101:98;34213:7;34209:536;;;-1:-1:-1;;;;;34242:26:0;;;;;;:20;:26;;;;;;;;34241:27;:56;;;;-1:-1:-1;;;;;;34273:24:0;;;;;;:20;:24;;;;;;;;34272:25;34241:56;34237:497;;;34358:12;;34348:6;:22;;34318:136;;;;-1:-1:-1;;;34318:136:0;;9037:2:1;34318:136:0;;;9019:21:1;9076:2;9056:18;;;9049:30;9115:34;9095:18;;;9088:62;-1:-1:-1;;;9166:18:1;;;9159:38;9214:19;;34318:136:0;8835:404:1;34318:136:0;34483:13;-1:-1:-1;;;;;34477:19:0;:2;-1:-1:-1;;;;;34477:19:0;;34473:228;;34581:14;;-1:-1:-1;;;;;28088:16:0;;28061:7;28088:16;;;:7;:16;;;;;;34555:22;;:6;:22;:::i;:::-;:40;;34521:160;;;;-1:-1:-1;;;34521:160:0;;9576:2:1;34521:160:0;;;9558:21:1;9615:2;9595:18;;;9588:30;9654:34;9634:18;;;9627:62;-1:-1:-1;;;9705:18:1;;;9698:32;9747:19;;34521:160:0;9374:398:1;34521:160:0;34812:41;34827:4;34833:2;34837:6;34845:7;34812:14;:41::i;:::-;32633:2228;;;32530:2331;;;:::o;4119:226::-;4239:7;4275:12;4267:6;;;;4259:29;;;;-1:-1:-1;;;4259:29:0;;;;;;;;:::i;:::-;-1:-1:-1;4299:9:0;4311:5;4315:1;4311;:5;:::i;:::-;4299:17;4119:226;-1:-1:-1;;;;;4119:226:0:o;3216:181::-;3274:7;;3306:5;3310:1;3306;:5;:::i;:::-;3294:17;;3335:1;3330;:6;;3322:46;;;;-1:-1:-1;;;3322:46:0;;10112:2:1;3322:46:0;;;10094:21:1;10151:2;10131:18;;;10124:30;10190:29;10170:18;;;10163:57;10237:18;;3322:46:0;9910:351:1;5727:312:0;5847:7;5882:12;5875:5;5867:28;;;;-1:-1:-1;;;5867:28:0;;;;;;;;:::i;:::-;-1:-1:-1;5906:9:0;5918:5;5922:1;5918;:5;:::i;34869:1195::-;26403:16;:23;;-1:-1:-1;;26403:23:0;;;;;35072:7:::1;:17:::0;35053:6:::1;:16:::0;26403:23;;;35072:17;;::::1;26403:23:::0;35072:17;;::::1;::::0;35053:16;;::::1;::::0;::::1;::::0;35014:36:::1;::::0;35033:17;;::::1;::::0;35014:16:::1;:36;:::i;:::-;:55;;;;:::i;:::-;:75;;;;:::i;:::-;35013:81;::::0;35093:1:::1;35013:81;:::i;:::-;35170:7;:17:::0;35151:6:::1;:16:::0;34991:103:::1;::::0;;::::1;::::0;-1:-1:-1;35105:32:0::1;::::0;34991:103;;35151:36:::1;::::0;35170:17;;::::1;::::0;35151:16:::1;:36;:::i;:::-;35141:47;::::0;::::1;;:6:::0;:47:::1;:::i;:::-;35140:63;;;;:::i;:::-;35105:98:::0;-1:-1:-1;35214:14:0::1;35231:33;35105:98:::0;35231:6;:33:::1;:::i;:::-;35214:50:::0;-1:-1:-1;35302:21:0::1;35336:24;35214:50:::0;35336:16:::1;:24::i;:::-;35373:20;35396:38;35420:14:::0;35396:21:::1;:38;:::i;:::-;35517:7;:17:::0;35498:6:::1;:16:::0;35373:61;;-1:-1:-1;35445:19:0::1;::::0;35498:36:::1;::::0;35517:17:::1;::::0;;::::1;::::0;35498:16:::1;:36;:::i;:::-;35483:52;::::0;::::1;;:11:::0;:52:::1;:::i;:::-;35467:69;::::0;:12;:69:::1;:::i;:::-;35613:7;:17:::0;35594:6:::1;:16:::0;35445:91;;-1:-1:-1;35547:29:0::1;::::0;35594:36:::1;::::0;35613:17:::1;::::0;;::::1;::::0;35594:16:::1;:36;:::i;:::-;35579:52;::::0;::::1;;:11:::0;:52:::1;:::i;:::-;35547:84:::0;-1:-1:-1;35648:25:0;;35644:160:::1;;35731:61;35744:24;35770:21;35731:12;:61::i;:::-;35911:7;:17:::0;35892:6:::1;:16:::0;35850:20:::1;::::0;35892:36:::1;::::0;35911:17:::1;;::::0;;;::::1;::::0;::::1;::::0;35892:16;;::::1;;:36;:::i;:::-;35873:56;;:15;:11:::0;35887:1:::1;35873:15;:::i;:::-;:56;;;;:::i;:::-;35850:79:::0;-1:-1:-1;35955:16:0;;35951:98:::1;;35996:17;::::0;35988:49:::1;::::0;-1:-1:-1;;;;;35996:17:0;;::::1;::::0;35988:49;::::1;;;::::0;36024:12;;35996:17:::1;35988:49:::0;35996:17;35988:49;36024:12;35996:17;35988:49;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;35951:98;-1:-1:-1::0;;26449:16:0;:24;;-1:-1:-1;;26449:24:0;;;-1:-1:-1;;;;;;;34869:1195:0:o;37269:472::-;37424:7;37420:230;;;37448:14;31804:13;:17;;-1:-1:-1;;31832:17:0;;;31761:103;37448:14;37491:13;-1:-1:-1;;;;;37481:23:0;:6;-1:-1:-1;;;;;37481:23:0;;37477:72;;37525:8;31925:6;:16;31909:13;:32;;31925:16;31968;;;31925;31968;;;31952:32;;;-1:-1:-1;;31952:32:0;;;31925:16;;31952:32;;;;;;;;;;31872:128;37525:8;37580:13;-1:-1:-1;;;;;37567:26:0;:9;-1:-1:-1;;;;;37567:26:0;;37563:76;;37614:9;32062:7;:17;32046:13;:33;;32062:17;32106;;;32062;32106;;;32090:33;;;-1:-1:-1;;32090:33:0;;;32062:17;;32090:33;;;;;;;;;;32008:131;37614:9;37662:44;37680:6;37688:9;37699:6;37662:17;:44::i;:::-;37719:14;31804:13;:17;;-1:-1:-1;;31832:17:0;;;31761:103;37719:14;37269:472;;;;:::o;36072:589::-;36222:16;;;36236:1;36222:16;;;;;;;;36198:21;;36222:16;;;;;;;;;;-1:-1:-1;36222:16:0;36198:40;;36267:4;36249;36254:1;36249:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;36249:23:0;;;-1:-1:-1;;;;;36249:23:0;;;;;36293:15;-1:-1:-1;;;;;36293:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;36283:4;36288:1;36283:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;36283:32:0;;;-1:-1:-1;;;;;36283:32:0;;;;;36328:62;36345:4;36360:15;36378:11;36328:8;:62::i;:::-;36429:224;;-1:-1:-1;;;36429:224:0;;-1:-1:-1;;;;;36429:15:0;:66;;;;:224;;36510:11;;36536:1;;36580:4;;36607;;36627:15;;36429:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36669:519;36817:62;36834:4;36849:15;36867:11;36817:8;:62::i;:::-;36922:258;;-1:-1:-1;;;36922:258:0;;36994:4;36922:258;;;12495:34:1;;;12545:18;;;12538:34;;;37040:1:0;12588:18:1;;;12581:34;;;12631:18;;;12624:34;12674:19;;;12667:44;37154:15:0;12727:19:1;;;12720:35;36922:15:0;-1:-1:-1;;;;;36922:31:0;;;;36961:9;;12429:19:1;;36922:258:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;36669:519;;:::o;37749:536::-;37896:23;37934:18;37967:15;37996:20;38008:7;37996:11;:20::i;:::-;-1:-1:-1;;;;;38047:15:0;;;;;;:7;:15;;;;;;37881:135;;-1:-1:-1;37881:135:0;;-1:-1:-1;37881:135:0;-1:-1:-1;38047:28:0;;38067:7;38047:19;:28::i;:::-;-1:-1:-1;;;;;38029:15:0;;;;;;;:7;:15;;;;;;:46;;;;38107:18;;;;;;;:39;;38130:15;38107:22;:39::i;:::-;-1:-1:-1;;;;;38086:18:0;;;;;;:7;:18;;;;;:60;38157:26;38172:10;38157:14;:26::i;:::-;38194:23;38209:7;38194:14;:23::i;:::-;38250:9;-1:-1:-1;;;;;38233:44:0;38242:6;-1:-1:-1;;;;;38233:44:0;;38261:15;38233:44;;;;1596:25:1;;1584:2;1569:18;;1450:177;38233:44:0;;;;;;;;37870:415;;;37749:536;;;:::o;30677:429::-;30778:7;30800;30822;30857:18;30878:30;30900:7;30878:21;:30::i;:::-;30857:51;;30919:15;30937:30;30959:7;30937:21;:30::i;:::-;30919:48;-1:-1:-1;30978:23:0;31004:36;30919:48;31004:23;:7;31016:10;31004:11;:23::i;:::-;:27;;:36::i;:::-;30978:62;31078:10;;-1:-1:-1;31090:7:0;;-1:-1:-1;30677:429:0;;-1:-1:-1;;;30677:429:0:o;3680:136::-;3738:7;3765:43;3769:1;3772;3765:43;;;;;;;;;;;;;;;;;:3;:43::i;31114:134::-;31218:4;31202:22;;;;:7;:22;;;;;;:38;;31229:10;31202:26;:38::i;:::-;31193:4;31177:22;;;;:7;:22;;;;;:63;-1:-1:-1;31114:134:0:o;31392:174::-;31533:13;;31489:7;;31521:37;;31552:5;;31521:26;;:7;;31533:13;;31521:11;:26::i;:::-;:30;;:37::i;31574:174::-;31715:13;;31671:7;;31703:37;;31734:5;;31703:26;;:7;;31715:13;;;;;31703:11;:26::i;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;622:70;567:131;:::o;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;1632:156::-;1698:20;;1758:4;1747:16;;1737:27;;1727:55;;1778:1;1775;1768:12;1727:55;1632:156;;;:::o;1793:393::-;1871:6;1879;1887;1895;1948:3;1936:9;1927:7;1923:23;1919:33;1916:53;;;1965:1;1962;1955:12;1916:53;1988:27;2005:9;1988:27;:::i;:::-;1978:37;;2034:36;2066:2;2055:9;2051:18;2034:36;:::i;:::-;2024:46;;2089:36;2121:2;2110:9;2106:18;2089:36;:::i;:::-;2079:46;;2144:36;2176:2;2165:9;2161:18;2144:36;:::i;:::-;2134:46;;1793:393;;;;;;;:::o;2191:456::-;2268:6;2276;2284;2337:2;2325:9;2316:7;2312:23;2308:32;2305:52;;;2353:1;2350;2343:12;2305:52;2392:9;2379:23;2411:31;2436:5;2411:31;:::i;:::-;2461:5;-1:-1:-1;2518:2:1;2503:18;;2490:32;2531:33;2490:32;2531:33;:::i;:::-;2191:456;;2583:7;;-1:-1:-1;;;2637:2:1;2622:18;;;;2609:32;;2191:456::o;3316:247::-;3375:6;3428:2;3416:9;3407:7;3403:23;3399:32;3396:52;;;3444:1;3441;3434:12;3396:52;3483:9;3470:23;3502:31;3527:5;3502:31;:::i;3568:273::-;3624:6;3677:2;3665:9;3656:7;3652:23;3648:32;3645:52;;;3693:1;3690;3683:12;3645:52;3732:9;3719:23;3785:5;3778:13;3771:21;3764:5;3761:32;3751:60;;3807:1;3804;3797:12;3846:388;3914:6;3922;3975:2;3963:9;3954:7;3950:23;3946:32;3943:52;;;3991:1;3988;3981:12;3943:52;4030:9;4017:23;4049:31;4074:5;4049:31;:::i;:::-;4099:5;-1:-1:-1;4156:2:1;4141:18;;4128:32;4169:33;4128:32;4169:33;:::i;:::-;4221:7;4211:17;;;3846:388;;;;;:::o;4239:180::-;4298:6;4351:2;4339:9;4330:7;4326:23;4322:32;4319:52;;;4367:1;4364;4357:12;4319:52;-1:-1:-1;4390:23:1;;4239:180;-1:-1:-1;4239:180:1:o;4424:380::-;4503:1;4499:12;;;;4546;;;4567:61;;4621:4;4613:6;4609:17;4599:27;;4567:61;4674:2;4666:6;4663:14;4643:18;4640:38;4637:161;;4720:10;4715:3;4711:20;4708:1;4701:31;4755:4;4752:1;4745:15;4783:4;4780:1;4773:15;4637:161;;4424:380;;;:::o;4809:356::-;5011:2;4993:21;;;5030:18;;;5023:30;5089:34;5084:2;5069:18;;5062:62;5156:2;5141:18;;4809:356::o;5525:127::-;5586:10;5581:3;5577:20;5574:1;5567:31;5617:4;5614:1;5607:15;5641:4;5638:1;5631:15;5657:168;5730:9;;;5761;;5778:15;;;5772:22;;5758:37;5748:71;;5799:18;;:::i;5830:217::-;5870:1;5896;5886:132;;5940:10;5935:3;5931:20;5928:1;5921:31;5975:4;5972:1;5965:15;6003:4;6000:1;5993:15;5886:132;-1:-1:-1;6032:9:1;;5830:217::o;9244:125::-;9309:9;;;9330:10;;;9327:36;;;9343:18;;:::i;9777:128::-;9844:9;;;9865:11;;;9862:37;;;9879:18;;:::i;10266:148::-;10354:4;10333:12;;;10347;;;10329:31;;10372:13;;10369:39;;;10388:18;;:::i;10419:225::-;10523:4;10502:12;;;10516;;;10498:31;10549:22;;;;10590:24;;;10580:58;;10618:18;;:::i;:::-;10580:58;10419:225;;;;:::o;10781:127::-;10842:10;10837:3;10833:20;10830:1;10823:31;10873:4;10870:1;10863:15;10897:4;10894:1;10887:15;10913:251;10983:6;11036:2;11024:9;11015:7;11011:23;11007:32;11004:52;;;11052:1;11049;11042:12;11004:52;11084:9;11078:16;11103:31;11128:5;11103:31;:::i;11169:980::-;11431:4;11479:3;11468:9;11464:19;11510:6;11499:9;11492:25;11536:2;11574:6;11569:2;11558:9;11554:18;11547:34;11617:3;11612:2;11601:9;11597:18;11590:31;11641:6;11676;11670:13;11707:6;11699;11692:22;11745:3;11734:9;11730:19;11723:26;;11784:2;11776:6;11772:15;11758:29;;11805:1;11815:195;11829:6;11826:1;11823:13;11815:195;;;11894:13;;-1:-1:-1;;;;;11890:39:1;11878:52;;11985:15;;;;11950:12;;;;11926:1;11844:9;11815:195;;;-1:-1:-1;;;;;;;12066:32:1;;;;12061:2;12046:18;;12039:60;-1:-1:-1;;;12130:3:1;12115:19;12108:35;12027:3;11169:980;-1:-1:-1;;;11169:980:1:o;12766:306::-;12854:6;12862;12870;12923:2;12911:9;12902:7;12898:23;12894:32;12891:52;;;12939:1;12936;12929:12;12891:52;12968:9;12962:16;12952:26;;13018:2;13007:9;13003:18;12997:25;12987:35;;13062:2;13051:9;13047:18;13041:25;13031:35;;12766:306;;;;;:::o

Swarm Source

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