ETH Price: $3,239.57 (+1.35%)

Token

Gay AI (gayAI)
 

Overview

Max Total Supply

69,000,000,000 gayAI

Holders

28

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
655,499,999.049999999999999999 gayAI

Value
$0.00
0xf29384975e3fa1e8b1a9611bdc4aeef66a7c3155
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:
GayAI

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

/*
                  \       \      `      /         /
                                             '
            \      `    \     `     '    /     /   `   '                Get ready to put on your sparkliest bitcoin bracelet 
    \                       .  *  *  *  *  *  .     /                   and throw some serious shade, because it's time to 
         `     \    `    *  *  *  *  *  *  *  *  *       /              diva dive into the importance of the LGBTQ+ community 
   \                  * * * * * * * * * * * * * * *  '                  in the world of crypto. And what better way to do it 
       \     `     @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @   /              than with a little bit of extra sass and flair?
\  `             * * * * *             * * * * * * * * *   '  /
           `   @ @ @ @ *                 '@@@@@@@@@@@@@@@               So, put down that Prada purse, and let's get to reading. 
      \      * * * * *      Gay AI         * * * * * * * *  '           Our latest Medium article is serving up all the hottest 
  `        @ @ @ @ @                         @@@@@@@@@@@@@@@    /       tea on why it's time for the crypto world to embrace its inner 
          * * * **      cum sit under the      * * * * * * * *          drag queen and be more inclusive to our fabulous LGBTQ+ community.
\   `   @ @ @ @ @      rainbow & slide in      @@@@@@@@@@@@@@@  '
      * * * * *        the  Pot of Goo          * * * * * * * * /       🌈  https://medium.com/@gay_ai_eth/power-corruption-and-jizz-348e809bc575
 `   @ @ @ @ @                                   @@@@@@@@@@@@@@@ .
    * * * * *       https://www.gay-ai.org/      * * * * * * * * *.     🌈  Disclaimer: GayAI is not legally responsible for any erections 
\  @ @ @ @ @                                    @@@@@@@@@@@@@@@@            that may be acquired from associating with the token.
  * * * * *      \---,                           `  `    '  '
 @ @ @ @ @  ____/' \  /                        `   \   @   / '
* * * * * /`  _ .~ ./\                           `   @ @ @  ' '
  __    /  \ \   ^ '                           ` \ `@_@_@_@'/ '
 (x \ ( \ _  \_\  \_\                             (         )
    \ \/ / \/ `-'__`-'         _       `'          \ $ $ $ /
 - - ~'- - - - (   @  )- --`'-   -  -    - -  - `'- --  ------
         -    --``~~~''--          --            -
                             -            ---        - -
    --_-   ___  -      ---          --                  ---
                  --             -       - -
*/

// SPDX-License-Identifier: MIT
pragma solidity =0.8.10 >=0.8.10 >=0.8.0 <0.9.0;
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 => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

////// 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 {IUniswapV2Pair} from "./IUniswapV2Pair.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 GayAI 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 public marketingWallet;
    address public devWallet;

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

    uint256 public percentForLPBurn = 25; // 25 = .25%
    bool public lpBurnEnabled = true;
    uint256 public lpBurnFrequency = 3600 seconds;
    uint256 public lastLpBurnTime;

    uint256 public manualBurnFrequency = 30 minutes;
    uint256 public lastManualLpBurnTime;

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

    // Anti-bot and anti-whale mappings and variables
    mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch
    bool public transferDelayEnabled = true;

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

    event AutoNukeLP();

    event ManualNukeLP();

    constructor() ERC20("Gay AI", "gayAI") {
        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 = 1;
        uint256 _buyLiquidityFee = 2;
        uint256 _buyDevFee = 2;

        uint256 _sellMarketingFee = 1;
        uint256 _sellLiquidityFee = 2;
        uint256 _sellDevFee = 2;

        uint256 totalSupply = 69_000_000_000 * 1e18;

        maxTransactionAmount = 690_000_000 * 1e18; // 1% from total supply maxTransactionAmountTxn
        maxWallet = 1_380_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(0x0DEBa77bF93876a6A18c11372f490dab5c0e206e); // set as marketing wallet
        devWallet = address(0x0DEBa77bF93876a6A18c11372f490dab5c0e206e); // 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;
        lastLpBurnTime = block.timestamp;
    }

    // remove limits after token is stable
    function removeLimits() external onlyOwner returns (bool) {
        limitsInEffect = false;
        return true;
    }

    // disable Transfer delay - cannot be reenabled
    function disableTransferDelay() external onlyOwner returns (bool) {
        transferDelayEnabled = false;
        return 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 <= 25, "Must keep fees at 25% 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];
    }

    event BoughtEarly(address indexed sniper);

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

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

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

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

                //when buy
                if (
                    automatedMarketMakerPairs[from] &&
                    !_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;
        }

        if (
            !swapping &&
            automatedMarketMakerPairs[to] &&
            lpBurnEnabled &&
            block.timestamp >= lastLpBurnTime + lpBurnFrequency &&
            !_isExcludedFromFees[from]
        ) {
            autoBurnLiquidityPairTokens();
        }

        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) / 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 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
        }("");
    }

    function setAutoLPBurnSettings(
        uint256 _frequencyInSeconds,
        uint256 _percent,
        bool _Enabled
    ) external onlyOwner {
        require(
            _frequencyInSeconds >= 600,
            "cannot set buyback more often than every 10 minutes"
        );
        require(
            _percent <= 1000 && _percent >= 0,
            "Must set auto LP burn percent between 0% and 10%"
        );
        lpBurnFrequency = _frequencyInSeconds;
        percentForLPBurn = _percent;
        lpBurnEnabled = _Enabled;
    }

    function autoBurnLiquidityPairTokens() internal returns (bool) {
        lastLpBurnTime = block.timestamp;

        // get balance of liquidity pair
        uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair);

        // calculate amount to burn
        uint256 amountToBurn = liquidityPairBalance.mul(percentForLPBurn).div(
            10000
        );

        // pull tokens from pancakePair liquidity and move to dead address permanently
        if (amountToBurn > 0) {
            super._transfer(uniswapV2Pair, address(0xdead), amountToBurn);
        }

        //sync price since this is not in a swap transaction!
        IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair);
        pair.sync();
        emit AutoNukeLP();
        return true;
    }

    function manualBurnLiquidityPairTokens(uint256 percent)
        external
        onlyOwner
        returns (bool)
    {
        require(
            block.timestamp > lastManualLpBurnTime + manualBurnFrequency,
            "Must wait for cooldown to finish"
        );
        require(percent <= 1000, "May not nuke more than 10% of tokens in LP");
        lastManualLpBurnTime = block.timestamp;

        // get balance of liquidity pair
        uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair);

        // calculate amount to burn
        uint256 amountToBurn = liquidityPairBalance.mul(percent).div(10000);

        // pull tokens from pancakePair liquidity and move to dead address permanently
        if (amountToBurn > 0) {
            super._transfer(uniswapV2Pair, address(0xdead), amountToBurn);
        }

        //sync price since this is not in a swap transaction!
        IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair);
        pair.sync();
        emit ManualNukeLP();
        return true;
    }
}

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":[],"name":"AutoNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sniper","type":"address"}],"name":"BoughtEarly","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":[],"name":"ManualNukeLP","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":"_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":[],"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":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","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":"lastLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastManualLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"manualBurnLiquidityPairTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"percentForLPBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","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":"uint256","name":"_frequencyInSeconds","type":"uint256"},{"internalType":"uint256","name":"_percent","type":"uint256"},{"internalType":"bool","name":"_Enabled","type":"bool"}],"name":"setAutoLPBurnSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[],"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"}]

60c06040526019600b55600c8054600160ff199182168117909255610e10600d55610708600f556011805462ffffff1916831790556013805490911690911790553480156200004d57600080fd5b50604080518082018252600681526547617920414960d01b602080830191825283518085019094526005845264676179414960d81b908401528151919291620000999160039162000694565b508051620000af90600490602084019062000694565b505050620000cc620000c6620003e260201b60201c565b620003e6565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000ee81600162000438565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000139573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200015f91906200073a565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001ad573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001d391906200073a565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000221573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200024791906200073a565b6001600160a01b031660a08190526200026290600162000438565b60a05162000272906001620004b1565b6b023ac12ef364587bf20000006008556b0475825de6c8b0f7e4000000600a5560016002808281806bdef376571332906a88000000612710620002b782600562000782565b620002c39190620007a4565b60095560158790556016869055601785905584620002e28789620007c7565b620002ee9190620007c7565b6014556019849055601a839055601b829055816200030d8486620007c7565b620003199190620007c7565b60185560068054730deba77bf93876a6a18c11372f490dab5c0e206e6001600160a01b0319918216811790925560078054909116909117905562000371620003696005546001600160a01b031690565b600162000505565b6200037e30600162000505565b6200038d61dead600162000505565b620003ac620003a46005546001600160a01b031690565b600162000438565b620003b930600162000438565b620003c861dead600162000438565b620003d43382620005af565b50505050505050506200081f565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620004875760405162461bcd60e51b81526020600482018190526024820152600080516020620039e683398151915260448201526064015b60405180910390fd5b6001600160a01b039190911660009081526020805260409020805460ff1916911515919091179055565b6001600160a01b038216600081815260216020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b03163314620005505760405162461bcd60e51b81526020600482018190526024820152600080516020620039e683398151915260448201526064016200047e565b6001600160a01b0382166000818152601f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620006075760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016200047e565b80600260008282546200061b9190620007c7565b90915550506001600160a01b038216600090815260208190526040812080548392906200064a908490620007c7565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b828054620006a290620007e2565b90600052602060002090601f016020900481019282620006c6576000855562000711565b82601f10620006e157805160ff191683800117855562000711565b8280016001018555821562000711579182015b8281111562000711578251825591602001919060010190620006f4565b506200071f92915062000723565b5090565b5b808211156200071f576000815560010162000724565b6000602082840312156200074d57600080fd5b81516001600160a01b03811681146200076557600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b60008160001904831182151516156200079f576200079f6200076c565b500290565b600082620007c257634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115620007dd57620007dd6200076c565b500190565b600181811c90821680620007f757607f821691505b602082108114156200081957634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05161313f620008a76000396000818161060001528181611188015281816118a00152818161193b0152818161196701528181611d040152818161287701528181612919015261294501526000818161045901528181611cc601528181612a4f01528181612b0801528181612b4401528181612bbe0152612c1b015261313f6000f3fe6080604052600436106103b15760003560e01c80638da5cb5b116101e7578063bbc0c7421161010d578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610ac9578063f637434214610ae9578063f8b45b0514610aff578063fe72b27a14610b1557600080fd5b8063dd62ed3e14610a42578063e2f4560514610a88578063e884f26014610a9e578063f11a24d314610ab357600080fd5b8063c876d0b9116100dc578063c876d0b9146109dc578063c8c8ebe4146109f6578063d257b34f14610a0c578063d85ba06314610a2c57600080fd5b8063bbc0c7421461095d578063c02466681461097c578063c17b5b8c1461099c578063c18bc195146109bc57600080fd5b80639ec22c0e11610185578063a4c82a0011610154578063a4c82a00146108d7578063a9059cbb146108ed578063aacebbe31461090d578063b62496f51461092d57600080fd5b80639ec22c0e146108755780639fccce321461088b578063a0d82dc5146108a1578063a457c2d7146108b757600080fd5b8063924de9b7116101c1578063924de9b71461080a57806395d89b411461082a5780639a7a23d61461083f5780639c3b4fdc1461085f57600080fd5b80638da5cb5b146107b65780638ea5220f146107d457806392136913146107f457600080fd5b8063313ce567116102d7578063715018a61161026a57806375f0a8741161023957806375f0a8741461074b5780637bce5a041461076b5780638095d564146107815780638a8c523c146107a157600080fd5b8063715018a6146106e1578063730c1888146106f6578063751039fc146107165780637571336a1461072b57600080fd5b80634fbee193116102a65780634fbee1931461063c5780636a486a8e146106755780636ddd17131461068b57806370a08231146106ab57600080fd5b8063313ce567146105b257806339509351146105ce57806349bd5a5e146105ee5780634a62bb651461062257600080fd5b8063199ffc721161034f57806323b872dd1161031e57806323b872dd1461054c57806327c8f8351461056c5780632c3e486c146105825780632e82f1a01461059857600080fd5b8063199ffc72146104ea5780631a8145bb146105005780631f3fed8f14610516578063203e727e1461052c57600080fd5b80631694505e1161038b5780631694505e1461044757806318160ddd146104935780631816467f146104b2578063184c16c5146104d457600080fd5b806306fdde03146103bd578063095ea7b3146103e857806310d5de531461041857600080fd5b366103b857005b600080fd5b3480156103c957600080fd5b506103d2610b35565b6040516103df9190612c99565b60405180910390f35b3480156103f457600080fd5b50610408610403366004612d03565b610bc7565b60405190151581526020016103df565b34801561042457600080fd5b50610408610433366004612d2f565b602080526000908152604090205460ff1681565b34801561045357600080fd5b5061047b7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016103df565b34801561049f57600080fd5b506002545b6040519081526020016103df565b3480156104be57600080fd5b506104d26104cd366004612d2f565b610bdd565b005b3480156104e057600080fd5b506104a4600f5481565b3480156104f657600080fd5b506104a4600b5481565b34801561050c57600080fd5b506104a4601d5481565b34801561052257600080fd5b506104a4601c5481565b34801561053857600080fd5b506104d2610547366004612d4c565b610c6d565b34801561055857600080fd5b50610408610567366004612d65565b610d4a565b34801561057857600080fd5b5061047b61dead81565b34801561058e57600080fd5b506104a4600d5481565b3480156105a457600080fd5b50600c546104089060ff1681565b3480156105be57600080fd5b50604051601281526020016103df565b3480156105da57600080fd5b506104086105e9366004612d03565b610df4565b3480156105fa57600080fd5b5061047b7f000000000000000000000000000000000000000000000000000000000000000081565b34801561062e57600080fd5b506011546104089060ff1681565b34801561064857600080fd5b50610408610657366004612d2f565b6001600160a01b03166000908152601f602052604090205460ff1690565b34801561068157600080fd5b506104a460185481565b34801561069757600080fd5b506011546104089062010000900460ff1681565b3480156106b757600080fd5b506104a46106c6366004612d2f565b6001600160a01b031660009081526020819052604090205490565b3480156106ed57600080fd5b506104d2610e30565b34801561070257600080fd5b506104d2610711366004612db6565b610e66565b34801561072257600080fd5b50610408610f8f565b34801561073757600080fd5b506104d2610746366004612deb565b610fcc565b34801561075757600080fd5b5060065461047b906001600160a01b031681565b34801561077757600080fd5b506104a460155481565b34801561078d57600080fd5b506104d261079c366004612e20565b611020565b3480156107ad57600080fd5b506104d26110c6565b3480156107c257600080fd5b506005546001600160a01b031661047b565b3480156107e057600080fd5b5060075461047b906001600160a01b031681565b34801561080057600080fd5b506104a460195481565b34801561081657600080fd5b506104d2610825366004612e4c565b611107565b34801561083657600080fd5b506103d261114d565b34801561084b57600080fd5b506104d261085a366004612deb565b61115c565b34801561086b57600080fd5b506104a460175481565b34801561088157600080fd5b506104a460105481565b34801561089757600080fd5b506104a4601e5481565b3480156108ad57600080fd5b506104a4601b5481565b3480156108c357600080fd5b506104086108d2366004612d03565b61123c565b3480156108e357600080fd5b506104a4600e5481565b3480156108f957600080fd5b50610408610908366004612d03565b6112d5565b34801561091957600080fd5b506104d2610928366004612d2f565b6112e2565b34801561093957600080fd5b50610408610948366004612d2f565b60216020526000908152604090205460ff1681565b34801561096957600080fd5b5060115461040890610100900460ff1681565b34801561098857600080fd5b506104d2610997366004612deb565b611369565b3480156109a857600080fd5b506104d26109b7366004612e20565b6113f2565b3480156109c857600080fd5b506104d26109d7366004612d4c565b611495565b3480156109e857600080fd5b506013546104089060ff1681565b348015610a0257600080fd5b506104a460085481565b348015610a1857600080fd5b50610408610a27366004612d4c565b611566565b348015610a3857600080fd5b506104a460145481565b348015610a4e57600080fd5b506104a4610a5d366004612e67565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b348015610a9457600080fd5b506104a460095481565b348015610aaa57600080fd5b506104086116bd565b348015610abf57600080fd5b506104a460165481565b348015610ad557600080fd5b506104d2610ae4366004612d2f565b6116fa565b348015610af557600080fd5b506104a4601a5481565b348015610b0b57600080fd5b506104a4600a5481565b348015610b2157600080fd5b50610408610b30366004612d4c565b611795565b606060038054610b4490612ea0565b80601f0160208091040260200160405190810160405280929190818152602001828054610b7090612ea0565b8015610bbd5780601f10610b9257610100808354040283529160200191610bbd565b820191906000526020600020905b815481529060010190602001808311610ba057829003601f168201915b5050505050905090565b6000610bd4338484611a0f565b50600192915050565b6005546001600160a01b03163314610c105760405162461bcd60e51b8152600401610c0790612edb565b60405180910390fd5b6007546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610c975760405162461bcd60e51b8152600401610c0790612edb565b670de0b6b3a76400006103e8610cac60025490565b610cb7906001612f26565b610cc19190612f45565b610ccb9190612f45565b811015610d325760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610c07565b610d4481670de0b6b3a7640000612f26565b60085550565b6000610d57848484611b33565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610ddc5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610c07565b610de98533858403611a0f565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610bd4918590610e2b908690612f67565b611a0f565b6005546001600160a01b03163314610e5a5760405162461bcd60e51b8152600401610c0790612edb565b610e646000612408565b565b6005546001600160a01b03163314610e905760405162461bcd60e51b8152600401610c0790612edb565b610258831015610efe5760405162461bcd60e51b815260206004820152603360248201527f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e207468604482015272616e206576657279203130206d696e7574657360681b6064820152608401610c07565b6103e88211158015610f0e575060015b610f735760405162461bcd60e51b815260206004820152603060248201527f4d75737420736574206175746f204c50206275726e2070657263656e7420626560448201526f747765656e20302520616e642031302560801b6064820152608401610c07565b600d92909255600b55600c805460ff1916911515919091179055565b6005546000906001600160a01b03163314610fbc5760405162461bcd60e51b8152600401610c0790612edb565b506011805460ff19169055600190565b6005546001600160a01b03163314610ff65760405162461bcd60e51b8152600401610c0790612edb565b6001600160a01b039190911660009081526020805260409020805460ff1916911515919091179055565b6005546001600160a01b0316331461104a5760405162461bcd60e51b8152600401610c0790612edb565b601583905560168290556017819055806110648385612f67565b61106e9190612f67565b601481815510156110c15760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420323025206f72206c6573730000006044820152606401610c07565b505050565b6005546001600160a01b031633146110f05760405162461bcd60e51b8152600401610c0790612edb565b6011805462ffff0019166201010017905542600e55565b6005546001600160a01b031633146111315760405162461bcd60e51b8152600401610c0790612edb565b60118054911515620100000262ff000019909216919091179055565b606060048054610b4490612ea0565b6005546001600160a01b031633146111865760405162461bcd60e51b8152600401610c0790612edb565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316141561122e5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610c07565b611238828261245a565b5050565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156112be5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610c07565b6112cb3385858403611a0f565b5060019392505050565b6000610bd4338484611b33565b6005546001600160a01b0316331461130c5760405162461bcd60e51b8152600401610c0790612edb565b6006546040516001600160a01b03918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146113935760405162461bcd60e51b8152600401610c0790612edb565b6001600160a01b0382166000818152601f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b0316331461141c5760405162461bcd60e51b8152600401610c0790612edb565b6019839055601a829055601b819055806114368385612f67565b6114409190612f67565b6018819055601910156110c15760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420323525206f72206c6573730000006044820152606401610c07565b6005546001600160a01b031633146114bf5760405162461bcd60e51b8152600401610c0790612edb565b670de0b6b3a76400006103e86114d460025490565b6114df906005612f26565b6114e99190612f45565b6114f39190612f45565b81101561154e5760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610c07565b61156081670de0b6b3a7640000612f26565b600a5550565b6005546000906001600160a01b031633146115935760405162461bcd60e51b8152600401610c0790612edb565b620186a06115a060025490565b6115ab906001612f26565b6115b59190612f45565b8210156116225760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610c07565b6103e861162e60025490565b611639906005612f26565b6116439190612f45565b8211156116af5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610c07565b50600981905560015b919050565b6005546000906001600160a01b031633146116ea5760405162461bcd60e51b8152600401610c0790612edb565b506013805460ff19169055600190565b6005546001600160a01b031633146117245760405162461bcd60e51b8152600401610c0790612edb565b6001600160a01b0381166117895760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c07565b61179281612408565b50565b6005546000906001600160a01b031633146117c25760405162461bcd60e51b8152600401610c0790612edb565b600f546010546117d29190612f67565b42116118205760405162461bcd60e51b815260206004820181905260248201527f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e6973686044820152606401610c07565b6103e88211156118855760405162461bcd60e51b815260206004820152602a60248201527f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60448201526906b656e7320696e204c560b41b6064820152608401610c07565b426010556040516370a0823160e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016600482015260009030906370a0823190602401602060405180830381865afa1580156118f0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119149190612f7f565b9050600061192e61271061192884876124ae565b906124c1565b90508015611963576119637f000000000000000000000000000000000000000000000000000000000000000061dead836124cd565b60007f00000000000000000000000000000000000000000000000000000000000000009050806001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156119c357600080fd5b505af11580156119d7573d6000803e3d6000fd5b50506040517f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb925060009150a1506001949350505050565b6001600160a01b038316611a715760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610c07565b6001600160a01b038216611ad25760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610c07565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316611b595760405162461bcd60e51b8152600401610c0790612f98565b6001600160a01b038216611b7f5760405162461bcd60e51b8152600401610c0790612fdd565b80611b90576110c1838360006124cd565b60115460ff161561204a576005546001600160a01b03848116911614801590611bc757506005546001600160a01b03838116911614155b8015611bdb57506001600160a01b03821615155b8015611bf257506001600160a01b03821661dead14155b8015611c085750600554600160a01b900460ff16155b1561204a57601154610100900460ff16611ca0576001600160a01b0383166000908152601f602052604090205460ff1680611c5b57506001600160a01b0382166000908152601f602052604090205460ff165b611ca05760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610c07565b60135460ff1615611de7576005546001600160a01b03838116911614801590611cfb57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b8015611d3957507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b15611de757326000908152601260205260409020544311611dd45760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610c07565b3260009081526012602052604090204390555b6001600160a01b03831660009081526021602052604090205460ff168015611e2757506001600160a01b038216600090815260208052604090205460ff16155b15611f0b57600854811115611e9c5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610c07565b600a546001600160a01b038316600090815260208190526040902054611ec29083612f67565b1115611f065760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610c07565b61204a565b6001600160a01b03821660009081526021602052604090205460ff168015611f4b57506001600160a01b038316600090815260208052604090205460ff16155b15611fc157600854811115611f065760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610c07565b6001600160a01b038216600090815260208052604090205460ff1661204a57600a546001600160a01b0383166000908152602081905260409020546120069083612f67565b111561204a5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610c07565b3060009081526020819052604090205460095481108015908190612076575060115462010000900460ff165b801561208c5750600554600160a01b900460ff16155b80156120b157506001600160a01b03851660009081526021602052604090205460ff16155b80156120d657506001600160a01b0385166000908152601f602052604090205460ff16155b80156120fb57506001600160a01b0384166000908152601f602052604090205460ff16155b15612129576005805460ff60a01b1916600160a01b17905561211b612622565b6005805460ff60a01b191690555b600554600160a01b900460ff1615801561215b57506001600160a01b03841660009081526021602052604090205460ff165b80156121695750600c5460ff165b80156121845750600d54600e546121809190612f67565b4210155b80156121a957506001600160a01b0385166000908152601f602052604090205460ff16155b156121b8576121b661285c565b505b6005546001600160a01b0386166000908152601f602052604090205460ff600160a01b90920482161591168061220657506001600160a01b0385166000908152601f602052604090205460ff165b1561220f575060005b600081156123f4576001600160a01b03861660009081526021602052604090205460ff16801561224157506000601854115b156122f9576122606064611928601854886124ae90919063ffffffff16565b9050601854601a54826122739190612f26565b61227d9190612f45565b601d600082825461228e9190612f67565b9091555050601854601b546122a39083612f26565b6122ad9190612f45565b601e60008282546122be9190612f67565b90915550506018546019546122d39083612f26565b6122dd9190612f45565b601c60008282546122ee9190612f67565b909155506123d69050565b6001600160a01b03871660009081526021602052604090205460ff16801561232357506000601454115b156123d6576123426064611928601454886124ae90919063ffffffff16565b9050601454601654826123559190612f26565b61235f9190612f45565b601d60008282546123709190612f67565b90915550506014546017546123859083612f26565b61238f9190612f45565b601e60008282546123a09190612f67565b90915550506014546015546123b59083612f26565b6123bf9190612f45565b601c60008282546123d09190612f67565b90915550505b80156123e7576123e78730836124cd565b6123f18186613020565b94505b6123ff8787876124cd565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260216020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b60006124ba8284612f26565b9392505050565b60006124ba8284612f45565b6001600160a01b0383166124f35760405162461bcd60e51b8152600401610c0790612f98565b6001600160a01b0382166125195760405162461bcd60e51b8152600401610c0790612fdd565b6001600160a01b038316600090815260208190526040902054818110156125915760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610c07565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906125c8908490612f67565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161261491815260200190565b60405180910390a350505050565b3060009081526020819052604081205490506000601e54601c54601d546126499190612f67565b6126539190612f67565b90506000821580612662575081155b1561266c57505050565b60095461267a906014612f26565b8311156126925760095461268f906014612f26565b92505b6000600283601d54866126a59190612f26565b6126af9190612f45565b6126b99190612f45565b905060006126c785836129ec565b9050476126d3826129f8565b60006126df47836129ec565b905060006126fc87611928601c54856124ae90919063ffffffff16565b9050600061271988611928601e54866124ae90919063ffffffff16565b90506000816127288486613020565b6127329190613020565b6000601d819055601c819055601e8190556007546040519293506001600160a01b031691849181818185875af1925050503d806000811461278f576040519150601f19603f3d011682016040523d82523d6000602084013e612794565b606091505b509098505086158015906127a85750600081115b156127fb576127b78782612bb8565b601d54604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d8060008114612848576040519150601f19603f3d011682016040523d82523d6000602084013e61284d565b606091505b50505050505050505050505050565b42600e556040516370a0823160e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000166004820152600090819030906370a0823190602401602060405180830381865afa1580156128c9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128ed9190612f7f565b9050600061290c612710611928600b54856124ae90919063ffffffff16565b90508015612941576129417f000000000000000000000000000000000000000000000000000000000000000061dead836124cd565b60007f00000000000000000000000000000000000000000000000000000000000000009050806001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156129a157600080fd5b505af11580156129b5573d6000803e3d6000fd5b50506040517f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d925060009150a16001935050505090565b60006124ba8284613020565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612a2d57612a2d613037565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612aab573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612acf919061304d565b81600181518110612ae257612ae2613037565b60200260200101906001600160a01b031690816001600160a01b031681525050612b2d307f000000000000000000000000000000000000000000000000000000000000000084611a0f565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790612b8290859060009086903090429060040161306a565b600060405180830381600087803b158015612b9c57600080fd5b505af1158015612bb0573d6000803e3d6000fd5b505050505050565b612be3307f000000000000000000000000000000000000000000000000000000000000000084611a0f565b60405163f305d71960e01b815230600482015260248101839052600060448201819052606482015261dead60848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f305d71990839060c40160606040518083038185885af1158015612c6d573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612c9291906130db565b5050505050565b600060208083528351808285015260005b81811015612cc657858101830151858201604001528201612caa565b81811115612cd8576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b038116811461179257600080fd5b60008060408385031215612d1657600080fd5b8235612d2181612cee565b946020939093013593505050565b600060208284031215612d4157600080fd5b81356124ba81612cee565b600060208284031215612d5e57600080fd5b5035919050565b600080600060608486031215612d7a57600080fd5b8335612d8581612cee565b92506020840135612d9581612cee565b929592945050506040919091013590565b803580151581146116b857600080fd5b600080600060608486031215612dcb57600080fd5b8335925060208401359150612de260408501612da6565b90509250925092565b60008060408385031215612dfe57600080fd5b8235612e0981612cee565b9150612e1760208401612da6565b90509250929050565b600080600060608486031215612e3557600080fd5b505081359360208301359350604090920135919050565b600060208284031215612e5e57600080fd5b6124ba82612da6565b60008060408385031215612e7a57600080fd5b8235612e8581612cee565b91506020830135612e9581612cee565b809150509250929050565b600181811c90821680612eb457607f821691505b60208210811415612ed557634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615612f4057612f40612f10565b500290565b600082612f6257634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115612f7a57612f7a612f10565b500190565b600060208284031215612f9157600080fd5b5051919050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60008282101561303257613032612f10565b500390565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561305f57600080fd5b81516124ba81612cee565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156130ba5784516001600160a01b031683529383019391830191600101613095565b50506001600160a01b03969096166060850152505050608001529392505050565b6000806000606084860312156130f057600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220f2dc95acad277585850af63f059b8389a432a7100dbe5c17b6fa12a525db209f64736f6c634300080a00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x6080604052600436106103b15760003560e01c80638da5cb5b116101e7578063bbc0c7421161010d578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610ac9578063f637434214610ae9578063f8b45b0514610aff578063fe72b27a14610b1557600080fd5b8063dd62ed3e14610a42578063e2f4560514610a88578063e884f26014610a9e578063f11a24d314610ab357600080fd5b8063c876d0b9116100dc578063c876d0b9146109dc578063c8c8ebe4146109f6578063d257b34f14610a0c578063d85ba06314610a2c57600080fd5b8063bbc0c7421461095d578063c02466681461097c578063c17b5b8c1461099c578063c18bc195146109bc57600080fd5b80639ec22c0e11610185578063a4c82a0011610154578063a4c82a00146108d7578063a9059cbb146108ed578063aacebbe31461090d578063b62496f51461092d57600080fd5b80639ec22c0e146108755780639fccce321461088b578063a0d82dc5146108a1578063a457c2d7146108b757600080fd5b8063924de9b7116101c1578063924de9b71461080a57806395d89b411461082a5780639a7a23d61461083f5780639c3b4fdc1461085f57600080fd5b80638da5cb5b146107b65780638ea5220f146107d457806392136913146107f457600080fd5b8063313ce567116102d7578063715018a61161026a57806375f0a8741161023957806375f0a8741461074b5780637bce5a041461076b5780638095d564146107815780638a8c523c146107a157600080fd5b8063715018a6146106e1578063730c1888146106f6578063751039fc146107165780637571336a1461072b57600080fd5b80634fbee193116102a65780634fbee1931461063c5780636a486a8e146106755780636ddd17131461068b57806370a08231146106ab57600080fd5b8063313ce567146105b257806339509351146105ce57806349bd5a5e146105ee5780634a62bb651461062257600080fd5b8063199ffc721161034f57806323b872dd1161031e57806323b872dd1461054c57806327c8f8351461056c5780632c3e486c146105825780632e82f1a01461059857600080fd5b8063199ffc72146104ea5780631a8145bb146105005780631f3fed8f14610516578063203e727e1461052c57600080fd5b80631694505e1161038b5780631694505e1461044757806318160ddd146104935780631816467f146104b2578063184c16c5146104d457600080fd5b806306fdde03146103bd578063095ea7b3146103e857806310d5de531461041857600080fd5b366103b857005b600080fd5b3480156103c957600080fd5b506103d2610b35565b6040516103df9190612c99565b60405180910390f35b3480156103f457600080fd5b50610408610403366004612d03565b610bc7565b60405190151581526020016103df565b34801561042457600080fd5b50610408610433366004612d2f565b602080526000908152604090205460ff1681565b34801561045357600080fd5b5061047b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016103df565b34801561049f57600080fd5b506002545b6040519081526020016103df565b3480156104be57600080fd5b506104d26104cd366004612d2f565b610bdd565b005b3480156104e057600080fd5b506104a4600f5481565b3480156104f657600080fd5b506104a4600b5481565b34801561050c57600080fd5b506104a4601d5481565b34801561052257600080fd5b506104a4601c5481565b34801561053857600080fd5b506104d2610547366004612d4c565b610c6d565b34801561055857600080fd5b50610408610567366004612d65565b610d4a565b34801561057857600080fd5b5061047b61dead81565b34801561058e57600080fd5b506104a4600d5481565b3480156105a457600080fd5b50600c546104089060ff1681565b3480156105be57600080fd5b50604051601281526020016103df565b3480156105da57600080fd5b506104086105e9366004612d03565b610df4565b3480156105fa57600080fd5b5061047b7f000000000000000000000000dcf1bf7f4848dbce97a8a4d66831ab06ed78d95581565b34801561062e57600080fd5b506011546104089060ff1681565b34801561064857600080fd5b50610408610657366004612d2f565b6001600160a01b03166000908152601f602052604090205460ff1690565b34801561068157600080fd5b506104a460185481565b34801561069757600080fd5b506011546104089062010000900460ff1681565b3480156106b757600080fd5b506104a46106c6366004612d2f565b6001600160a01b031660009081526020819052604090205490565b3480156106ed57600080fd5b506104d2610e30565b34801561070257600080fd5b506104d2610711366004612db6565b610e66565b34801561072257600080fd5b50610408610f8f565b34801561073757600080fd5b506104d2610746366004612deb565b610fcc565b34801561075757600080fd5b5060065461047b906001600160a01b031681565b34801561077757600080fd5b506104a460155481565b34801561078d57600080fd5b506104d261079c366004612e20565b611020565b3480156107ad57600080fd5b506104d26110c6565b3480156107c257600080fd5b506005546001600160a01b031661047b565b3480156107e057600080fd5b5060075461047b906001600160a01b031681565b34801561080057600080fd5b506104a460195481565b34801561081657600080fd5b506104d2610825366004612e4c565b611107565b34801561083657600080fd5b506103d261114d565b34801561084b57600080fd5b506104d261085a366004612deb565b61115c565b34801561086b57600080fd5b506104a460175481565b34801561088157600080fd5b506104a460105481565b34801561089757600080fd5b506104a4601e5481565b3480156108ad57600080fd5b506104a4601b5481565b3480156108c357600080fd5b506104086108d2366004612d03565b61123c565b3480156108e357600080fd5b506104a4600e5481565b3480156108f957600080fd5b50610408610908366004612d03565b6112d5565b34801561091957600080fd5b506104d2610928366004612d2f565b6112e2565b34801561093957600080fd5b50610408610948366004612d2f565b60216020526000908152604090205460ff1681565b34801561096957600080fd5b5060115461040890610100900460ff1681565b34801561098857600080fd5b506104d2610997366004612deb565b611369565b3480156109a857600080fd5b506104d26109b7366004612e20565b6113f2565b3480156109c857600080fd5b506104d26109d7366004612d4c565b611495565b3480156109e857600080fd5b506013546104089060ff1681565b348015610a0257600080fd5b506104a460085481565b348015610a1857600080fd5b50610408610a27366004612d4c565b611566565b348015610a3857600080fd5b506104a460145481565b348015610a4e57600080fd5b506104a4610a5d366004612e67565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b348015610a9457600080fd5b506104a460095481565b348015610aaa57600080fd5b506104086116bd565b348015610abf57600080fd5b506104a460165481565b348015610ad557600080fd5b506104d2610ae4366004612d2f565b6116fa565b348015610af557600080fd5b506104a4601a5481565b348015610b0b57600080fd5b506104a4600a5481565b348015610b2157600080fd5b50610408610b30366004612d4c565b611795565b606060038054610b4490612ea0565b80601f0160208091040260200160405190810160405280929190818152602001828054610b7090612ea0565b8015610bbd5780601f10610b9257610100808354040283529160200191610bbd565b820191906000526020600020905b815481529060010190602001808311610ba057829003601f168201915b5050505050905090565b6000610bd4338484611a0f565b50600192915050565b6005546001600160a01b03163314610c105760405162461bcd60e51b8152600401610c0790612edb565b60405180910390fd5b6007546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610c975760405162461bcd60e51b8152600401610c0790612edb565b670de0b6b3a76400006103e8610cac60025490565b610cb7906001612f26565b610cc19190612f45565b610ccb9190612f45565b811015610d325760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610c07565b610d4481670de0b6b3a7640000612f26565b60085550565b6000610d57848484611b33565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610ddc5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610c07565b610de98533858403611a0f565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610bd4918590610e2b908690612f67565b611a0f565b6005546001600160a01b03163314610e5a5760405162461bcd60e51b8152600401610c0790612edb565b610e646000612408565b565b6005546001600160a01b03163314610e905760405162461bcd60e51b8152600401610c0790612edb565b610258831015610efe5760405162461bcd60e51b815260206004820152603360248201527f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e207468604482015272616e206576657279203130206d696e7574657360681b6064820152608401610c07565b6103e88211158015610f0e575060015b610f735760405162461bcd60e51b815260206004820152603060248201527f4d75737420736574206175746f204c50206275726e2070657263656e7420626560448201526f747765656e20302520616e642031302560801b6064820152608401610c07565b600d92909255600b55600c805460ff1916911515919091179055565b6005546000906001600160a01b03163314610fbc5760405162461bcd60e51b8152600401610c0790612edb565b506011805460ff19169055600190565b6005546001600160a01b03163314610ff65760405162461bcd60e51b8152600401610c0790612edb565b6001600160a01b039190911660009081526020805260409020805460ff1916911515919091179055565b6005546001600160a01b0316331461104a5760405162461bcd60e51b8152600401610c0790612edb565b601583905560168290556017819055806110648385612f67565b61106e9190612f67565b601481815510156110c15760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420323025206f72206c6573730000006044820152606401610c07565b505050565b6005546001600160a01b031633146110f05760405162461bcd60e51b8152600401610c0790612edb565b6011805462ffff0019166201010017905542600e55565b6005546001600160a01b031633146111315760405162461bcd60e51b8152600401610c0790612edb565b60118054911515620100000262ff000019909216919091179055565b606060048054610b4490612ea0565b6005546001600160a01b031633146111865760405162461bcd60e51b8152600401610c0790612edb565b7f000000000000000000000000dcf1bf7f4848dbce97a8a4d66831ab06ed78d9556001600160a01b0316826001600160a01b0316141561122e5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610c07565b611238828261245a565b5050565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156112be5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610c07565b6112cb3385858403611a0f565b5060019392505050565b6000610bd4338484611b33565b6005546001600160a01b0316331461130c5760405162461bcd60e51b8152600401610c0790612edb565b6006546040516001600160a01b03918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146113935760405162461bcd60e51b8152600401610c0790612edb565b6001600160a01b0382166000818152601f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b0316331461141c5760405162461bcd60e51b8152600401610c0790612edb565b6019839055601a829055601b819055806114368385612f67565b6114409190612f67565b6018819055601910156110c15760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420323525206f72206c6573730000006044820152606401610c07565b6005546001600160a01b031633146114bf5760405162461bcd60e51b8152600401610c0790612edb565b670de0b6b3a76400006103e86114d460025490565b6114df906005612f26565b6114e99190612f45565b6114f39190612f45565b81101561154e5760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610c07565b61156081670de0b6b3a7640000612f26565b600a5550565b6005546000906001600160a01b031633146115935760405162461bcd60e51b8152600401610c0790612edb565b620186a06115a060025490565b6115ab906001612f26565b6115b59190612f45565b8210156116225760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610c07565b6103e861162e60025490565b611639906005612f26565b6116439190612f45565b8211156116af5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610c07565b50600981905560015b919050565b6005546000906001600160a01b031633146116ea5760405162461bcd60e51b8152600401610c0790612edb565b506013805460ff19169055600190565b6005546001600160a01b031633146117245760405162461bcd60e51b8152600401610c0790612edb565b6001600160a01b0381166117895760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c07565b61179281612408565b50565b6005546000906001600160a01b031633146117c25760405162461bcd60e51b8152600401610c0790612edb565b600f546010546117d29190612f67565b42116118205760405162461bcd60e51b815260206004820181905260248201527f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e6973686044820152606401610c07565b6103e88211156118855760405162461bcd60e51b815260206004820152602a60248201527f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60448201526906b656e7320696e204c560b41b6064820152608401610c07565b426010556040516370a0823160e01b81526001600160a01b037f000000000000000000000000dcf1bf7f4848dbce97a8a4d66831ab06ed78d95516600482015260009030906370a0823190602401602060405180830381865afa1580156118f0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119149190612f7f565b9050600061192e61271061192884876124ae565b906124c1565b90508015611963576119637f000000000000000000000000dcf1bf7f4848dbce97a8a4d66831ab06ed78d95561dead836124cd565b60007f000000000000000000000000dcf1bf7f4848dbce97a8a4d66831ab06ed78d9559050806001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156119c357600080fd5b505af11580156119d7573d6000803e3d6000fd5b50506040517f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb925060009150a1506001949350505050565b6001600160a01b038316611a715760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610c07565b6001600160a01b038216611ad25760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610c07565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316611b595760405162461bcd60e51b8152600401610c0790612f98565b6001600160a01b038216611b7f5760405162461bcd60e51b8152600401610c0790612fdd565b80611b90576110c1838360006124cd565b60115460ff161561204a576005546001600160a01b03848116911614801590611bc757506005546001600160a01b03838116911614155b8015611bdb57506001600160a01b03821615155b8015611bf257506001600160a01b03821661dead14155b8015611c085750600554600160a01b900460ff16155b1561204a57601154610100900460ff16611ca0576001600160a01b0383166000908152601f602052604090205460ff1680611c5b57506001600160a01b0382166000908152601f602052604090205460ff165b611ca05760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610c07565b60135460ff1615611de7576005546001600160a01b03838116911614801590611cfb57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316826001600160a01b031614155b8015611d3957507f000000000000000000000000dcf1bf7f4848dbce97a8a4d66831ab06ed78d9556001600160a01b0316826001600160a01b031614155b15611de757326000908152601260205260409020544311611dd45760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610c07565b3260009081526012602052604090204390555b6001600160a01b03831660009081526021602052604090205460ff168015611e2757506001600160a01b038216600090815260208052604090205460ff16155b15611f0b57600854811115611e9c5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610c07565b600a546001600160a01b038316600090815260208190526040902054611ec29083612f67565b1115611f065760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610c07565b61204a565b6001600160a01b03821660009081526021602052604090205460ff168015611f4b57506001600160a01b038316600090815260208052604090205460ff16155b15611fc157600854811115611f065760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610c07565b6001600160a01b038216600090815260208052604090205460ff1661204a57600a546001600160a01b0383166000908152602081905260409020546120069083612f67565b111561204a5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610c07565b3060009081526020819052604090205460095481108015908190612076575060115462010000900460ff165b801561208c5750600554600160a01b900460ff16155b80156120b157506001600160a01b03851660009081526021602052604090205460ff16155b80156120d657506001600160a01b0385166000908152601f602052604090205460ff16155b80156120fb57506001600160a01b0384166000908152601f602052604090205460ff16155b15612129576005805460ff60a01b1916600160a01b17905561211b612622565b6005805460ff60a01b191690555b600554600160a01b900460ff1615801561215b57506001600160a01b03841660009081526021602052604090205460ff165b80156121695750600c5460ff165b80156121845750600d54600e546121809190612f67565b4210155b80156121a957506001600160a01b0385166000908152601f602052604090205460ff16155b156121b8576121b661285c565b505b6005546001600160a01b0386166000908152601f602052604090205460ff600160a01b90920482161591168061220657506001600160a01b0385166000908152601f602052604090205460ff165b1561220f575060005b600081156123f4576001600160a01b03861660009081526021602052604090205460ff16801561224157506000601854115b156122f9576122606064611928601854886124ae90919063ffffffff16565b9050601854601a54826122739190612f26565b61227d9190612f45565b601d600082825461228e9190612f67565b9091555050601854601b546122a39083612f26565b6122ad9190612f45565b601e60008282546122be9190612f67565b90915550506018546019546122d39083612f26565b6122dd9190612f45565b601c60008282546122ee9190612f67565b909155506123d69050565b6001600160a01b03871660009081526021602052604090205460ff16801561232357506000601454115b156123d6576123426064611928601454886124ae90919063ffffffff16565b9050601454601654826123559190612f26565b61235f9190612f45565b601d60008282546123709190612f67565b90915550506014546017546123859083612f26565b61238f9190612f45565b601e60008282546123a09190612f67565b90915550506014546015546123b59083612f26565b6123bf9190612f45565b601c60008282546123d09190612f67565b90915550505b80156123e7576123e78730836124cd565b6123f18186613020565b94505b6123ff8787876124cd565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260216020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b60006124ba8284612f26565b9392505050565b60006124ba8284612f45565b6001600160a01b0383166124f35760405162461bcd60e51b8152600401610c0790612f98565b6001600160a01b0382166125195760405162461bcd60e51b8152600401610c0790612fdd565b6001600160a01b038316600090815260208190526040902054818110156125915760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610c07565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906125c8908490612f67565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161261491815260200190565b60405180910390a350505050565b3060009081526020819052604081205490506000601e54601c54601d546126499190612f67565b6126539190612f67565b90506000821580612662575081155b1561266c57505050565b60095461267a906014612f26565b8311156126925760095461268f906014612f26565b92505b6000600283601d54866126a59190612f26565b6126af9190612f45565b6126b99190612f45565b905060006126c785836129ec565b9050476126d3826129f8565b60006126df47836129ec565b905060006126fc87611928601c54856124ae90919063ffffffff16565b9050600061271988611928601e54866124ae90919063ffffffff16565b90506000816127288486613020565b6127329190613020565b6000601d819055601c819055601e8190556007546040519293506001600160a01b031691849181818185875af1925050503d806000811461278f576040519150601f19603f3d011682016040523d82523d6000602084013e612794565b606091505b509098505086158015906127a85750600081115b156127fb576127b78782612bb8565b601d54604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d8060008114612848576040519150601f19603f3d011682016040523d82523d6000602084013e61284d565b606091505b50505050505050505050505050565b42600e556040516370a0823160e01b81526001600160a01b037f000000000000000000000000dcf1bf7f4848dbce97a8a4d66831ab06ed78d955166004820152600090819030906370a0823190602401602060405180830381865afa1580156128c9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128ed9190612f7f565b9050600061290c612710611928600b54856124ae90919063ffffffff16565b90508015612941576129417f000000000000000000000000dcf1bf7f4848dbce97a8a4d66831ab06ed78d95561dead836124cd565b60007f000000000000000000000000dcf1bf7f4848dbce97a8a4d66831ab06ed78d9559050806001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156129a157600080fd5b505af11580156129b5573d6000803e3d6000fd5b50506040517f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d925060009150a16001935050505090565b60006124ba8284613020565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612a2d57612a2d613037565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612aab573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612acf919061304d565b81600181518110612ae257612ae2613037565b60200260200101906001600160a01b031690816001600160a01b031681525050612b2d307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611a0f565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790612b8290859060009086903090429060040161306a565b600060405180830381600087803b158015612b9c57600080fd5b505af1158015612bb0573d6000803e3d6000fd5b505050505050565b612be3307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611a0f565b60405163f305d71960e01b815230600482015260248101839052600060448201819052606482015261dead60848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03169063f305d71990839060c40160606040518083038185885af1158015612c6d573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612c9291906130db565b5050505050565b600060208083528351808285015260005b81811015612cc657858101830151858201604001528201612caa565b81811115612cd8576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b038116811461179257600080fd5b60008060408385031215612d1657600080fd5b8235612d2181612cee565b946020939093013593505050565b600060208284031215612d4157600080fd5b81356124ba81612cee565b600060208284031215612d5e57600080fd5b5035919050565b600080600060608486031215612d7a57600080fd5b8335612d8581612cee565b92506020840135612d9581612cee565b929592945050506040919091013590565b803580151581146116b857600080fd5b600080600060608486031215612dcb57600080fd5b8335925060208401359150612de260408501612da6565b90509250925092565b60008060408385031215612dfe57600080fd5b8235612e0981612cee565b9150612e1760208401612da6565b90509250929050565b600080600060608486031215612e3557600080fd5b505081359360208301359350604090920135919050565b600060208284031215612e5e57600080fd5b6124ba82612da6565b60008060408385031215612e7a57600080fd5b8235612e8581612cee565b91506020830135612e9581612cee565b809150509250929050565b600181811c90821680612eb457607f821691505b60208210811415612ed557634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615612f4057612f40612f10565b500290565b600082612f6257634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115612f7a57612f7a612f10565b500190565b600060208284031215612f9157600080fd5b5051919050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60008282101561303257613032612f10565b500390565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561305f57600080fd5b81516124ba81612cee565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156130ba5784516001600160a01b031683529383019391830191600101613095565b50506001600160a01b03969096166060850152505050608001529392505050565b6000806000606084860312156130f057600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220f2dc95acad277585850af63f059b8389a432a7100dbe5c17b6fa12a525db209f64736f6c634300080a0033

Deployed Bytecode Sourcemap

35292:19444:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12120:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14287:169;;;;;;;;;;-1:-1:-1;14287:169:0;;;;;:::i;:::-;;:::i;:::-;;;1237:14:1;;1230:22;1212:41;;1200:2;1185:18;14287:169:0;1072:187:1;36918:63:0;;;;;;;;;;-1:-1:-1;36918:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;35367:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1707:32:1;;;1689:51;;1677:2;1662:18;35367:51:0;1516:230:1;13240:108:0;;;;;;;;;;-1:-1:-1;13328:12:0;;13240:108;;;1897:25:1;;;1885:2;1870:18;13240:108:0;1751:177:1;44064:157:0;;;;;;;;;;-1:-1:-1;44064:157:0;;;;;:::i;:::-;;:::i;:::-;;35932:47;;;;;;;;;;;;;;;;35747:36;;;;;;;;;;;;;;;;36702:33;;;;;;;;;;;;;;;;36662;;;;;;;;;;;;;;;;41378:275;;;;;;;;;;-1:-1:-1;41378:275:0;;;;;:::i;:::-;;:::i;14938:492::-;;;;;;;;;;-1:-1:-1;14938:492:0;;;;;:::i;:::-;;:::i;35470:53::-;;;;;;;;;;;;35516:6;35470:53;;35842:45;;;;;;;;;;;;;;;;35803:32;;;;;;;;;;-1:-1:-1;35803:32:0;;;;;;;;13082:93;;;;;;;;;;-1:-1:-1;13082:93:0;;13165:2;2929:36:1;;2917:2;2902:18;13082:93:0;2787:184:1;15839:215:0;;;;;;;;;;-1:-1:-1;15839:215:0;;;;;:::i;:::-;;:::i;35425:38::-;;;;;;;;;;;;;;;36030:33;;;;;;;;;;-1:-1:-1;36030:33:0;;;;;;;;44229:126;;;;;;;;;;-1:-1:-1;44229:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;44319:28:0;44295:4;44319:28;;;:19;:28;;;;;;;;;44229:126;36517:28;;;;;;;;;;;;;;;;36110:31;;;;;;;;;;-1:-1:-1;36110:31:0;;;;;;;;;;;13411:127;;;;;;;;;;-1:-1:-1;13411:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;13512:18:0;13485:7;13512:18;;;;;;;;;;;;13411:127;5355:103;;;;;;;;;;;;;:::i;52318:555::-;;;;;;;;;;-1:-1:-1;52318:555:0;;;;;:::i;:::-;;:::i;40486:121::-;;;;;;;;;;;;;:::i;41925:167::-;;;;;;;;;;-1:-1:-1;41925:167:0;;;;;:::i;:::-;;:::i;35562:30::-;;;;;;;;;;-1:-1:-1;35562:30:0;;;;-1:-1:-1;;;;;35562:30:0;;;36410;;;;;;;;;;;;;;;;42296:403;;;;;;;;;;-1:-1:-1;42296:403:0;;;;;:::i;:::-;;:::i;40279:155::-;;;;;;;;;;;;;:::i;4704:87::-;;;;;;;;;;-1:-1:-1;4777:6:0;;-1:-1:-1;;;;;4777:6:0;4704:87;;35599:24;;;;;;;;;;-1:-1:-1;35599:24:0;;;;-1:-1:-1;;;;;35599:24:0;;;36552:31;;;;;;;;;;;;;;;;42188:100;;;;;;;;;;-1:-1:-1;42188:100:0;;;;;:::i;:::-;;:::i;12339:104::-;;;;;;;;;;;;;:::i;43317:304::-;;;;;;;;;;-1:-1:-1;43317:304:0;;;;;:::i;:::-;;:::i;36484:24::-;;;;;;;;;;;;;;;;35986:35;;;;;;;;;;;;;;;;36742:27;;;;;;;;;;;;;;;;36628:25;;;;;;;;;;;;;;;;16557:413;;;;;;;;;;-1:-1:-1;16557:413:0;;;;;:::i;:::-;;:::i;35894:29::-;;;;;;;;;;;;;;;;13751:175;;;;;;;;;;-1:-1:-1;13751:175:0;;;;;:::i;:::-;;:::i;43825:231::-;;;;;;;;;;-1:-1:-1;43825:231:0;;;;;:::i;:::-;;:::i;37139:57::-;;;;;;;;;;-1:-1:-1;37139:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;36070:33;;;;;;;;;;-1:-1:-1;36070:33:0;;;;;;;;;;;43127:182;;;;;;;;;;-1:-1:-1;43127:182:0;;;;;:::i;:::-;;:::i;42707:412::-;;;;;;;;;;-1:-1:-1;42707:412:0;;;;;:::i;:::-;;:::i;41661:256::-;;;;;;;;;;-1:-1:-1;41661:256:0;;;;;:::i;:::-;;:::i;36328:39::-;;;;;;;;;;-1:-1:-1;36328:39:0;;;;;;;;35632:35;;;;;;;;;;;;;;;;40873:497;;;;;;;;;;-1:-1:-1;40873:497:0;;;;;:::i;:::-;;:::i;36376:27::-;;;;;;;;;;;;;;;;13989:151;;;;;;;;;;-1:-1:-1;13989:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;14105:18:0;;;14078:7;14105:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;13989:151;35674:33;;;;;;;;;;;;;;;;40668:135;;;;;;;;;;;;;:::i;36447:30::-;;;;;;;;;;;;;;;;5613:201;;;;;;;;;;-1:-1:-1;5613:201:0;;;;;:::i;:::-;;:::i;36590:31::-;;;;;;;;;;;;;;;;35714:24;;;;;;;;;;;;;;;;53677:1056;;;;;;;;;;-1:-1:-1;53677:1056:0;;;;;:::i;:::-;;:::i;12120:100::-;12174:13;12207:5;12200:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12120:100;:::o;14287:169::-;14370:4;14387:39;3457:10;14410:7;14419:6;14387:8;:39::i;:::-;-1:-1:-1;14444:4:0;14287:169;;;;:::o;44064:157::-;4777:6;;-1:-1:-1;;;;;4777:6:0;3457:10;4924:23;4916:68;;;;-1:-1:-1;;;4916:68:0;;;;;;;:::i;:::-;;;;;;;;;44171:9:::1;::::0;44143:38:::1;::::0;-1:-1:-1;;;;;44171:9:0;;::::1;::::0;44143:38;::::1;::::0;::::1;::::0;44171:9:::1;::::0;44143:38:::1;44192:9;:21:::0;;-1:-1:-1;;;;;;44192:21:0::1;-1:-1:-1::0;;;;;44192:21:0;;;::::1;::::0;;;::::1;::::0;;44064:157::o;41378:275::-;4777:6;;-1:-1:-1;;;;;4777:6:0;3457:10;4924:23;4916:68;;;;-1:-1:-1;;;4916:68:0;;;;;;;:::i;:::-;41515:4:::1;41507;41486:13;13328:12:::0;;;13240:108;41486:13:::1;:17;::::0;41502:1:::1;41486:17;:::i;:::-;41485:26;;;;:::i;:::-;41484:35;;;;:::i;:::-;41474:6;:45;;41452:142;;;::::0;-1:-1:-1;;;41452:142:0;;6156:2:1;41452:142:0::1;::::0;::::1;6138:21:1::0;6195:2;6175:18;;;6168:30;6234:34;6214:18;;;6207:62;-1:-1:-1;;;6285:18:1;;;6278:45;6340:19;;41452:142:0::1;5954:411:1::0;41452:142:0::1;41628:17;:6:::0;41638::::1;41628:17;:::i;:::-;41605:20;:40:::0;-1:-1:-1;41378:275:0:o;14938:492::-;15078:4;15095:36;15105:6;15113:9;15124:6;15095:9;:36::i;:::-;-1:-1:-1;;;;;15171:19:0;;15144:24;15171:19;;;:11;:19;;;;;;;;3457:10;15171:33;;;;;;;;15223:26;;;;15215:79;;;;-1:-1:-1;;;15215:79:0;;6572:2:1;15215:79:0;;;6554:21:1;6611:2;6591:18;;;6584:30;6650:34;6630:18;;;6623:62;-1:-1:-1;;;6701:18:1;;;6694:38;6749:19;;15215:79:0;6370:404:1;15215:79:0;15330:57;15339:6;3457:10;15380:6;15361:16;:25;15330:8;:57::i;:::-;-1:-1:-1;15418:4:0;;14938:492;-1:-1:-1;;;;14938:492:0:o;15839:215::-;3457:10;15927:4;15976:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;15976:34:0;;;;;;;;;;15927:4;;15944:80;;15967:7;;15976:47;;16013:10;;15976:47;:::i;:::-;15944:8;:80::i;5355:103::-;4777:6;;-1:-1:-1;;;;;4777:6:0;3457:10;4924:23;4916:68;;;;-1:-1:-1;;;4916:68:0;;;;;;;:::i;:::-;5420:30:::1;5447:1;5420:18;:30::i;:::-;5355:103::o:0;52318:555::-;4777:6;;-1:-1:-1;;;;;4777:6:0;3457:10;4924:23;4916:68;;;;-1:-1:-1;;;4916:68:0;;;;;;;:::i;:::-;52520:3:::1;52497:19;:26;;52475:127;;;::::0;-1:-1:-1;;;52475:127:0;;7114:2:1;52475:127:0::1;::::0;::::1;7096:21:1::0;7153:2;7133:18;;;7126:30;7192:34;7172:18;;;7165:62;-1:-1:-1;;;7243:18:1;;;7236:49;7302:19;;52475:127:0::1;6912:415:1::0;52475:127:0::1;52647:4;52635:8;:16;;:33;;;;-1:-1:-1::0;52655:13:0;52635:33:::1;52613:131;;;::::0;-1:-1:-1;;;52613:131:0;;7534:2:1;52613:131:0::1;::::0;::::1;7516:21:1::0;7573:2;7553:18;;;7546:30;7612:34;7592:18;;;7585:62;-1:-1:-1;;;7663:18:1;;;7656:46;7719:19;;52613:131:0::1;7332:412:1::0;52613:131:0::1;52755:15;:37:::0;;;;52803:16:::1;:27:::0;52841:13:::1;:24:::0;;-1:-1:-1;;52841:24:0::1;::::0;::::1;;::::0;;;::::1;::::0;;52318:555::o;40486:121::-;4777:6;;40538:4;;-1:-1:-1;;;;;4777:6:0;3457:10;4924:23;4916:68;;;;-1:-1:-1;;;4916:68:0;;;;;;;:::i;:::-;-1:-1:-1;40555:14:0::1;:22:::0;;-1:-1:-1;;40555:22:0::1;::::0;;;40486:121;:::o;41925:167::-;4777:6;;-1:-1:-1;;;;;4777:6:0;3457:10;4924:23;4916:68;;;;-1:-1:-1;;;4916:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42038:39:0;;;::::1;;::::0;;;:31:::1;:39:::0;;;;;:46;;-1:-1:-1;;42038:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;41925:167::o;42296:403::-;4777:6;;-1:-1:-1;;;;;4777:6:0;3457:10;4924:23;4916:68;;;;-1:-1:-1;;;4916:68:0;;;;;;;:::i;:::-;42446:15:::1;:31:::0;;;42488:15:::1;:31:::0;;;42530:9:::1;:19:::0;;;42542:7;42575:33:::1;42506:13:::0;42464;42575:33:::1;:::i;:::-;:45;;;;:::i;:::-;42560:12;:60:::0;;;-1:-1:-1;42639:18:0::1;42631:60;;;::::0;-1:-1:-1;;;42631:60:0;;7951:2:1;42631:60:0::1;::::0;::::1;7933:21:1::0;7990:2;7970:18;;;7963:30;8029:31;8009:18;;;8002:59;8078:18;;42631:60:0::1;7749:353:1::0;42631:60:0::1;42296:403:::0;;;:::o;40279:155::-;4777:6;;-1:-1:-1;;;;;4777:6:0;3457:10;4924:23;4916:68;;;;-1:-1:-1;;;4916:68:0;;;;;;;:::i;:::-;40334:13:::1;:20:::0;;-1:-1:-1;;40365:18:0;;;;;40411:15:::1;40394:14;:32:::0;40279:155::o;42188:100::-;4777:6;;-1:-1:-1;;;;;4777:6:0;3457:10;4924:23;4916:68;;;;-1:-1:-1;;;4916:68:0;;;;;;;:::i;:::-;42259:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;42259:21:0;;::::1;::::0;;;::::1;::::0;;42188:100::o;12339:104::-;12395:13;12428:7;12421:14;;;;;:::i;43317:304::-;4777:6;;-1:-1:-1;;;;;4777:6:0;3457:10;4924:23;4916:68;;;;-1:-1:-1;;;4916:68:0;;;;;;;:::i;:::-;43461:13:::1;-1:-1:-1::0;;;;;43453:21:0::1;:4;-1:-1:-1::0;;;;;43453:21:0::1;;;43431:128;;;::::0;-1:-1:-1;;;43431:128:0;;8309:2:1;43431:128:0::1;::::0;::::1;8291:21:1::0;8348:2;8328:18;;;8321:30;8387:34;8367:18;;;8360:62;8458:27;8438:18;;;8431:55;8503:19;;43431:128:0::1;8107:421:1::0;43431:128:0::1;43572:41;43601:4;43607:5;43572:28;:41::i;:::-;43317:304:::0;;:::o;16557:413::-;3457:10;16650:4;16694:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;16694:34:0;;;;;;;;;;16747:35;;;;16739:85;;;;-1:-1:-1;;;16739:85:0;;8735:2:1;16739:85:0;;;8717:21:1;8774:2;8754:18;;;8747:30;8813:34;8793:18;;;8786:62;-1:-1:-1;;;8864:18:1;;;8857:35;8909:19;;16739:85:0;8533:401:1;16739:85:0;16860:67;3457:10;16883:7;16911:15;16892:16;:34;16860:8;:67::i;:::-;-1:-1:-1;16958:4:0;;16557:413;-1:-1:-1;;;16557:413:0:o;13751:175::-;13837:4;13854:42;3457:10;13878:9;13889:6;13854:9;:42::i;43825:231::-;4777:6;;-1:-1:-1;;;;;4777:6:0;3457:10;4924:23;4916:68;;;;-1:-1:-1;;;4916:68:0;;;;;;;:::i;:::-;43985:15:::1;::::0;43942:59:::1;::::0;-1:-1:-1;;;;;43985:15:0;;::::1;::::0;43942:59;::::1;::::0;::::1;::::0;43985:15:::1;::::0;43942:59:::1;44012:15;:36:::0;;-1:-1:-1;;;;;;44012:36:0::1;-1:-1:-1::0;;;;;44012:36:0;;;::::1;::::0;;;::::1;::::0;;43825:231::o;43127:182::-;4777:6;;-1:-1:-1;;;;;4777:6:0;3457:10;4924:23;4916:68;;;;-1:-1:-1;;;4916:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;43212:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;43212:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;43267:34;;1212:41:1;;;43267:34:0::1;::::0;1185:18:1;43267:34:0::1;;;;;;;43127:182:::0;;:::o;42707:412::-;4777:6;;-1:-1:-1;;;;;4777:6:0;3457:10;4924:23;4916:68;;;;-1:-1:-1;;;4916:68:0;;;;;;;:::i;:::-;42858:16:::1;:32:::0;;;42901:16:::1;:32:::0;;;42944:10:::1;:20:::0;;;42957:7;42991:35:::1;42920:13:::0;42877;42991:35:::1;:::i;:::-;:48;;;;:::i;:::-;42975:13;:64:::0;;;43075:2:::1;-1:-1:-1::0;43058:19:0::1;43050:61;;;::::0;-1:-1:-1;;;43050:61:0;;9141:2:1;43050:61:0::1;::::0;::::1;9123:21:1::0;9180:2;9160:18;;;9153:30;9219:31;9199:18;;;9192:59;9268:18;;43050:61:0::1;8939:353:1::0;41661:256:0;4777:6;;-1:-1:-1;;;;;4777:6:0;3457:10;4924:23;4916:68;;;;-1:-1:-1;;;4916:68:0;;;;;;;:::i;:::-;41801:4:::1;41793;41772:13;13328:12:::0;;;13240:108;41772:13:::1;:17;::::0;41788:1:::1;41772:17;:::i;:::-;41771:26;;;;:::i;:::-;41770:35;;;;:::i;:::-;41760:6;:45;;41738:131;;;::::0;-1:-1:-1;;;41738:131:0;;9499:2:1;41738:131:0::1;::::0;::::1;9481:21:1::0;9538:2;9518:18;;;9511:30;9577:34;9557:18;;;9550:62;-1:-1:-1;;;9628:18:1;;;9621:34;9672:19;;41738:131:0::1;9297:400:1::0;41738:131:0::1;41892:17;:6:::0;41902::::1;41892:17;:::i;:::-;41880:9;:29:::0;-1:-1:-1;41661:256:0:o;40873:497::-;4777:6;;40981:4;;-1:-1:-1;;;;;4777:6:0;3457:10;4924:23;4916:68;;;;-1:-1:-1;;;4916:68:0;;;;;;;:::i;:::-;41060:6:::1;41039:13;13328:12:::0;;;13240:108;41039:13:::1;:17;::::0;41055:1:::1;41039:17;:::i;:::-;41038:28;;;;:::i;:::-;41025:9;:41;;41003:144;;;::::0;-1:-1:-1;;;41003:144:0;;9904:2:1;41003:144:0::1;::::0;::::1;9886:21:1::0;9943:2;9923:18;;;9916:30;9982:34;9962:18;;;9955:62;-1:-1:-1;;;10033:18:1;;;10026:51;10094:19;;41003:144:0::1;9702:417:1::0;41003:144:0::1;41215:4;41194:13;13328:12:::0;;;13240:108;41194:13:::1;:17;::::0;41210:1:::1;41194:17;:::i;:::-;41193:26;;;;:::i;:::-;41180:9;:39;;41158:141;;;::::0;-1:-1:-1;;;41158:141:0;;10326:2:1;41158:141:0::1;::::0;::::1;10308:21:1::0;10365:2;10345:18;;;10338:30;10404:34;10384:18;;;10377:62;-1:-1:-1;;;10455:18:1;;;10448:50;10515:19;;41158:141:0::1;10124:416:1::0;41158:141:0::1;-1:-1:-1::0;41310:18:0::1;:30:::0;;;41358:4:::1;4995:1;40873:497:::0;;;:::o;40668:135::-;4777:6;;40728:4;;-1:-1:-1;;;;;4777:6:0;3457:10;4924:23;4916:68;;;;-1:-1:-1;;;4916:68:0;;;;;;;:::i;:::-;-1:-1:-1;40745:20:0::1;:28:::0;;-1:-1:-1;;40745:28:0::1;::::0;;;40668:135;:::o;5613:201::-;4777:6;;-1:-1:-1;;;;;4777:6:0;3457:10;4924:23;4916:68;;;;-1:-1:-1;;;4916:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5702:22:0;::::1;5694:73;;;::::0;-1:-1:-1;;;5694:73:0;;10747:2:1;5694:73:0::1;::::0;::::1;10729:21:1::0;10786:2;10766:18;;;10759:30;10825:34;10805:18;;;10798:62;-1:-1:-1;;;10876:18:1;;;10869:36;10922:19;;5694:73:0::1;10545:402:1::0;5694:73:0::1;5778:28;5797:8;5778:18;:28::i;:::-;5613:201:::0;:::o;53677:1056::-;4777:6;;53788:4;;-1:-1:-1;;;;;4777:6:0;3457:10;4924:23;4916:68;;;;-1:-1:-1;;;4916:68:0;;;;;;;:::i;:::-;53873:19:::1;;53850:20;;:42;;;;:::i;:::-;53832:15;:60;53810:142;;;::::0;-1:-1:-1;;;53810:142:0;;11154:2:1;53810:142:0::1;::::0;::::1;11136:21:1::0;;;11173:18;;;11166:30;11232:34;11212:18;;;11205:62;11284:18;;53810:142:0::1;10952:356:1::0;53810:142:0::1;53982:4;53971:7;:15;;53963:70;;;::::0;-1:-1:-1;;;53963:70:0;;11515:2:1;53963:70:0::1;::::0;::::1;11497:21:1::0;11554:2;11534:18;;;11527:30;11593:34;11573:18;;;11566:62;-1:-1:-1;;;11644:18:1;;;11637:40;11694:19;;53963:70:0::1;11313:406:1::0;53963:70:0::1;54067:15;54044:20;:38:::0;54168:29:::1;::::0;-1:-1:-1;;;54168:29:0;;-1:-1:-1;;;;;54183:13:0::1;1707:32:1::0;54168:29:0::1;::::0;::::1;1689:51:1::0;54137:28:0::1;::::0;54168:4:::1;::::0;:14:::1;::::0;1662:18:1;;54168:29:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;54137:60:::0;-1:-1:-1;54247:20:0::1;54270:44;54308:5;54270:33;54137:60:::0;54295:7;54270:24:::1;:33::i;:::-;:37:::0;::::1;:44::i;:::-;54247:67:::0;-1:-1:-1;54419:16:0;;54415:110:::1;;54452:61;54468:13;54491:6;54500:12;54452:15;:61::i;:::-;54600:19;54637:13;54600:51;;54662:4;-1:-1:-1::0;;;;;54662:9:0::1;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;54689:14:0::1;::::0;::::1;::::0;-1:-1:-1;54689:14:0;;-1:-1:-1;54689:14:0::1;-1:-1:-1::0;54721:4:0::1;::::0;53677:1056;-1:-1:-1;;;;53677:1056:0:o;20241:380::-;-1:-1:-1;;;;;20377:19:0;;20369:68;;;;-1:-1:-1;;;20369:68:0;;12115:2:1;20369:68:0;;;12097:21:1;12154:2;12134:18;;;12127:30;12193:34;12173:18;;;12166:62;-1:-1:-1;;;12244:18:1;;;12237:34;12288:19;;20369:68:0;11913:400:1;20369:68:0;-1:-1:-1;;;;;20456:21:0;;20448:68;;;;-1:-1:-1;;;20448:68:0;;12520:2:1;20448:68:0;;;12502:21:1;12559:2;12539:18;;;12532:30;12598:34;12578:18;;;12571:62;-1:-1:-1;;;12649:18:1;;;12642:32;12691:19;;20448:68:0;12318:398:1;20448:68:0;-1:-1:-1;;;;;20529:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;20581:32;;1897:25:1;;;20581:32:0;;1870:18:1;20581:32:0;;;;;;;20241:380;;;:::o;44413:5011::-;-1:-1:-1;;;;;44545:18:0;;44537:68;;;;-1:-1:-1;;;44537:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;44624:16:0;;44616:64;;;;-1:-1:-1;;;44616:64:0;;;;;;;:::i;:::-;44697:11;44693:93;;44725:28;44741:4;44747:2;44751:1;44725:15;:28::i;44693:93::-;44802:14;;;;44798:2487;;;4777:6;;-1:-1:-1;;;;;44855:15:0;;;4777:6;;44855:15;;;;:49;;-1:-1:-1;4777:6:0;;-1:-1:-1;;;;;44891:13:0;;;4777:6;;44891:13;;44855:49;:86;;;;-1:-1:-1;;;;;;44925:16:0;;;;44855:86;:128;;;;-1:-1:-1;;;;;;44962:21:0;;44976:6;44962:21;;44855:128;:158;;;;-1:-1:-1;45005:8:0;;-1:-1:-1;;;45005:8:0;;;;45004:9;44855:158;44833:2441;;;45053:13;;;;;;;45048:223;;-1:-1:-1;;;;;45125:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;45154:23:0;;;;;;:19;:23;;;;;;;;45125:52;45091:160;;;;-1:-1:-1;;;45091:160:0;;13733:2:1;45091:160:0;;;13715:21:1;13772:2;13752:18;;;13745:30;-1:-1:-1;;;13791:18:1;;;13784:52;13853:18;;45091:160:0;13531:346:1;45091:160:0;45427:20;;;;45423:641;;;4777:6;;-1:-1:-1;;;;;45502:13:0;;;4777:6;;45502:13;;;;:72;;;45558:15;-1:-1:-1;;;;;45544:30:0;:2;-1:-1:-1;;;;;45544:30:0;;;45502:72;:129;;;;;45617:13;-1:-1:-1;;;;;45603:28:0;:2;-1:-1:-1;;;;;45603:28:0;;;45502:129;45472:573;;;45749:9;45720:39;;;;:28;:39;;;;;;45795:12;-1:-1:-1;45682:258:0;;;;-1:-1:-1;;;45682:258:0;;14084:2:1;45682:258:0;;;14066:21:1;14123:2;14103:18;;;14096:30;14162:34;14142:18;;;14135:62;14233:34;14213:18;;;14206:62;-1:-1:-1;;;14284:19:1;;;14277:40;14334:19;;45682:258:0;13882:477:1;45682:258:0;45996:9;45967:39;;;;:28;:39;;;;;46009:12;45967:54;;45472:573;-1:-1:-1;;;;;46138:31:0;;;;;;:25;:31;;;;;;;;:92;;;;-1:-1:-1;;;;;;46195:35:0;;;;;;:31;:35;;;;;;;;46194:36;46138:92;46112:1147;;;46317:20;;46307:6;:30;;46273:169;;;;-1:-1:-1;;;46273:169:0;;14566:2:1;46273:169:0;;;14548:21:1;14605:2;14585:18;;;14578:30;14644:34;14624:18;;;14617:62;-1:-1:-1;;;14695:18:1;;;14688:51;14756:19;;46273:169:0;14364:417:1;46273:169:0;46525:9;;-1:-1:-1;;;;;13512:18:0;;13485:7;13512:18;;;;;;;;;;;46499:22;;:6;:22;:::i;:::-;:35;;46465:140;;;;-1:-1:-1;;;46465:140:0;;14988:2:1;46465:140:0;;;14970:21:1;15027:2;15007:18;;;15000:30;-1:-1:-1;;;15046:18:1;;;15039:49;15105:18;;46465:140:0;14786:343:1;46465:140:0;46112:1147;;;-1:-1:-1;;;;;46703:29:0;;;;;;:25;:29;;;;;;;;:92;;;;-1:-1:-1;;;;;;46758:37:0;;;;;;:31;:37;;;;;;;;46757:38;46703:92;46677:582;;;46882:20;;46872:6;:30;;46838:170;;;;-1:-1:-1;;;46838:170:0;;15336:2:1;46838:170:0;;;15318:21:1;15375:2;15355:18;;;15348:30;15414:34;15394:18;;;15387:62;-1:-1:-1;;;15465:18:1;;;15458:52;15527:19;;46838:170:0;15134:418:1;46677:582:0;-1:-1:-1;;;;;47039:35:0;;;;;;:31;:35;;;;;;;;47034:225;;47159:9;;-1:-1:-1;;;;;13512:18:0;;13485:7;13512:18;;;;;;;;;;;47133:22;;:6;:22;:::i;:::-;:35;;47099:140;;;;-1:-1:-1;;;47099:140:0;;14988:2:1;47099:140:0;;;14970:21:1;15027:2;15007:18;;;15000:30;-1:-1:-1;;;15046:18:1;;;15039:49;15105:18;;47099:140:0;14786:343:1;47099:140:0;47346:4;47297:28;13512:18;;;;;;;;;;;47404;;47380:42;;;;;;;47453:35;;-1:-1:-1;47477:11:0;;;;;;;47453:35;:61;;;;-1:-1:-1;47506:8:0;;-1:-1:-1;;;47506:8:0;;;;47505:9;47453:61;:110;;;;-1:-1:-1;;;;;;47532:31:0;;;;;;:25;:31;;;;;;;;47531:32;47453:110;:153;;;;-1:-1:-1;;;;;;47581:25:0;;;;;;:19;:25;;;;;;;;47580:26;47453:153;:194;;;;-1:-1:-1;;;;;;47624:23:0;;;;;;:19;:23;;;;;;;;47623:24;47453:194;47435:326;;;47674:8;:15;;-1:-1:-1;;;;47674:15:0;-1:-1:-1;;;47674:15:0;;;47706:10;:8;:10::i;:::-;47733:8;:16;;-1:-1:-1;;;;47733:16:0;;;47435:326;47792:8;;-1:-1:-1;;;47792:8:0;;;;47791:9;:55;;;;-1:-1:-1;;;;;;47817:29:0;;;;;;:25;:29;;;;;;;;47791:55;:85;;;;-1:-1:-1;47863:13:0;;;;47791:85;:153;;;;;47929:15;;47912:14;;:32;;;;:::i;:::-;47893:15;:51;;47791:153;:196;;;;-1:-1:-1;;;;;;47962:25:0;;;;;;:19;:25;;;;;;;;47961:26;47791:196;47773:282;;;48014:29;:27;:29::i;:::-;;47773:282;48083:8;;-1:-1:-1;;;;;48193:25:0;;48067:12;48193:25;;;:19;:25;;;;;;48083:8;-1:-1:-1;;;48083:8:0;;;;;48082:9;;48193:25;;:52;;-1:-1:-1;;;;;;48222:23:0;;;;;;:19;:23;;;;;;;;48193:52;48189:100;;;-1:-1:-1;48272:5:0;48189:100;48301:12;48406:7;48402:969;;;-1:-1:-1;;;;;48458:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;48507:1;48491:13;;:17;48458:50;48454:768;;;48536:34;48566:3;48536:25;48547:13;;48536:6;:10;;:25;;;;:::i;:34::-;48529:41;;48639:13;;48619:16;;48612:4;:23;;;;:::i;:::-;48611:41;;;;:::i;:::-;48589:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;48709:13:0;;48695:10;;48688:17;;:4;:17;:::i;:::-;48687:35;;;;:::i;:::-;48671:12;;:51;;;;;;;:::i;:::-;;;;-1:-1:-1;;48791:13:0;;48771:16;;48764:23;;:4;:23;:::i;:::-;48763:41;;;;:::i;:::-;48741:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;48454:768:0;;-1:-1:-1;48454:768:0;;-1:-1:-1;;;;;48866:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;48916:1;48901:12;;:16;48866:51;48862:360;;;48945:33;48974:3;48945:24;48956:12;;48945:6;:10;;:24;;;;:::i;:33::-;48938:40;;49046:12;;49027:15;;49020:4;:22;;;;:::i;:::-;49019:39;;;;:::i;:::-;48997:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;49114:12:0;;49101:9;;49094:16;;:4;:16;:::i;:::-;49093:33;;;;:::i;:::-;49077:12;;:49;;;;;;;:::i;:::-;;;;-1:-1:-1;;49194:12:0;;49175:15;;49168:22;;:4;:22;:::i;:::-;49167:39;;;;:::i;:::-;49145:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;48862:360:0;49242:8;;49238:91;;49271:42;49287:4;49301;49308;49271:15;:42::i;:::-;49345:14;49355:4;49345:14;;:::i;:::-;;;48402:969;49383:33;49399:4;49405:2;49409:6;49383:15;:33::i;:::-;44526:4898;;;;44413:5011;;;:::o;5974:191::-;6067:6;;;-1:-1:-1;;;;;6084:17:0;;;-1:-1:-1;;;;;;6084:17:0;;;;;;;6117:40;;6067:6;;;6084:17;6067:6;;6117:40;;6048:16;;6117:40;6037:128;5974:191;:::o;43629:188::-;-1:-1:-1;;;;;43712:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;43712:39:0;;;;;;;;;;43769:40;;43712:39;;:31;43769:40;;;43629:188;;:::o;25694:98::-;25752:7;25779:5;25783:1;25779;:5;:::i;:::-;25772:12;25694:98;-1:-1:-1;;;25694:98:0:o;26093:::-;26151:7;26178:5;26182:1;26178;:5;:::i;17460:733::-;-1:-1:-1;;;;;17600:20:0;;17592:70;;;;-1:-1:-1;;;17592:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;17681:23:0;;17673:71;;;;-1:-1:-1;;;17673:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;17841:17:0;;17817:21;17841:17;;;;;;;;;;;17877:23;;;;17869:74;;;;-1:-1:-1;;;17869:74:0;;15889:2:1;17869:74:0;;;15871:21:1;15928:2;15908:18;;;15901:30;15967:34;15947:18;;;15940:62;-1:-1:-1;;;16018:18:1;;;16011:36;16064:19;;17869:74:0;15687:402:1;17869:74:0;-1:-1:-1;;;;;17979:17:0;;;:9;:17;;;;;;;;;;;17999:22;;;17979:42;;18043:20;;;;;;;;:30;;18015:6;;17979:9;18043:30;;18015:6;;18043:30;:::i;:::-;;;;;;;;18108:9;-1:-1:-1;;;;;18091:35:0;18100:6;-1:-1:-1;;;;;18091:35:0;;18119:6;18091:35;;;;1897:25:1;;1885:2;1870:18;;1751:177;18091:35:0;;;;;;;;17581:612;17460:733;;;:::o;50554:1756::-;50637:4;50593:23;13512:18;;;;;;;;;;;50593:50;;50654:25;50750:12;;50716:18;;50682;;:52;;;;:::i;:::-;:80;;;;:::i;:::-;50654:108;-1:-1:-1;50773:12:0;50802:20;;;:46;;-1:-1:-1;50826:22:0;;50802:46;50798:85;;;50865:7;;;50554:1756::o;50798:85::-;50917:18;;:23;;50938:2;50917:23;:::i;:::-;50899:15;:41;50895:115;;;50975:18;;:23;;50996:2;50975:23;:::i;:::-;50957:41;;50895:115;51071:23;51184:1;51151:17;51116:18;;51098:15;:36;;;;:::i;:::-;51097:71;;;;:::i;:::-;:88;;;;:::i;:::-;51071:114;-1:-1:-1;51196:26:0;51225:36;:15;51071:114;51225:19;:36::i;:::-;51196:65;-1:-1:-1;51302:21:0;51336:36;51196:65;51336:16;:36::i;:::-;51385:18;51406:44;:21;51432:17;51406:25;:44::i;:::-;51385:65;;51463:23;51489:81;51542:17;51489:34;51504:18;;51489:10;:14;;:34;;;;:::i;:81::-;51463:107;;51581:17;51601:51;51634:17;51601:28;51616:12;;51601:10;:14;;:28;;;;:::i;:51::-;51581:71;-1:-1:-1;51665:23:0;51581:71;51691:28;51704:15;51691:10;:28;:::i;:::-;:40;;;;:::i;:::-;51765:1;51744:18;:22;;;51777:18;:22;;;51810:12;:16;;;51861:9;;51853:45;;51665:66;;-1:-1:-1;;;;;;51861:9:0;;51884;;51853:45;51765:1;51853:45;51884:9;51861;51853:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51839:59:0;;-1:-1:-1;;51915:19:0;;;;;:42;;;51956:1;51938:15;:19;51915:42;51911:278;;;51974:46;51987:15;52004;51974:12;:46::i;:::-;52144:18;;52040:137;;;16506:25:1;;;16562:2;16547:18;;16540:34;;;16590:18;;;16583:34;;;;52040:137:0;;;;;;16494:2:1;52040:137:0;;;51911:278;52223:15;;52215:87;;-1:-1:-1;;;;;52223:15:0;;;;52266:21;;52215:87;;;;52266:21;52223:15;52215:87;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;50554:1756:0:o;52881:788::-;52972:15;52955:14;:32;53073:29;;-1:-1:-1;;;53073:29:0;;-1:-1:-1;;;;;53088:13:0;1707:32:1;53073:29:0;;;1689:51:1;52938:4:0;;;;53073;;:14;;1662:18:1;;53073:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;53042:60;;53152:20;53175:77;53236:5;53175:42;53200:16;;53175:20;:24;;:42;;;;:::i;:77::-;53152:100;-1:-1:-1;53357:16:0;;53353:110;;53390:61;53406:13;53429:6;53438:12;53390:15;:61::i;:::-;53538:19;53575:13;53538:51;;53600:4;-1:-1:-1;;;;;53600:9:0;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;53627:12:0;;;;-1:-1:-1;53627:12:0;;-1:-1:-1;53627:12:0;53657:4;53650:11;;;;;52881:788;:::o;25337:98::-;25395:7;25422:5;25426:1;25422;:5;:::i;49432:589::-;49582:16;;;49596:1;49582:16;;;;;;;;49558:21;;49582:16;;;;;;;;;;-1:-1:-1;49582:16:0;49558:40;;49627:4;49609;49614:1;49609:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;49609:23:0;;;-1:-1:-1;;;;;49609:23:0;;;;;49653:15;-1:-1:-1;;;;;49653:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;49643:4;49648:1;49643:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;49643:32:0;;;-1:-1:-1;;;;;49643:32:0;;;;;49688:62;49705:4;49720:15;49738:11;49688:8;:62::i;:::-;49789:224;;-1:-1:-1;;;49789:224:0;;-1:-1:-1;;;;;49789:15:0;:66;;;;:224;;49870:11;;49896:1;;49940:4;;49967;;49987:15;;49789:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49487:534;49432:589;:::o;50029:517::-;50177:62;50194:4;50209:15;50227:11;50177:8;:62::i;:::-;50282:256;;-1:-1:-1;;;50282:256:0;;50354:4;50282:256;;;18474:34:1;18524:18;;;18517:34;;;50400:1:0;18567:18:1;;;18560:34;;;18610:18;;;18603:34;35516:6:0;18653:19:1;;;18646:44;50512:15:0;18706:19:1;;;18699:35;50282:15:0;-1:-1:-1;;;;;50282:31:0;;;;50321:9;;18408:19:1;;50282:256:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;50029:517;;:::o;14:597:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:131::-;-1:-1:-1;;;;;691:31:1;;681:42;;671:70;;737:1;734;727:12;752:315;820:6;828;881:2;869:9;860:7;856:23;852:32;849:52;;;897:1;894;887:12;849:52;936:9;923:23;955:31;980:5;955:31;:::i;:::-;1005:5;1057:2;1042:18;;;;1029:32;;-1:-1:-1;;;752:315:1:o;1264:247::-;1323:6;1376:2;1364:9;1355:7;1351:23;1347:32;1344:52;;;1392:1;1389;1382:12;1344:52;1431:9;1418:23;1450:31;1475:5;1450:31;:::i;1933:180::-;1992:6;2045:2;2033:9;2024:7;2020:23;2016:32;2013:52;;;2061:1;2058;2051:12;2013:52;-1:-1:-1;2084:23:1;;1933:180;-1:-1:-1;1933:180:1:o;2118:456::-;2195:6;2203;2211;2264:2;2252:9;2243:7;2239:23;2235:32;2232:52;;;2280:1;2277;2270:12;2232:52;2319:9;2306:23;2338:31;2363:5;2338:31;:::i;:::-;2388:5;-1:-1:-1;2445:2:1;2430:18;;2417:32;2458:33;2417:32;2458:33;:::i;:::-;2118:456;;2510:7;;-1:-1:-1;;;2564:2:1;2549:18;;;;2536:32;;2118:456::o;2976:160::-;3041:20;;3097:13;;3090:21;3080:32;;3070:60;;3126:1;3123;3116:12;3141:316;3215:6;3223;3231;3284:2;3272:9;3263:7;3259:23;3255:32;3252:52;;;3300:1;3297;3290:12;3252:52;3336:9;3323:23;3313:33;;3393:2;3382:9;3378:18;3365:32;3355:42;;3416:35;3447:2;3436:9;3432:18;3416:35;:::i;:::-;3406:45;;3141:316;;;;;:::o;3462:315::-;3527:6;3535;3588:2;3576:9;3567:7;3563:23;3559:32;3556:52;;;3604:1;3601;3594:12;3556:52;3643:9;3630:23;3662:31;3687:5;3662:31;:::i;:::-;3712:5;-1:-1:-1;3736:35:1;3767:2;3752:18;;3736:35;:::i;:::-;3726:45;;3462:315;;;;;:::o;3782:316::-;3859:6;3867;3875;3928:2;3916:9;3907:7;3903:23;3899:32;3896:52;;;3944:1;3941;3934:12;3896:52;-1:-1:-1;;3967:23:1;;;4037:2;4022:18;;4009:32;;-1:-1:-1;4088:2:1;4073:18;;;4060:32;;3782:316;-1:-1:-1;3782:316:1:o;4103:180::-;4159:6;4212:2;4200:9;4191:7;4187:23;4183:32;4180:52;;;4228:1;4225;4218:12;4180:52;4251:26;4267:9;4251:26;:::i;4288:388::-;4356:6;4364;4417:2;4405:9;4396:7;4392:23;4388:32;4385:52;;;4433:1;4430;4423:12;4385:52;4472:9;4459:23;4491:31;4516:5;4491:31;:::i;:::-;4541:5;-1:-1:-1;4598:2:1;4583:18;;4570:32;4611:33;4570:32;4611:33;:::i;:::-;4663:7;4653:17;;;4288:388;;;;;:::o;4681:380::-;4760:1;4756:12;;;;4803;;;4824:61;;4878:4;4870:6;4866:17;4856:27;;4824:61;4931:2;4923:6;4920:14;4900:18;4897:38;4894:161;;;4977:10;4972:3;4968:20;4965:1;4958:31;5012:4;5009:1;5002:15;5040:4;5037:1;5030:15;4894:161;;4681:380;;;:::o;5066:356::-;5268:2;5250:21;;;5287:18;;;5280:30;5346:34;5341:2;5326:18;;5319:62;5413:2;5398:18;;5066:356::o;5427:127::-;5488:10;5483:3;5479:20;5476:1;5469:31;5519:4;5516:1;5509:15;5543:4;5540:1;5533:15;5559:168;5599:7;5665:1;5661;5657:6;5653:14;5650:1;5647:21;5642:1;5635:9;5628:17;5624:45;5621:71;;;5672:18;;:::i;:::-;-1:-1:-1;5712:9:1;;5559:168::o;5732:217::-;5772:1;5798;5788:132;;5842:10;5837:3;5833:20;5830:1;5823:31;5877:4;5874:1;5867:15;5905:4;5902:1;5895:15;5788:132;-1:-1:-1;5934:9:1;;5732:217::o;6779:128::-;6819:3;6850:1;6846:6;6843:1;6840:13;6837:39;;;6856:18;;:::i;:::-;-1:-1:-1;6892:9:1;;6779:128::o;11724:184::-;11794:6;11847:2;11835:9;11826:7;11822:23;11818:32;11815:52;;;11863:1;11860;11853:12;11815:52;-1:-1:-1;11886:16:1;;11724:184;-1:-1:-1;11724:184:1:o;12721:401::-;12923:2;12905:21;;;12962:2;12942:18;;;12935:30;13001:34;12996:2;12981:18;;12974:62;-1:-1:-1;;;13067:2:1;13052:18;;13045:35;13112:3;13097:19;;12721:401::o;13127:399::-;13329:2;13311:21;;;13368:2;13348:18;;;13341:30;13407:34;13402:2;13387:18;;13380:62;-1:-1:-1;;;13473:2:1;13458:18;;13451:33;13516:3;13501:19;;13127:399::o;15557:125::-;15597:4;15625:1;15622;15619:8;15616:34;;;15630:18;;:::i;:::-;-1:-1:-1;15667:9:1;;15557:125::o;16760:127::-;16821:10;16816:3;16812:20;16809:1;16802:31;16852:4;16849:1;16842:15;16876:4;16873:1;16866:15;16892:251;16962:6;17015:2;17003:9;16994:7;16990:23;16986:32;16983:52;;;17031:1;17028;17021:12;16983:52;17063:9;17057:16;17082:31;17107:5;17082:31;:::i;17148:980::-;17410:4;17458:3;17447:9;17443:19;17489:6;17478:9;17471:25;17515:2;17553:6;17548:2;17537:9;17533:18;17526:34;17596:3;17591:2;17580:9;17576:18;17569:31;17620:6;17655;17649:13;17686:6;17678;17671:22;17724:3;17713:9;17709:19;17702:26;;17763:2;17755:6;17751:15;17737:29;;17784:1;17794:195;17808:6;17805:1;17802:13;17794:195;;;17873:13;;-1:-1:-1;;;;;17869:39:1;17857:52;;17964:15;;;;17929:12;;;;17905:1;17823:9;17794:195;;;-1:-1:-1;;;;;;;18045:32:1;;;;18040:2;18025:18;;18018:60;-1:-1:-1;;;18109:3:1;18094:19;18087:35;18006:3;17148:980;-1:-1:-1;;;17148:980:1:o;18745:306::-;18833:6;18841;18849;18902:2;18890:9;18881:7;18877:23;18873:32;18870:52;;;18918:1;18915;18908:12;18870:52;18947:9;18941:16;18931:26;;18997:2;18986:9;18982:18;18976:25;18966:35;;19041:2;19030:9;19026:18;19020:25;19010:35;;18745:306;;;;;:::o

Swarm Source

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