ETH Price: $3,416.16 (-0.63%)
Gas: 5 Gwei

Token

Jack Skellington ($Jack)
 

Overview

Max Total Supply

1,000,000,000 $Jack

Holders

43

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
3,232,731.900465045563525867 $Jack

Value
$0.00
0x2ddd04b467dff34869f787816a1c2e4e87f34231
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:
JackSkellington

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-10-11
*/

/**
https://twitter.com/JackSkellETH
https://t.me/JackSkellingtonToken

*/
// SPDX-License-Identifier: MIT
pragma solidity =0.8.12;
pragma experimental ABIEncoderV2;

////// lib/openzeppelin-contracts/contracts/utils/Context.sol
// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)

/* pragma solidity ^0.8.0; */

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

////// lib/openzeppelin-contracts/contracts/access/Ownable.sol
// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

/* pragma solidity ^0.8.0; */

/* import "../utils/Context.sol"; */

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

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

/* pragma solidity ^0.8.0; */

/* import "./IERC20.sol"; */
/* import "./extensions/IERC20Metadata.sol"; */
/* import "../../utils/Context.sol"; */

/**
 * @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 => bool) public bots;
    mapping (address => uint256) public _buyMap;
    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 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 {}
}

////// lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol
// OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol)

/* pragma solidity 0.8.0; */

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

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

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

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

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

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

/* pragma solidity >=0.8.10; */

/* import {IUniswapV2Router02} from "./IUniswapV2Router02.sol"; */
/* import {IUniswapV2Factory} from "./IUniswapV2Factory.sol"; */
/* import {IERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol"; */
/* import {ERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol"; */
/* import {Ownable} from "lib/openzeppelin-contracts/contracts/access/Ownable.sol"; */
/* import {SafeMath} from "lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol"; */

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

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    address public constant deadAddress = address(0xdead);

    bool private swapping;

    address private marketingWallet;
    address private devWallet;
    address private devWallel;

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

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

    uint256 public buyTotalFees;
    uint256 public buyMarketingFee;
    uint256 public buyLiquidityFee;
    uint256 public buyDevFee;

    uint256 public sellTotalFees;
    uint256 public sellMarketingFee;
    uint256 public sellLiquidityFee;
    uint256 public sellDevFee;

    uint256 public tokensForMarketing;
    uint256 public tokensForLiquidity;
    uint256 public tokensForDev;

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

    // exlcude 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 marketingWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

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

    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );
    constructor() ERC20("Jack Skellington", "$Jack") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

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

        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());
        excludeFromMaxTransaction(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);

        uint256 _buyMarketingFee = 3;
        uint256 _buyLiquidityFee = 0;
        uint256 _buyDevFee = 2;

        uint256 _sellMarketingFee = 3;
        uint256 _sellLiquidityFee = 0;
        uint256 _sellDevFee = 2;

        uint256 totalSupply = 1_000_000_000 * 1e18;

        maxTransactionAmount = 20_000_000 * 1e18; // 2% from total supply maxTransactionAmountTxn
        maxWallet = 20_000_000 * 1e18; // 2% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.05% swap wallet

        buyMarketingFee = _buyMarketingFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyDevFee = _buyDevFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;

        sellMarketingFee = _sellMarketingFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellDevFee = _sellDevFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;

        marketingWallet = address(0xdc77b01d6160544eddb5a5b0341dCFb142130589); // set as marketing wallet
        devWallet = address(0xaf824E63ac52dFC49eb323F1471B84fa30562DA3); // set as dev wallet

        // exclude from paying fees or having max transaction amount
        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 {}

    // once enabled, can never be turned off
    function enableTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;

    }

    // change the minimum amount of tokens to sell from fees
    function updateSwapTokensAtAmount(uint256 newAmount)
        external
        onlyOwner
        returns (bool)
    {
        require(
            newAmount >= (totalSupply() * 1) / 100000,
            "Swap amount cannot be lower than 0.001% total supply."
        );
        require(
            newAmount <= (totalSupply() * 5) / 1000,
            "Swap amount cannot be higher than 0.5% total supply."
        );
        swapTokensAtAmount = newAmount;
        return true;
    }

    function updateMaxTxnAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 1) / 1000) / 1e18,
            "Cannot set maxTransactionAmount lower than 0.1%"
        );
        maxTransactionAmount = newNum * (10**18);
    }

    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 5) / 1000) / 1e18,
            "Cannot set maxWallet lower than 0.5%"
        );
        maxWallet = newNum * (10**18);
    }

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

    // only use to disable contract sales if absolutely necessary (emergency use only)
    function updateSwapEnabled(bool enabled) external onlyOwner {
        swapEnabled = enabled;
    }

    function updateBuyFees(
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
        buyMarketingFee = _marketingFee;
        buyLiquidityFee = _liquidityFee;
        buyDevFee = _devFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;
        require(buyTotalFees <= 20, "Must keep fees at 20% or less");
    }

    function updateSellFees(
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
        sellMarketingFee = _marketingFee;
        sellLiquidityFee = _liquidityFee;
        sellDevFee = _devFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;
        require(sellTotalFees <= 20, "Must keep fees at 20% or less");
    }

    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 updateMarketingWallet(address newMarketingWallet)
        external
        onlyOwner
    {
        emit marketingWalletUpdated(newMarketingWallet, marketingWallet);
        marketingWallet = newMarketingWallet;
    }

    function updateDevWallet(address newWallet) external onlyOwner {
        emit devWalletUpdated(newWallet, devWallet);
        devWallet = newWallet;
    }

    function isExcludedFromFees(address account) public view returns (bool) {
        return _isExcludedFromFees[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");

        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."
                    );
                }
                require(!bots[from] && !bots[to], "Your account is blacklisted!");

                //when buy
                if (
                    automatedMarketMakerPairs[from] &&
                    !_isExcludedMaxTransactionAmount[to]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Buy transfer amount exceeds the maxTransactionAmount."
                    );
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
                //when sell
                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) {
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
                tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
                tokensForDev += (fees * sellDevFee+1) / sellTotalFees;
                tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForDev += (fees * buyDevFee) / buyTotalFees;
                tokensForMarketing += (fees * buyMarketingFee) / 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
            path,
            address(this),
            block.timestamp
        );
    }

    function blockBots(address[] memory bots_) public onlyOwner {
        for (uint256 i = 0; i < bots_.length; i++) {
            bots[bots_[i]] = true;
        }
    }

    function unblockBot(address notbot) public onlyOwner {
        bots[notbot] = false;
    }

    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
            deadAddress,
            block.timestamp
        );
    }

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForLiquidity +
            tokensForMarketing +
            tokensForDev;
        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.sub(liquidityTokens);

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

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

        uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div(
            totalTokensToSwap
        );
        uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);

        uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev;

        tokensForLiquidity = 0;
        tokensForMarketing = 0;
        tokensForDev = 0;

        (success, ) = address(devWallet).call{value: ethForDev}("");

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_buyMap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"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":"bots_","type":"address[]"}],"name":"blockBots","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"bots","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","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":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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":"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":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","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":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","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":"notbot","type":"address"}],"name":"unblockBot","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":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052600e805461ffff191690553480156200001c57600080fd5b506040518060400160405280601081526020016f2530b1b59029b5b2b63634b733ba37b760811b81525060405180604001604052806005815260200164244a61636b60d81b81525081600590805190602001906200007c9291906200067f565b508051620000929060069060208401906200067f565b505050620000af620000a9620003cc60201b60201c565b620003d0565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000d181600162000422565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa1580156200011c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000142919062000725565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000190573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001b6919062000725565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000204573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200022a919062000725565b6001600160a01b031660a08190526200024590600162000422565b60a051620002559060016200049c565b6a108b2a2c28029094000000600b819055600d556003600060028282826b033b2e3c9fd0803ce80000006127106200028f8260056200076d565b6200029b91906200078f565b600c5560108790556011869055601285905584620002ba8789620007b2565b620002c69190620007b2565b600f5560148490556015839055601682905581620002e58486620007b2565b620002f19190620007b2565b601355600880546001600160a01b031990811673dc77b01d6160544eddb5a5b0341dcfb142130589179091556009805490911673af824e63ac52dfc49eb323f1471b84fa30562da31790556200035b620003536007546001600160a01b031690565b6001620004f0565b62000368306001620004f0565b6200037761dead6001620004f0565b620003966200038e6007546001600160a01b031690565b600162000422565b620003a330600162000422565b620003b261dead600162000422565b620003be33826200059a565b50505050505050506200080a565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6007546001600160a01b03163314620004715760405162461bcd60e51b81526020600482018190526024820152600080516020620032b483398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601b60205260409020805460ff1916911515919091179055565b6001600160a01b0382166000818152601c6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6007546001600160a01b031633146200053b5760405162461bcd60e51b81526020600482018190526024820152600080516020620032b4833981519152604482015260640162000468565b6001600160a01b0382166000818152601a6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620005f25760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000468565b8060046000828254620006069190620007b2565b90915550506001600160a01b0382166000908152602081905260408120805483929062000635908490620007b2565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b8280546200068d90620007cd565b90600052602060002090601f016020900481019282620006b15760008555620006fc565b82601f10620006cc57805160ff1916838001178555620006fc565b82800160010185558215620006fc579182015b82811115620006fc578251825591602001919060010190620006df565b506200070a9291506200070e565b5090565b5b808211156200070a57600081556001016200070f565b6000602082840312156200073857600080fd5b81516001600160a01b03811681146200075057600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b60008160001904831182151516156200078a576200078a62000757565b500290565b600082620007ad57634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115620007c857620007c862000757565b500190565b600181811c90821680620007e257607f821691505b602082108114156200080457634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a051612a5a6200085a600039600081816105160152610f800152600081816103cd015281816122b701528181612370015281816123ac0152818161242601526124830152612a5a6000f3fe6080604052600436106103025760003560e01c80638da5cb5b11610190578063bfd79284116100dc578063d85ba06311610095578063f11a24d31161006f578063f11a24d314610956578063f2fde38b1461096c578063f63743421461098c578063f8b45b05146109a257600080fd5b8063d85ba063146108e4578063dd62ed3e146108fa578063e2f456051461094057600080fd5b8063bfd792841461081e578063c02466681461084e578063c17b5b8c1461086e578063c18bc1951461088e578063c8c8ebe4146108ae578063d257b34f146108c457600080fd5b80639fccce3211610149578063a9059cbb11610123578063a9059cbb14610794578063aacebbe3146107b4578063b62496f5146107d4578063bbc0c7421461080457600080fd5b80639fccce3214610748578063a0d82dc51461075e578063a457c2d71461077457600080fd5b80638da5cb5b146106a957806392136913146106c7578063924de9b7146106dd57806395d89b41146106fd5780639a7a23d6146107125780639c3b4fdc1461073257600080fd5b8063395093511161024f57806370a08231116102085780637bce5a04116101e25780637bce5a04146106315780637f2feddc146106475780638095d564146106745780638a8c523c1461069457600080fd5b806370a08231146105c6578063715018a6146105fc5780637571336a1461061157600080fd5b806339509351146104e457806349bd5a5e146105045780634fbee193146105385780636a486a8e146105715780636b999053146105875780636ddd1713146105a757600080fd5b80631816467f116102bc578063203e727e11610296578063203e727e1461047257806323b872dd1461049257806327c8f835146104b2578063313ce567146104c857600080fd5b80631816467f146104265780631a8145bb146104465780631f3fed8f1461045c57600080fd5b8062b8cf2a1461030e57806306fdde0314610330578063095ea7b31461035b57806310d5de531461038b5780631694505e146103bb57806318160ddd1461040757600080fd5b3661030957005b600080fd5b34801561031a57600080fd5b5061032e610329366004612537565b6109b8565b005b34801561033c57600080fd5b50610345610a56565b60405161035291906125fc565b60405180910390f35b34801561036757600080fd5b5061037b610376366004612651565b610ae8565b6040519015158152602001610352565b34801561039757600080fd5b5061037b6103a636600461267d565b601b6020526000908152604090205460ff1681565b3480156103c757600080fd5b506103ef7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610352565b34801561041357600080fd5b506004545b604051908152602001610352565b34801561043257600080fd5b5061032e61044136600461267d565b610afe565b34801561045257600080fd5b5061041860185481565b34801561046857600080fd5b5061041860175481565b34801561047e57600080fd5b5061032e61048d36600461269a565b610b85565b34801561049e57600080fd5b5061037b6104ad3660046126b3565b610c62565b3480156104be57600080fd5b506103ef61dead81565b3480156104d457600080fd5b5060405160128152602001610352565b3480156104f057600080fd5b5061037b6104ff366004612651565b610d0c565b34801561051057600080fd5b506103ef7f000000000000000000000000000000000000000000000000000000000000000081565b34801561054457600080fd5b5061037b61055336600461267d565b6001600160a01b03166000908152601a602052604090205460ff1690565b34801561057d57600080fd5b5061041860135481565b34801561059357600080fd5b5061032e6105a236600461267d565b610d48565b3480156105b357600080fd5b50600e5461037b90610100900460ff1681565b3480156105d257600080fd5b506104186105e136600461267d565b6001600160a01b031660009081526020819052604090205490565b34801561060857600080fd5b5061032e610d93565b34801561061d57600080fd5b5061032e61062c366004612704565b610dc9565b34801561063d57600080fd5b5061041860105481565b34801561065357600080fd5b5061041861066236600461267d565b60026020526000908152604090205481565b34801561068057600080fd5b5061032e61068f366004612739565b610e1e565b3480156106a057600080fd5b5061032e610ec6565b3480156106b557600080fd5b506007546001600160a01b03166103ef565b3480156106d357600080fd5b5061041860145481565b3480156106e957600080fd5b5061032e6106f8366004612765565b610f01565b34801561070957600080fd5b50610345610f45565b34801561071e57600080fd5b5061032e61072d366004612704565b610f54565b34801561073e57600080fd5b5061041860125481565b34801561075457600080fd5b5061041860195481565b34801561076a57600080fd5b5061041860165481565b34801561078057600080fd5b5061037b61078f366004612651565b611030565b3480156107a057600080fd5b5061037b6107af366004612651565b6110c9565b3480156107c057600080fd5b5061032e6107cf36600461267d565b6110d6565b3480156107e057600080fd5b5061037b6107ef36600461267d565b601c6020526000908152604090205460ff1681565b34801561081057600080fd5b50600e5461037b9060ff1681565b34801561082a57600080fd5b5061037b61083936600461267d565b60016020526000908152604090205460ff1681565b34801561085a57600080fd5b5061032e610869366004612704565b61115d565b34801561087a57600080fd5b5061032e610889366004612739565b6111e6565b34801561089a57600080fd5b5061032e6108a936600461269a565b611289565b3480156108ba57600080fd5b50610418600b5481565b3480156108d057600080fd5b5061037b6108df36600461269a565b61135a565b3480156108f057600080fd5b50610418600f5481565b34801561090657600080fd5b50610418610915366004612780565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b34801561094c57600080fd5b50610418600c5481565b34801561096257600080fd5b5061041860115481565b34801561097857600080fd5b5061032e61098736600461267d565b6114b1565b34801561099857600080fd5b5061041860155481565b3480156109ae57600080fd5b50610418600d5481565b6007546001600160a01b031633146109eb5760405162461bcd60e51b81526004016109e2906127b9565b60405180910390fd5b60005b8151811015610a52576001806000848481518110610a0e57610a0e6127ee565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610a4a8161281a565b9150506109ee565b5050565b606060058054610a6590612835565b80601f0160208091040260200160405190810160405280929190818152602001828054610a9190612835565b8015610ade5780601f10610ab357610100808354040283529160200191610ade565b820191906000526020600020905b815481529060010190602001808311610ac157829003601f168201915b5050505050905090565b6000610af533848461154c565b50600192915050565b6007546001600160a01b03163314610b285760405162461bcd60e51b81526004016109e2906127b9565b6009546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600980546001600160a01b0319166001600160a01b0392909216919091179055565b6007546001600160a01b03163314610baf5760405162461bcd60e51b81526004016109e2906127b9565b670de0b6b3a76400006103e8610bc460045490565b610bcf906001612870565b610bd9919061288f565b610be3919061288f565b811015610c4a5760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b60648201526084016109e2565b610c5c81670de0b6b3a7640000612870565b600b5550565b6000610c6f848484611670565b6001600160a01b038416600090815260036020908152604080832033845290915290205482811015610cf45760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084016109e2565b610d01853385840361154c565b506001949350505050565b3360008181526003602090815260408083206001600160a01b03871684529091528120549091610af5918590610d439086906128b1565b61154c565b6007546001600160a01b03163314610d725760405162461bcd60e51b81526004016109e2906127b9565b6001600160a01b03166000908152600160205260409020805460ff19169055565b6007546001600160a01b03163314610dbd5760405162461bcd60e51b81526004016109e2906127b9565b610dc76000611e00565b565b6007546001600160a01b03163314610df35760405162461bcd60e51b81526004016109e2906127b9565b6001600160a01b03919091166000908152601b60205260409020805460ff1916911515919091179055565b6007546001600160a01b03163314610e485760405162461bcd60e51b81526004016109e2906127b9565b60108390556011829055601281905580610e6283856128b1565b610e6c91906128b1565b600f81905560141015610ec15760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420323025206f72206c65737300000060448201526064016109e2565b505050565b6007546001600160a01b03163314610ef05760405162461bcd60e51b81526004016109e2906127b9565b600e805461ffff1916610101179055565b6007546001600160a01b03163314610f2b5760405162461bcd60e51b81526004016109e2906127b9565b600e80549115156101000261ff0019909216919091179055565b606060068054610a6590612835565b6007546001600160a01b03163314610f7e5760405162461bcd60e51b81526004016109e2906127b9565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614156110265760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b657250616972730000000000000060648201526084016109e2565b610a528282611e52565b3360009081526003602090815260408083206001600160a01b0386168452909152812054828110156110b25760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016109e2565b6110bf338585840361154c565b5060019392505050565b6000610af5338484611670565b6007546001600160a01b031633146111005760405162461bcd60e51b81526004016109e2906127b9565b6008546040516001600160a01b03918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a3600880546001600160a01b0319166001600160a01b0392909216919091179055565b6007546001600160a01b031633146111875760405162461bcd60e51b81526004016109e2906127b9565b6001600160a01b0382166000818152601a6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6007546001600160a01b031633146112105760405162461bcd60e51b81526004016109e2906127b9565b6014839055601582905560168190558061122a83856128b1565b61123491906128b1565b601381905560141015610ec15760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420323025206f72206c65737300000060448201526064016109e2565b6007546001600160a01b031633146112b35760405162461bcd60e51b81526004016109e2906127b9565b670de0b6b3a76400006103e86112c860045490565b6112d3906005612870565b6112dd919061288f565b6112e7919061288f565b8110156113425760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b60648201526084016109e2565b61135481670de0b6b3a7640000612870565b600d5550565b6007546000906001600160a01b031633146113875760405162461bcd60e51b81526004016109e2906127b9565b620186a061139460045490565b61139f906001612870565b6113a9919061288f565b8210156114165760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b60648201526084016109e2565b6103e861142260045490565b61142d906005612870565b611437919061288f565b8211156114a35760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b60648201526084016109e2565b50600c81905560015b919050565b6007546001600160a01b031633146114db5760405162461bcd60e51b81526004016109e2906127b9565b6001600160a01b0381166115405760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109e2565b61154981611e00565b50565b6001600160a01b0383166115ae5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016109e2565b6001600160a01b03821661160f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016109e2565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166116965760405162461bcd60e51b81526004016109e2906128c9565b6001600160a01b0382166116bc5760405162461bcd60e51b81526004016109e29061290e565b806116cd57610ec183836000611ea6565b6007546001600160a01b038481169116148015906116f957506007546001600160a01b03838116911614155b801561170d57506001600160a01b03821615155b801561172457506001600160a01b03821661dead14155b801561173a5750600754600160a01b900460ff16155b15611ac157600e5460ff166117cd576001600160a01b0383166000908152601a602052604090205460ff168061178857506001600160a01b0382166000908152601a602052604090205460ff165b6117cd5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016109e2565b6001600160a01b03831660009081526001602052604090205460ff1615801561180f57506001600160a01b03821660009081526001602052604090205460ff16155b61185b5760405162461bcd60e51b815260206004820152601c60248201527f596f7572206163636f756e7420697320626c61636b6c6973746564210000000060448201526064016109e2565b6001600160a01b0383166000908152601c602052604090205460ff16801561189c57506001600160a01b0382166000908152601b602052604090205460ff16155b1561198057600b548111156119115760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b60648201526084016109e2565b600d546001600160a01b03831660009081526020819052604090205461193790836128b1565b111561197b5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016109e2565b611ac1565b6001600160a01b0382166000908152601c602052604090205460ff1680156119c157506001600160a01b0383166000908152601b602052604090205460ff16155b15611a3757600b5481111561197b5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b60648201526084016109e2565b6001600160a01b0382166000908152601b602052604090205460ff16611ac157600d546001600160a01b038316600090815260208190526040902054611a7d90836128b1565b1115611ac15760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016109e2565b30600090815260208190526040902054600c5481108015908190611aec5750600e54610100900460ff165b8015611b025750600754600160a01b900460ff16155b8015611b2757506001600160a01b0385166000908152601c602052604090205460ff16155b8015611b4c57506001600160a01b0385166000908152601a602052604090205460ff16155b8015611b7157506001600160a01b0384166000908152601a602052604090205460ff16155b15611b9f576007805460ff60a01b1916600160a01b179055611b91611ffb565b6007805460ff60a01b191690555b6007546001600160a01b0386166000908152601a602052604090205460ff600160a01b909204821615911680611bed57506001600160a01b0385166000908152601a602052604090205460ff165b15611bf6575060005b60008115611dec576001600160a01b0386166000908152601c602052604090205460ff168015611c2857506000601354115b15611cf157611c4d6064611c476013548861223590919063ffffffff16565b90612248565b905060135460155482611c609190612870565b611c6a919061288f565b60186000828254611c7b91906128b1565b9091555050601354601654611c909083612870565b611c9b9060016128b1565b611ca5919061288f565b60196000828254611cb691906128b1565b9091555050601354601454611ccb9083612870565b611cd5919061288f565b60176000828254611ce691906128b1565b90915550611dce9050565b6001600160a01b0387166000908152601c602052604090205460ff168015611d1b57506000600f54115b15611dce57611d3a6064611c47600f548861223590919063ffffffff16565b9050600f5460115482611d4d9190612870565b611d57919061288f565b60186000828254611d6891906128b1565b9091555050600f54601254611d7d9083612870565b611d87919061288f565b60196000828254611d9891906128b1565b9091555050600f54601054611dad9083612870565b611db7919061288f565b60176000828254611dc891906128b1565b90915550505b8015611ddf57611ddf873083611ea6565b611de98186612951565b94505b611df7878787611ea6565b50505050505050565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000818152601c6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611ecc5760405162461bcd60e51b81526004016109e2906128c9565b6001600160a01b038216611ef25760405162461bcd60e51b81526004016109e29061290e565b6001600160a01b03831660009081526020819052604090205481811015611f6a5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016109e2565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611fa19084906128b1565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611fed91815260200190565b60405180910390a350505050565b306000908152602081905260408120549050600060195460175460185461202291906128b1565b61202c91906128b1565b9050600082158061203b575081155b1561204557505050565b600c54612053906014612870565b83111561206b57600c54612068906014612870565b92505b60006002836018548661207e9190612870565b612088919061288f565b612092919061288f565b905060006120a08583612254565b9050476120ac82612260565b60006120b84783612254565b905060006120d587611c476017548561223590919063ffffffff16565b905060006120f288611c476019548661223590919063ffffffff16565b90506000816121018486612951565b61210b9190612951565b60006018819055601781905560198190556009546040519293506001600160a01b031691849181818185875af1925050503d8060008114612168576040519150601f19603f3d011682016040523d82523d6000602084013e61216d565b606091505b509098505086158015906121815750600081115b156121d4576121908782612420565b601854604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6008546040516001600160a01b03909116904790600081818185875af1925050503d8060008114612221576040519150601f19603f3d011682016040523d82523d6000602084013e612226565b606091505b50505050505050505050505050565b60006122418284612870565b9392505050565b6000612241828461288f565b60006122418284612951565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612295576122956127ee565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612313573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123379190612968565b8160018151811061234a5761234a6127ee565b60200260200101906001600160a01b031690816001600160a01b031681525050612395307f00000000000000000000000000000000000000000000000000000000000000008461154c565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac947906123ea908590600090869030904290600401612985565b600060405180830381600087803b15801561240457600080fd5b505af1158015612418573d6000803e3d6000fd5b505050505050565b61244b307f00000000000000000000000000000000000000000000000000000000000000008461154c565b60405163f305d71960e01b815230600482015260248101839052600060448201819052606482015261dead60848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f305d71990839060c40160606040518083038185885af11580156124d5573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906124fa91906129f6565b5050505050565b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461154957600080fd5b80356114ac81612517565b6000602080838503121561254a57600080fd5b823567ffffffffffffffff8082111561256257600080fd5b818501915085601f83011261257657600080fd5b81358181111561258857612588612501565b8060051b604051601f19603f830116810181811085821117156125ad576125ad612501565b6040529182528482019250838101850191888311156125cb57600080fd5b938501935b828510156125f0576125e18561252c565b845293850193928501926125d0565b98975050505050505050565b600060208083528351808285015260005b818110156126295785810183015185820160400152820161260d565b8181111561263b576000604083870101525b50601f01601f1916929092016040019392505050565b6000806040838503121561266457600080fd5b823561266f81612517565b946020939093013593505050565b60006020828403121561268f57600080fd5b813561224181612517565b6000602082840312156126ac57600080fd5b5035919050565b6000806000606084860312156126c857600080fd5b83356126d381612517565b925060208401356126e381612517565b929592945050506040919091013590565b803580151581146114ac57600080fd5b6000806040838503121561271757600080fd5b823561272281612517565b9150612730602084016126f4565b90509250929050565b60008060006060848603121561274e57600080fd5b505081359360208301359350604090920135919050565b60006020828403121561277757600080fd5b612241826126f4565b6000806040838503121561279357600080fd5b823561279e81612517565b915060208301356127ae81612517565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060001982141561282e5761282e612804565b5060010190565b600181811c9082168061284957607f821691505b6020821081141561286a57634e487b7160e01b600052602260045260246000fd5b50919050565b600081600019048311821515161561288a5761288a612804565b500290565b6000826128ac57634e487b7160e01b600052601260045260246000fd5b500490565b600082198211156128c4576128c4612804565b500190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60008282101561296357612963612804565b500390565b60006020828403121561297a57600080fd5b815161224181612517565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156129d55784516001600160a01b0316835293830193918301916001016129b0565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215612a0b57600080fd5b835192506020840151915060408401519050925092509256fea264697066735822122015936f6cfee510d32041f63ecaa3084e48a455fb8503d782d1a15afda1ab30a264736f6c634300080c00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x6080604052600436106103025760003560e01c80638da5cb5b11610190578063bfd79284116100dc578063d85ba06311610095578063f11a24d31161006f578063f11a24d314610956578063f2fde38b1461096c578063f63743421461098c578063f8b45b05146109a257600080fd5b8063d85ba063146108e4578063dd62ed3e146108fa578063e2f456051461094057600080fd5b8063bfd792841461081e578063c02466681461084e578063c17b5b8c1461086e578063c18bc1951461088e578063c8c8ebe4146108ae578063d257b34f146108c457600080fd5b80639fccce3211610149578063a9059cbb11610123578063a9059cbb14610794578063aacebbe3146107b4578063b62496f5146107d4578063bbc0c7421461080457600080fd5b80639fccce3214610748578063a0d82dc51461075e578063a457c2d71461077457600080fd5b80638da5cb5b146106a957806392136913146106c7578063924de9b7146106dd57806395d89b41146106fd5780639a7a23d6146107125780639c3b4fdc1461073257600080fd5b8063395093511161024f57806370a08231116102085780637bce5a04116101e25780637bce5a04146106315780637f2feddc146106475780638095d564146106745780638a8c523c1461069457600080fd5b806370a08231146105c6578063715018a6146105fc5780637571336a1461061157600080fd5b806339509351146104e457806349bd5a5e146105045780634fbee193146105385780636a486a8e146105715780636b999053146105875780636ddd1713146105a757600080fd5b80631816467f116102bc578063203e727e11610296578063203e727e1461047257806323b872dd1461049257806327c8f835146104b2578063313ce567146104c857600080fd5b80631816467f146104265780631a8145bb146104465780631f3fed8f1461045c57600080fd5b8062b8cf2a1461030e57806306fdde0314610330578063095ea7b31461035b57806310d5de531461038b5780631694505e146103bb57806318160ddd1461040757600080fd5b3661030957005b600080fd5b34801561031a57600080fd5b5061032e610329366004612537565b6109b8565b005b34801561033c57600080fd5b50610345610a56565b60405161035291906125fc565b60405180910390f35b34801561036757600080fd5b5061037b610376366004612651565b610ae8565b6040519015158152602001610352565b34801561039757600080fd5b5061037b6103a636600461267d565b601b6020526000908152604090205460ff1681565b3480156103c757600080fd5b506103ef7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610352565b34801561041357600080fd5b506004545b604051908152602001610352565b34801561043257600080fd5b5061032e61044136600461267d565b610afe565b34801561045257600080fd5b5061041860185481565b34801561046857600080fd5b5061041860175481565b34801561047e57600080fd5b5061032e61048d36600461269a565b610b85565b34801561049e57600080fd5b5061037b6104ad3660046126b3565b610c62565b3480156104be57600080fd5b506103ef61dead81565b3480156104d457600080fd5b5060405160128152602001610352565b3480156104f057600080fd5b5061037b6104ff366004612651565b610d0c565b34801561051057600080fd5b506103ef7f0000000000000000000000000a68d4f69253d8925d164b1f8fc220e0ffcff2bc81565b34801561054457600080fd5b5061037b61055336600461267d565b6001600160a01b03166000908152601a602052604090205460ff1690565b34801561057d57600080fd5b5061041860135481565b34801561059357600080fd5b5061032e6105a236600461267d565b610d48565b3480156105b357600080fd5b50600e5461037b90610100900460ff1681565b3480156105d257600080fd5b506104186105e136600461267d565b6001600160a01b031660009081526020819052604090205490565b34801561060857600080fd5b5061032e610d93565b34801561061d57600080fd5b5061032e61062c366004612704565b610dc9565b34801561063d57600080fd5b5061041860105481565b34801561065357600080fd5b5061041861066236600461267d565b60026020526000908152604090205481565b34801561068057600080fd5b5061032e61068f366004612739565b610e1e565b3480156106a057600080fd5b5061032e610ec6565b3480156106b557600080fd5b506007546001600160a01b03166103ef565b3480156106d357600080fd5b5061041860145481565b3480156106e957600080fd5b5061032e6106f8366004612765565b610f01565b34801561070957600080fd5b50610345610f45565b34801561071e57600080fd5b5061032e61072d366004612704565b610f54565b34801561073e57600080fd5b5061041860125481565b34801561075457600080fd5b5061041860195481565b34801561076a57600080fd5b5061041860165481565b34801561078057600080fd5b5061037b61078f366004612651565b611030565b3480156107a057600080fd5b5061037b6107af366004612651565b6110c9565b3480156107c057600080fd5b5061032e6107cf36600461267d565b6110d6565b3480156107e057600080fd5b5061037b6107ef36600461267d565b601c6020526000908152604090205460ff1681565b34801561081057600080fd5b50600e5461037b9060ff1681565b34801561082a57600080fd5b5061037b61083936600461267d565b60016020526000908152604090205460ff1681565b34801561085a57600080fd5b5061032e610869366004612704565b61115d565b34801561087a57600080fd5b5061032e610889366004612739565b6111e6565b34801561089a57600080fd5b5061032e6108a936600461269a565b611289565b3480156108ba57600080fd5b50610418600b5481565b3480156108d057600080fd5b5061037b6108df36600461269a565b61135a565b3480156108f057600080fd5b50610418600f5481565b34801561090657600080fd5b50610418610915366004612780565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b34801561094c57600080fd5b50610418600c5481565b34801561096257600080fd5b5061041860115481565b34801561097857600080fd5b5061032e61098736600461267d565b6114b1565b34801561099857600080fd5b5061041860155481565b3480156109ae57600080fd5b50610418600d5481565b6007546001600160a01b031633146109eb5760405162461bcd60e51b81526004016109e2906127b9565b60405180910390fd5b60005b8151811015610a52576001806000848481518110610a0e57610a0e6127ee565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610a4a8161281a565b9150506109ee565b5050565b606060058054610a6590612835565b80601f0160208091040260200160405190810160405280929190818152602001828054610a9190612835565b8015610ade5780601f10610ab357610100808354040283529160200191610ade565b820191906000526020600020905b815481529060010190602001808311610ac157829003601f168201915b5050505050905090565b6000610af533848461154c565b50600192915050565b6007546001600160a01b03163314610b285760405162461bcd60e51b81526004016109e2906127b9565b6009546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600980546001600160a01b0319166001600160a01b0392909216919091179055565b6007546001600160a01b03163314610baf5760405162461bcd60e51b81526004016109e2906127b9565b670de0b6b3a76400006103e8610bc460045490565b610bcf906001612870565b610bd9919061288f565b610be3919061288f565b811015610c4a5760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b60648201526084016109e2565b610c5c81670de0b6b3a7640000612870565b600b5550565b6000610c6f848484611670565b6001600160a01b038416600090815260036020908152604080832033845290915290205482811015610cf45760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084016109e2565b610d01853385840361154c565b506001949350505050565b3360008181526003602090815260408083206001600160a01b03871684529091528120549091610af5918590610d439086906128b1565b61154c565b6007546001600160a01b03163314610d725760405162461bcd60e51b81526004016109e2906127b9565b6001600160a01b03166000908152600160205260409020805460ff19169055565b6007546001600160a01b03163314610dbd5760405162461bcd60e51b81526004016109e2906127b9565b610dc76000611e00565b565b6007546001600160a01b03163314610df35760405162461bcd60e51b81526004016109e2906127b9565b6001600160a01b03919091166000908152601b60205260409020805460ff1916911515919091179055565b6007546001600160a01b03163314610e485760405162461bcd60e51b81526004016109e2906127b9565b60108390556011829055601281905580610e6283856128b1565b610e6c91906128b1565b600f81905560141015610ec15760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420323025206f72206c65737300000060448201526064016109e2565b505050565b6007546001600160a01b03163314610ef05760405162461bcd60e51b81526004016109e2906127b9565b600e805461ffff1916610101179055565b6007546001600160a01b03163314610f2b5760405162461bcd60e51b81526004016109e2906127b9565b600e80549115156101000261ff0019909216919091179055565b606060068054610a6590612835565b6007546001600160a01b03163314610f7e5760405162461bcd60e51b81526004016109e2906127b9565b7f0000000000000000000000000a68d4f69253d8925d164b1f8fc220e0ffcff2bc6001600160a01b0316826001600160a01b031614156110265760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b657250616972730000000000000060648201526084016109e2565b610a528282611e52565b3360009081526003602090815260408083206001600160a01b0386168452909152812054828110156110b25760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016109e2565b6110bf338585840361154c565b5060019392505050565b6000610af5338484611670565b6007546001600160a01b031633146111005760405162461bcd60e51b81526004016109e2906127b9565b6008546040516001600160a01b03918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a3600880546001600160a01b0319166001600160a01b0392909216919091179055565b6007546001600160a01b031633146111875760405162461bcd60e51b81526004016109e2906127b9565b6001600160a01b0382166000818152601a6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6007546001600160a01b031633146112105760405162461bcd60e51b81526004016109e2906127b9565b6014839055601582905560168190558061122a83856128b1565b61123491906128b1565b601381905560141015610ec15760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420323025206f72206c65737300000060448201526064016109e2565b6007546001600160a01b031633146112b35760405162461bcd60e51b81526004016109e2906127b9565b670de0b6b3a76400006103e86112c860045490565b6112d3906005612870565b6112dd919061288f565b6112e7919061288f565b8110156113425760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b60648201526084016109e2565b61135481670de0b6b3a7640000612870565b600d5550565b6007546000906001600160a01b031633146113875760405162461bcd60e51b81526004016109e2906127b9565b620186a061139460045490565b61139f906001612870565b6113a9919061288f565b8210156114165760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b60648201526084016109e2565b6103e861142260045490565b61142d906005612870565b611437919061288f565b8211156114a35760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b60648201526084016109e2565b50600c81905560015b919050565b6007546001600160a01b031633146114db5760405162461bcd60e51b81526004016109e2906127b9565b6001600160a01b0381166115405760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109e2565b61154981611e00565b50565b6001600160a01b0383166115ae5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016109e2565b6001600160a01b03821661160f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016109e2565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166116965760405162461bcd60e51b81526004016109e2906128c9565b6001600160a01b0382166116bc5760405162461bcd60e51b81526004016109e29061290e565b806116cd57610ec183836000611ea6565b6007546001600160a01b038481169116148015906116f957506007546001600160a01b03838116911614155b801561170d57506001600160a01b03821615155b801561172457506001600160a01b03821661dead14155b801561173a5750600754600160a01b900460ff16155b15611ac157600e5460ff166117cd576001600160a01b0383166000908152601a602052604090205460ff168061178857506001600160a01b0382166000908152601a602052604090205460ff165b6117cd5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016109e2565b6001600160a01b03831660009081526001602052604090205460ff1615801561180f57506001600160a01b03821660009081526001602052604090205460ff16155b61185b5760405162461bcd60e51b815260206004820152601c60248201527f596f7572206163636f756e7420697320626c61636b6c6973746564210000000060448201526064016109e2565b6001600160a01b0383166000908152601c602052604090205460ff16801561189c57506001600160a01b0382166000908152601b602052604090205460ff16155b1561198057600b548111156119115760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b60648201526084016109e2565b600d546001600160a01b03831660009081526020819052604090205461193790836128b1565b111561197b5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016109e2565b611ac1565b6001600160a01b0382166000908152601c602052604090205460ff1680156119c157506001600160a01b0383166000908152601b602052604090205460ff16155b15611a3757600b5481111561197b5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b60648201526084016109e2565b6001600160a01b0382166000908152601b602052604090205460ff16611ac157600d546001600160a01b038316600090815260208190526040902054611a7d90836128b1565b1115611ac15760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016109e2565b30600090815260208190526040902054600c5481108015908190611aec5750600e54610100900460ff165b8015611b025750600754600160a01b900460ff16155b8015611b2757506001600160a01b0385166000908152601c602052604090205460ff16155b8015611b4c57506001600160a01b0385166000908152601a602052604090205460ff16155b8015611b7157506001600160a01b0384166000908152601a602052604090205460ff16155b15611b9f576007805460ff60a01b1916600160a01b179055611b91611ffb565b6007805460ff60a01b191690555b6007546001600160a01b0386166000908152601a602052604090205460ff600160a01b909204821615911680611bed57506001600160a01b0385166000908152601a602052604090205460ff165b15611bf6575060005b60008115611dec576001600160a01b0386166000908152601c602052604090205460ff168015611c2857506000601354115b15611cf157611c4d6064611c476013548861223590919063ffffffff16565b90612248565b905060135460155482611c609190612870565b611c6a919061288f565b60186000828254611c7b91906128b1565b9091555050601354601654611c909083612870565b611c9b9060016128b1565b611ca5919061288f565b60196000828254611cb691906128b1565b9091555050601354601454611ccb9083612870565b611cd5919061288f565b60176000828254611ce691906128b1565b90915550611dce9050565b6001600160a01b0387166000908152601c602052604090205460ff168015611d1b57506000600f54115b15611dce57611d3a6064611c47600f548861223590919063ffffffff16565b9050600f5460115482611d4d9190612870565b611d57919061288f565b60186000828254611d6891906128b1565b9091555050600f54601254611d7d9083612870565b611d87919061288f565b60196000828254611d9891906128b1565b9091555050600f54601054611dad9083612870565b611db7919061288f565b60176000828254611dc891906128b1565b90915550505b8015611ddf57611ddf873083611ea6565b611de98186612951565b94505b611df7878787611ea6565b50505050505050565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000818152601c6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611ecc5760405162461bcd60e51b81526004016109e2906128c9565b6001600160a01b038216611ef25760405162461bcd60e51b81526004016109e29061290e565b6001600160a01b03831660009081526020819052604090205481811015611f6a5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016109e2565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611fa19084906128b1565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611fed91815260200190565b60405180910390a350505050565b306000908152602081905260408120549050600060195460175460185461202291906128b1565b61202c91906128b1565b9050600082158061203b575081155b1561204557505050565b600c54612053906014612870565b83111561206b57600c54612068906014612870565b92505b60006002836018548661207e9190612870565b612088919061288f565b612092919061288f565b905060006120a08583612254565b9050476120ac82612260565b60006120b84783612254565b905060006120d587611c476017548561223590919063ffffffff16565b905060006120f288611c476019548661223590919063ffffffff16565b90506000816121018486612951565b61210b9190612951565b60006018819055601781905560198190556009546040519293506001600160a01b031691849181818185875af1925050503d8060008114612168576040519150601f19603f3d011682016040523d82523d6000602084013e61216d565b606091505b509098505086158015906121815750600081115b156121d4576121908782612420565b601854604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6008546040516001600160a01b03909116904790600081818185875af1925050503d8060008114612221576040519150601f19603f3d011682016040523d82523d6000602084013e612226565b606091505b50505050505050505050505050565b60006122418284612870565b9392505050565b6000612241828461288f565b60006122418284612951565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612295576122956127ee565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612313573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123379190612968565b8160018151811061234a5761234a6127ee565b60200260200101906001600160a01b031690816001600160a01b031681525050612395307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461154c565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac947906123ea908590600090869030904290600401612985565b600060405180830381600087803b15801561240457600080fd5b505af1158015612418573d6000803e3d6000fd5b505050505050565b61244b307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461154c565b60405163f305d71960e01b815230600482015260248101839052600060448201819052606482015261dead60848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03169063f305d71990839060c40160606040518083038185885af11580156124d5573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906124fa91906129f6565b5050505050565b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461154957600080fd5b80356114ac81612517565b6000602080838503121561254a57600080fd5b823567ffffffffffffffff8082111561256257600080fd5b818501915085601f83011261257657600080fd5b81358181111561258857612588612501565b8060051b604051601f19603f830116810181811085821117156125ad576125ad612501565b6040529182528482019250838101850191888311156125cb57600080fd5b938501935b828510156125f0576125e18561252c565b845293850193928501926125d0565b98975050505050505050565b600060208083528351808285015260005b818110156126295785810183015185820160400152820161260d565b8181111561263b576000604083870101525b50601f01601f1916929092016040019392505050565b6000806040838503121561266457600080fd5b823561266f81612517565b946020939093013593505050565b60006020828403121561268f57600080fd5b813561224181612517565b6000602082840312156126ac57600080fd5b5035919050565b6000806000606084860312156126c857600080fd5b83356126d381612517565b925060208401356126e381612517565b929592945050506040919091013590565b803580151581146114ac57600080fd5b6000806040838503121561271757600080fd5b823561272281612517565b9150612730602084016126f4565b90509250929050565b60008060006060848603121561274e57600080fd5b505081359360208301359350604090920135919050565b60006020828403121561277757600080fd5b612241826126f4565b6000806040838503121561279357600080fd5b823561279e81612517565b915060208301356127ae81612517565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060001982141561282e5761282e612804565b5060010190565b600181811c9082168061284957607f821691505b6020821081141561286a57634e487b7160e01b600052602260045260246000fd5b50919050565b600081600019048311821515161561288a5761288a612804565b500290565b6000826128ac57634e487b7160e01b600052601260045260246000fd5b500490565b600082198211156128c4576128c4612804565b500190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60008282101561296357612963612804565b500390565b60006020828403121561297a57600080fd5b815161224181612517565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156129d55784516001600160a01b0316835293830193918301916001016129b0565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215612a0b57600080fd5b835192506020840151915060408401519050925092509256fea264697066735822122015936f6cfee510d32041f63ecaa3084e48a455fb8503d782d1a15afda1ab30a264736f6c634300080c0033

Deployed Bytecode Sourcemap

31892:15237:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44568:169;;;;;;;;;;-1:-1:-1;44568:169:0;;;;;:::i;:::-;;:::i;:::-;;9703:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11870:169;;;;;;;;;;-1:-1:-1;11870:169:0;;;;;:::i;:::-;;:::i;:::-;;;2634:14:1;;2627:22;2609:41;;2597:2;2582:18;11870:169:0;2469:187:1;33013:63:0;;;;;;;;;;-1:-1:-1;33013:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;31977:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;3104:32:1;;;3086:51;;3074:2;3059:18;31977:51:0;2913:230:1;10823:108:0;;;;;;;;;;-1:-1:-1;10911:12:0;;10823:108;;;3294:25:1;;;3282:2;3267:18;10823:108:0;3148:177:1;39696:157:0;;;;;;;;;;-1:-1:-1;39696:157:0;;;;;:::i;:::-;;:::i;32797:33::-;;;;;;;;;;;;;;;;32757;;;;;;;;;;;;;;;;37010:275;;;;;;;;;;-1:-1:-1;37010:275:0;;;;;:::i;:::-;;:::i;12521:492::-;;;;;;;;;;-1:-1:-1;12521:492:0;;;;;:::i;:::-;;:::i;32080:53::-;;;;;;;;;;;;32126:6;32080:53;;10665:93;;;;;;;;;;-1:-1:-1;10665:93:0;;10748:2;4326:36:1;;4314:2;4299:18;10665:93:0;4184:184:1;13422:215:0;;;;;;;;;;-1:-1:-1;13422:215:0;;;;;:::i;:::-;;:::i;32035:38::-;;;;;;;;;;;;;;;39861:126;;;;;;;;;;-1:-1:-1;39861:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;39951:28:0;39927:4;39951:28;;;:19;:28;;;;;;;;;39861:126;32612:28;;;;;;;;;;;;;;;;44745:92;;;;;;;;;;-1:-1:-1;44745:92:0;;;;;:::i;:::-;;:::i;32431:31::-;;;;;;;;;;-1:-1:-1;32431:31:0;;;;;;;;;;;10994:127;;;;;;;;;;-1:-1:-1;10994:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;11095:18:0;11068:7;11095:18;;;;;;;;;;;;10994:127;2846:103;;;;;;;;;;;;;:::i;37557:167::-;;;;;;;;;;-1:-1:-1;37557:167:0;;;;;:::i;:::-;;:::i;32505:30::-;;;;;;;;;;;;;;;;8984:43;;;;;;;;;;-1:-1:-1;8984:43:0;;;;;:::i;:::-;;;;;;;;;;;;;;37928:403;;;;;;;;;;-1:-1:-1;37928:403:0;;;;;:::i;:::-;;:::i;36321:114::-;;;;;;;;;;;;;:::i;2195:87::-;;;;;;;;;;-1:-1:-1;2268:6:0;;-1:-1:-1;;;;;2268:6:0;2195:87;;32647:31;;;;;;;;;;;;;;;;37820:100;;;;;;;;;;-1:-1:-1;37820:100:0;;;;;:::i;:::-;;:::i;9922:104::-;;;;;;;;;;;;;:::i;38949:304::-;;;;;;;;;;-1:-1:-1;38949:304:0;;;;;:::i;:::-;;:::i;32579:24::-;;;;;;;;;;;;;;;;32837:27;;;;;;;;;;;;;;;;32723:25;;;;;;;;;;;;;;;;14140:413;;;;;;;;;;-1:-1:-1;14140:413:0;;;;;:::i;:::-;;:::i;11334:175::-;;;;;;;;;;-1:-1:-1;11334:175:0;;;;;:::i;:::-;;:::i;39457:231::-;;;;;;;;;;-1:-1:-1;39457:231:0;;;;;:::i;:::-;;:::i;33234:57::-;;;;;;;;;;-1:-1:-1;33234:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;32391:33;;;;;;;;;;-1:-1:-1;32391:33:0;;;;;;;;8940:37;;;;;;;;;;-1:-1:-1;8940:37:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;38759:182;;;;;;;;;;-1:-1:-1;38759:182:0;;;;;:::i;:::-;;:::i;38339:412::-;;;;;;;;;;-1:-1:-1;38339:412:0;;;;;:::i;:::-;;:::i;37293:256::-;;;;;;;;;;-1:-1:-1;37293:256:0;;;;;:::i;:::-;;:::i;32276:35::-;;;;;;;;;;;;;;;;36505:497;;;;;;;;;;-1:-1:-1;36505:497:0;;;;;:::i;:::-;;:::i;32471:27::-;;;;;;;;;;;;;;;;11572:151;;;;;;;;;;-1:-1:-1;11572:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;11688:18:0;;;11661:7;11688:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11572:151;32318:33;;;;;;;;;;;;;;;;32542:30;;;;;;;;;;;;;;;;3104:201;;;;;;;;;;-1:-1:-1;3104:201:0;;;;;:::i;:::-;;:::i;32685:31::-;;;;;;;;;;;;;;;;32358:24;;;;;;;;;;;;;;;;44568:169;2268:6;;-1:-1:-1;;;;;2268:6:0;948:10;2415:23;2407:68;;;;-1:-1:-1;;;2407:68:0;;;;;;;:::i;:::-;;;;;;;;;44644:9:::1;44639:91;44663:5;:12;44659:1;:16;44639:91;;;44714:4;44697::::0;:14:::1;44702:5;44708:1;44702:8;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;44697:14:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;44697:14:0;:21;;-1:-1:-1;;44697:21:0::1;::::0;::::1;;::::0;;;::::1;::::0;;44677:3;::::1;::::0;::::1;:::i;:::-;;;;44639:91;;;;44568:169:::0;:::o;9703:100::-;9757:13;9790:5;9783:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9703:100;:::o;11870:169::-;11953:4;11970:39;948:10;11993:7;12002:6;11970:8;:39::i;:::-;-1:-1:-1;12027:4:0;11870:169;;;;:::o;39696:157::-;2268:6;;-1:-1:-1;;;;;2268:6:0;948:10;2415:23;2407:68;;;;-1:-1:-1;;;2407:68:0;;;;;;;:::i;:::-;39803:9:::1;::::0;39775:38:::1;::::0;-1:-1:-1;;;;;39803:9:0;;::::1;::::0;39775:38;::::1;::::0;::::1;::::0;39803:9:::1;::::0;39775:38:::1;39824:9;:21:::0;;-1:-1:-1;;;;;;39824:21:0::1;-1:-1:-1::0;;;;;39824:21:0;;;::::1;::::0;;;::::1;::::0;;39696:157::o;37010:275::-;2268:6;;-1:-1:-1;;;;;2268:6:0;948:10;2415:23;2407:68;;;;-1:-1:-1;;;2407:68:0;;;;;;;:::i;:::-;37147:4:::1;37139;37118:13;10911:12:::0;;;10823:108;37118:13:::1;:17;::::0;37134:1:::1;37118:17;:::i;:::-;37117:26;;;;:::i;:::-;37116:35;;;;:::i;:::-;37106:6;:45;;37084:142;;;::::0;-1:-1:-1;;;37084:142:0;;7504:2:1;37084:142:0::1;::::0;::::1;7486:21:1::0;7543:2;7523:18;;;7516:30;7582:34;7562:18;;;7555:62;-1:-1:-1;;;7633:18:1;;;7626:45;7688:19;;37084:142:0::1;7302:411:1::0;37084:142:0::1;37260:17;:6:::0;37270::::1;37260:17;:::i;:::-;37237:20;:40:::0;-1:-1:-1;37010:275:0:o;12521:492::-;12661:4;12678:36;12688:6;12696:9;12707:6;12678:9;:36::i;:::-;-1:-1:-1;;;;;12754:19:0;;12727:24;12754:19;;;:11;:19;;;;;;;;948:10;12754:33;;;;;;;;12806:26;;;;12798:79;;;;-1:-1:-1;;;12798:79:0;;7920:2:1;12798:79:0;;;7902:21:1;7959:2;7939:18;;;7932:30;7998:34;7978:18;;;7971:62;-1:-1:-1;;;8049:18:1;;;8042:38;8097:19;;12798:79:0;7718:404:1;12798:79:0;12913:57;12922:6;948:10;12963:6;12944:16;:25;12913:8;:57::i;:::-;-1:-1:-1;13001:4:0;;12521:492;-1:-1:-1;;;;12521:492:0:o;13422:215::-;948:10;13510:4;13559:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13559:34:0;;;;;;;;;;13510:4;;13527:80;;13550:7;;13559:47;;13596:10;;13559:47;:::i;:::-;13527:8;:80::i;44745:92::-;2268:6;;-1:-1:-1;;;;;2268:6:0;948:10;2415:23;2407:68;;;;-1:-1:-1;;;2407:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;44809:12:0::1;44824:5;44809:12:::0;;;:4:::1;:12;::::0;;;;:20;;-1:-1:-1;;44809:20:0::1;::::0;;44745:92::o;2846:103::-;2268:6;;-1:-1:-1;;;;;2268:6:0;948:10;2415:23;2407:68;;;;-1:-1:-1;;;2407:68:0;;;;;;;:::i;:::-;2911:30:::1;2938:1;2911:18;:30::i;:::-;2846:103::o:0;37557:167::-;2268:6;;-1:-1:-1;;;;;2268:6:0;948:10;2415:23;2407:68;;;;-1:-1:-1;;;2407:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37670:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;37670:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;37557:167::o;37928:403::-;2268:6;;-1:-1:-1;;;;;2268:6:0;948:10;2415:23;2407:68;;;;-1:-1:-1;;;2407:68:0;;;;;;;:::i;:::-;38078:15:::1;:31:::0;;;38120:15:::1;:31:::0;;;38162:9:::1;:19:::0;;;38174:7;38207:33:::1;38138:13:::0;38096;38207:33:::1;:::i;:::-;:45;;;;:::i;:::-;38192:12;:60:::0;;;38287:2:::1;-1:-1:-1::0;38271:18:0::1;38263:60;;;::::0;-1:-1:-1;;;38263:60:0;;8462:2:1;38263:60:0::1;::::0;::::1;8444:21:1::0;8501:2;8481:18;;;8474:30;8540:31;8520:18;;;8513:59;8589:18;;38263:60:0::1;8260:353:1::0;38263:60:0::1;37928:403:::0;;;:::o;36321:114::-;2268:6;;-1:-1:-1;;;;;2268:6:0;948:10;2415:23;2407:68;;;;-1:-1:-1;;;2407:68:0;;;;;;;:::i;:::-;36376:13:::1;:20:::0;;-1:-1:-1;;36407:18:0;;;;;36321:114::o;37820:100::-;2268:6;;-1:-1:-1;;;;;2268:6:0;948:10;2415:23;2407:68;;;;-1:-1:-1;;;2407:68:0;;;;;;;:::i;:::-;37891:11:::1;:21:::0;;;::::1;;;;-1:-1:-1::0;;37891:21:0;;::::1;::::0;;;::::1;::::0;;37820:100::o;9922:104::-;9978:13;10011:7;10004:14;;;;;:::i;38949:304::-;2268:6;;-1:-1:-1;;;;;2268:6:0;948:10;2415:23;2407:68;;;;-1:-1:-1;;;2407:68:0;;;;;;;:::i;:::-;39093:13:::1;-1:-1:-1::0;;;;;39085:21:0::1;:4;-1:-1:-1::0;;;;;39085:21:0::1;;;39063:128;;;::::0;-1:-1:-1;;;39063:128:0;;8820:2:1;39063:128:0::1;::::0;::::1;8802:21:1::0;8859:2;8839:18;;;8832:30;8898:34;8878:18;;;8871:62;8969:27;8949:18;;;8942:55;9014:19;;39063:128:0::1;8618:421:1::0;39063:128:0::1;39204:41;39233:4;39239:5;39204:28;:41::i;14140:413::-:0;948:10;14233:4;14277:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;14277:34:0;;;;;;;;;;14330:35;;;;14322:85;;;;-1:-1:-1;;;14322:85:0;;9246:2:1;14322:85:0;;;9228:21:1;9285:2;9265:18;;;9258:30;9324:34;9304:18;;;9297:62;-1:-1:-1;;;9375:18:1;;;9368:35;9420:19;;14322:85:0;9044:401:1;14322:85:0;14443:67;948:10;14466:7;14494:15;14475:16;:34;14443:8;:67::i;:::-;-1:-1:-1;14541:4:0;;14140:413;-1:-1:-1;;;14140:413:0:o;11334:175::-;11420:4;11437:42;948:10;11461:9;11472:6;11437:9;:42::i;39457:231::-;2268:6;;-1:-1:-1;;;;;2268:6:0;948:10;2415:23;2407:68;;;;-1:-1:-1;;;2407:68:0;;;;;;;:::i;:::-;39617:15:::1;::::0;39574:59:::1;::::0;-1:-1:-1;;;;;39617:15:0;;::::1;::::0;39574:59;::::1;::::0;::::1;::::0;39617:15:::1;::::0;39574:59:::1;39644:15;:36:::0;;-1:-1:-1;;;;;;39644:36:0::1;-1:-1:-1::0;;;;;39644:36:0;;;::::1;::::0;;;::::1;::::0;;39457:231::o;38759:182::-;2268:6;;-1:-1:-1;;;;;2268:6:0;948:10;2415:23;2407:68;;;;-1:-1:-1;;;2407:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38844:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;38844:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;38899:34;;2609:41:1;;;38899:34:0::1;::::0;2582:18:1;38899:34:0::1;;;;;;;38759:182:::0;;:::o;38339:412::-;2268:6;;-1:-1:-1;;;;;2268:6:0;948:10;2415:23;2407:68;;;;-1:-1:-1;;;2407:68:0;;;;;;;:::i;:::-;38490:16:::1;:32:::0;;;38533:16:::1;:32:::0;;;38576:10:::1;:20:::0;;;38589:7;38623:35:::1;38552:13:::0;38509;38623:35:::1;:::i;:::-;:48;;;;:::i;:::-;38607:13;:64:::0;;;38707:2:::1;-1:-1:-1::0;38690:19:0::1;38682:61;;;::::0;-1:-1:-1;;;38682:61:0;;8462:2:1;38682:61:0::1;::::0;::::1;8444:21:1::0;8501:2;8481:18;;;8474:30;8540:31;8520:18;;;8513:59;8589:18;;38682:61:0::1;8260:353:1::0;37293:256:0;2268:6;;-1:-1:-1;;;;;2268:6:0;948:10;2415:23;2407:68;;;;-1:-1:-1;;;2407:68:0;;;;;;;:::i;:::-;37433:4:::1;37425;37404:13;10911:12:::0;;;10823:108;37404:13:::1;:17;::::0;37420:1:::1;37404:17;:::i;:::-;37403:26;;;;:::i;:::-;37402:35;;;;:::i;:::-;37392:6;:45;;37370:131;;;::::0;-1:-1:-1;;;37370:131:0;;9652:2:1;37370:131:0::1;::::0;::::1;9634:21:1::0;9691:2;9671:18;;;9664:30;9730:34;9710:18;;;9703:62;-1:-1:-1;;;9781:18:1;;;9774:34;9825:19;;37370:131:0::1;9450:400:1::0;37370:131:0::1;37524:17;:6:::0;37534::::1;37524:17;:::i;:::-;37512:9;:29:::0;-1:-1:-1;37293:256:0:o;36505:497::-;2268:6;;36613:4;;-1:-1:-1;;;;;2268:6:0;948:10;2415:23;2407:68;;;;-1:-1:-1;;;2407:68:0;;;;;;;:::i;:::-;36692:6:::1;36671:13;10911:12:::0;;;10823:108;36671:13:::1;:17;::::0;36687:1:::1;36671:17;:::i;:::-;36670:28;;;;:::i;:::-;36657:9;:41;;36635:144;;;::::0;-1:-1:-1;;;36635:144:0;;10057:2:1;36635:144:0::1;::::0;::::1;10039:21:1::0;10096:2;10076:18;;;10069:30;10135:34;10115:18;;;10108:62;-1:-1:-1;;;10186:18:1;;;10179:51;10247:19;;36635:144:0::1;9855:417:1::0;36635:144:0::1;36847:4;36826:13;10911:12:::0;;;10823:108;36826:13:::1;:17;::::0;36842:1:::1;36826:17;:::i;:::-;36825:26;;;;:::i;:::-;36812:9;:39;;36790:141;;;::::0;-1:-1:-1;;;36790:141:0;;10479:2:1;36790:141:0::1;::::0;::::1;10461:21:1::0;10518:2;10498:18;;;10491:30;10557:34;10537:18;;;10530:62;-1:-1:-1;;;10608:18:1;;;10601:50;10668:19;;36790:141:0::1;10277:416:1::0;36790:141:0::1;-1:-1:-1::0;36942:18:0::1;:30:::0;;;36990:4:::1;2486:1;36505:497:::0;;;:::o;3104:201::-;2268:6;;-1:-1:-1;;;;;2268:6:0;948:10;2415:23;2407:68;;;;-1:-1:-1;;;2407:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3193:22:0;::::1;3185:73;;;::::0;-1:-1:-1;;;3185:73:0;;10900:2:1;3185:73:0::1;::::0;::::1;10882:21:1::0;10939:2;10919:18;;;10912:30;10978:34;10958:18;;;10951:62;-1:-1:-1;;;11029:18:1;;;11022:36;11075:19;;3185:73:0::1;10698:402:1::0;3185:73:0::1;3269:28;3288:8;3269:18;:28::i;:::-;3104:201:::0;:::o;16900:380::-;-1:-1:-1;;;;;17036:19:0;;17028:68;;;;-1:-1:-1;;;17028:68:0;;11307:2:1;17028:68:0;;;11289:21:1;11346:2;11326:18;;;11319:30;11385:34;11365:18;;;11358:62;-1:-1:-1;;;11436:18:1;;;11429:34;11480:19;;17028:68:0;11105:400:1;17028:68:0;-1:-1:-1;;;;;17115:21:0;;17107:68;;;;-1:-1:-1;;;17107:68:0;;11712:2:1;17107:68:0;;;11694:21:1;11751:2;11731:18;;;11724:30;11790:34;11770:18;;;11763:62;-1:-1:-1;;;11841:18:1;;;11834:32;11883:19;;17107:68:0;11510:398:1;17107:68:0;-1:-1:-1;;;;;17188:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17240:32;;3294:25:1;;;17240:32:0;;3267:18:1;17240:32:0;;;;;;;16900:380;;;:::o;39995:3968::-;-1:-1:-1;;;;;40127:18:0;;40119:68;;;;-1:-1:-1;;;40119:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;40206:16:0;;40198:64;;;;-1:-1:-1;;;40198:64:0;;;;;;;:::i;:::-;40279:11;40275:93;;40307:28;40323:4;40329:2;40333:1;40307:15;:28::i;40275:93::-;2268:6;;-1:-1:-1;;;;;40406:15:0;;;2268:6;;40406:15;;;;:49;;-1:-1:-1;2268:6:0;;-1:-1:-1;;;;;40442:13:0;;;2268:6;;40442:13;;40406:49;:86;;;;-1:-1:-1;;;;;;40476:16:0;;;;40406:86;:128;;;;-1:-1:-1;;;;;;40513:21:0;;40527:6;40513:21;;40406:128;:158;;;;-1:-1:-1;40556:8:0;;-1:-1:-1;;;40556:8:0;;;;40555:9;40406:158;40384:1732;;;40604:13;;;;40599:223;;-1:-1:-1;;;;;40676:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;40705:23:0;;;;;;:19;:23;;;;;;;;40676:52;40642:160;;;;-1:-1:-1;;;40642:160:0;;12925:2:1;40642:160:0;;;12907:21:1;12964:2;12944:18;;;12937:30;-1:-1:-1;;;12983:18:1;;;12976:52;13045:18;;40642:160:0;12723:346:1;40642:160:0;-1:-1:-1;;;;;40849:10:0;;;;;;:4;:10;;;;;;;;40848:11;:24;;;;-1:-1:-1;;;;;;40864:8:0;;;;;;:4;:8;;;;;;;;40863:9;40848:24;40840:65;;;;-1:-1:-1;;;40840:65:0;;13276:2:1;40840:65:0;;;13258:21:1;13315:2;13295:18;;;13288:30;13354;13334:18;;;13327:58;13402:18;;40840:65:0;13074:352:1;40840:65:0;-1:-1:-1;;;;;40980:31:0;;;;;;:25;:31;;;;;;;;:92;;;;-1:-1:-1;;;;;;41037:35:0;;;;;;:31;:35;;;;;;;;41036:36;40980:92;40954:1147;;;41159:20;;41149:6;:30;;41115:169;;;;-1:-1:-1;;;41115:169:0;;13633:2:1;41115:169:0;;;13615:21:1;13672:2;13652:18;;;13645:30;13711:34;13691:18;;;13684:62;-1:-1:-1;;;13762:18:1;;;13755:51;13823:19;;41115:169:0;13431:417:1;41115:169:0;41367:9;;-1:-1:-1;;;;;11095:18:0;;11068:7;11095:18;;;;;;;;;;;41341:22;;:6;:22;:::i;:::-;:35;;41307:140;;;;-1:-1:-1;;;41307:140:0;;14055:2:1;41307:140:0;;;14037:21:1;14094:2;14074:18;;;14067:30;-1:-1:-1;;;14113:18:1;;;14106:49;14172:18;;41307:140:0;13853:343:1;41307:140:0;40954:1147;;;-1:-1:-1;;;;;41545:29:0;;;;;;:25;:29;;;;;;;;:92;;;;-1:-1:-1;;;;;;41600:37:0;;;;;;:31;:37;;;;;;;;41599:38;41545:92;41519:582;;;41724:20;;41714:6;:30;;41680:170;;;;-1:-1:-1;;;41680:170:0;;14403:2:1;41680:170:0;;;14385:21:1;14442:2;14422:18;;;14415:30;14481:34;14461:18;;;14454:62;-1:-1:-1;;;14532:18:1;;;14525:52;14594:19;;41680:170:0;14201:418:1;41519:582:0;-1:-1:-1;;;;;41881:35:0;;;;;;:31;:35;;;;;;;;41876:225;;42001:9;;-1:-1:-1;;;;;11095:18:0;;11068:7;11095:18;;;;;;;;;;;41975:22;;:6;:22;:::i;:::-;:35;;41941:140;;;;-1:-1:-1;;;41941:140:0;;14055:2:1;41941:140:0;;;14037:21:1;14094:2;14074:18;;;14067:30;-1:-1:-1;;;14113:18:1;;;14106:49;14172:18;;41941:140:0;13853:343:1;41941:140:0;42177:4;42128:28;11095:18;;;;;;;;;;;42235;;42211:42;;;;;;;42284:35;;-1:-1:-1;42308:11:0;;;;;;;42284:35;:61;;;;-1:-1:-1;42337:8:0;;-1:-1:-1;;;42337:8:0;;;;42336:9;42284:61;:110;;;;-1:-1:-1;;;;;;42363:31:0;;;;;;:25;:31;;;;;;;;42362:32;42284:110;:153;;;;-1:-1:-1;;;;;;42412:25:0;;;;;;:19;:25;;;;;;;;42411:26;42284:153;:194;;;;-1:-1:-1;;;;;;42455:23:0;;;;;;:19;:23;;;;;;;;42454:24;42284:194;42266:326;;;42505:8;:15;;-1:-1:-1;;;;42505:15:0;-1:-1:-1;;;42505:15:0;;;42537:10;:8;:10::i;:::-;42564:8;:16;;-1:-1:-1;;;;42564:16:0;;;42266:326;42620:8;;-1:-1:-1;;;;;42730:25:0;;42604:12;42730:25;;;:19;:25;;;;;;42620:8;-1:-1:-1;;;42620:8:0;;;;;42619:9;;42730:25;;:52;;-1:-1:-1;;;;;;42759:23:0;;;;;;:19;:23;;;;;;;;42730:52;42726:100;;;-1:-1:-1;42809:5:0;42726:100;42838:12;42943:7;42939:971;;;-1:-1:-1;;;;;42995:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;43044:1;43028:13;;:17;42995:50;42991:770;;;43073:34;43103:3;43073:25;43084:13;;43073:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;43066:41;;43176:13;;43156:16;;43149:4;:23;;;;:::i;:::-;43148:41;;;;:::i;:::-;43126:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;43248:13:0;;43232:10;;43225:17;;:4;:17;:::i;:::-;:19;;43243:1;43225:19;:::i;:::-;43224:37;;;;:::i;:::-;43208:12;;:53;;;;;;;:::i;:::-;;;;-1:-1:-1;;43330:13:0;;43310:16;;43303:23;;:4;:23;:::i;:::-;43302:41;;;;:::i;:::-;43280:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;42991:770:0;;-1:-1:-1;42991:770:0;;-1:-1:-1;;;;;43405:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;43455:1;43440:12;;:16;43405:51;43401:360;;;43484:33;43513:3;43484:24;43495:12;;43484:6;:10;;:24;;;;:::i;:33::-;43477:40;;43585:12;;43566:15;;43559:4;:22;;;;:::i;:::-;43558:39;;;;:::i;:::-;43536:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;43653:12:0;;43640:9;;43633:16;;:4;:16;:::i;:::-;43632:33;;;;:::i;:::-;43616:12;;:49;;;;;;;:::i;:::-;;;;-1:-1:-1;;43733:12:0;;43714:15;;43707:22;;:4;:22;:::i;:::-;43706:39;;;;:::i;:::-;43684:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;43401:360:0;43781:8;;43777:91;;43810:42;43826:4;43840;43847;43810:15;:42::i;:::-;43884:14;43894:4;43884:14;;:::i;:::-;;;42939:971;43922:33;43938:4;43944:2;43948:6;43922:15;:33::i;:::-;40108:3855;;;;39995:3968;;;:::o;3465:191::-;3558:6;;;-1:-1:-1;;;;;3575:17:0;;;-1:-1:-1;;;;;;3575:17:0;;;;;;;3608:40;;3558:6;;;3575:17;3558:6;;3608:40;;3539:16;;3608:40;3528:128;3465:191;:::o;39261:188::-;-1:-1:-1;;;;;39344:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;39344:39:0;;;;;;;;;;39401:40;;39344:39;;:31;39401:40;;;39261:188;;:::o;15043:733::-;-1:-1:-1;;;;;15183:20:0;;15175:70;;;;-1:-1:-1;;;15175:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15264:23:0;;15256:71;;;;-1:-1:-1;;;15256:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15424:17:0;;15400:21;15424:17;;;;;;;;;;;15460:23;;;;15452:74;;;;-1:-1:-1;;;15452:74:0;;14956:2:1;15452:74:0;;;14938:21:1;14995:2;14975:18;;;14968:30;15034:34;15014:18;;;15007:62;-1:-1:-1;;;15085:18:1;;;15078:36;15131:19;;15452:74:0;14754:402:1;15452:74:0;-1:-1:-1;;;;;15562:17:0;;;:9;:17;;;;;;;;;;;15582:22;;;15562:42;;15626:20;;;;;;;;:30;;15598:6;;15562:9;15626:30;;15598:6;;15626:30;:::i;:::-;;;;;;;;15691:9;-1:-1:-1;;;;;15674:35:0;15683:6;-1:-1:-1;;;;;15674:35:0;;15702:6;15674:35;;;;3294:25:1;;3282:2;3267:18;;3148:177;15674:35:0;;;;;;;;15164:612;15043:733;;;:::o;45370:1756::-;45453:4;45409:23;11095:18;;;;;;;;;;;45409:50;;45470:25;45566:12;;45532:18;;45498;;:52;;;;:::i;:::-;:80;;;;:::i;:::-;45470:108;-1:-1:-1;45589:12:0;45618:20;;;:46;;-1:-1:-1;45642:22:0;;45618:46;45614:85;;;45681:7;;;45370:1756::o;45614:85::-;45733:18;;:23;;45754:2;45733:23;:::i;:::-;45715:15;:41;45711:115;;;45791:18;;:23;;45812:2;45791:23;:::i;:::-;45773:41;;45711:115;45887:23;46000:1;45967:17;45932:18;;45914:15;:36;;;;:::i;:::-;45913:71;;;;:::i;:::-;:88;;;;:::i;:::-;45887:114;-1:-1:-1;46012:26:0;46041:36;:15;45887:114;46041:19;:36::i;:::-;46012:65;-1:-1:-1;46118:21:0;46152:36;46012:65;46152:16;:36::i;:::-;46201:18;46222:44;:21;46248:17;46222:25;:44::i;:::-;46201:65;;46279:23;46305:81;46358:17;46305:34;46320:18;;46305:10;:14;;:34;;;;:::i;:81::-;46279:107;;46397:17;46417:51;46450:17;46417:28;46432:12;;46417:10;:14;;:28;;;;:::i;:51::-;46397:71;-1:-1:-1;46481:23:0;46397:71;46507:28;46520:15;46507:10;:28;:::i;:::-;:40;;;;:::i;:::-;46581:1;46560:18;:22;;;46593:18;:22;;;46626:12;:16;;;46677:9;;46669:45;;46481:66;;-1:-1:-1;;;;;;46677:9:0;;46700;;46669:45;46581:1;46669:45;46700:9;46677;46669:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46655:59:0;;-1:-1:-1;;46731:19:0;;;;;:42;;;46772:1;46754:15;:19;46731:42;46727:278;;;46790:46;46803:15;46820;46790:12;:46::i;:::-;46960:18;;46856:137;;;15573:25:1;;;15629:2;15614:18;;15607:34;;;15657:18;;;15650:34;;;;46856:137:0;;;;;;15561:2:1;46856:137:0;;;46727:278;47039:15;;47031:87;;-1:-1:-1;;;;;47039:15:0;;;;47082:21;;47031:87;;;;47082:21;47039:15;47031:87;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;45370:1756:0:o;22352:98::-;22410:7;22437:5;22441:1;22437;:5;:::i;:::-;22430:12;22352:98;-1:-1:-1;;;22352:98:0:o;22751:::-;22809:7;22836:5;22840:1;22836;:5;:::i;21995:98::-;22053:7;22080:5;22084:1;22080;:5;:::i;43971:589::-;44121:16;;;44135:1;44121:16;;;;;;;;44097:21;;44121:16;;;;;;;;;;-1:-1:-1;44121:16:0;44097:40;;44166:4;44148;44153:1;44148:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;44148:23:0;;;-1:-1:-1;;;;;44148:23:0;;;;;44192:15;-1:-1:-1;;;;;44192:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;44182:4;44187:1;44182:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;44182:32:0;;;-1:-1:-1;;;;;44182:32:0;;;;;44227:62;44244:4;44259:15;44277:11;44227:8;:62::i;:::-;44328:224;;-1:-1:-1;;;44328:224:0;;-1:-1:-1;;;;;44328:15:0;:66;;;;:224;;44409:11;;44435:1;;44479:4;;44506;;44526:15;;44328:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44026:534;43971:589;:::o;44845:517::-;44993:62;45010:4;45025:15;45043:11;44993:8;:62::i;:::-;45098:256;;-1:-1:-1;;;45098:256:0;;45170:4;45098:256;;;17277:34:1;17327:18;;;17320:34;;;45216:1:0;17370:18:1;;;17363:34;;;17413:18;;;17406:34;32126:6:0;17456:19:1;;;17449:44;45328:15:0;17509:19:1;;;17502:35;45098:15:0;-1:-1:-1;;;;;45098:31:0;;;;45137:9;;17211:19:1;;45098:256:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;44845:517;;:::o;14:127:1:-;75:10;70:3;66:20;63:1;56:31;106:4;103:1;96:15;130:4;127:1;120:15;146:131;-1:-1:-1;;;;;221:31:1;;211:42;;201:70;;267:1;264;257:12;282:134;350:20;;379:31;350:20;379:31;:::i;421:1121::-;505:6;536:2;579;567:9;558:7;554:23;550:32;547:52;;;595:1;592;585:12;547:52;635:9;622:23;664:18;705:2;697:6;694:14;691:34;;;721:1;718;711:12;691:34;759:6;748:9;744:22;734:32;;804:7;797:4;793:2;789:13;785:27;775:55;;826:1;823;816:12;775:55;862:2;849:16;884:2;880;877:10;874:36;;;890:18;;:::i;:::-;936:2;933:1;929:10;968:2;962:9;1031:2;1027:7;1022:2;1018;1014:11;1010:25;1002:6;998:38;1086:6;1074:10;1071:22;1066:2;1054:10;1051:18;1048:46;1045:72;;;1097:18;;:::i;:::-;1133:2;1126:22;1183:18;;;1217:15;;;;-1:-1:-1;1259:11:1;;;1255:20;;;1287:19;;;1284:39;;;1319:1;1316;1309:12;1284:39;1343:11;;;;1363:148;1379:6;1374:3;1371:15;1363:148;;;1445:23;1464:3;1445:23;:::i;:::-;1433:36;;1396:12;;;;1489;;;;1363:148;;;1530:6;421:1121;-1:-1:-1;;;;;;;;421:1121:1:o;1547:597::-;1659:4;1688:2;1717;1706:9;1699:21;1749:6;1743:13;1792:6;1787:2;1776:9;1772:18;1765:34;1817:1;1827:140;1841:6;1838:1;1835:13;1827:140;;;1936:14;;;1932:23;;1926:30;1902:17;;;1921:2;1898:26;1891:66;1856:10;;1827:140;;;1985:6;1982:1;1979:13;1976:91;;;2055:1;2050:2;2041:6;2030:9;2026:22;2022:31;2015:42;1976:91;-1:-1:-1;2128:2:1;2107:15;-1:-1:-1;;2103:29:1;2088:45;;;;2135:2;2084:54;;1547:597;-1:-1:-1;;;1547:597:1:o;2149:315::-;2217:6;2225;2278:2;2266:9;2257:7;2253:23;2249:32;2246:52;;;2294:1;2291;2284:12;2246:52;2333:9;2320:23;2352:31;2377:5;2352:31;:::i;:::-;2402:5;2454:2;2439:18;;;;2426:32;;-1:-1:-1;;;2149:315:1:o;2661:247::-;2720:6;2773:2;2761:9;2752:7;2748:23;2744:32;2741:52;;;2789:1;2786;2779:12;2741:52;2828:9;2815:23;2847:31;2872:5;2847:31;:::i;3330:180::-;3389:6;3442:2;3430:9;3421:7;3417:23;3413:32;3410:52;;;3458:1;3455;3448:12;3410:52;-1:-1:-1;3481:23:1;;3330:180;-1:-1:-1;3330:180:1:o;3515:456::-;3592:6;3600;3608;3661:2;3649:9;3640:7;3636:23;3632:32;3629:52;;;3677:1;3674;3667:12;3629:52;3716:9;3703:23;3735:31;3760:5;3735:31;:::i;:::-;3785:5;-1:-1:-1;3842:2:1;3827:18;;3814:32;3855:33;3814:32;3855:33;:::i;:::-;3515:456;;3907:7;;-1:-1:-1;;;3961:2:1;3946:18;;;;3933:32;;3515:456::o;4373:160::-;4438:20;;4494:13;;4487:21;4477:32;;4467:60;;4523:1;4520;4513:12;4538:315;4603:6;4611;4664:2;4652:9;4643:7;4639:23;4635:32;4632:52;;;4680:1;4677;4670:12;4632:52;4719:9;4706:23;4738:31;4763:5;4738:31;:::i;:::-;4788:5;-1:-1:-1;4812:35:1;4843:2;4828:18;;4812:35;:::i;:::-;4802:45;;4538:315;;;;;:::o;4858:316::-;4935:6;4943;4951;5004:2;4992:9;4983:7;4979:23;4975:32;4972:52;;;5020:1;5017;5010:12;4972:52;-1:-1:-1;;5043:23:1;;;5113:2;5098:18;;5085:32;;-1:-1:-1;5164:2:1;5149:18;;;5136:32;;4858:316;-1:-1:-1;4858:316:1:o;5179:180::-;5235:6;5288:2;5276:9;5267:7;5263:23;5259:32;5256:52;;;5304:1;5301;5294:12;5256:52;5327:26;5343:9;5327:26;:::i;5364:388::-;5432:6;5440;5493:2;5481:9;5472:7;5468:23;5464:32;5461:52;;;5509:1;5506;5499:12;5461:52;5548:9;5535:23;5567:31;5592:5;5567:31;:::i;:::-;5617:5;-1:-1:-1;5674:2:1;5659:18;;5646:32;5687:33;5646:32;5687:33;:::i;:::-;5739:7;5729:17;;;5364:388;;;;;:::o;5757:356::-;5959:2;5941:21;;;5978:18;;;5971:30;6037:34;6032:2;6017:18;;6010:62;6104:2;6089:18;;5757:356::o;6118:127::-;6179:10;6174:3;6170:20;6167:1;6160:31;6210:4;6207:1;6200:15;6234:4;6231:1;6224:15;6250:127;6311:10;6306:3;6302:20;6299:1;6292:31;6342:4;6339:1;6332:15;6366:4;6363:1;6356:15;6382:135;6421:3;-1:-1:-1;;6442:17:1;;6439:43;;;6462:18;;:::i;:::-;-1:-1:-1;6509:1:1;6498:13;;6382:135::o;6522:380::-;6601:1;6597:12;;;;6644;;;6665:61;;6719:4;6711:6;6707:17;6697:27;;6665:61;6772:2;6764:6;6761:14;6741:18;6738:38;6735:161;;;6818:10;6813:3;6809:20;6806:1;6799:31;6853:4;6850:1;6843:15;6881:4;6878:1;6871:15;6735:161;;6522:380;;;:::o;6907:168::-;6947:7;7013:1;7009;7005:6;7001:14;6998:1;6995:21;6990:1;6983:9;6976:17;6972:45;6969:71;;;7020:18;;:::i;:::-;-1:-1:-1;7060:9:1;;6907:168::o;7080:217::-;7120:1;7146;7136:132;;7190:10;7185:3;7181:20;7178:1;7171:31;7225:4;7222:1;7215:15;7253:4;7250:1;7243:15;7136:132;-1:-1:-1;7282:9:1;;7080:217::o;8127:128::-;8167:3;8198:1;8194:6;8191:1;8188:13;8185:39;;;8204:18;;:::i;:::-;-1:-1:-1;8240:9:1;;8127:128::o;11913:401::-;12115:2;12097:21;;;12154:2;12134:18;;;12127:30;12193:34;12188:2;12173:18;;12166:62;-1:-1:-1;;;12259:2:1;12244:18;;12237:35;12304:3;12289:19;;11913:401::o;12319:399::-;12521:2;12503:21;;;12560:2;12540:18;;;12533:30;12599:34;12594:2;12579:18;;12572:62;-1:-1:-1;;;12665:2:1;12650:18;;12643:33;12708:3;12693:19;;12319:399::o;14624:125::-;14664:4;14692:1;14689;14686:8;14683:34;;;14697:18;;:::i;:::-;-1:-1:-1;14734:9:1;;14624:125::o;15695:251::-;15765:6;15818:2;15806:9;15797:7;15793:23;15789:32;15786:52;;;15834:1;15831;15824:12;15786:52;15866:9;15860:16;15885:31;15910:5;15885:31;:::i;15951:980::-;16213:4;16261:3;16250:9;16246:19;16292:6;16281:9;16274:25;16318:2;16356:6;16351:2;16340:9;16336:18;16329:34;16399:3;16394:2;16383:9;16379:18;16372:31;16423:6;16458;16452:13;16489:6;16481;16474:22;16527:3;16516:9;16512:19;16505:26;;16566:2;16558:6;16554:15;16540:29;;16587:1;16597:195;16611:6;16608:1;16605:13;16597:195;;;16676:13;;-1:-1:-1;;;;;16672:39:1;16660:52;;16767:15;;;;16732:12;;;;16708:1;16626:9;16597:195;;;-1:-1:-1;;;;;;;16848:32:1;;;;16843:2;16828:18;;16821:60;-1:-1:-1;;;16912:3:1;16897:19;16890:35;16809:3;15951:980;-1:-1:-1;;;15951:980:1:o;17548:306::-;17636:6;17644;17652;17705:2;17693:9;17684:7;17680:23;17676:32;17673:52;;;17721:1;17718;17711:12;17673:52;17750:9;17744:16;17734:26;;17800:2;17789:9;17785:18;17779:25;17769:35;;17844:2;17833:9;17829:18;17823:25;17813:35;;17548:306;;;;;:::o

Swarm Source

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