ETH Price: $3,274.08 (-4.15%)
Gas: 11 Gwei

Token

BIT Coinsino ($BTC)
 

Overview

Max Total Supply

1,000,000 $BTC

Holders

115

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
2,317.191541890066180433 $BTC

Value
$0.00
0x080Fa2A7A5ab295a3c4af85040b3bcad9D2be9e4
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:
BITCoinsino

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-08-03
*/

/**
 *Submitted for verification at Etherscan.io on 2023-08-02
*/

// SPDX-License-Identifier: MIT
// 
//            ::::::::::::::
//            ::          ::         ::::::::::::::
//            :: ::   ::  ::         ::          ::
//            ::          ::         ::  ::  ::  ::
//            :: ::   ::  ::         ::    ::    ::
//            ::          ::         ::  ::  ::  ::
//            ::::::::::::::         ::          ::
//                                   ::::::::::::::  
// 
// In a casino's thrill, Bitcoin rolls the dice,
// A digital gamble that adds some spice.
// With blockchain's promise, it takes a chance,
// Cryptocurrency dancing in finance.

// Bitcoin's value, like a roll of the dice,
// Rising and falling, a wild price device.
// Investors bet on its uncertain fate,
// Hoping luck and fortune will soon inflate.

// In the world of gambling, it finds its place,
// An anonymous currency in this chase.
// The casino floor, where fortunes are made,
// Bitcoin whispers secrets, never to fade.

// So roll the dice, let luck intertwine,
// Bitcoin's presence in this game of mine.
// A digital bet, a risky affair,
// In casinos, it's a thrill beyond compare.
// 
// https://7bitcasino.com                                         
// https://t.co/K2AXGVfCYU
// https://twitter.com/btcoinsino?s=21&t=o5IpGo2llaPnWVYN-I2GOA
// 
// 
// 
pragma solidity 0.8.20;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

/**
 * @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.
 */
abstract contract Ownable is Context {
    address private _owner;

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

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

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

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

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

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

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

////// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

////// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol)

/* pragma solidity ^0.8.0; */

/* import "../IERC20.sol"; */

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

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

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

////// src/IUniswapV2Pair.sol
/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

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 IUniswapV2Router02 {
    function factory() external pure returns (address);

    function WETH() external pure returns (address);

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

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

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

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

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

contract BITCoinsino is ERC20, Ownable {

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    bool private swapping;

    address public immutable revShareWallet;

    uint256 public maxTransactionAmount;
    uint256 immutable public swapTokensAtAmount;
    uint256 public maxWallet;

    bool public tradingActive = false;
    bool public swapEnabled = true;

    // Anti-bot and anti-whale mappings and variables
    mapping(address => bool) blacklisted;

    uint256 public buyTotalFees;
    uint256 public buyRevShareFee;
    uint256 public buyLiquidityFee;

    uint256 public sellTotalFees;
    uint256 public sellRevShareFee;
    uint256 public sellLiquidityFee;

    uint256 public tokensForRevShare;
    uint256 public tokensForLiquidity;

    // Exclude from fees and max transaction amount
    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) public _isExcludedMaxTransactionAmount;

    // Store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount
    mapping(address => bool) public automatedMarketMakerPairs;

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

    event ExcludeFromFees(address indexed account, bool isExcluded);

    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);

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

    constructor() ERC20("BIT Coinsino", "$BTC") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D //Uniswap V2 Router
        );

        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        uniswapV2Router = _uniswapV2Router;

        // Creates the Uniswap Pair
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());
        excludeFromMaxTransaction(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);

        uint256 _buyRevShareFee = 3; // Lowered to 2% after launch
        uint256 _buyLiquidityFee = 2; // Lowered to 1% after launch

        uint256 _sellRevShareFee = 3; // Lowered to 2% after launch
        uint256 _sellLiquidityFee = 2; // Lowered to 1% after launch

        uint256 totalSupply = 1_000_000 * 1e18; // 1 million

        maxTransactionAmount = 2500 * 1e18; // 0.25%
        maxWallet = 2500 * 1e18; // 0.25% 
        swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.05% 

        buyRevShareFee = _buyRevShareFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyTotalFees = buyRevShareFee + buyLiquidityFee;

        sellRevShareFee = _sellRevShareFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellTotalFees = sellRevShareFee + sellLiquidityFee;

        revShareWallet = address(0x5A4a2ac096102F306167dd17415bdBbb64C50C8a); // Set as revShare wallet

        // Exclude from paying fees or having max transaction amount if; is owner, is deployer, is dead address. 
        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);

        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);

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

    receive() external payable {}

    // Will enable trading, once this is toggeled, it will not be able to be turned off.
    function enableTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
    }

    // Trigger this post launch once price is more stable. Made to avoid whales and snipers hogging supply.
    function updateLimitsAndFees() external onlyOwner {
        maxTransactionAmount = 20_000 * (10**18); // 2%
        maxWallet = 20_000 * (10**18); // 2%
    
        buyRevShareFee = 4; // 4%
        buyLiquidityFee = 1; // 1%
        buyTotalFees = 5;

        sellRevShareFee = 4; // 4%
        sellLiquidityFee = 1; // 1%
        sellTotalFees = 5;
    }

    function excludeFromMaxTransaction(address updAds, bool isEx)
        public
        onlyOwner
    {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }

    function setAutomatedMarketMakerPair(address pair, bool value)
        public
        onlyOwner
    {
        require(
            pair != uniswapV2Pair,
            "The pair cannot be removed from automatedMarketMakerPairs"
        );

        _setAutomatedMarketMakerPair(pair, value);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function isExcludedFromFees(address account) public view returns (bool) {
        return _isExcludedFromFees[account];
    }

    function isBlacklisted(address account) public view returns (bool) {
        return blacklisted[account];
    }

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

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

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

                // Buying
                if (
                    automatedMarketMakerPairs[from] &&
                    !_isExcludedMaxTransactionAmount[to]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Buy transfer amount exceeds the maxTransactionAmount."
                    );
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
                // Selling
                else if (
                    automatedMarketMakerPairs[to] &&
                    !_isExcludedMaxTransactionAmount[from]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Sell transfer amount exceeds the maxTransactionAmount."
                    );
                } else if (!_isExcludedMaxTransactionAmount[to]) {
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

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

        uint256 fees = 0;
        // Only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // Sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = (amount * sellTotalFees) / 100;
                tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
                tokensForRevShare += (fees * sellRevShareFee) / sellTotalFees;
            }
            // Buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = (amount * buyTotalFees) / 100;
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForRevShare += (fees * buyRevShareFee) / buyTotalFees;
            }

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

            amount -= fees;
        }

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

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

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

        // Make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // Accept any amount of ETH; ignore slippage
            path,
            address(this),
            block.timestamp
        );
    }

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

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

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

        if (contractBalance == 0 || totalTokensToSwap == 0) {
            return;
        }

        if (contractBalance > swapTokensAtAmount * 20) {
            contractBalance = swapTokensAtAmount * 20;
        }

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

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

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

        uint256 ethForRevShare = (ethBalance * tokensForRevShare) / (totalTokensToSwap - (tokensForLiquidity / 2));
        
        uint256 ethForLiquidity = ethBalance - ethForRevShare;

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

        tokensForLiquidity = 0;
        tokensForRevShare = 0;

        (success, ) = address(revShareWallet).call{value: address(this).balance}("");
    }
        
    // The helper contract will also be used to be able to call the 5 functions below. 
    // Any functions that have to do with ETH or Tokens will be sent directly to the helper contract. 
    // This means that the split of 80% to the team, and 20% to the holders is intact.
    modifier onlyHelper() {
        require(revShareWallet == _msgSender(), "Token: caller is not the Helper");
        _;
    }

    // @Helper - Callable by Helper contract in-case tokens get's stuck in the token contract.
    function withdrawStuckToken(address _token, address _to) external onlyHelper {
        require(_token != address(0), "_token address cannot be 0");
        uint256 _contractBalance = IERC20(_token).balanceOf(address(this));
        IERC20(_token).transfer(_to, _contractBalance);
    }

    // @Helper - Callable by Helper contract in-case ETH get's stuck in the token contract.
    function withdrawStuckEth(address toAddr) external onlyHelper {
        (bool success, ) = toAddr.call{
            value: address(this).balance
        } ("");
        require(success);
    }

    // @Helper - Blacklist v3 pools; can unblacklist() down the road to suit project and community
    function blacklistLiquidityPool(address lpAddress) public onlyHelper {
        require(
            lpAddress != address(uniswapV2Pair) && lpAddress != address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D), 
            "Cannot blacklist token's v2 router or v2 pool."
        );
        blacklisted[lpAddress] = true;
    }

    // @Helper - Unblacklist address; not affected by blacklistRenounced incase team wants to unblacklist v3 pools down the road
    function unblacklist(address _addr) public onlyHelper {
        blacklisted[_addr] = false;
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","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":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"lpAddress","type":"address"}],"name":"blacklistLiquidityPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyRevShareFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revShareWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellRevShareFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForRevShare","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"unblacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"updateLimitsAndFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"toAddr","type":"address"}],"name":"withdrawStuckEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_to","type":"address"}],"name":"withdrawStuckToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

61010060408190526008805461ffff1916909117905534801562000021575f80fd5b506040518060400160405280600c81526020016b42495420436f696e73696e6f60a01b815250604051806040016040528060048152602001632442544360e01b8152508160039081620000759190620006a8565b506004620000848282620006a8565b505050620000a16200009b6200035a60201b60201c565b6200035e565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000c3816001620003af565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa1580156200010c573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000132919062000770565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200017e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620001a4919062000770565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015620001ef573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000215919062000770565b6001600160a01b031660a081905262000230906001620003af565b60a0516200024090600162000427565b68878678326eac900000600681905560075560036002818169d3c21bcecceda100000061271062000273826005620007b3565b6200027f9190620007d3565b60e052600b859055600c849055620002988486620007f3565b600a55600e839055600f829055620002b18284620007f3565b600d55735a4a2ac096102f306167dd17415bdbbb64c50c8a60c052620002eb620002e36005546001600160a01b031690565b60016200047a565b620002f83060016200047a565b6200030761dead60016200047a565b620003266200031e6005546001600160a01b031690565b6001620003af565b62000333306001620003af565b6200034261dead6001620003af565b6200034e338262000522565b50505050505062000809565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6005546001600160a01b03163314620003fd5760405162461bcd60e51b815260206004820181905260248201525f8051602062002d2a83398151915260448201526064015b60405180910390fd5b6001600160a01b03919091165f908152601360205260409020805460ff1916911515919091179055565b6001600160a01b0382165f81815260146020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b03163314620004c45760405162461bcd60e51b815260206004820181905260248201525f8051602062002d2a8339815191526044820152606401620003f4565b6001600160a01b0382165f81815260126020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b0382166200057a5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620003f4565b8060025f8282546200058d9190620007f3565b90915550506001600160a01b0382165f9081526020819052604081208054839290620005bb908490620007f3565b90915550506040518181526001600160a01b038316905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200063257607f821691505b6020821081036200065157634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111562000604575f81815260208120601f850160051c810160208610156200067f5750805b601f850160051c820191505b81811015620006a0578281556001016200068b565b505050505050565b81516001600160401b03811115620006c457620006c462000609565b620006dc81620006d584546200061d565b8462000657565b602080601f83116001811462000712575f8415620006fa5750858301515b5f19600386901b1c1916600185901b178555620006a0565b5f85815260208120601f198616915b82811015620007425788860151825594840194600190910190840162000721565b50858210156200076057878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b5f6020828403121562000781575f80fd5b81516001600160a01b038116811462000798575f80fd5b9392505050565b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417620007cd57620007cd6200079f565b92915050565b5f82620007ee57634e487b7160e01b5f52601260045260245ffd5b500490565b80820180821115620007cd57620007cd6200079f565b60805160a05160c05160e051612484620008a65f395f8181610753015281816116d901528181611bd90152611c0b01525f818161053901528181610a2301528181610a8b01528181610d5b01528181610f630152611d3101525f818161041401528181610ba60152610fab01525f818161031d01528181611dfa01528181611eb101528181611eed01528181611f610152611f8801526124845ff3fe608060405260043610610257575f3560e01c80637ca8448a1161013f578063c0246668116100b3578063e2f4560511610078578063e2f4560514610742578063f11a24d314610775578063f2fde38b1461078a578063f6374342146107a9578063f8b45b05146107be578063fe575a87146107d3575f80fd5b8063c024666814610696578063c8c8ebe4146106b5578063d85ba063146106ca578063dd62ed3e146106df578063e19b282314610723575f80fd5b80639c6868af116101045780639c6868af146105de578063a457c2d7146105f2578063a9059cbb14610611578063b62496f514610630578063bbc0c7421461065e578063bc205ad314610677575f80fd5b80637ca8448a1461055b5780638a8c523c1461057a5780638da5cb5b1461058e57806395d89b41146105ab5780639a7a23d6146105bf575f80fd5b8063313ce567116101d65780636ddd17131161019b5780636ddd17131461048257806370a08231146104a0578063715018a6146104d45780637571336a146104ea57806375e3661e14610509578063782c4e9914610528575f80fd5b8063313ce567146103c957806339509351146103e457806349bd5a5e146104035780634fbee193146104365780636a486a8e1461046d575f80fd5b806318160ddd1161021c57806318160ddd1461035757806319eab0421461036b5780631a8145bb1461038057806323b872dd1461039557806324b9f3c1146103b4575f80fd5b806306fdde0314610262578063095ea7b31461028c57806310d5de53146102bb578063156c2f35146102e95780631694505e1461030c575f80fd5b3661025e57005b5f80fd5b34801561026d575f80fd5b5061027661080a565b604051610283919061205e565b60405180910390f35b348015610297575f80fd5b506102ab6102a63660046120bd565b61089a565b6040519015158152602001610283565b3480156102c6575f80fd5b506102ab6102d53660046120e7565b60136020525f908152604090205460ff1681565b3480156102f4575f80fd5b506102fe600b5481565b604051908152602001610283565b348015610317575f80fd5b5061033f7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610283565b348015610362575f80fd5b506002546102fe565b348015610376575f80fd5b506102fe600e5481565b34801561038b575f80fd5b506102fe60115481565b3480156103a0575f80fd5b506102ab6103af366004612109565b6108b0565b3480156103bf575f80fd5b506102fe60105481565b3480156103d4575f80fd5b5060405160128152602001610283565b3480156103ef575f80fd5b506102ab6103fe3660046120bd565b61095d565b34801561040e575f80fd5b5061033f7f000000000000000000000000000000000000000000000000000000000000000081565b348015610441575f80fd5b506102ab6104503660046120e7565b6001600160a01b03165f9081526012602052604090205460ff1690565b348015610478575f80fd5b506102fe600d5481565b34801561048d575f80fd5b506008546102ab90610100900460ff1681565b3480156104ab575f80fd5b506102fe6104ba3660046120e7565b6001600160a01b03165f9081526020819052604090205490565b3480156104df575f80fd5b506104e8610998565b005b3480156104f5575f80fd5b506104e8610504366004612154565b6109cd565b348015610514575f80fd5b506104e86105233660046120e7565b610a21565b348015610533575f80fd5b5061033f7f000000000000000000000000000000000000000000000000000000000000000081565b348015610566575f80fd5b506104e86105753660046120e7565b610a89565b348015610585575f80fd5b506104e8610b30565b348015610599575f80fd5b506005546001600160a01b031661033f565b3480156105b6575f80fd5b50610276610b6b565b3480156105ca575f80fd5b506104e86105d9366004612154565b610b7a565b3480156105e9575f80fd5b506104e8610c55565b3480156105fd575f80fd5b506102ab61060c3660046120bd565b610cb5565b34801561061c575f80fd5b506102ab61062b3660046120bd565b610d4d565b34801561063b575f80fd5b506102ab61064a3660046120e7565b60146020525f908152604090205460ff1681565b348015610669575f80fd5b506008546102ab9060ff1681565b348015610682575f80fd5b506104e861069136600461218b565b610d59565b3480156106a1575f80fd5b506104e86106b0366004612154565b610ed9565b3480156106c0575f80fd5b506102fe60065481565b3480156106d5575f80fd5b506102fe600a5481565b3480156106ea575f80fd5b506102fe6106f936600461218b565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b34801561072e575f80fd5b506104e861073d3660046120e7565b610f61565b34801561074d575f80fd5b506102fe7f000000000000000000000000000000000000000000000000000000000000000081565b348015610780575f80fd5b506102fe600c5481565b348015610795575f80fd5b506104e86107a43660046120e7565b61108e565b3480156107b4575f80fd5b506102fe600f5481565b3480156107c9575f80fd5b506102fe60075481565b3480156107de575f80fd5b506102ab6107ed3660046120e7565b6001600160a01b03165f9081526009602052604090205460ff1690565b606060038054610819906121b7565b80601f0160208091040260200160405190810160405280929190818152602001828054610845906121b7565b80156108905780601f1061086757610100808354040283529160200191610890565b820191905f5260205f20905b81548152906001019060200180831161087357829003601f168201915b5050505050905090565b5f6108a6338484611129565b5060015b92915050565b5f6108bc84848461124c565b6001600160a01b0384165f908152600160209081526040808320338452909152902054828110156109455760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6109528533858403611129565b506001949350505050565b335f8181526001602090815260408083206001600160a01b038716845290915281205490916108a6918590610993908690612203565b611129565b6005546001600160a01b031633146109c25760405162461bcd60e51b815260040161093c90612216565b6109cb5f6119a4565b565b6005546001600160a01b031633146109f75760405162461bcd60e51b815260040161093c90612216565b6001600160a01b03919091165f908152601360205260409020805460ff1916911515919091179055565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03163314610a695760405162461bcd60e51b815260040161093c9061224b565b6001600160a01b03165f908152600960205260409020805460ff19169055565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03163314610ad15760405162461bcd60e51b815260040161093c9061224b565b5f816001600160a01b0316476040515f6040518083038185875af1925050503d805f8114610b1a576040519150601f19603f3d011682016040523d82523d5f602084013e610b1f565b606091505b5050905080610b2c575f80fd5b5050565b6005546001600160a01b03163314610b5a5760405162461bcd60e51b815260040161093c90612216565b6008805461ffff1916610101179055565b606060048054610819906121b7565b6005546001600160a01b03163314610ba45760405162461bcd60e51b815260040161093c90612216565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031603610c4b5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000606482015260840161093c565b610b2c82826119f5565b6005546001600160a01b03163314610c7f5760405162461bcd60e51b815260040161093c90612216565b69043c33c193756480000060068190556007556004600b8190556001600c8190556005600a819055600e92909255600f55600d55565b335f9081526001602090815260408083206001600160a01b038616845290915281205482811015610d365760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161093c565b610d433385858403611129565b5060019392505050565b5f6108a633848461124c565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03163314610da15760405162461bcd60e51b815260040161093c9061224b565b6001600160a01b038216610df75760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f742062652030000000000000604482015260640161093c565b6040516370a0823160e01b81523060048201525f906001600160a01b038416906370a0823190602401602060405180830381865afa158015610e3b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e5f9190612282565b60405163a9059cbb60e01b81526001600160a01b038481166004830152602482018390529192509084169063a9059cbb906044016020604051808303815f875af1158015610eaf573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ed39190612299565b50505050565b6005546001600160a01b03163314610f035760405162461bcd60e51b815260040161093c90612216565b6001600160a01b0382165f81815260126020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03163314610fa95760405162461bcd60e51b815260040161093c9061224b565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316816001600160a01b03161415801561100857506001600160a01b038116737a250d5630b4cf539739df2c5dacb4c659f2488d14155b61106b5760405162461bcd60e51b815260206004820152602e60248201527f43616e6e6f7420626c61636b6c69737420746f6b656e277320763220726f757460448201526d32b91037b9103b19103837b7b61760911b606482015260840161093c565b6001600160a01b03165f908152600960205260409020805460ff19166001179055565b6005546001600160a01b031633146110b85760405162461bcd60e51b815260040161093c90612216565b6001600160a01b03811661111d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161093c565b611126816119a4565b50565b6001600160a01b03831661118b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161093c565b6001600160a01b0382166111ec5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161093c565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166112725760405162461bcd60e51b815260040161093c906122b4565b6001600160a01b0382166112985760405162461bcd60e51b815260040161093c906122f9565b6001600160a01b0383165f9081526009602052604090205460ff16156112f55760405162461bcd60e51b815260206004820152601260248201527114d95b99195c88189b1858dadb1a5cdd195960721b604482015260640161093c565b6001600160a01b0382165f9081526009602052604090205460ff16156113545760405162461bcd60e51b8152602060048201526014602482015273149958d95a5d995c88189b1858dadb1a5cdd195960621b604482015260640161093c565b805f0361136b5761136683835f611a48565b505050565b6005546001600160a01b0384811691161480159061139757506005546001600160a01b03838116911614155b80156113ab57506001600160a01b03821615155b80156113c257506001600160a01b03821661dead14155b80156113d85750600554600160a01b900460ff16155b156116c85760085460ff16611469576001600160a01b0383165f9081526012602052604090205460ff168061142457506001600160a01b0382165f9081526012602052604090205460ff165b6114695760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b604482015260640161093c565b6001600160a01b0383165f9081526014602052604090205460ff1680156114a857506001600160a01b0382165f9081526013602052604090205460ff16155b1561158b5760065481111561151d5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b606482015260840161093c565b6007546001600160a01b0383165f908152602081905260409020546115429083612203565b11156115865760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161093c565b6116c8565b6001600160a01b0382165f9081526014602052604090205460ff1680156115ca57506001600160a01b0383165f9081526013602052604090205460ff16155b15611640576006548111156115865760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b606482015260840161093c565b6001600160a01b0382165f9081526013602052604090205460ff166116c8576007546001600160a01b0383165f908152602081905260409020546116849083612203565b11156116c85760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161093c565b305f908152602081905260409020547f0000000000000000000000000000000000000000000000000000000000000000811080159081906117105750600854610100900460ff165b80156117265750600554600160a01b900460ff16155b801561174a57506001600160a01b0385165f9081526014602052604090205460ff16155b801561176e57506001600160a01b0385165f9081526012602052604090205460ff16155b801561179257506001600160a01b0384165f9081526012602052604090205460ff16155b156117c0576005805460ff60a01b1916600160a01b1790556117b2611b9a565b6005805460ff60a01b191690555b6005546001600160a01b0386165f9081526012602052604090205460ff600160a01b90920482161591168061180c57506001600160a01b0385165f9081526012602052604090205460ff165b1561181457505f5b5f8115611990576001600160a01b0386165f9081526014602052604090205460ff16801561184357505f600d54115b156118c9576064600d5486611858919061233c565b6118629190612353565b9050600d54600f5482611875919061233c565b61187f9190612353565b60115f82825461188f9190612203565b9091555050600d54600e546118a4908361233c565b6118ae9190612353565b60105f8282546118be9190612203565b909155506119729050565b6001600160a01b0387165f9081526014602052604090205460ff1680156118f157505f600a54115b15611972576064600a5486611906919061233c565b6119109190612353565b9050600a54600c5482611923919061233c565b61192d9190612353565b60115f82825461193d9190612203565b9091555050600a54600b54611952908361233c565b61195c9190612353565b60105f82825461196c9190612203565b90915550505b801561198357611983873083611a48565b61198d8186612372565b94505b61199b878787611a48565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382165f81815260146020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611a6e5760405162461bcd60e51b815260040161093c906122b4565b6001600160a01b038216611a945760405162461bcd60e51b815260040161093c906122f9565b6001600160a01b0383165f9081526020819052604090205481811015611b0b5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161093c565b6001600160a01b038085165f90815260208190526040808220858503905591851681529081208054849290611b41908490612203565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611b8d91815260200190565b60405180910390a3610ed3565b305f9081526020819052604081205490505f601054601154611bbc9190612203565b90505f821580611bca575081155b15611bd457505050565b611bff7f0000000000000000000000000000000000000000000000000000000000000000601461233c565b831115611c3457611c317f0000000000000000000000000000000000000000000000000000000000000000601461233c565b92505b5f60028360115486611c46919061233c565b611c509190612353565b611c5a9190612353565b90505f611c678286612372565b905047611c7382611da5565b5f611c7e8247612372565b90505f6002601154611c909190612353565b611c9a9088612372565b601054611ca7908461233c565b611cb19190612353565b90505f611cbe8284612372565b90505f86118015611cce57505f81115b15611d2157611cdd8682611f5b565b601154604080518781526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b5f601181905560108190556040517f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169147919081818185875af1925050503d805f8114611d92576040519150601f19603f3d011682016040523d82523d5f602084013e611d97565b606091505b505050505050505050505050565b6040805160028082526060820183525f9260208301908036833701905050905030815f81518110611dd857611dd8612385565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611e54573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e789190612399565b81600181518110611e8b57611e8b612385565b60200260200101906001600160a01b031690816001600160a01b031681525050611ed6307f000000000000000000000000000000000000000000000000000000000000000084611129565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611f2a9085905f908690309042906004016123b4565b5f604051808303815f87803b158015611f41575f80fd5b505af1158015611f53573d5f803e3d5ffd5b505050505050565b611f86307f000000000000000000000000000000000000000000000000000000000000000084611129565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d7198230855f80611fcc6005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015612032573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906120579190612423565b5050505050565b5f6020808352835180828501525f5b818110156120895785810183015185820160400152820161206d565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114611126575f80fd5b5f80604083850312156120ce575f80fd5b82356120d9816120a9565b946020939093013593505050565b5f602082840312156120f7575f80fd5b8135612102816120a9565b9392505050565b5f805f6060848603121561211b575f80fd5b8335612126816120a9565b92506020840135612136816120a9565b929592945050506040919091013590565b8015158114611126575f80fd5b5f8060408385031215612165575f80fd5b8235612170816120a9565b9150602083013561218081612147565b809150509250929050565b5f806040838503121561219c575f80fd5b82356121a7816120a9565b91506020830135612180816120a9565b600181811c908216806121cb57607f821691505b6020821081036121e957634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b808201808211156108aa576108aa6121ef565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601f908201527f546f6b656e3a2063616c6c6572206973206e6f74207468652048656c70657200604082015260600190565b5f60208284031215612292575f80fd5b5051919050565b5f602082840312156122a9575f80fd5b815161210281612147565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b80820281158282048414176108aa576108aa6121ef565b5f8261236d57634e487b7160e01b5f52601260045260245ffd5b500490565b818103818111156108aa576108aa6121ef565b634e487b7160e01b5f52603260045260245ffd5b5f602082840312156123a9575f80fd5b8151612102816120a9565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b818110156124025784516001600160a01b0316835293830193918301916001016123dd565b50506001600160a01b03969096166060850152505050608001529392505050565b5f805f60608486031215612435575f80fd5b835192506020840151915060408401519050925092509256fea26469706673582212203e176617e5fada1ff75c4f8f5d5873c2c6a9f5f58b7ce2c10c97179bff18cbdf64736f6c634300081400334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x608060405260043610610257575f3560e01c80637ca8448a1161013f578063c0246668116100b3578063e2f4560511610078578063e2f4560514610742578063f11a24d314610775578063f2fde38b1461078a578063f6374342146107a9578063f8b45b05146107be578063fe575a87146107d3575f80fd5b8063c024666814610696578063c8c8ebe4146106b5578063d85ba063146106ca578063dd62ed3e146106df578063e19b282314610723575f80fd5b80639c6868af116101045780639c6868af146105de578063a457c2d7146105f2578063a9059cbb14610611578063b62496f514610630578063bbc0c7421461065e578063bc205ad314610677575f80fd5b80637ca8448a1461055b5780638a8c523c1461057a5780638da5cb5b1461058e57806395d89b41146105ab5780639a7a23d6146105bf575f80fd5b8063313ce567116101d65780636ddd17131161019b5780636ddd17131461048257806370a08231146104a0578063715018a6146104d45780637571336a146104ea57806375e3661e14610509578063782c4e9914610528575f80fd5b8063313ce567146103c957806339509351146103e457806349bd5a5e146104035780634fbee193146104365780636a486a8e1461046d575f80fd5b806318160ddd1161021c57806318160ddd1461035757806319eab0421461036b5780631a8145bb1461038057806323b872dd1461039557806324b9f3c1146103b4575f80fd5b806306fdde0314610262578063095ea7b31461028c57806310d5de53146102bb578063156c2f35146102e95780631694505e1461030c575f80fd5b3661025e57005b5f80fd5b34801561026d575f80fd5b5061027661080a565b604051610283919061205e565b60405180910390f35b348015610297575f80fd5b506102ab6102a63660046120bd565b61089a565b6040519015158152602001610283565b3480156102c6575f80fd5b506102ab6102d53660046120e7565b60136020525f908152604090205460ff1681565b3480156102f4575f80fd5b506102fe600b5481565b604051908152602001610283565b348015610317575f80fd5b5061033f7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610283565b348015610362575f80fd5b506002546102fe565b348015610376575f80fd5b506102fe600e5481565b34801561038b575f80fd5b506102fe60115481565b3480156103a0575f80fd5b506102ab6103af366004612109565b6108b0565b3480156103bf575f80fd5b506102fe60105481565b3480156103d4575f80fd5b5060405160128152602001610283565b3480156103ef575f80fd5b506102ab6103fe3660046120bd565b61095d565b34801561040e575f80fd5b5061033f7f0000000000000000000000007ca06350d4b0e7d5830c4d08df79dc9e3972b2b581565b348015610441575f80fd5b506102ab6104503660046120e7565b6001600160a01b03165f9081526012602052604090205460ff1690565b348015610478575f80fd5b506102fe600d5481565b34801561048d575f80fd5b506008546102ab90610100900460ff1681565b3480156104ab575f80fd5b506102fe6104ba3660046120e7565b6001600160a01b03165f9081526020819052604090205490565b3480156104df575f80fd5b506104e8610998565b005b3480156104f5575f80fd5b506104e8610504366004612154565b6109cd565b348015610514575f80fd5b506104e86105233660046120e7565b610a21565b348015610533575f80fd5b5061033f7f0000000000000000000000005a4a2ac096102f306167dd17415bdbbb64c50c8a81565b348015610566575f80fd5b506104e86105753660046120e7565b610a89565b348015610585575f80fd5b506104e8610b30565b348015610599575f80fd5b506005546001600160a01b031661033f565b3480156105b6575f80fd5b50610276610b6b565b3480156105ca575f80fd5b506104e86105d9366004612154565b610b7a565b3480156105e9575f80fd5b506104e8610c55565b3480156105fd575f80fd5b506102ab61060c3660046120bd565b610cb5565b34801561061c575f80fd5b506102ab61062b3660046120bd565b610d4d565b34801561063b575f80fd5b506102ab61064a3660046120e7565b60146020525f908152604090205460ff1681565b348015610669575f80fd5b506008546102ab9060ff1681565b348015610682575f80fd5b506104e861069136600461218b565b610d59565b3480156106a1575f80fd5b506104e86106b0366004612154565b610ed9565b3480156106c0575f80fd5b506102fe60065481565b3480156106d5575f80fd5b506102fe600a5481565b3480156106ea575f80fd5b506102fe6106f936600461218b565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b34801561072e575f80fd5b506104e861073d3660046120e7565b610f61565b34801561074d575f80fd5b506102fe7f00000000000000000000000000000000000000000000001b1ae4d6e2ef50000081565b348015610780575f80fd5b506102fe600c5481565b348015610795575f80fd5b506104e86107a43660046120e7565b61108e565b3480156107b4575f80fd5b506102fe600f5481565b3480156107c9575f80fd5b506102fe60075481565b3480156107de575f80fd5b506102ab6107ed3660046120e7565b6001600160a01b03165f9081526009602052604090205460ff1690565b606060038054610819906121b7565b80601f0160208091040260200160405190810160405280929190818152602001828054610845906121b7565b80156108905780601f1061086757610100808354040283529160200191610890565b820191905f5260205f20905b81548152906001019060200180831161087357829003601f168201915b5050505050905090565b5f6108a6338484611129565b5060015b92915050565b5f6108bc84848461124c565b6001600160a01b0384165f908152600160209081526040808320338452909152902054828110156109455760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6109528533858403611129565b506001949350505050565b335f8181526001602090815260408083206001600160a01b038716845290915281205490916108a6918590610993908690612203565b611129565b6005546001600160a01b031633146109c25760405162461bcd60e51b815260040161093c90612216565b6109cb5f6119a4565b565b6005546001600160a01b031633146109f75760405162461bcd60e51b815260040161093c90612216565b6001600160a01b03919091165f908152601360205260409020805460ff1916911515919091179055565b7f0000000000000000000000005a4a2ac096102f306167dd17415bdbbb64c50c8a6001600160a01b03163314610a695760405162461bcd60e51b815260040161093c9061224b565b6001600160a01b03165f908152600960205260409020805460ff19169055565b7f0000000000000000000000005a4a2ac096102f306167dd17415bdbbb64c50c8a6001600160a01b03163314610ad15760405162461bcd60e51b815260040161093c9061224b565b5f816001600160a01b0316476040515f6040518083038185875af1925050503d805f8114610b1a576040519150601f19603f3d011682016040523d82523d5f602084013e610b1f565b606091505b5050905080610b2c575f80fd5b5050565b6005546001600160a01b03163314610b5a5760405162461bcd60e51b815260040161093c90612216565b6008805461ffff1916610101179055565b606060048054610819906121b7565b6005546001600160a01b03163314610ba45760405162461bcd60e51b815260040161093c90612216565b7f0000000000000000000000007ca06350d4b0e7d5830c4d08df79dc9e3972b2b56001600160a01b0316826001600160a01b031603610c4b5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000606482015260840161093c565b610b2c82826119f5565b6005546001600160a01b03163314610c7f5760405162461bcd60e51b815260040161093c90612216565b69043c33c193756480000060068190556007556004600b8190556001600c8190556005600a819055600e92909255600f55600d55565b335f9081526001602090815260408083206001600160a01b038616845290915281205482811015610d365760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161093c565b610d433385858403611129565b5060019392505050565b5f6108a633848461124c565b7f0000000000000000000000005a4a2ac096102f306167dd17415bdbbb64c50c8a6001600160a01b03163314610da15760405162461bcd60e51b815260040161093c9061224b565b6001600160a01b038216610df75760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f742062652030000000000000604482015260640161093c565b6040516370a0823160e01b81523060048201525f906001600160a01b038416906370a0823190602401602060405180830381865afa158015610e3b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e5f9190612282565b60405163a9059cbb60e01b81526001600160a01b038481166004830152602482018390529192509084169063a9059cbb906044016020604051808303815f875af1158015610eaf573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ed39190612299565b50505050565b6005546001600160a01b03163314610f035760405162461bcd60e51b815260040161093c90612216565b6001600160a01b0382165f81815260126020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b7f0000000000000000000000005a4a2ac096102f306167dd17415bdbbb64c50c8a6001600160a01b03163314610fa95760405162461bcd60e51b815260040161093c9061224b565b7f0000000000000000000000007ca06350d4b0e7d5830c4d08df79dc9e3972b2b56001600160a01b0316816001600160a01b03161415801561100857506001600160a01b038116737a250d5630b4cf539739df2c5dacb4c659f2488d14155b61106b5760405162461bcd60e51b815260206004820152602e60248201527f43616e6e6f7420626c61636b6c69737420746f6b656e277320763220726f757460448201526d32b91037b9103b19103837b7b61760911b606482015260840161093c565b6001600160a01b03165f908152600960205260409020805460ff19166001179055565b6005546001600160a01b031633146110b85760405162461bcd60e51b815260040161093c90612216565b6001600160a01b03811661111d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161093c565b611126816119a4565b50565b6001600160a01b03831661118b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161093c565b6001600160a01b0382166111ec5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161093c565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166112725760405162461bcd60e51b815260040161093c906122b4565b6001600160a01b0382166112985760405162461bcd60e51b815260040161093c906122f9565b6001600160a01b0383165f9081526009602052604090205460ff16156112f55760405162461bcd60e51b815260206004820152601260248201527114d95b99195c88189b1858dadb1a5cdd195960721b604482015260640161093c565b6001600160a01b0382165f9081526009602052604090205460ff16156113545760405162461bcd60e51b8152602060048201526014602482015273149958d95a5d995c88189b1858dadb1a5cdd195960621b604482015260640161093c565b805f0361136b5761136683835f611a48565b505050565b6005546001600160a01b0384811691161480159061139757506005546001600160a01b03838116911614155b80156113ab57506001600160a01b03821615155b80156113c257506001600160a01b03821661dead14155b80156113d85750600554600160a01b900460ff16155b156116c85760085460ff16611469576001600160a01b0383165f9081526012602052604090205460ff168061142457506001600160a01b0382165f9081526012602052604090205460ff165b6114695760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b604482015260640161093c565b6001600160a01b0383165f9081526014602052604090205460ff1680156114a857506001600160a01b0382165f9081526013602052604090205460ff16155b1561158b5760065481111561151d5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b606482015260840161093c565b6007546001600160a01b0383165f908152602081905260409020546115429083612203565b11156115865760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161093c565b6116c8565b6001600160a01b0382165f9081526014602052604090205460ff1680156115ca57506001600160a01b0383165f9081526013602052604090205460ff16155b15611640576006548111156115865760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b606482015260840161093c565b6001600160a01b0382165f9081526013602052604090205460ff166116c8576007546001600160a01b0383165f908152602081905260409020546116849083612203565b11156116c85760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161093c565b305f908152602081905260409020547f00000000000000000000000000000000000000000000001b1ae4d6e2ef500000811080159081906117105750600854610100900460ff165b80156117265750600554600160a01b900460ff16155b801561174a57506001600160a01b0385165f9081526014602052604090205460ff16155b801561176e57506001600160a01b0385165f9081526012602052604090205460ff16155b801561179257506001600160a01b0384165f9081526012602052604090205460ff16155b156117c0576005805460ff60a01b1916600160a01b1790556117b2611b9a565b6005805460ff60a01b191690555b6005546001600160a01b0386165f9081526012602052604090205460ff600160a01b90920482161591168061180c57506001600160a01b0385165f9081526012602052604090205460ff165b1561181457505f5b5f8115611990576001600160a01b0386165f9081526014602052604090205460ff16801561184357505f600d54115b156118c9576064600d5486611858919061233c565b6118629190612353565b9050600d54600f5482611875919061233c565b61187f9190612353565b60115f82825461188f9190612203565b9091555050600d54600e546118a4908361233c565b6118ae9190612353565b60105f8282546118be9190612203565b909155506119729050565b6001600160a01b0387165f9081526014602052604090205460ff1680156118f157505f600a54115b15611972576064600a5486611906919061233c565b6119109190612353565b9050600a54600c5482611923919061233c565b61192d9190612353565b60115f82825461193d9190612203565b9091555050600a54600b54611952908361233c565b61195c9190612353565b60105f82825461196c9190612203565b90915550505b801561198357611983873083611a48565b61198d8186612372565b94505b61199b878787611a48565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382165f81815260146020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611a6e5760405162461bcd60e51b815260040161093c906122b4565b6001600160a01b038216611a945760405162461bcd60e51b815260040161093c906122f9565b6001600160a01b0383165f9081526020819052604090205481811015611b0b5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161093c565b6001600160a01b038085165f90815260208190526040808220858503905591851681529081208054849290611b41908490612203565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611b8d91815260200190565b60405180910390a3610ed3565b305f9081526020819052604081205490505f601054601154611bbc9190612203565b90505f821580611bca575081155b15611bd457505050565b611bff7f00000000000000000000000000000000000000000000001b1ae4d6e2ef500000601461233c565b831115611c3457611c317f00000000000000000000000000000000000000000000001b1ae4d6e2ef500000601461233c565b92505b5f60028360115486611c46919061233c565b611c509190612353565b611c5a9190612353565b90505f611c678286612372565b905047611c7382611da5565b5f611c7e8247612372565b90505f6002601154611c909190612353565b611c9a9088612372565b601054611ca7908461233c565b611cb19190612353565b90505f611cbe8284612372565b90505f86118015611cce57505f81115b15611d2157611cdd8682611f5b565b601154604080518781526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b5f601181905560108190556040517f0000000000000000000000005a4a2ac096102f306167dd17415bdbbb64c50c8a6001600160a01b03169147919081818185875af1925050503d805f8114611d92576040519150601f19603f3d011682016040523d82523d5f602084013e611d97565b606091505b505050505050505050505050565b6040805160028082526060820183525f9260208301908036833701905050905030815f81518110611dd857611dd8612385565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611e54573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e789190612399565b81600181518110611e8b57611e8b612385565b60200260200101906001600160a01b031690816001600160a01b031681525050611ed6307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611129565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611f2a9085905f908690309042906004016123b4565b5f604051808303815f87803b158015611f41575f80fd5b505af1158015611f53573d5f803e3d5ffd5b505050505050565b611f86307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611129565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d7198230855f80611fcc6005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015612032573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906120579190612423565b5050505050565b5f6020808352835180828501525f5b818110156120895785810183015185820160400152820161206d565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114611126575f80fd5b5f80604083850312156120ce575f80fd5b82356120d9816120a9565b946020939093013593505050565b5f602082840312156120f7575f80fd5b8135612102816120a9565b9392505050565b5f805f6060848603121561211b575f80fd5b8335612126816120a9565b92506020840135612136816120a9565b929592945050506040919091013590565b8015158114611126575f80fd5b5f8060408385031215612165575f80fd5b8235612170816120a9565b9150602083013561218081612147565b809150509250929050565b5f806040838503121561219c575f80fd5b82356121a7816120a9565b91506020830135612180816120a9565b600181811c908216806121cb57607f821691505b6020821081036121e957634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b808201808211156108aa576108aa6121ef565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601f908201527f546f6b656e3a2063616c6c6572206973206e6f74207468652048656c70657200604082015260600190565b5f60208284031215612292575f80fd5b5051919050565b5f602082840312156122a9575f80fd5b815161210281612147565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b80820281158282048414176108aa576108aa6121ef565b5f8261236d57634e487b7160e01b5f52601260045260245ffd5b500490565b818103818111156108aa576108aa6121ef565b634e487b7160e01b5f52603260045260245ffd5b5f602082840312156123a9575f80fd5b8151612102816120a9565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b818110156124025784516001600160a01b0316835293830193918301916001016123dd565b50506001600160a01b03969096166060850152505050608001529392505050565b5f805f60608486031215612435575f80fd5b835192506020840151915060408401519050925092509256fea26469706673582212203e176617e5fada1ff75c4f8f5d5873c2c6a9f5f58b7ce2c10c97179bff18cbdf64736f6c63430008140033

Deployed Bytecode Sourcemap

32292:13961:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10251:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12418:169;;;;;;;;;;-1:-1:-1;12418:169:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;12418:169:0;1023:187:1;33239:63:0;;;;;;;;;;-1:-1:-1;33239:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;32859:29;;;;;;;;;;;;;;;;;;;1613:25:1;;;1601:2;1586:18;32859:29:0;1467:177:1;32340:51:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1840:32:1;;;1822:51;;1810:2;1795:18;32340:51:0;1649:230:1;11371:108:0;;;;;;;;;;-1:-1:-1;11459:12:0;;11371:108;;32969:30;;;;;;;;;;;;;;;;33085:33;;;;;;;;;;;;;;;;13069:492;;;;;;;;;;-1:-1:-1;13069:492:0;;;;;:::i;:::-;;:::i;33046:32::-;;;;;;;;;;;;;;;;11213:93;;;;;;;;;;-1:-1:-1;11213:93:0;;11296:2;2487:36:1;;2475:2;2460:18;11213:93:0;2345:184:1;13970:215:0;;;;;;;;;;-1:-1:-1;13970:215:0;;;;;:::i;:::-;;:::i;32398:38::-;;;;;;;;;;;;;;;37720:126;;;;;;;;;;-1:-1:-1;37720:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;37810:28:0;37786:4;37810:28;;;:19;:28;;;;;;;;;37720:126;32934:28;;;;;;;;;;;;;;;;32686:30;;;;;;;;;;-1:-1:-1;32686:30:0;;;;;;;;;;;11542:127;;;;;;;;;;-1:-1:-1;11542:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;11643:18:0;11616:7;11643:18;;;;;;;;;;;;11542:127;3768:103;;;;;;;;;;;;;:::i;:::-;;36847:167;;;;;;;;;;-1:-1:-1;36847:167:0;;;;;:::i;:::-;;:::i;46149:99::-;;;;;;;;;;-1:-1:-1;46149:99:0;;;;;:::i;:::-;;:::i;32473:39::-;;;;;;;;;;;;;;;45378:197;;;;;;;;;;-1:-1:-1;45378:197:0;;;;;:::i;:::-;;:::i;36242:112::-;;;;;;;;;;;;;:::i;3117:87::-;;;;;;;;;;-1:-1:-1;3190:6:0;;-1:-1:-1;;;;;3190:6:0;3117:87;;10470:104;;;;;;;;;;;;;:::i;37212:304::-;;;;;;;;;;-1:-1:-1;37212:304:0;;;;;:::i;:::-;;:::i;36471:368::-;;;;;;;;;;;;;:::i;14688:413::-;;;;;;;;;;-1:-1:-1;14688:413:0;;;;;:::i;:::-;;:::i;11882:175::-;;;;;;;;;;-1:-1:-1;11882:175:0;;;;;:::i;:::-;;:::i;33460:57::-;;;;;;;;;;-1:-1:-1;33460:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;32646:33;;;;;;;;;;-1:-1:-1;32646:33:0;;;;;;;;44988:289;;;;;;;;;;-1:-1:-1;44988:289:0;;;;;:::i;:::-;;:::i;37022:182::-;;;;;;;;;;-1:-1:-1;37022:182:0;;;;;:::i;:::-;;:::i;32521:35::-;;;;;;;;;;;;;;;;32825:27;;;;;;;;;;;;;;;;12120:151;;;;;;;;;;-1:-1:-1;12120:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;12236:18:0;;;12209:7;12236:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;12120:151;45683:328;;;;;;;;;;-1:-1:-1;45683:328:0;;;;;:::i;:::-;;:::i;32563:43::-;;;;;;;;;;;;;;;32895:30;;;;;;;;;;;;;;;;4026:201;;;;;;;;;;-1:-1:-1;4026:201:0;;;;;:::i;:::-;;:::i;33006:31::-;;;;;;;;;;;;;;;;32613:24;;;;;;;;;;;;;;;;37854:113;;;;;;;;;;-1:-1:-1;37854:113:0;;;;;:::i;:::-;-1:-1:-1;;;;;37939:20:0;37915:4;37939:20;;;:11;:20;;;;;;;;;37854:113;10251:100;10305:13;10338:5;10331:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10251:100;:::o;12418:169::-;12501:4;12518:39;2064:10;12541:7;12550:6;12518:8;:39::i;:::-;-1:-1:-1;12575:4:0;12418:169;;;;;:::o;13069:492::-;13209:4;13226:36;13236:6;13244:9;13255:6;13226:9;:36::i;:::-;-1:-1:-1;;;;;13302:19:0;;13275:24;13302:19;;;:11;:19;;;;;;;;2064:10;13302:33;;;;;;;;13354:26;;;;13346:79;;;;-1:-1:-1;;;13346:79:0;;4232:2:1;13346:79:0;;;4214:21:1;4271:2;4251:18;;;4244:30;4310:34;4290:18;;;4283:62;-1:-1:-1;;;4361:18:1;;;4354:38;4409:19;;13346:79:0;;;;;;;;;13461:57;13470:6;2064:10;13511:6;13492:16;:25;13461:8;:57::i;:::-;-1:-1:-1;13549:4:0;;13069:492;-1:-1:-1;;;;13069:492:0:o;13970:215::-;2064:10;14058:4;14107:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;14107:34:0;;;;;;;;;;14058:4;;14075:80;;14098:7;;14107:47;;14144:10;;14107:47;:::i;:::-;14075:8;:80::i;3768:103::-;3190:6;;-1:-1:-1;;;;;3190:6:0;2064:10;3337:23;3329:68;;;;-1:-1:-1;;;3329:68:0;;;;;;;:::i;:::-;3833:30:::1;3860:1;3833:18;:30::i;:::-;3768:103::o:0;36847:167::-;3190:6;;-1:-1:-1;;;;;3190:6:0;2064:10;3337:23;3329:68;;;;-1:-1:-1;;;3329:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;36960:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;36960:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;36847:167::o;46149:99::-;44798:14;-1:-1:-1;;;;;44798:30:0;2064:10;44798:30;44790:74;;;;-1:-1:-1;;;44790:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;46214:18:0::1;46235:5;46214:18:::0;;;:11:::1;:18;::::0;;;;:26;;-1:-1:-1;;46214:26:0::1;::::0;;46149:99::o;45378:197::-;44798:14;-1:-1:-1;;;;;44798:30:0;2064:10;44798:30;44790:74;;;;-1:-1:-1;;;44790:74:0;;;;;;;:::i;:::-;45452:12:::1;45470:6;-1:-1:-1::0;;;;;45470:11:0::1;45503:21;45470:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45451:89;;;45559:7;45551:16;;;::::0;::::1;;45440:135;45378:197:::0;:::o;36242:112::-;3190:6;;-1:-1:-1;;;;;3190:6:0;2064:10;3337:23;3329:68;;;;-1:-1:-1;;;3329:68:0;;;;;;;:::i;:::-;36297:13:::1;:20:::0;;-1:-1:-1;;36328:18:0;;;;;36242:112::o;10470:104::-;10526:13;10559:7;10552:14;;;;;:::i;37212:304::-;3190:6;;-1:-1:-1;;;;;3190:6:0;2064:10;3337:23;3329:68;;;;-1:-1:-1;;;3329:68:0;;;;;;;:::i;:::-;37356:13:::1;-1:-1:-1::0;;;;;37348:21:0::1;:4;-1:-1:-1::0;;;;;37348:21:0::1;::::0;37326:128:::1;;;::::0;-1:-1:-1;;;37326:128:0;;5834:2:1;37326:128:0::1;::::0;::::1;5816:21:1::0;5873:2;5853:18;;;5846:30;5912:34;5892:18;;;5885:62;5983:27;5963:18;;;5956:55;6028:19;;37326:128:0::1;5632:421:1::0;37326:128:0::1;37467:41;37496:4;37502:5;37467:28;:41::i;36471:368::-:0;3190:6;;-1:-1:-1;;;;;3190:6:0;2064:10;3337:23;3329:68;;;;-1:-1:-1;;;3329:68:0;;;;;;;:::i;:::-;36555:17:::1;36532:20;:40:::0;;;36589:9:::1;:29:::0;36658:1:::1;36641:14;:18:::0;;;36694:1:::1;36676:15;:19:::0;;;36727:1:::1;36712:12;:16:::0;;;36741:15:::1;:19:::0;;;;36777:16:::1;:20:::0;36814:13:::1;:17:::0;36471:368::o;14688:413::-;2064:10;14781:4;14825:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;14825:34:0;;;;;;;;;;14878:35;;;;14870:85;;;;-1:-1:-1;;;14870:85:0;;6260:2:1;14870:85:0;;;6242:21:1;6299:2;6279:18;;;6272:30;6338:34;6318:18;;;6311:62;-1:-1:-1;;;6389:18:1;;;6382:35;6434:19;;14870:85:0;6058:401:1;14870:85:0;14991:67;2064:10;15014:7;15042:15;15023:16;:34;14991:8;:67::i;:::-;-1:-1:-1;15089:4:0;;14688:413;-1:-1:-1;;;14688:413:0:o;11882:175::-;11968:4;11985:42;2064:10;12009:9;12020:6;11985:9;:42::i;44988:289::-;44798:14;-1:-1:-1;;;;;44798:30:0;2064:10;44798:30;44790:74;;;;-1:-1:-1;;;44790:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;45084:20:0;::::1;45076:59;;;::::0;-1:-1:-1;;;45076:59:0;;6666:2:1;45076:59:0::1;::::0;::::1;6648:21:1::0;6705:2;6685:18;;;6678:30;6744:28;6724:18;;;6717:56;6790:18;;45076:59:0::1;6464:350:1::0;45076:59:0::1;45173:39;::::0;-1:-1:-1;;;45173:39:0;;45206:4:::1;45173:39;::::0;::::1;1822:51:1::0;45146:24:0::1;::::0;-1:-1:-1;;;;;45173:24:0;::::1;::::0;::::1;::::0;1795:18:1;;45173:39:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;45223:46;::::0;-1:-1:-1;;;45223:46:0;;-1:-1:-1;;;;;7200:32:1;;;45223:46:0::1;::::0;::::1;7182:51:1::0;7249:18;;;7242:34;;;45146:66:0;;-1:-1:-1;45223:23:0;;::::1;::::0;::::1;::::0;7155:18:1;;45223:46:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;45065:212;44988:289:::0;;:::o;37022:182::-;3190:6;;-1:-1:-1;;;;;3190:6:0;2064:10;3337:23;3329:68;;;;-1:-1:-1;;;3329:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37107:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;37107:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;37162:34;;1163:41:1;;;37162:34:0::1;::::0;1136:18:1;37162:34:0::1;;;;;;;37022:182:::0;;:::o;45683:328::-;44798:14;-1:-1:-1;;;;;44798:30:0;2064:10;44798:30;44790:74;;;;-1:-1:-1;;;44790:74:0;;;;;;;:::i;:::-;45806:13:::1;-1:-1:-1::0;;;;;45785:35:0::1;:9;-1:-1:-1::0;;;;;45785:35:0::1;;;:103;;;;-1:-1:-1::0;;;;;;45824:64:0;::::1;45845:42;45824:64;;45785:103;45763:200;;;::::0;-1:-1:-1;;;45763:200:0;;7739:2:1;45763:200:0::1;::::0;::::1;7721:21:1::0;7778:2;7758:18;;;7751:30;7817:34;7797:18;;;7790:62;-1:-1:-1;;;7868:18:1;;;7861:44;7922:19;;45763:200:0::1;7537:410:1::0;45763:200:0::1;-1:-1:-1::0;;;;;45974:22:0::1;;::::0;;;:11:::1;:22;::::0;;;;:29;;-1:-1:-1;;45974:29:0::1;45999:4;45974:29;::::0;;45683:328::o;4026:201::-;3190:6;;-1:-1:-1;;;;;3190:6:0;2064:10;3337:23;3329:68;;;;-1:-1:-1;;;3329:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;4115:22:0;::::1;4107:73;;;::::0;-1:-1:-1;;;4107:73:0;;8154:2:1;4107:73:0::1;::::0;::::1;8136:21:1::0;8193:2;8173:18;;;8166:30;8232:34;8212:18;;;8205:62;-1:-1:-1;;;8283:18:1;;;8276:36;8329:19;;4107:73:0::1;7952:402:1::0;4107:73:0::1;4191:28;4210:8;4191:18;:28::i;:::-;4026:201:::0;:::o;18372:380::-;-1:-1:-1;;;;;18508:19:0;;18500:68;;;;-1:-1:-1;;;18500:68:0;;8561:2:1;18500:68:0;;;8543:21:1;8600:2;8580:18;;;8573:30;8639:34;8619:18;;;8612:62;-1:-1:-1;;;8690:18:1;;;8683:34;8734:19;;18500:68:0;8359:400:1;18500:68:0;-1:-1:-1;;;;;18587:21:0;;18579:68;;;;-1:-1:-1;;;18579:68:0;;8966:2:1;18579:68:0;;;8948:21:1;9005:2;8985:18;;;8978:30;9044:34;9024:18;;;9017:62;-1:-1:-1;;;9095:18:1;;;9088:32;9137:19;;18579:68:0;8764:398:1;18579:68:0;-1:-1:-1;;;;;18660:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18712:32;;1613:25:1;;;18712:32:0;;1586:18:1;18712:32:0;;;;;;;18372:380;;;:::o;37975:3834::-;-1:-1:-1;;;;;38107:18:0;;38099:68;;;;-1:-1:-1;;;38099:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38186:16:0;;38178:64;;;;-1:-1:-1;;;38178:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38262:17:0;;;;;;:11;:17;;;;;;;;38261:18;38253:48;;;;-1:-1:-1;;;38253:48:0;;10179:2:1;38253:48:0;;;10161:21:1;10218:2;10198:18;;;10191:30;-1:-1:-1;;;10237:18:1;;;10230:48;10295:18;;38253:48:0;9977:342:1;38253:48:0;-1:-1:-1;;;;;38321:15:0;;;;;;:11;:15;;;;;;;;38320:16;38312:48;;;;-1:-1:-1;;;38312:48:0;;10526:2:1;38312:48:0;;;10508:21:1;10565:2;10545:18;;;10538:30;-1:-1:-1;;;10584:18:1;;;10577:50;10644:18;;38312:48:0;10324:344:1;38312:48:0;38377:6;38387:1;38377:11;38373:93;;38405:28;38421:4;38427:2;38431:1;38405:15;:28::i;:::-;37975:3834;;;:::o;38373:93::-;3190:6;;-1:-1:-1;;;;;38500:15:0;;;3190:6;;38500:15;;;;:49;;-1:-1:-1;3190:6:0;;-1:-1:-1;;;;;38536:13:0;;;3190:6;;38536:13;;38500:49;:86;;;;-1:-1:-1;;;;;;38570:16:0;;;;38500:86;:128;;;;-1:-1:-1;;;;;;38607:21:0;;38621:6;38607:21;;38500:128;:158;;;;-1:-1:-1;38650:8:0;;-1:-1:-1;;;38650:8:0;;;;38649:9;38500:158;38478:1642;;;38698:13;;;;38693:223;;-1:-1:-1;;;;;38770:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;38799:23:0;;;;;;:19;:23;;;;;;;;38770:52;38736:160;;;;-1:-1:-1;;;38736:160:0;;10875:2:1;38736:160:0;;;10857:21:1;10914:2;10894:18;;;10887:30;-1:-1:-1;;;10933:18:1;;;10926:52;10995:18;;38736:160:0;10673:346:1;38736:160:0;-1:-1:-1;;;;;38989:31:0;;;;;;:25;:31;;;;;;;;:92;;;;-1:-1:-1;;;;;;39046:35:0;;;;;;:31;:35;;;;;;;;39045:36;38989:92;38963:1146;;;39168:20;;39158:6;:30;;39124:169;;;;-1:-1:-1;;;39124:169:0;;11226:2:1;39124:169:0;;;11208:21:1;11265:2;11245:18;;;11238:30;11304:34;11284:18;;;11277:62;-1:-1:-1;;;11355:18:1;;;11348:51;11416:19;;39124:169:0;11024:417:1;39124:169:0;39376:9;;-1:-1:-1;;;;;11643:18:0;;11616:7;11643:18;;;;;;;;;;;39350:22;;:6;:22;:::i;:::-;:35;;39316:140;;;;-1:-1:-1;;;39316:140:0;;11648:2:1;39316:140:0;;;11630:21:1;11687:2;11667:18;;;11660:30;-1:-1:-1;;;11706:18:1;;;11699:49;11765:18;;39316:140:0;11446:343:1;39316:140:0;38963:1146;;;-1:-1:-1;;;;;39553:29:0;;;;;;:25;:29;;;;;;;;:92;;;;-1:-1:-1;;;;;;39608:37:0;;;;;;:31;:37;;;;;;;;39607:38;39553:92;39527:582;;;39732:20;;39722:6;:30;;39688:170;;;;-1:-1:-1;;;39688:170:0;;11996:2:1;39688:170:0;;;11978:21:1;12035:2;12015:18;;;12008:30;12074:34;12054:18;;;12047:62;-1:-1:-1;;;12125:18:1;;;12118:52;12187:19;;39688:170:0;11794:418:1;39527:582:0;-1:-1:-1;;;;;39889:35:0;;;;;;:31;:35;;;;;;;;39884:225;;40009:9;;-1:-1:-1;;;;;11643:18:0;;11616:7;11643:18;;;;;;;;;;;39983:22;;:6;:22;:::i;:::-;:35;;39949:140;;;;-1:-1:-1;;;39949:140:0;;11648:2:1;39949:140:0;;;11630:21:1;11687:2;11667:18;;;11660:30;-1:-1:-1;;;11706:18:1;;;11699:49;11765:18;;39949:140:0;11446:343:1;39949:140:0;40181:4;40132:28;11643:18;;;;;;;;;;;40239;40215:42;;;;;;;40288:35;;-1:-1:-1;40312:11:0;;;;;;;40288:35;:61;;;;-1:-1:-1;40341:8:0;;-1:-1:-1;;;40341:8:0;;;;40340:9;40288:61;:110;;;;-1:-1:-1;;;;;;40367:31:0;;;;;;:25;:31;;;;;;;;40366:32;40288:110;:153;;;;-1:-1:-1;;;;;;40416:25:0;;;;;;:19;:25;;;;;;;;40415:26;40288:153;:194;;;;-1:-1:-1;;;;;;40459:23:0;;;;;;:19;:23;;;;;;;;40458:24;40288:194;40270:326;;;40509:8;:15;;-1:-1:-1;;;;40509:15:0;-1:-1:-1;;;40509:15:0;;;40541:10;:8;:10::i;:::-;40568:8;:16;;-1:-1:-1;;;;40568:16:0;;;40270:326;40624:8;;-1:-1:-1;;;;;40734:25:0;;40608:12;40734:25;;;:19;:25;;;;;;40624:8;-1:-1:-1;;;40624:8:0;;;;;40623:9;;40734:25;;:52;;-1:-1:-1;;;;;;40763:23:0;;;;;;:19;:23;;;;;;;;40734:52;40730:100;;;-1:-1:-1;40813:5:0;40730:100;40842:12;40947:7;40943:813;;;-1:-1:-1;;;;;40996:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;41045:1;41029:13;;:17;40996:50;40992:615;;;41101:3;41084:13;;41075:6;:22;;;;:::i;:::-;41074:30;;;;:::i;:::-;41067:37;;41173:13;;41153:16;;41146:4;:23;;;;:::i;:::-;41145:41;;;;:::i;:::-;41123:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;41253:13:0;;41234:15;;41227:22;;:4;:22;:::i;:::-;41226:40;;;;:::i;:::-;41205:17;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;40992:615:0;;-1:-1:-1;40992:615:0;;-1:-1:-1;;;;;41325:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;41375:1;41360:12;;:16;41325:51;41321:286;;;41430:3;41414:12;;41405:6;:21;;;;:::i;:::-;41404:29;;;;:::i;:::-;41397:36;;41501:12;;41482:15;;41475:4;:22;;;;:::i;:::-;41474:39;;;;:::i;:::-;41452:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;41579:12:0;;41561:14;;41554:21;;:4;:21;:::i;:::-;41553:38;;;;:::i;:::-;41532:17;;:59;;;;;;;:::i;:::-;;;;-1:-1:-1;;41321:286:0;41627:8;;41623:91;;41656:42;41672:4;41686;41693;41656:15;:42::i;:::-;41730:14;41740:4;41730:14;;:::i;:::-;;;40943:813;41768:33;41784:4;41790:2;41794:6;41768:15;:33::i;:::-;38088:3721;;;;37975:3834;;;:::o;4387:191::-;4480:6;;;-1:-1:-1;;;;;4497:17:0;;;-1:-1:-1;;;;;;4497:17:0;;;;;;;4530:40;;4480:6;;;4497:17;4480:6;;4530:40;;4461:16;;4530:40;4450:128;4387:191;:::o;37524:188::-;-1:-1:-1;;;;;37607:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;37607:39:0;;;;;;;;;;37664:40;;37607:39;;:31;37664:40;;;37524:188;;:::o;15591:733::-;-1:-1:-1;;;;;15731:20:0;;15723:70;;;;-1:-1:-1;;;15723:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15812:23:0;;15804:71;;;;-1:-1:-1;;;15804:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15972:17:0;;15948:21;15972:17;;;;;;;;;;;16008:23;;;;16000:74;;;;-1:-1:-1;;;16000:74:0;;12947:2:1;16000:74:0;;;12929:21:1;12986:2;12966:18;;;12959:30;13025:34;13005:18;;;12998:62;-1:-1:-1;;;13076:18:1;;;13069:36;13122:19;;16000:74:0;12745:402:1;16000:74:0;-1:-1:-1;;;;;16110:17:0;;;:9;:17;;;;;;;;;;;16130:22;;;16110:42;;16174:20;;;;;;;;:30;;16146:6;;16110:9;16174:30;;16146:6;;16174:30;:::i;:::-;;;;;;;;16239:9;-1:-1:-1;;;;;16222:35:0;16231:6;-1:-1:-1;;;;;16222:35:0;;16250:6;16222:35;;;;1613:25:1;;1601:2;1586:18;;1467:177;16222:35:0;;;;;;;;16270:46;37975:3834;42952:1508;43035:4;42991:23;11643:18;;;;;;;;;;;42991:50;;43052:25;43114:17;;43080:18;;:51;;;;:::i;:::-;43052:79;-1:-1:-1;43142:12:0;43171:20;;;:46;;-1:-1:-1;43195:22:0;;43171:46;43167:85;;;43234:7;;;42952:1508::o;43167:85::-;43286:23;:18;43307:2;43286:23;:::i;:::-;43268:15;:41;43264:115;;;43344:23;:18;43365:2;43344:23;:::i;:::-;43326:41;;43264:115;43440:23;43553:1;43520:17;43485:18;;43467:15;:36;;;;:::i;:::-;43466:71;;;;:::i;:::-;:88;;;;:::i;:::-;43440:114;-1:-1:-1;43565:26:0;43594:33;43440:114;43594:15;:33;:::i;:::-;43565:62;-1:-1:-1;43668:21:0;43702:36;43565:62;43702:16;:36::i;:::-;43751:18;43772:41;43796:17;43772:21;:41;:::i;:::-;43751:62;;43826:22;43929:1;43908:18;;:22;;;;:::i;:::-;43887:44;;:17;:44;:::i;:::-;43865:17;;43852:30;;:10;:30;:::i;:::-;43851:81;;;;:::i;:::-;43826:106;-1:-1:-1;43953:23:0;43979:27;43826:106;43979:10;:27;:::i;:::-;43953:53;;44041:1;44023:15;:19;:42;;;;;44064:1;44046:15;:19;44023:42;44019:278;;;44082:46;44095:15;44112;44082:12;:46::i;:::-;44252:18;;44148:137;;;13354:25:1;;;13410:2;13395:18;;13388:34;;;13438:18;;;13431:34;;;;44148:137:0;;;;;;13342:2:1;44148:137:0;;;44019:278;44330:1;44309:18;:22;;;44342:17;:21;;;44390:62;;44398:14;-1:-1:-1;;;;;44390:28:0;;44426:21;;44390:62;;44330:1;44390:62;44426:21;44390:28;:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;42952:1508:0:o;41817:606::-;41967:16;;;41981:1;41967:16;;;;;;;;41943:21;;41967:16;;;;;;;;;;-1:-1:-1;41967:16:0;41943:40;;42012:4;41994;41999:1;41994:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;41994:23:0;;;-1:-1:-1;;;;;41994:23:0;;;;;42038:15;-1:-1:-1;;;;;42038:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;42028:4;42033:1;42028:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;42028:32:0;;;-1:-1:-1;;;;;42028:32:0;;;;;42073:62;42090:4;42105:15;42123:11;42073:8;:62::i;:::-;42174:241;;-1:-1:-1;;;42174:241:0;;-1:-1:-1;;;;;42174:15:0;:66;;;;:241;;42255:11;;42281:1;;42342:4;;42369;;42389:15;;42174:241;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41872:551;41817:606;:::o;42431:513::-;42579:62;42596:4;42611:15;42629:11;42579:8;:62::i;:::-;42684:15;-1:-1:-1;;;;;42684:31:0;;42723:9;42756:4;42776:11;42802:1;42845;42888:7;3190:6;;-1:-1:-1;;;;;3190:6:0;;3117:87;42888:7;42684:252;;;;;;-1:-1:-1;;;;;;42684:252:0;;;-1:-1:-1;;;;;15340:15:1;;;42684:252:0;;;15322:34:1;15372:18;;;15365:34;;;;15415:18;;;15408:34;;;;15458:18;;;15451:34;15522:15;;;15501:19;;;15494:44;42910:15:0;15554:19:1;;;15547:35;15256:19;;42684:252:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;42431:513;;:::o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1215:247::-;1274:6;1327:2;1315:9;1306:7;1302:23;1298:32;1295:52;;;1343:1;1340;1333:12;1295:52;1382:9;1369:23;1401:31;1426:5;1401:31;:::i;:::-;1451:5;1215:247;-1:-1:-1;;;1215:247:1:o;1884:456::-;1961:6;1969;1977;2030:2;2018:9;2009:7;2005:23;2001:32;1998:52;;;2046:1;2043;2036:12;1998:52;2085:9;2072:23;2104:31;2129:5;2104:31;:::i;:::-;2154:5;-1:-1:-1;2211:2:1;2196:18;;2183:32;2224:33;2183:32;2224:33;:::i;:::-;1884:456;;2276:7;;-1:-1:-1;;;2330:2:1;2315:18;;;;2302:32;;1884:456::o;2742:118::-;2828:5;2821:13;2814:21;2807:5;2804:32;2794:60;;2850:1;2847;2840:12;2865:382;2930:6;2938;2991:2;2979:9;2970:7;2966:23;2962:32;2959:52;;;3007:1;3004;2997:12;2959:52;3046:9;3033:23;3065:31;3090:5;3065:31;:::i;:::-;3115:5;-1:-1:-1;3172:2:1;3157:18;;3144:32;3185:30;3144:32;3185:30;:::i;:::-;3234:7;3224:17;;;2865:382;;;;;:::o;3252:388::-;3320:6;3328;3381:2;3369:9;3360:7;3356:23;3352:32;3349:52;;;3397:1;3394;3387:12;3349:52;3436:9;3423:23;3455:31;3480:5;3455:31;:::i;:::-;3505:5;-1:-1:-1;3562:2:1;3547:18;;3534:32;3575:33;3534:32;3575:33;:::i;3645:380::-;3724:1;3720:12;;;;3767;;;3788:61;;3842:4;3834:6;3830:17;3820:27;;3788:61;3895:2;3887:6;3884:14;3864:18;3861:38;3858:161;;3941:10;3936:3;3932:20;3929:1;3922:31;3976:4;3973:1;3966:15;4004:4;4001:1;3994:15;3858:161;;3645:380;;;:::o;4439:127::-;4500:10;4495:3;4491:20;4488:1;4481:31;4531:4;4528:1;4521:15;4555:4;4552:1;4545:15;4571:125;4636:9;;;4657:10;;;4654:36;;;4670:18;;:::i;4701:356::-;4903:2;4885:21;;;4922:18;;;4915:30;4981:34;4976:2;4961:18;;4954:62;5048:2;5033:18;;4701:356::o;5062:355::-;5264:2;5246:21;;;5303:2;5283:18;;;5276:30;5342:33;5337:2;5322:18;;5315:61;5408:2;5393:18;;5062:355::o;6819:184::-;6889:6;6942:2;6930:9;6921:7;6917:23;6913:32;6910:52;;;6958:1;6955;6948:12;6910:52;-1:-1:-1;6981:16:1;;6819:184;-1:-1:-1;6819:184:1:o;7287:245::-;7354:6;7407:2;7395:9;7386:7;7382:23;7378:32;7375:52;;;7423:1;7420;7413:12;7375:52;7455:9;7449:16;7474:28;7496:5;7474:28;:::i;9167:401::-;9369:2;9351:21;;;9408:2;9388:18;;;9381:30;9447:34;9442:2;9427:18;;9420:62;-1:-1:-1;;;9513:2:1;9498:18;;9491:35;9558:3;9543:19;;9167:401::o;9573:399::-;9775:2;9757:21;;;9814:2;9794:18;;;9787:30;9853:34;9848:2;9833:18;;9826:62;-1:-1:-1;;;9919:2:1;9904:18;;9897:33;9962:3;9947:19;;9573:399::o;12217:168::-;12290:9;;;12321;;12338:15;;;12332:22;;12318:37;12308:71;;12359:18;;:::i;12390:217::-;12430:1;12456;12446:132;;12500:10;12495:3;12491:20;12488:1;12481:31;12535:4;12532:1;12525:15;12563:4;12560:1;12553:15;12446:132;-1:-1:-1;12592:9:1;;12390:217::o;12612:128::-;12679:9;;;12700:11;;;12697:37;;;12714:18;;:::i;13608:127::-;13669:10;13664:3;13660:20;13657:1;13650:31;13700:4;13697:1;13690:15;13724:4;13721:1;13714:15;13740:251;13810:6;13863:2;13851:9;13842:7;13838:23;13834:32;13831:52;;;13879:1;13876;13869:12;13831:52;13911:9;13905:16;13930:31;13955:5;13930:31;:::i;13996:980::-;14258:4;14306:3;14295:9;14291:19;14337:6;14326:9;14319:25;14363:2;14401:6;14396:2;14385:9;14381:18;14374:34;14444:3;14439:2;14428:9;14424:18;14417:31;14468:6;14503;14497:13;14534:6;14526;14519:22;14572:3;14561:9;14557:19;14550:26;;14611:2;14603:6;14599:15;14585:29;;14632:1;14642:195;14656:6;14653:1;14650:13;14642:195;;;14721:13;;-1:-1:-1;;;;;14717:39:1;14705:52;;14812:15;;;;14777:12;;;;14753:1;14671:9;14642:195;;;-1:-1:-1;;;;;;;14893:32:1;;;;14888:2;14873:18;;14866:60;-1:-1:-1;;;14957:3:1;14942:19;14935:35;14854:3;13996:980;-1:-1:-1;;;13996:980:1:o;15593:306::-;15681:6;15689;15697;15750:2;15738:9;15729:7;15725:23;15721:32;15718:52;;;15766:1;15763;15756:12;15718:52;15795:9;15789:16;15779:26;;15845:2;15834:9;15830:18;15824:25;15814:35;;15889:2;15878:9;15874:18;15868:25;15858:35;;15593:306;;;;;:::o

Swarm Source

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