ETH Price: $2,390.63 (-0.98%)

Token

Fight For Fitness (FIT)
 

Overview

Max Total Supply

1,000,000,000 FIT

Holders

197 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
308,071.88488457847771372 FIT

Value
$0.00
0x2D9980158a910219550027aDC0b001B347869A06
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Fight for Fitness is an enterprise that utilises a token-based economical model, with a community governance protocol, to propagate the importance of fitness to the masses.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
FightForFitness

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 20000 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-03-22
*/

// FIGHT FOR FITNESS - FIT - WWW.FIGHTFORFIT.NET //
// A cryptocurrency-based project that is set out to helping athletes & communities achieve their fitness goals. //

// SOCIALS //

//TWITTER : @fightforfitnet
//INSTAGRAM : @fightforfitnet
//TELEGTAM : @fightforfitness

// Verified using https://dapp.tools

// hevm: flattened sources of src/FightForFitness.sol
// 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;
}

////// src/FightForFitness.sol
/* 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 FightForFitness 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("Fight For Fitness", "FIT") {
        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 = 5;
        uint256 _buyLiquidityFee = 3;
        uint256 _buyDevFee = 2;

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

        uint256 totalSupply = 1_000_000_000 * 1e18;

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

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

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

        marketingWallet = address(0x0181e25136552a6dAB668f87Df774FBA26bC03E6); // set as marketing wallet
        devWallet = address(0x5b5aB9dc82537f76fb27C251AACF0c8bB458d142); // 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"}]

60c06040526019600b55600c8054600160ff199182168117909255610e10600d55610708600f556011805462ffffff1916831790556013805490911690911790553480156200004d57600080fd5b5060405180604001604052806011815260200170466967687420466f72204669746e65737360781b8152506040518060400160405280600381526020016211925560ea1b8152508160039080519060200190620000ac929190620006bb565b508051620000c2906004906020840190620006bb565b505050620000df620000d96200040960201b60201c565b6200040d565b737a250d5630b4cf539739df2c5dacb4c659f2488d620001018160016200045f565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa1580156200014c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000172919062000761565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001c0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001e6919062000761565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000234573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200025a919062000761565b6001600160a01b031660a0819052620002759060016200045f565b60a05162000285906001620004d8565b6a0422ca8b0a00a4250000006008556a108b2a2c28029094000000600a90815560059060039060029081836b033b2e3c9fd0803ce8000000612710620002cc8289620007a9565b620002d89190620007cb565b60095560158790556016869055601785905584620002f78789620007ee565b620003039190620007ee565b6014556019849055601a839055601b82905581620003228486620007ee565b6200032e9190620007ee565b601855600680546001600160a01b0319908116730181e25136552a6dab668f87df774fba26bc03e61790915560078054909116735b5ab9dc82537f76fb27c251aacf0c8bb458d14217905562000398620003906005546001600160a01b031690565b60016200052c565b620003a53060016200052c565b620003b461dead60016200052c565b620003d3620003cb6005546001600160a01b031690565b60016200045f565b620003e03060016200045f565b620003ef61dead60016200045f565b620003fb3382620005d6565b505050505050505062000846565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620004ae5760405162461bcd60e51b81526020600482018190526024820152600080516020620041f683398151915260448201526064015b60405180910390fd5b6001600160a01b039190911660009081526020805260409020805460ff1916911515919091179055565b6001600160a01b038216600081815260216020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b03163314620005775760405162461bcd60e51b81526020600482018190526024820152600080516020620041f68339815191526044820152606401620004a5565b6001600160a01b0382166000818152601f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b0382166200062e5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620004a5565b8060026000828254620006429190620007ee565b90915550506001600160a01b0382166000908152602081905260408120805483929062000671908490620007ee565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b828054620006c99062000809565b90600052602060002090601f016020900481019282620006ed576000855562000738565b82601f106200070857805160ff191683800117855562000738565b8280016001018555821562000738579182015b82811115620007385782518255916020019190600101906200071b565b50620007469291506200074a565b5090565b5b808211156200074657600081556001016200074b565b6000602082840312156200077457600080fd5b81516001600160a01b03811681146200078c57600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615620007c657620007c662000793565b500290565b600082620007e957634e487b7160e01b600052601260045260246000fd5b500490565b6000821982111562000804576200080462000793565b500190565b600181811c908216806200081e57607f821691505b602082108114156200084057634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a051613928620008ce600039600081816106000152818161144801528181611db901528181611e5401528181611e80015281816123150152818161304b015281816130ed0152613119015260008181610459015281816122d701528181613223015281816132dc01528181613331015281816133ab015261342101526139286000f3fe6080604052600436106103b15760003560e01c80638da5cb5b116101e7578063bbc0c7421161010d578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610ac9578063f637434214610ae9578063f8b45b0514610aff578063fe72b27a14610b1557600080fd5b8063dd62ed3e14610a42578063e2f4560514610a88578063e884f26014610a9e578063f11a24d314610ab357600080fd5b8063c876d0b9116100dc578063c876d0b9146109dc578063c8c8ebe4146109f6578063d257b34f14610a0c578063d85ba06314610a2c57600080fd5b8063bbc0c7421461095d578063c02466681461097c578063c17b5b8c1461099c578063c18bc195146109bc57600080fd5b80639ec22c0e11610185578063a4c82a0011610154578063a4c82a00146108d7578063a9059cbb146108ed578063aacebbe31461090d578063b62496f51461092d57600080fd5b80639ec22c0e146108755780639fccce321461088b578063a0d82dc5146108a1578063a457c2d7146108b757600080fd5b8063924de9b7116101c1578063924de9b71461080a57806395d89b411461082a5780639a7a23d61461083f5780639c3b4fdc1461085f57600080fd5b80638da5cb5b146107b65780638ea5220f146107d457806392136913146107f457600080fd5b8063313ce567116102d7578063715018a61161026a57806375f0a8741161023957806375f0a8741461074b5780637bce5a041461076b5780638095d564146107815780638a8c523c146107a157600080fd5b8063715018a6146106e1578063730c1888146106f6578063751039fc146107165780637571336a1461072b57600080fd5b80634fbee193116102a65780634fbee1931461063c5780636a486a8e146106755780636ddd17131461068b57806370a08231146106ab57600080fd5b8063313ce567146105b257806339509351146105ce57806349bd5a5e146105ee5780634a62bb651461062257600080fd5b8063199ffc721161034f57806323b872dd1161031e57806323b872dd1461054c57806327c8f8351461056c5780632c3e486c146105825780632e82f1a01461059857600080fd5b8063199ffc72146104ea5780631a8145bb146105005780631f3fed8f14610516578063203e727e1461052c57600080fd5b80631694505e1161038b5780631694505e1461044757806318160ddd146104935780631816467f146104b2578063184c16c5146104d457600080fd5b806306fdde03146103bd578063095ea7b3146103e857806310d5de531461041857600080fd5b366103b857005b600080fd5b3480156103c957600080fd5b506103d2610b35565b6040516103df919061349f565b60405180910390f35b3480156103f457600080fd5b50610408610403366004613527565b610bc7565b60405190151581526020016103df565b34801561042457600080fd5b50610408610433366004613553565b602080526000908152604090205460ff1681565b34801561045357600080fd5b5061047b7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016103df565b34801561049f57600080fd5b506002545b6040519081526020016103df565b3480156104be57600080fd5b506104d26104cd366004613553565b610bdd565b005b3480156104e057600080fd5b506104a4600f5481565b3480156104f657600080fd5b506104a4600b5481565b34801561050c57600080fd5b506104a4601d5481565b34801561052257600080fd5b506104a4601c5481565b34801561053857600080fd5b506104d2610547366004613570565b610cb1565b34801561055857600080fd5b50610408610567366004613589565b610dcc565b34801561057857600080fd5b5061047b61dead81565b34801561058e57600080fd5b506104a4600d5481565b3480156105a457600080fd5b50600c546104089060ff1681565b3480156105be57600080fd5b50604051601281526020016103df565b3480156105da57600080fd5b506104086105e9366004613527565b610e8b565b3480156105fa57600080fd5b5061047b7f000000000000000000000000000000000000000000000000000000000000000081565b34801561062e57600080fd5b506011546104089060ff1681565b34801561064857600080fd5b50610408610657366004613553565b6001600160a01b03166000908152601f602052604090205460ff1690565b34801561068157600080fd5b506104a460185481565b34801561069757600080fd5b506011546104089062010000900460ff1681565b3480156106b757600080fd5b506104a46106c6366004613553565b6001600160a01b031660009081526020819052604090205490565b3480156106ed57600080fd5b506104d2610ec7565b34801561070257600080fd5b506104d26107113660046135da565b610f2d565b34801561072257600080fd5b506104086110bb565b34801561073757600080fd5b506104d261074636600461360f565b611146565b34801561075757600080fd5b5060065461047b906001600160a01b031681565b34801561077757600080fd5b506104a460155481565b34801561078d57600080fd5b506104d261079c366004613644565b6111e8565b3480156107ad57600080fd5b506104d26112be565b3480156107c257600080fd5b506005546001600160a01b031661047b565b3480156107e057600080fd5b5060075461047b906001600160a01b031681565b34801561080057600080fd5b506104a460195481565b34801561081657600080fd5b506104d2610825366004613670565b61134b565b34801561083657600080fd5b506103d26113dd565b34801561084b57600080fd5b506104d261085a36600461360f565b6113ec565b34801561086b57600080fd5b506104a460175481565b34801561088157600080fd5b506104a460105481565b34801561089757600080fd5b506104a4601e5481565b3480156108ad57600080fd5b506104a4601b5481565b3480156108c357600080fd5b506104086108d2366004613527565b6114fc565b3480156108e357600080fd5b506104a4600e5481565b3480156108f957600080fd5b50610408610908366004613527565b6115ad565b34801561091957600080fd5b506104d2610928366004613553565b6115ba565b34801561093957600080fd5b50610408610948366004613553565b60216020526000908152604090205460ff1681565b34801561096957600080fd5b5060115461040890610100900460ff1681565b34801561098857600080fd5b506104d261099736600461360f565b611689565b3480156109a857600080fd5b506104d26109b7366004613644565b611760565b3480156109c857600080fd5b506104d26109d7366004613570565b611833565b3480156109e857600080fd5b506013546104089060ff1681565b348015610a0257600080fd5b506104a460085481565b348015610a1857600080fd5b50610408610a27366004613570565b61194d565b348015610a3857600080fd5b506104a460145481565b348015610a4e57600080fd5b506104a4610a5d36600461368b565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b348015610a9457600080fd5b506104a460095481565b348015610aaa57600080fd5b50610408611ae5565b348015610abf57600080fd5b506104a460165481565b348015610ad557600080fd5b506104d2610ae4366004613553565b611b70565b348015610af557600080fd5b506104a4601a5481565b348015610b0b57600080fd5b506104a4600a5481565b348015610b2157600080fd5b50610408610b30366004613570565b611c52565b606060038054610b44906136c4565b80601f0160208091040260200160405190810160405280929190818152602001828054610b70906136c4565b8015610bbd5780601f10610b9257610100808354040283529160200191610bbd565b820191906000526020600020905b815481529060010190602001808311610ba057829003601f168201915b5050505050905090565b6000610bd4338484611f28565b50600192915050565b6005546001600160a01b03163314610c3c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6007546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600780547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610d0b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c33565b670de0b6b3a76400006103e8610d2060025490565b610d2b906001613747565b610d359190613784565b610d3f9190613784565b811015610db45760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201527f6c6f776572207468616e20302e312500000000000000000000000000000000006064820152608401610c33565b610dc681670de0b6b3a7640000613747565b60085550565b6000610dd9848484612080565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610e735760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e63650000000000000000000000000000000000000000000000006064820152608401610c33565b610e808533858403611f28565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610bd4918590610ec29086906137bf565b611f28565b6005546001600160a01b03163314610f215760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c33565b610f2b6000612aca565b565b6005546001600160a01b03163314610f875760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c33565b610258831015610fff5760405162461bcd60e51b815260206004820152603360248201527f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860448201527f616e206576657279203130206d696e75746573000000000000000000000000006064820152608401610c33565b6103e8821115801561100f575060015b6110815760405162461bcd60e51b815260206004820152603060248201527f4d75737420736574206175746f204c50206275726e2070657263656e7420626560448201527f747765656e20302520616e6420313025000000000000000000000000000000006064820152608401610c33565b600d92909255600b55600c80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b6005546000906001600160a01b031633146111185760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c33565b50601180547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055600190565b6005546001600160a01b031633146111a05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c33565b6001600160a01b03919091166000908152602080526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b6005546001600160a01b031633146112425760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c33565b6015839055601682905560178190558061125c83856137bf565b61126691906137bf565b601481815510156112b95760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420323025206f72206c6573730000006044820152606401610c33565b505050565b6005546001600160a01b031633146113185760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c33565b601180547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000ff166201010017905542600e55565b6005546001600160a01b031633146113a55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c33565b6011805491151562010000027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff909216919091179055565b606060048054610b44906136c4565b6005546001600160a01b031633146114465760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c33565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614156114ee5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610c33565b6114f88282612b34565b5050565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156115965760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610c33565b6115a33385858403611f28565b5060019392505050565b6000610bd4338484612080565b6005546001600160a01b031633146116145760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c33565b6006546040516001600160a01b03918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a3600680547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b6005546001600160a01b031633146116e35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c33565b6001600160a01b0382166000818152601f602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146117ba5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c33565b6019839055601a829055601b819055806117d483856137bf565b6117de91906137bf565b6018819055601910156112b95760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420323525206f72206c6573730000006044820152606401610c33565b6005546001600160a01b0316331461188d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c33565b670de0b6b3a76400006103e86118a260025490565b6118ad906005613747565b6118b79190613784565b6118c19190613784565b8110156119355760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060448201527f302e3525000000000000000000000000000000000000000000000000000000006064820152608401610c33565b61194781670de0b6b3a7640000613747565b600a5550565b6005546000906001600160a01b031633146119aa5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c33565b620186a06119b760025490565b6119c2906001613747565b6119cc9190613784565b821015611a415760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527f20302e3030312520746f74616c20737570706c792e00000000000000000000006064820152608401610c33565b6103e8611a4d60025490565b611a58906005613747565b611a629190613784565b821115611ad75760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160448201527f6e20302e352520746f74616c20737570706c792e0000000000000000000000006064820152608401610c33565b50600981905560015b919050565b6005546000906001600160a01b03163314611b425760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c33565b50601380547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055600190565b6005546001600160a01b03163314611bca5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c33565b6001600160a01b038116611c465760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610c33565b611c4f81612aca565b50565b6005546000906001600160a01b03163314611caf5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c33565b600f54601054611cbf91906137bf565b4211611d0d5760405162461bcd60e51b815260206004820181905260248201527f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e6973686044820152606401610c33565b6103e8821115611d855760405162461bcd60e51b815260206004820152602a60248201527f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60448201527f6b656e7320696e204c50000000000000000000000000000000000000000000006064820152608401610c33565b426010556040517f70a082310000000000000000000000000000000000000000000000000000000081526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016600482015260009030906370a0823190602401602060405180830381865afa158015611e09573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e2d91906137d7565b90506000611e47612710611e418487612ba6565b90612bb9565b90508015611e7c57611e7c7f000000000000000000000000000000000000000000000000000000000000000061dead83612bc5565b60007f00000000000000000000000000000000000000000000000000000000000000009050806001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015611edc57600080fd5b505af1158015611ef0573d6000803e3d6000fd5b50506040517f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb925060009150a1506001949350505050565b6001600160a01b038316611fa35760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610c33565b6001600160a01b03821661201f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610c33565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166120fc5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610c33565b6001600160a01b0382166121785760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610c33565b80612189576112b983836000612bc5565b60115460ff1615612692576005546001600160a01b038481169116148015906121c057506005546001600160a01b03838116911614155b80156121d457506001600160a01b03821615155b80156121eb57506001600160a01b03821661dead14155b8015612212575060055474010000000000000000000000000000000000000000900460ff16155b1561269257601154610100900460ff166122b1576001600160a01b0383166000908152601f602052604090205460ff168061226557506001600160a01b0382166000908152601f602052604090205460ff165b6122b15760405162461bcd60e51b815260206004820152601660248201527f54726164696e67206973206e6f74206163746976652e000000000000000000006044820152606401610c33565b60135460ff161561240c576005546001600160a01b0383811691161480159061230c57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b801561234a57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b1561240c573260009081526012602052604090205443116123f95760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60648201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000608482015260a401610c33565b3260009081526012602052604090204390555b6001600160a01b03831660009081526021602052604090205460ff16801561244c57506001600160a01b038216600090815260208052604090205460ff16155b15612542576008548111156124c95760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527f6d61785472616e73616374696f6e416d6f756e742e00000000000000000000006064820152608401610c33565b600a546001600160a01b0383166000908152602081905260409020546124ef90836137bf565b111561253d5760405162461bcd60e51b815260206004820152601360248201527f4d61782077616c6c6574206578636565646564000000000000000000000000006044820152606401610c33565b612692565b6001600160a01b03821660009081526021602052604090205460ff16801561258257506001600160a01b038316600090815260208052604090205460ff16155b156125ff5760085481111561253d5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201527f206d61785472616e73616374696f6e416d6f756e742e000000000000000000006064820152608401610c33565b6001600160a01b038216600090815260208052604090205460ff1661269257600a546001600160a01b03831660009081526020819052604090205461264490836137bf565b11156126925760405162461bcd60e51b815260206004820152601360248201527f4d61782077616c6c6574206578636565646564000000000000000000000000006044820152606401610c33565b30600090815260208190526040902054600954811080159081906126be575060115462010000900460ff165b80156126e5575060055474010000000000000000000000000000000000000000900460ff16155b801561270a57506001600160a01b03851660009081526021602052604090205460ff16155b801561272f57506001600160a01b0385166000908152601f602052604090205460ff16155b801561275457506001600160a01b0384166000908152601f602052604090205460ff16155b156127c957600580547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff16740100000000000000000000000000000000000000001790556127a0612ddd565b600580547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1690555b60055474010000000000000000000000000000000000000000900460ff1615801561280c57506001600160a01b03841660009081526021602052604090205460ff165b801561281a5750600c5460ff165b80156128355750600d54600e5461283191906137bf565b4210155b801561285a57506001600160a01b0385166000908152601f602052604090205460ff16155b1561286957612867613017565b505b6005546001600160a01b0386166000908152601f602052604090205460ff740100000000000000000000000000000000000000009092048216159116806128c857506001600160a01b0385166000908152601f602052604090205460ff165b156128d1575060005b60008115612ab6576001600160a01b03861660009081526021602052604090205460ff16801561290357506000601854115b156129bb576129226064611e4160185488612ba690919063ffffffff16565b9050601854601a54826129359190613747565b61293f9190613784565b601d600082825461295091906137bf565b9091555050601854601b546129659083613747565b61296f9190613784565b601e600082825461298091906137bf565b90915550506018546019546129959083613747565b61299f9190613784565b601c60008282546129b091906137bf565b90915550612a989050565b6001600160a01b03871660009081526021602052604090205460ff1680156129e557506000601454115b15612a9857612a046064611e4160145488612ba690919063ffffffff16565b905060145460165482612a179190613747565b612a219190613784565b601d6000828254612a3291906137bf565b9091555050601454601754612a479083613747565b612a519190613784565b601e6000828254612a6291906137bf565b9091555050601454601554612a779083613747565b612a819190613784565b601c6000828254612a9291906137bf565b90915550505b8015612aa957612aa9873083612bc5565b612ab381866137f0565b94505b612ac1878787612bc5565b50505050505050565b600580546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03821660008181526021602052604080822080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6000612bb28284613747565b9392505050565b6000612bb28284613784565b6001600160a01b038316612c415760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610c33565b6001600160a01b038216612cbd5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610c33565b6001600160a01b03831660009081526020819052604090205481811015612d4c5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610c33565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290612d839084906137bf565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612dcf91815260200190565b60405180910390a350505050565b3060009081526020819052604081205490506000601e54601c54601d54612e0491906137bf565b612e0e91906137bf565b90506000821580612e1d575081155b15612e2757505050565b600954612e35906014613747565b831115612e4d57600954612e4a906014613747565b92505b6000600283601d5486612e609190613747565b612e6a9190613784565b612e749190613784565b90506000612e8285836131c0565b905047612e8e826131cc565b6000612e9a47836131c0565b90506000612eb787611e41601c5485612ba690919063ffffffff16565b90506000612ed488611e41601e5486612ba690919063ffffffff16565b9050600081612ee384866137f0565b612eed91906137f0565b6000601d819055601c819055601e8190556007546040519293506001600160a01b031691849181818185875af1925050503d8060008114612f4a576040519150601f19603f3d011682016040523d82523d6000602084013e612f4f565b606091505b50909850508615801590612f635750600081115b15612fb657612f7287826133a5565b601d54604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d8060008114613003576040519150601f19603f3d011682016040523d82523d6000602084013e613008565b606091505b50505050505050505050505050565b42600e556040517f70a082310000000000000000000000000000000000000000000000000000000081526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000166004820152600090819030906370a0823190602401602060405180830381865afa15801561309d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906130c191906137d7565b905060006130e0612710611e41600b5485612ba690919063ffffffff16565b90508015613115576131157f000000000000000000000000000000000000000000000000000000000000000061dead83612bc5565b60007f00000000000000000000000000000000000000000000000000000000000000009050806001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561317557600080fd5b505af1158015613189573d6000803e3d6000fd5b50506040517f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d925060009150a16001935050505090565b6000612bb282846137f0565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061320157613201613807565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561327f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906132a39190613836565b816001815181106132b6576132b6613807565b60200260200101906001600160a01b031690816001600160a01b031681525050613301307f000000000000000000000000000000000000000000000000000000000000000084611f28565b6040517f791ac9470000000000000000000000000000000000000000000000000000000081526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac9479061336f908590600090869030904290600401613853565b600060405180830381600087803b15801561338957600080fd5b505af115801561339d573d6000803e3d6000fd5b505050505050565b6133d0307f000000000000000000000000000000000000000000000000000000000000000084611f28565b6040517ff305d71900000000000000000000000000000000000000000000000000000000815230600482015260248101839052600060448201819052606482015261dead60848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f305d71990839060c40160606040518083038185885af1158015613473573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061349891906138c4565b5050505050565b600060208083528351808285015260005b818110156134cc578581018301518582016040015282016134b0565b818111156134de576000604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b6001600160a01b0381168114611c4f57600080fd5b6000806040838503121561353a57600080fd5b823561354581613512565b946020939093013593505050565b60006020828403121561356557600080fd5b8135612bb281613512565b60006020828403121561358257600080fd5b5035919050565b60008060006060848603121561359e57600080fd5b83356135a981613512565b925060208401356135b981613512565b929592945050506040919091013590565b80358015158114611ae057600080fd5b6000806000606084860312156135ef57600080fd5b8335925060208401359150613606604085016135ca565b90509250925092565b6000806040838503121561362257600080fd5b823561362d81613512565b915061363b602084016135ca565b90509250929050565b60008060006060848603121561365957600080fd5b505081359360208301359350604090920135919050565b60006020828403121561368257600080fd5b612bb2826135ca565b6000806040838503121561369e57600080fd5b82356136a981613512565b915060208301356136b981613512565b809150509250929050565b600181811c908216806136d857607f821691505b60208210811415613712577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561377f5761377f613718565b500290565b6000826137ba577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b600082198211156137d2576137d2613718565b500190565b6000602082840312156137e957600080fd5b5051919050565b60008282101561380257613802613718565b500390565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006020828403121561384857600080fd5b8151612bb281613512565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156138a35784516001600160a01b03168352938301939183019160010161387e565b50506001600160a01b03969096166060850152505050608001529392505050565b6000806000606084860312156138d957600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220b4fcc92f4582ada3aab22bb0126018c52a53fdc6fc300aaf3c52d95021355fd064736f6c634300080a00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x6080604052600436106103b15760003560e01c80638da5cb5b116101e7578063bbc0c7421161010d578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610ac9578063f637434214610ae9578063f8b45b0514610aff578063fe72b27a14610b1557600080fd5b8063dd62ed3e14610a42578063e2f4560514610a88578063e884f26014610a9e578063f11a24d314610ab357600080fd5b8063c876d0b9116100dc578063c876d0b9146109dc578063c8c8ebe4146109f6578063d257b34f14610a0c578063d85ba06314610a2c57600080fd5b8063bbc0c7421461095d578063c02466681461097c578063c17b5b8c1461099c578063c18bc195146109bc57600080fd5b80639ec22c0e11610185578063a4c82a0011610154578063a4c82a00146108d7578063a9059cbb146108ed578063aacebbe31461090d578063b62496f51461092d57600080fd5b80639ec22c0e146108755780639fccce321461088b578063a0d82dc5146108a1578063a457c2d7146108b757600080fd5b8063924de9b7116101c1578063924de9b71461080a57806395d89b411461082a5780639a7a23d61461083f5780639c3b4fdc1461085f57600080fd5b80638da5cb5b146107b65780638ea5220f146107d457806392136913146107f457600080fd5b8063313ce567116102d7578063715018a61161026a57806375f0a8741161023957806375f0a8741461074b5780637bce5a041461076b5780638095d564146107815780638a8c523c146107a157600080fd5b8063715018a6146106e1578063730c1888146106f6578063751039fc146107165780637571336a1461072b57600080fd5b80634fbee193116102a65780634fbee1931461063c5780636a486a8e146106755780636ddd17131461068b57806370a08231146106ab57600080fd5b8063313ce567146105b257806339509351146105ce57806349bd5a5e146105ee5780634a62bb651461062257600080fd5b8063199ffc721161034f57806323b872dd1161031e57806323b872dd1461054c57806327c8f8351461056c5780632c3e486c146105825780632e82f1a01461059857600080fd5b8063199ffc72146104ea5780631a8145bb146105005780631f3fed8f14610516578063203e727e1461052c57600080fd5b80631694505e1161038b5780631694505e1461044757806318160ddd146104935780631816467f146104b2578063184c16c5146104d457600080fd5b806306fdde03146103bd578063095ea7b3146103e857806310d5de531461041857600080fd5b366103b857005b600080fd5b3480156103c957600080fd5b506103d2610b35565b6040516103df919061349f565b60405180910390f35b3480156103f457600080fd5b50610408610403366004613527565b610bc7565b60405190151581526020016103df565b34801561042457600080fd5b50610408610433366004613553565b602080526000908152604090205460ff1681565b34801561045357600080fd5b5061047b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016103df565b34801561049f57600080fd5b506002545b6040519081526020016103df565b3480156104be57600080fd5b506104d26104cd366004613553565b610bdd565b005b3480156104e057600080fd5b506104a4600f5481565b3480156104f657600080fd5b506104a4600b5481565b34801561050c57600080fd5b506104a4601d5481565b34801561052257600080fd5b506104a4601c5481565b34801561053857600080fd5b506104d2610547366004613570565b610cb1565b34801561055857600080fd5b50610408610567366004613589565b610dcc565b34801561057857600080fd5b5061047b61dead81565b34801561058e57600080fd5b506104a4600d5481565b3480156105a457600080fd5b50600c546104089060ff1681565b3480156105be57600080fd5b50604051601281526020016103df565b3480156105da57600080fd5b506104086105e9366004613527565b610e8b565b3480156105fa57600080fd5b5061047b7f00000000000000000000000031b0c5f79cc003584ac90cfc290a45522cd1fad481565b34801561062e57600080fd5b506011546104089060ff1681565b34801561064857600080fd5b50610408610657366004613553565b6001600160a01b03166000908152601f602052604090205460ff1690565b34801561068157600080fd5b506104a460185481565b34801561069757600080fd5b506011546104089062010000900460ff1681565b3480156106b757600080fd5b506104a46106c6366004613553565b6001600160a01b031660009081526020819052604090205490565b3480156106ed57600080fd5b506104d2610ec7565b34801561070257600080fd5b506104d26107113660046135da565b610f2d565b34801561072257600080fd5b506104086110bb565b34801561073757600080fd5b506104d261074636600461360f565b611146565b34801561075757600080fd5b5060065461047b906001600160a01b031681565b34801561077757600080fd5b506104a460155481565b34801561078d57600080fd5b506104d261079c366004613644565b6111e8565b3480156107ad57600080fd5b506104d26112be565b3480156107c257600080fd5b506005546001600160a01b031661047b565b3480156107e057600080fd5b5060075461047b906001600160a01b031681565b34801561080057600080fd5b506104a460195481565b34801561081657600080fd5b506104d2610825366004613670565b61134b565b34801561083657600080fd5b506103d26113dd565b34801561084b57600080fd5b506104d261085a36600461360f565b6113ec565b34801561086b57600080fd5b506104a460175481565b34801561088157600080fd5b506104a460105481565b34801561089757600080fd5b506104a4601e5481565b3480156108ad57600080fd5b506104a4601b5481565b3480156108c357600080fd5b506104086108d2366004613527565b6114fc565b3480156108e357600080fd5b506104a4600e5481565b3480156108f957600080fd5b50610408610908366004613527565b6115ad565b34801561091957600080fd5b506104d2610928366004613553565b6115ba565b34801561093957600080fd5b50610408610948366004613553565b60216020526000908152604090205460ff1681565b34801561096957600080fd5b5060115461040890610100900460ff1681565b34801561098857600080fd5b506104d261099736600461360f565b611689565b3480156109a857600080fd5b506104d26109b7366004613644565b611760565b3480156109c857600080fd5b506104d26109d7366004613570565b611833565b3480156109e857600080fd5b506013546104089060ff1681565b348015610a0257600080fd5b506104a460085481565b348015610a1857600080fd5b50610408610a27366004613570565b61194d565b348015610a3857600080fd5b506104a460145481565b348015610a4e57600080fd5b506104a4610a5d36600461368b565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b348015610a9457600080fd5b506104a460095481565b348015610aaa57600080fd5b50610408611ae5565b348015610abf57600080fd5b506104a460165481565b348015610ad557600080fd5b506104d2610ae4366004613553565b611b70565b348015610af557600080fd5b506104a4601a5481565b348015610b0b57600080fd5b506104a4600a5481565b348015610b2157600080fd5b50610408610b30366004613570565b611c52565b606060038054610b44906136c4565b80601f0160208091040260200160405190810160405280929190818152602001828054610b70906136c4565b8015610bbd5780601f10610b9257610100808354040283529160200191610bbd565b820191906000526020600020905b815481529060010190602001808311610ba057829003601f168201915b5050505050905090565b6000610bd4338484611f28565b50600192915050565b6005546001600160a01b03163314610c3c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6007546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600780547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610d0b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c33565b670de0b6b3a76400006103e8610d2060025490565b610d2b906001613747565b610d359190613784565b610d3f9190613784565b811015610db45760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201527f6c6f776572207468616e20302e312500000000000000000000000000000000006064820152608401610c33565b610dc681670de0b6b3a7640000613747565b60085550565b6000610dd9848484612080565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610e735760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e63650000000000000000000000000000000000000000000000006064820152608401610c33565b610e808533858403611f28565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610bd4918590610ec29086906137bf565b611f28565b6005546001600160a01b03163314610f215760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c33565b610f2b6000612aca565b565b6005546001600160a01b03163314610f875760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c33565b610258831015610fff5760405162461bcd60e51b815260206004820152603360248201527f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860448201527f616e206576657279203130206d696e75746573000000000000000000000000006064820152608401610c33565b6103e8821115801561100f575060015b6110815760405162461bcd60e51b815260206004820152603060248201527f4d75737420736574206175746f204c50206275726e2070657263656e7420626560448201527f747765656e20302520616e6420313025000000000000000000000000000000006064820152608401610c33565b600d92909255600b55600c80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b6005546000906001600160a01b031633146111185760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c33565b50601180547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055600190565b6005546001600160a01b031633146111a05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c33565b6001600160a01b03919091166000908152602080526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b6005546001600160a01b031633146112425760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c33565b6015839055601682905560178190558061125c83856137bf565b61126691906137bf565b601481815510156112b95760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420323025206f72206c6573730000006044820152606401610c33565b505050565b6005546001600160a01b031633146113185760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c33565b601180547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000ff166201010017905542600e55565b6005546001600160a01b031633146113a55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c33565b6011805491151562010000027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff909216919091179055565b606060048054610b44906136c4565b6005546001600160a01b031633146114465760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c33565b7f00000000000000000000000031b0c5f79cc003584ac90cfc290a45522cd1fad46001600160a01b0316826001600160a01b031614156114ee5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610c33565b6114f88282612b34565b5050565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156115965760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610c33565b6115a33385858403611f28565b5060019392505050565b6000610bd4338484612080565b6005546001600160a01b031633146116145760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c33565b6006546040516001600160a01b03918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a3600680547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b6005546001600160a01b031633146116e35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c33565b6001600160a01b0382166000818152601f602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146117ba5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c33565b6019839055601a829055601b819055806117d483856137bf565b6117de91906137bf565b6018819055601910156112b95760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420323525206f72206c6573730000006044820152606401610c33565b6005546001600160a01b0316331461188d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c33565b670de0b6b3a76400006103e86118a260025490565b6118ad906005613747565b6118b79190613784565b6118c19190613784565b8110156119355760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060448201527f302e3525000000000000000000000000000000000000000000000000000000006064820152608401610c33565b61194781670de0b6b3a7640000613747565b600a5550565b6005546000906001600160a01b031633146119aa5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c33565b620186a06119b760025490565b6119c2906001613747565b6119cc9190613784565b821015611a415760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527f20302e3030312520746f74616c20737570706c792e00000000000000000000006064820152608401610c33565b6103e8611a4d60025490565b611a58906005613747565b611a629190613784565b821115611ad75760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160448201527f6e20302e352520746f74616c20737570706c792e0000000000000000000000006064820152608401610c33565b50600981905560015b919050565b6005546000906001600160a01b03163314611b425760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c33565b50601380547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055600190565b6005546001600160a01b03163314611bca5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c33565b6001600160a01b038116611c465760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610c33565b611c4f81612aca565b50565b6005546000906001600160a01b03163314611caf5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c33565b600f54601054611cbf91906137bf565b4211611d0d5760405162461bcd60e51b815260206004820181905260248201527f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e6973686044820152606401610c33565b6103e8821115611d855760405162461bcd60e51b815260206004820152602a60248201527f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60448201527f6b656e7320696e204c50000000000000000000000000000000000000000000006064820152608401610c33565b426010556040517f70a082310000000000000000000000000000000000000000000000000000000081526001600160a01b037f00000000000000000000000031b0c5f79cc003584ac90cfc290a45522cd1fad416600482015260009030906370a0823190602401602060405180830381865afa158015611e09573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e2d91906137d7565b90506000611e47612710611e418487612ba6565b90612bb9565b90508015611e7c57611e7c7f00000000000000000000000031b0c5f79cc003584ac90cfc290a45522cd1fad461dead83612bc5565b60007f00000000000000000000000031b0c5f79cc003584ac90cfc290a45522cd1fad49050806001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015611edc57600080fd5b505af1158015611ef0573d6000803e3d6000fd5b50506040517f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb925060009150a1506001949350505050565b6001600160a01b038316611fa35760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610c33565b6001600160a01b03821661201f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610c33565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166120fc5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610c33565b6001600160a01b0382166121785760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610c33565b80612189576112b983836000612bc5565b60115460ff1615612692576005546001600160a01b038481169116148015906121c057506005546001600160a01b03838116911614155b80156121d457506001600160a01b03821615155b80156121eb57506001600160a01b03821661dead14155b8015612212575060055474010000000000000000000000000000000000000000900460ff16155b1561269257601154610100900460ff166122b1576001600160a01b0383166000908152601f602052604090205460ff168061226557506001600160a01b0382166000908152601f602052604090205460ff165b6122b15760405162461bcd60e51b815260206004820152601660248201527f54726164696e67206973206e6f74206163746976652e000000000000000000006044820152606401610c33565b60135460ff161561240c576005546001600160a01b0383811691161480159061230c57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316826001600160a01b031614155b801561234a57507f00000000000000000000000031b0c5f79cc003584ac90cfc290a45522cd1fad46001600160a01b0316826001600160a01b031614155b1561240c573260009081526012602052604090205443116123f95760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60648201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000608482015260a401610c33565b3260009081526012602052604090204390555b6001600160a01b03831660009081526021602052604090205460ff16801561244c57506001600160a01b038216600090815260208052604090205460ff16155b15612542576008548111156124c95760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527f6d61785472616e73616374696f6e416d6f756e742e00000000000000000000006064820152608401610c33565b600a546001600160a01b0383166000908152602081905260409020546124ef90836137bf565b111561253d5760405162461bcd60e51b815260206004820152601360248201527f4d61782077616c6c6574206578636565646564000000000000000000000000006044820152606401610c33565b612692565b6001600160a01b03821660009081526021602052604090205460ff16801561258257506001600160a01b038316600090815260208052604090205460ff16155b156125ff5760085481111561253d5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201527f206d61785472616e73616374696f6e416d6f756e742e000000000000000000006064820152608401610c33565b6001600160a01b038216600090815260208052604090205460ff1661269257600a546001600160a01b03831660009081526020819052604090205461264490836137bf565b11156126925760405162461bcd60e51b815260206004820152601360248201527f4d61782077616c6c6574206578636565646564000000000000000000000000006044820152606401610c33565b30600090815260208190526040902054600954811080159081906126be575060115462010000900460ff165b80156126e5575060055474010000000000000000000000000000000000000000900460ff16155b801561270a57506001600160a01b03851660009081526021602052604090205460ff16155b801561272f57506001600160a01b0385166000908152601f602052604090205460ff16155b801561275457506001600160a01b0384166000908152601f602052604090205460ff16155b156127c957600580547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff16740100000000000000000000000000000000000000001790556127a0612ddd565b600580547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1690555b60055474010000000000000000000000000000000000000000900460ff1615801561280c57506001600160a01b03841660009081526021602052604090205460ff165b801561281a5750600c5460ff165b80156128355750600d54600e5461283191906137bf565b4210155b801561285a57506001600160a01b0385166000908152601f602052604090205460ff16155b1561286957612867613017565b505b6005546001600160a01b0386166000908152601f602052604090205460ff740100000000000000000000000000000000000000009092048216159116806128c857506001600160a01b0385166000908152601f602052604090205460ff165b156128d1575060005b60008115612ab6576001600160a01b03861660009081526021602052604090205460ff16801561290357506000601854115b156129bb576129226064611e4160185488612ba690919063ffffffff16565b9050601854601a54826129359190613747565b61293f9190613784565b601d600082825461295091906137bf565b9091555050601854601b546129659083613747565b61296f9190613784565b601e600082825461298091906137bf565b90915550506018546019546129959083613747565b61299f9190613784565b601c60008282546129b091906137bf565b90915550612a989050565b6001600160a01b03871660009081526021602052604090205460ff1680156129e557506000601454115b15612a9857612a046064611e4160145488612ba690919063ffffffff16565b905060145460165482612a179190613747565b612a219190613784565b601d6000828254612a3291906137bf565b9091555050601454601754612a479083613747565b612a519190613784565b601e6000828254612a6291906137bf565b9091555050601454601554612a779083613747565b612a819190613784565b601c6000828254612a9291906137bf565b90915550505b8015612aa957612aa9873083612bc5565b612ab381866137f0565b94505b612ac1878787612bc5565b50505050505050565b600580546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03821660008181526021602052604080822080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6000612bb28284613747565b9392505050565b6000612bb28284613784565b6001600160a01b038316612c415760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610c33565b6001600160a01b038216612cbd5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610c33565b6001600160a01b03831660009081526020819052604090205481811015612d4c5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610c33565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290612d839084906137bf565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612dcf91815260200190565b60405180910390a350505050565b3060009081526020819052604081205490506000601e54601c54601d54612e0491906137bf565b612e0e91906137bf565b90506000821580612e1d575081155b15612e2757505050565b600954612e35906014613747565b831115612e4d57600954612e4a906014613747565b92505b6000600283601d5486612e609190613747565b612e6a9190613784565b612e749190613784565b90506000612e8285836131c0565b905047612e8e826131cc565b6000612e9a47836131c0565b90506000612eb787611e41601c5485612ba690919063ffffffff16565b90506000612ed488611e41601e5486612ba690919063ffffffff16565b9050600081612ee384866137f0565b612eed91906137f0565b6000601d819055601c819055601e8190556007546040519293506001600160a01b031691849181818185875af1925050503d8060008114612f4a576040519150601f19603f3d011682016040523d82523d6000602084013e612f4f565b606091505b50909850508615801590612f635750600081115b15612fb657612f7287826133a5565b601d54604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d8060008114613003576040519150601f19603f3d011682016040523d82523d6000602084013e613008565b606091505b50505050505050505050505050565b42600e556040517f70a082310000000000000000000000000000000000000000000000000000000081526001600160a01b037f00000000000000000000000031b0c5f79cc003584ac90cfc290a45522cd1fad4166004820152600090819030906370a0823190602401602060405180830381865afa15801561309d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906130c191906137d7565b905060006130e0612710611e41600b5485612ba690919063ffffffff16565b90508015613115576131157f00000000000000000000000031b0c5f79cc003584ac90cfc290a45522cd1fad461dead83612bc5565b60007f00000000000000000000000031b0c5f79cc003584ac90cfc290a45522cd1fad49050806001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561317557600080fd5b505af1158015613189573d6000803e3d6000fd5b50506040517f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d925060009150a16001935050505090565b6000612bb282846137f0565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061320157613201613807565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561327f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906132a39190613836565b816001815181106132b6576132b6613807565b60200260200101906001600160a01b031690816001600160a01b031681525050613301307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611f28565b6040517f791ac9470000000000000000000000000000000000000000000000000000000081526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac9479061336f908590600090869030904290600401613853565b600060405180830381600087803b15801561338957600080fd5b505af115801561339d573d6000803e3d6000fd5b505050505050565b6133d0307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611f28565b6040517ff305d71900000000000000000000000000000000000000000000000000000000815230600482015260248101839052600060448201819052606482015261dead60848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03169063f305d71990839060c40160606040518083038185885af1158015613473573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061349891906138c4565b5050505050565b600060208083528351808285015260005b818110156134cc578581018301518582016040015282016134b0565b818111156134de576000604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b6001600160a01b0381168114611c4f57600080fd5b6000806040838503121561353a57600080fd5b823561354581613512565b946020939093013593505050565b60006020828403121561356557600080fd5b8135612bb281613512565b60006020828403121561358257600080fd5b5035919050565b60008060006060848603121561359e57600080fd5b83356135a981613512565b925060208401356135b981613512565b929592945050506040919091013590565b80358015158114611ae057600080fd5b6000806000606084860312156135ef57600080fd5b8335925060208401359150613606604085016135ca565b90509250925092565b6000806040838503121561362257600080fd5b823561362d81613512565b915061363b602084016135ca565b90509250929050565b60008060006060848603121561365957600080fd5b505081359360208301359350604090920135919050565b60006020828403121561368257600080fd5b612bb2826135ca565b6000806040838503121561369e57600080fd5b82356136a981613512565b915060208301356136b981613512565b809150509250929050565b600181811c908216806136d857607f821691505b60208210811415613712577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561377f5761377f613718565b500290565b6000826137ba577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b600082198211156137d2576137d2613718565b500190565b6000602082840312156137e957600080fd5b5051919050565b60008282101561380257613802613718565b500390565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006020828403121561384857600080fd5b8151612bb281613512565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156138a35784516001600160a01b03168352938301939183019160010161387e565b50506001600160a01b03969096166060850152505050608001529392505050565b6000806000606084860312156138d957600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220b4fcc92f4582ada3aab22bb0126018c52a53fdc6fc300aaf3c52d95021355fd064736f6c634300080a0033

Deployed Bytecode Sourcemap

33136:19458:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9932:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12099:169;;;;;;;;;;-1:-1:-1;12099:169:0;;;;;:::i;:::-;;:::i;:::-;;;1319:14:1;;1312:22;1294:41;;1282:2;1267:18;12099:169:0;1154:187:1;34772:63:0;;;;;;;;;;-1:-1:-1;34772:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;33221:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1789:55:1;;;1771:74;;1759:2;1744:18;33221:51:0;1598:253:1;11052:108:0;;;;;;;;;;-1:-1:-1;11140:12:0;;11052:108;;;2002:25:1;;;1990:2;1975:18;11052:108:0;1856:177:1;41922:157:0;;;;;;;;;;-1:-1:-1;41922:157:0;;;;;:::i;:::-;;:::i;:::-;;33786:47;;;;;;;;;;;;;;;;33601:36;;;;;;;;;;;;;;;;34556:33;;;;;;;;;;;;;;;;34516;;;;;;;;;;;;;;;;39236:275;;;;;;;;;;-1:-1:-1;39236:275:0;;;;;:::i;:::-;;:::i;12750:492::-;;;;;;;;;;-1:-1:-1;12750:492:0;;;;;:::i;:::-;;:::i;33324:53::-;;;;;;;;;;;;33370:6;33324:53;;33696:45;;;;;;;;;;;;;;;;33657:32;;;;;;;;;;-1:-1:-1;33657:32:0;;;;;;;;10894:93;;;;;;;;;;-1:-1:-1;10894:93:0;;10977:2;3057:36:1;;3045:2;3030:18;10894:93:0;2915:184:1;13651:215:0;;;;;;;;;;-1:-1:-1;13651:215:0;;;;;:::i;:::-;;:::i;33279:38::-;;;;;;;;;;;;;;;33884:33;;;;;;;;;;-1:-1:-1;33884:33:0;;;;;;;;42087:126;;;;;;;;;;-1:-1:-1;42087:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;42177:28:0;42153:4;42177:28;;;:19;:28;;;;;;;;;42087:126;34371:28;;;;;;;;;;;;;;;;33964:31;;;;;;;;;;-1:-1:-1;33964:31:0;;;;;;;;;;;11223:127;;;;;;;;;;-1:-1:-1;11223:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;11324:18:0;11297:7;11324:18;;;;;;;;;;;;11223:127;3167:103;;;;;;;;;;;;;:::i;50176:555::-;;;;;;;;;;-1:-1:-1;50176:555:0;;;;;:::i;:::-;;:::i;38344:121::-;;;;;;;;;;;;;:::i;39783:167::-;;;;;;;;;;-1:-1:-1;39783:167:0;;;;;:::i;:::-;;:::i;33416:30::-;;;;;;;;;;-1:-1:-1;33416:30:0;;;;-1:-1:-1;;;;;33416:30:0;;;34264;;;;;;;;;;;;;;;;40154:403;;;;;;;;;;-1:-1:-1;40154:403:0;;;;;:::i;:::-;;:::i;38137:155::-;;;;;;;;;;;;;:::i;2516:87::-;;;;;;;;;;-1:-1:-1;2589:6:0;;-1:-1:-1;;;;;2589:6:0;2516:87;;33453:24;;;;;;;;;;-1:-1:-1;33453:24:0;;;;-1:-1:-1;;;;;33453:24:0;;;34406:31;;;;;;;;;;;;;;;;40046:100;;;;;;;;;;-1:-1:-1;40046:100:0;;;;;:::i;:::-;;:::i;10151:104::-;;;;;;;;;;;;;:::i;41175:304::-;;;;;;;;;;-1:-1:-1;41175:304:0;;;;;:::i;:::-;;:::i;34338:24::-;;;;;;;;;;;;;;;;33840:35;;;;;;;;;;;;;;;;34596:27;;;;;;;;;;;;;;;;34482:25;;;;;;;;;;;;;;;;14369:413;;;;;;;;;;-1:-1:-1;14369:413:0;;;;;:::i;:::-;;:::i;33748:29::-;;;;;;;;;;;;;;;;11563:175;;;;;;;;;;-1:-1:-1;11563:175:0;;;;;:::i;:::-;;:::i;41683:231::-;;;;;;;;;;-1:-1:-1;41683:231:0;;;;;:::i;:::-;;:::i;34993:57::-;;;;;;;;;;-1:-1:-1;34993:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;33924:33;;;;;;;;;;-1:-1:-1;33924:33:0;;;;;;;;;;;40985:182;;;;;;;;;;-1:-1:-1;40985:182:0;;;;;:::i;:::-;;:::i;40565:412::-;;;;;;;;;;-1:-1:-1;40565:412:0;;;;;:::i;:::-;;:::i;39519:256::-;;;;;;;;;;-1:-1:-1;39519:256:0;;;;;:::i;:::-;;:::i;34182:39::-;;;;;;;;;;-1:-1:-1;34182:39:0;;;;;;;;33486:35;;;;;;;;;;;;;;;;38731:497;;;;;;;;;;-1:-1:-1;38731:497:0;;;;;:::i;:::-;;:::i;34230:27::-;;;;;;;;;;;;;;;;11801:151;;;;;;;;;;-1:-1:-1;11801:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;11917:18:0;;;11890:7;11917:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11801:151;33528:33;;;;;;;;;;;;;;;;38526:135;;;;;;;;;;;;;:::i;34301:30::-;;;;;;;;;;;;;;;;3425:201;;;;;;;;;;-1:-1:-1;3425:201:0;;;;;:::i;:::-;;:::i;34444:31::-;;;;;;;;;;;;;;;;33568:24;;;;;;;;;;;;;;;;51535:1056;;;;;;;;;;-1:-1:-1;51535:1056:0;;;;;:::i;:::-;;:::i;9932:100::-;9986:13;10019:5;10012:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9932:100;:::o;12099:169::-;12182:4;12199:39;1269:10;12222:7;12231:6;12199:8;:39::i;:::-;-1:-1:-1;12256:4:0;12099:169;;;;:::o;41922:157::-;2589:6;;-1:-1:-1;;;;;2589:6:0;1269:10;2736:23;2728:68;;;;-1:-1:-1;;;2728:68:0;;5453:2:1;2728:68:0;;;5435:21:1;;;5472:18;;;5465:30;5531:34;5511:18;;;5504:62;5583:18;;2728:68:0;;;;;;;;;42029:9:::1;::::0;42001:38:::1;::::0;-1:-1:-1;;;;;42029:9:0;;::::1;::::0;42001:38;::::1;::::0;::::1;::::0;42029:9:::1;::::0;42001:38:::1;42050:9;:21:::0;;;::::1;-1:-1:-1::0;;;;;42050:21:0;;;::::1;::::0;;;::::1;::::0;;41922:157::o;39236:275::-;2589:6;;-1:-1:-1;;;;;2589:6:0;1269:10;2736:23;2728:68;;;;-1:-1:-1;;;2728:68:0;;5453:2:1;2728:68:0;;;5435:21:1;;;5472:18;;;5465:30;5531:34;5511:18;;;5504:62;5583:18;;2728:68:0;5251:356:1;2728:68:0;39373:4:::1;39365;39344:13;11140:12:::0;;;11052:108;39344:13:::1;:17;::::0;39360:1:::1;39344:17;:::i;:::-;39343:26;;;;:::i;:::-;39342:35;;;;:::i;:::-;39332:6;:45;;39310:142;;;::::0;-1:-1:-1;;;39310:142:0;;6515:2:1;39310:142:0::1;::::0;::::1;6497:21:1::0;6554:2;6534:18;;;6527:30;6593:34;6573:18;;;6566:62;6664:17;6644:18;;;6637:45;6699:19;;39310:142:0::1;6313:411:1::0;39310:142:0::1;39486:17;:6:::0;39496::::1;39486:17;:::i;:::-;39463:20;:40:::0;-1:-1:-1;39236:275:0:o;12750:492::-;12890:4;12907:36;12917:6;12925:9;12936:6;12907:9;:36::i;:::-;-1:-1:-1;;;;;12983:19:0;;12956:24;12983:19;;;:11;:19;;;;;;;;1269:10;12983:33;;;;;;;;13035:26;;;;13027:79;;;;-1:-1:-1;;;13027:79:0;;6931:2:1;13027:79:0;;;6913:21:1;6970:2;6950:18;;;6943:30;7009:34;6989:18;;;6982:62;7080:10;7060:18;;;7053:38;7108:19;;13027:79:0;6729:404:1;13027:79:0;13142:57;13151:6;1269:10;13192:6;13173:16;:25;13142:8;:57::i;:::-;-1:-1:-1;13230:4:0;;12750:492;-1:-1:-1;;;;12750:492:0:o;13651:215::-;1269:10;13739:4;13788:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13788:34:0;;;;;;;;;;13739:4;;13756:80;;13779:7;;13788:47;;13825:10;;13788:47;:::i;:::-;13756:8;:80::i;3167:103::-;2589:6;;-1:-1:-1;;;;;2589:6:0;1269:10;2736:23;2728:68;;;;-1:-1:-1;;;2728:68:0;;5453:2:1;2728:68:0;;;5435:21:1;;;5472:18;;;5465:30;5531:34;5511:18;;;5504:62;5583:18;;2728:68:0;5251:356:1;2728:68:0;3232:30:::1;3259:1;3232:18;:30::i;:::-;3167:103::o:0;50176:555::-;2589:6;;-1:-1:-1;;;;;2589:6:0;1269:10;2736:23;2728:68;;;;-1:-1:-1;;;2728:68:0;;5453:2:1;2728:68:0;;;5435:21:1;;;5472:18;;;5465:30;5531:34;5511:18;;;5504:62;5583:18;;2728:68:0;5251:356:1;2728:68:0;50378:3:::1;50355:19;:26;;50333:127;;;::::0;-1:-1:-1;;;50333:127:0;;7473:2:1;50333:127:0::1;::::0;::::1;7455:21:1::0;7512:2;7492:18;;;7485:30;7551:34;7531:18;;;7524:62;7622:21;7602:18;;;7595:49;7661:19;;50333:127:0::1;7271:415:1::0;50333:127:0::1;50505:4;50493:8;:16;;:33;;;;-1:-1:-1::0;50513:13:0;50493:33:::1;50471:131;;;::::0;-1:-1:-1;;;50471:131:0;;7893:2:1;50471:131:0::1;::::0;::::1;7875:21:1::0;7932:2;7912:18;;;7905:30;7971:34;7951:18;;;7944:62;8042:18;8022;;;8015:46;8078:19;;50471:131:0::1;7691:412:1::0;50471:131:0::1;50613:15;:37:::0;;;;50661:16:::1;:27:::0;50699:13:::1;:24:::0;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;50176:555::o;38344:121::-;2589:6;;38396:4;;-1:-1:-1;;;;;2589:6:0;1269:10;2736:23;2728:68;;;;-1:-1:-1;;;2728:68:0;;5453:2:1;2728:68:0;;;5435:21:1;;;5472:18;;;5465:30;5531:34;5511:18;;;5504:62;5583:18;;2728:68:0;5251:356:1;2728:68:0;-1:-1:-1;38413:14:0::1;:22:::0;;;::::1;::::0;;;38344:121;:::o;39783:167::-;2589:6;;-1:-1:-1;;;;;2589:6:0;1269:10;2736:23;2728:68;;;;-1:-1:-1;;;2728:68:0;;5453:2:1;2728:68:0;;;5435:21:1;;;5472:18;;;5465:30;5531:34;5511:18;;;5504:62;5583:18;;2728:68:0;5251:356:1;2728:68:0;-1:-1:-1;;;;;39896:39:0;;;::::1;;::::0;;;:31:::1;:39:::0;;;;;:46;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;39783:167::o;40154:403::-;2589:6;;-1:-1:-1;;;;;2589:6:0;1269:10;2736:23;2728:68;;;;-1:-1:-1;;;2728:68:0;;5453:2:1;2728:68:0;;;5435:21:1;;;5472:18;;;5465:30;5531:34;5511:18;;;5504:62;5583:18;;2728:68:0;5251:356:1;2728:68:0;40304:15:::1;:31:::0;;;40346:15:::1;:31:::0;;;40388:9:::1;:19:::0;;;40400:7;40433:33:::1;40364:13:::0;40322;40433:33:::1;:::i;:::-;:45;;;;:::i;:::-;40418:12;:60:::0;;;-1:-1:-1;40497:18:0::1;40489:60;;;::::0;-1:-1:-1;;;40489:60:0;;8310:2:1;40489:60:0::1;::::0;::::1;8292:21:1::0;8349:2;8329:18;;;8322:30;8388:31;8368:18;;;8361:59;8437:18;;40489:60:0::1;8108:353:1::0;40489:60:0::1;40154:403:::0;;;:::o;38137:155::-;2589:6;;-1:-1:-1;;;;;2589:6:0;1269:10;2736:23;2728:68;;;;-1:-1:-1;;;2728:68:0;;5453:2:1;2728:68:0;;;5435:21:1;;;5472:18;;;5465:30;5531:34;5511:18;;;5504:62;5583:18;;2728:68:0;5251:356:1;2728:68:0;38192:13:::1;:20:::0;;38223:18;;;;;;38269:15:::1;38252:14;:32:::0;38137:155::o;40046:100::-;2589:6;;-1:-1:-1;;;;;2589:6:0;1269:10;2736:23;2728:68;;;;-1:-1:-1;;;2728:68:0;;5453:2:1;2728:68:0;;;5435:21:1;;;5472:18;;;5465:30;5531:34;5511:18;;;5504:62;5583:18;;2728:68:0;5251:356:1;2728:68:0;40117:11:::1;:21:::0;;;::::1;;::::0;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;40046:100::o;10151:104::-;10207:13;10240:7;10233:14;;;;;:::i;41175:304::-;2589:6;;-1:-1:-1;;;;;2589:6:0;1269:10;2736:23;2728:68;;;;-1:-1:-1;;;2728:68:0;;5453:2:1;2728:68:0;;;5435:21:1;;;5472:18;;;5465:30;5531:34;5511:18;;;5504:62;5583:18;;2728:68:0;5251:356:1;2728:68:0;41319:13:::1;-1:-1:-1::0;;;;;41311:21:0::1;:4;-1:-1:-1::0;;;;;41311:21:0::1;;;41289:128;;;::::0;-1:-1:-1;;;41289:128:0;;8668:2:1;41289:128:0::1;::::0;::::1;8650:21:1::0;8707:2;8687:18;;;8680:30;8746:34;8726:18;;;8719:62;8817:27;8797:18;;;8790:55;8862:19;;41289:128:0::1;8466:421:1::0;41289:128:0::1;41430:41;41459:4;41465:5;41430:28;:41::i;:::-;41175:304:::0;;:::o;14369:413::-;1269:10;14462:4;14506:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;14506:34:0;;;;;;;;;;14559:35;;;;14551:85;;;;-1:-1:-1;;;14551:85:0;;9094:2:1;14551:85:0;;;9076:21:1;9133:2;9113:18;;;9106:30;9172:34;9152:18;;;9145:62;9243:7;9223:18;;;9216:35;9268:19;;14551:85:0;8892:401:1;14551:85:0;14672:67;1269:10;14695:7;14723:15;14704:16;:34;14672:8;:67::i;:::-;-1:-1:-1;14770:4:0;;14369:413;-1:-1:-1;;;14369:413:0:o;11563:175::-;11649:4;11666:42;1269:10;11690:9;11701:6;11666:9;:42::i;41683:231::-;2589:6;;-1:-1:-1;;;;;2589:6:0;1269:10;2736:23;2728:68;;;;-1:-1:-1;;;2728:68:0;;5453:2:1;2728:68:0;;;5435:21:1;;;5472:18;;;5465:30;5531:34;5511:18;;;5504:62;5583:18;;2728:68:0;5251:356:1;2728:68:0;41843:15:::1;::::0;41800:59:::1;::::0;-1:-1:-1;;;;;41843:15:0;;::::1;::::0;41800:59;::::1;::::0;::::1;::::0;41843:15:::1;::::0;41800:59:::1;41870:15;:36:::0;;;::::1;-1:-1:-1::0;;;;;41870:36:0;;;::::1;::::0;;;::::1;::::0;;41683:231::o;40985:182::-;2589:6;;-1:-1:-1;;;;;2589:6:0;1269:10;2736:23;2728:68;;;;-1:-1:-1;;;2728:68:0;;5453:2:1;2728:68:0;;;5435:21:1;;;5472:18;;;5465:30;5531:34;5511:18;;;5504:62;5583:18;;2728:68:0;5251:356:1;2728:68:0;-1:-1:-1;;;;;41070:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;;::::1;::::0;::::1;;::::0;;::::1;::::0;;;41125:34;;1294:41:1;;;41125:34:0::1;::::0;1267:18:1;41125:34:0::1;;;;;;;40985:182:::0;;:::o;40565:412::-;2589:6;;-1:-1:-1;;;;;2589:6:0;1269:10;2736:23;2728:68;;;;-1:-1:-1;;;2728:68:0;;5453:2:1;2728:68:0;;;5435:21:1;;;5472:18;;;5465:30;5531:34;5511:18;;;5504:62;5583:18;;2728:68:0;5251:356:1;2728:68:0;40716:16:::1;:32:::0;;;40759:16:::1;:32:::0;;;40802:10:::1;:20:::0;;;40815:7;40849:35:::1;40778:13:::0;40735;40849:35:::1;:::i;:::-;:48;;;;:::i;:::-;40833:13;:64:::0;;;40933:2:::1;-1:-1:-1::0;40916:19:0::1;40908:61;;;::::0;-1:-1:-1;;;40908:61:0;;9500:2:1;40908:61:0::1;::::0;::::1;9482:21:1::0;9539:2;9519:18;;;9512:30;9578:31;9558:18;;;9551:59;9627:18;;40908:61:0::1;9298:353:1::0;39519:256:0;2589:6;;-1:-1:-1;;;;;2589:6:0;1269:10;2736:23;2728:68;;;;-1:-1:-1;;;2728:68:0;;5453:2:1;2728:68:0;;;5435:21:1;;;5472:18;;;5465:30;5531:34;5511:18;;;5504:62;5583:18;;2728:68:0;5251:356:1;2728:68:0;39659:4:::1;39651;39630:13;11140:12:::0;;;11052:108;39630:13:::1;:17;::::0;39646:1:::1;39630:17;:::i;:::-;39629:26;;;;:::i;:::-;39628:35;;;;:::i;:::-;39618:6;:45;;39596:131;;;::::0;-1:-1:-1;;;39596:131:0;;9858:2:1;39596:131:0::1;::::0;::::1;9840:21:1::0;9897:2;9877:18;;;9870:30;9936:34;9916:18;;;9909:62;10007:6;9987:18;;;9980:34;10031:19;;39596:131:0::1;9656:400:1::0;39596:131:0::1;39750:17;:6:::0;39760::::1;39750:17;:::i;:::-;39738:9;:29:::0;-1:-1:-1;39519:256:0:o;38731:497::-;2589:6;;38839:4;;-1:-1:-1;;;;;2589:6:0;1269:10;2736:23;2728:68;;;;-1:-1:-1;;;2728:68:0;;5453:2:1;2728:68:0;;;5435:21:1;;;5472:18;;;5465:30;5531:34;5511:18;;;5504:62;5583:18;;2728:68:0;5251:356:1;2728:68:0;38918:6:::1;38897:13;11140:12:::0;;;11052:108;38897:13:::1;:17;::::0;38913:1:::1;38897:17;:::i;:::-;38896:28;;;;:::i;:::-;38883:9;:41;;38861:144;;;::::0;-1:-1:-1;;;38861:144:0;;10263:2:1;38861:144:0::1;::::0;::::1;10245:21:1::0;10302:2;10282:18;;;10275:30;10341:34;10321:18;;;10314:62;10412:23;10392:18;;;10385:51;10453:19;;38861:144:0::1;10061:417:1::0;38861:144:0::1;39073:4;39052:13;11140:12:::0;;;11052:108;39052:13:::1;:17;::::0;39068:1:::1;39052:17;:::i;:::-;39051:26;;;;:::i;:::-;39038:9;:39;;39016:141;;;::::0;-1:-1:-1;;;39016:141:0;;10685:2:1;39016:141:0::1;::::0;::::1;10667:21:1::0;10724:2;10704:18;;;10697:30;10763:34;10743:18;;;10736:62;10834:22;10814:18;;;10807:50;10874:19;;39016:141:0::1;10483:416:1::0;39016:141:0::1;-1:-1:-1::0;39168:18:0::1;:30:::0;;;39216:4:::1;2807:1;38731:497:::0;;;:::o;38526:135::-;2589:6;;38586:4;;-1:-1:-1;;;;;2589:6:0;1269:10;2736:23;2728:68;;;;-1:-1:-1;;;2728:68:0;;5453:2:1;2728:68:0;;;5435:21:1;;;5472:18;;;5465:30;5531:34;5511:18;;;5504:62;5583:18;;2728:68:0;5251:356:1;2728:68:0;-1:-1:-1;38603:20:0::1;:28:::0;;;::::1;::::0;;;38526:135;:::o;3425:201::-;2589:6;;-1:-1:-1;;;;;2589:6:0;1269:10;2736:23;2728:68;;;;-1:-1:-1;;;2728:68:0;;5453:2:1;2728:68:0;;;5435:21:1;;;5472:18;;;5465:30;5531:34;5511:18;;;5504:62;5583:18;;2728:68:0;5251:356:1;2728:68:0;-1:-1:-1;;;;;3514:22:0;::::1;3506:73;;;::::0;-1:-1:-1;;;3506:73:0;;11106:2:1;3506:73:0::1;::::0;::::1;11088:21:1::0;11145:2;11125:18;;;11118:30;11184:34;11164:18;;;11157:62;11255:8;11235:18;;;11228:36;11281:19;;3506:73:0::1;10904:402:1::0;3506:73:0::1;3590:28;3609:8;3590:18;:28::i;:::-;3425:201:::0;:::o;51535:1056::-;2589:6;;51646:4;;-1:-1:-1;;;;;2589:6:0;1269:10;2736:23;2728:68;;;;-1:-1:-1;;;2728:68:0;;5453:2:1;2728:68:0;;;5435:21:1;;;5472:18;;;5465:30;5531:34;5511:18;;;5504:62;5583:18;;2728:68:0;5251:356:1;2728:68:0;51731:19:::1;;51708:20;;:42;;;;:::i;:::-;51690:15;:60;51668:142;;;::::0;-1:-1:-1;;;51668:142:0;;11513:2:1;51668:142:0::1;::::0;::::1;11495:21:1::0;;;11532:18;;;11525:30;11591:34;11571:18;;;11564:62;11643:18;;51668:142:0::1;11311:356:1::0;51668:142:0::1;51840:4;51829:7;:15;;51821:70;;;::::0;-1:-1:-1;;;51821:70:0;;11874:2:1;51821:70:0::1;::::0;::::1;11856:21:1::0;11913:2;11893:18;;;11886:30;11952:34;11932:18;;;11925:62;12023:12;12003:18;;;11996:40;12053:19;;51821:70:0::1;11672:406:1::0;51821:70:0::1;51925:15;51902:20;:38:::0;52026:29:::1;::::0;;;;-1:-1:-1;;;;;52041:13:0::1;1789:55:1::0;52026:29:0::1;::::0;::::1;1771:74:1::0;51995:28:0::1;::::0;52026:4:::1;::::0;:14:::1;::::0;1744:18:1;;52026:29:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;51995:60:::0;-1:-1:-1;52105:20:0::1;52128:44;52166:5;52128:33;51995:60:::0;52153:7;52128:24:::1;:33::i;:::-;:37:::0;::::1;:44::i;:::-;52105:67:::0;-1:-1:-1;52277:16:0;;52273:110:::1;;52310:61;52326:13;52349:6;52358:12;52310:15;:61::i;:::-;52458:19;52495:13;52458:51;;52520:4;-1:-1:-1::0;;;;;52520:9:0::1;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;52547:14:0::1;::::0;::::1;::::0;-1:-1:-1;52547:14:0;;-1:-1:-1;52547:14:0::1;-1:-1:-1::0;52579:4:0::1;::::0;51535:1056;-1:-1:-1;;;;51535:1056:0:o;18053:380::-;-1:-1:-1;;;;;18189:19:0;;18181:68;;;;-1:-1:-1;;;18181:68:0;;12474:2:1;18181:68:0;;;12456:21:1;12513:2;12493:18;;;12486:30;12552:34;12532:18;;;12525:62;12623:6;12603:18;;;12596:34;12647:19;;18181:68:0;12272:400:1;18181:68:0;-1:-1:-1;;;;;18268:21:0;;18260:68;;;;-1:-1:-1;;;18260:68:0;;12879:2:1;18260:68:0;;;12861:21:1;12918:2;12898:18;;;12891:30;12957:34;12937:18;;;12930:62;13028:4;13008:18;;;13001:32;13050:19;;18260:68:0;12677:398:1;18260:68:0;-1:-1:-1;;;;;18341:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18393:32;;2002:25:1;;;18393:32:0;;1975:18:1;18393:32:0;;;;;;;18053:380;;;:::o;42271:5011::-;-1:-1:-1;;;;;42403:18:0;;42395:68;;;;-1:-1:-1;;;42395:68:0;;13282:2:1;42395:68:0;;;13264:21:1;13321:2;13301:18;;;13294:30;13360:34;13340:18;;;13333:62;13431:7;13411:18;;;13404:35;13456:19;;42395:68:0;13080:401:1;42395:68:0;-1:-1:-1;;;;;42482:16:0;;42474:64;;;;-1:-1:-1;;;42474:64:0;;13688:2:1;42474:64:0;;;13670:21:1;13727:2;13707:18;;;13700:30;13766:34;13746:18;;;13739:62;13837:5;13817:18;;;13810:33;13860:19;;42474:64:0;13486:399:1;42474:64:0;42555:11;42551:93;;42583:28;42599:4;42605:2;42609:1;42583:15;:28::i;42551:93::-;42660:14;;;;42656:2487;;;2589:6;;-1:-1:-1;;;;;42713:15:0;;;2589:6;;42713:15;;;;:49;;-1:-1:-1;2589:6:0;;-1:-1:-1;;;;;42749:13:0;;;2589:6;;42749:13;;42713:49;:86;;;;-1:-1:-1;;;;;;42783:16:0;;;;42713:86;:128;;;;-1:-1:-1;;;;;;42820:21:0;;42834:6;42820:21;;42713:128;:158;;;;-1:-1:-1;42863:8:0;;;;;;;42862:9;42713:158;42691:2441;;;42911:13;;;;;;;42906:223;;-1:-1:-1;;;;;42983:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;43012:23:0;;;;;;:19;:23;;;;;;;;42983:52;42949:160;;;;-1:-1:-1;;;42949:160:0;;14092:2:1;42949:160:0;;;14074:21:1;14131:2;14111:18;;;14104:30;14170:24;14150:18;;;14143:52;14212:18;;42949:160:0;13890:346:1;42949:160:0;43285:20;;;;43281:641;;;2589:6;;-1:-1:-1;;;;;43360:13:0;;;2589:6;;43360:13;;;;:72;;;43416:15;-1:-1:-1;;;;;43402:30:0;:2;-1:-1:-1;;;;;43402:30:0;;;43360:72;:129;;;;;43475:13;-1:-1:-1;;;;;43461:28:0;:2;-1:-1:-1;;;;;43461:28:0;;;43360:129;43330:573;;;43607:9;43578:39;;;;:28;:39;;;;;;43653:12;-1:-1:-1;43540:258:0;;;;-1:-1:-1;;;43540:258:0;;14443:2:1;43540:258:0;;;14425:21:1;14482:2;14462:18;;;14455:30;14521:34;14501:18;;;14494:62;14592:34;14572:18;;;14565:62;14664:11;14643:19;;;14636:40;14693:19;;43540:258:0;14241:477:1;43540:258:0;43854:9;43825:39;;;;:28;:39;;;;;43867:12;43825:54;;43330:573;-1:-1:-1;;;;;43996:31:0;;;;;;:25;:31;;;;;;;;:92;;;;-1:-1:-1;;;;;;44053:35:0;;;;;;:31;:35;;;;;;;;44052:36;43996:92;43970:1147;;;44175:20;;44165:6;:30;;44131:169;;;;-1:-1:-1;;;44131:169:0;;14925:2:1;44131:169:0;;;14907:21:1;14964:2;14944:18;;;14937:30;15003:34;14983:18;;;14976:62;15074:23;15054:18;;;15047:51;15115:19;;44131:169:0;14723:417:1;44131:169:0;44383:9;;-1:-1:-1;;;;;11324:18:0;;11297:7;11324:18;;;;;;;;;;;44357:22;;:6;:22;:::i;:::-;:35;;44323:140;;;;-1:-1:-1;;;44323:140:0;;15347:2:1;44323:140:0;;;15329:21:1;15386:2;15366:18;;;15359:30;15425:21;15405:18;;;15398:49;15464:18;;44323:140:0;15145:343:1;44323:140:0;43970:1147;;;-1:-1:-1;;;;;44561:29:0;;;;;;:25;:29;;;;;;;;:92;;;;-1:-1:-1;;;;;;44616:37:0;;;;;;:31;:37;;;;;;;;44615:38;44561:92;44535:582;;;44740:20;;44730:6;:30;;44696:170;;;;-1:-1:-1;;;44696:170:0;;15695:2:1;44696:170:0;;;15677:21:1;15734:2;15714:18;;;15707:30;15773:34;15753:18;;;15746:62;15844:24;15824:18;;;15817:52;15886:19;;44696:170:0;15493:418:1;44535:582:0;-1:-1:-1;;;;;44897:35:0;;;;;;:31;:35;;;;;;;;44892:225;;45017:9;;-1:-1:-1;;;;;11324:18:0;;11297:7;11324:18;;;;;;;;;;;44991:22;;:6;:22;:::i;:::-;:35;;44957:140;;;;-1:-1:-1;;;44957:140:0;;15347:2:1;44957:140:0;;;15329:21:1;15386:2;15366:18;;;15359:30;15425:21;15405:18;;;15398:49;15464:18;;44957:140:0;15145:343:1;44957:140:0;45204:4;45155:28;11324:18;;;;;;;;;;;45262;;45238:42;;;;;;;45311:35;;-1:-1:-1;45335:11:0;;;;;;;45311:35;:61;;;;-1:-1:-1;45364:8:0;;;;;;;45363:9;45311:61;:110;;;;-1:-1:-1;;;;;;45390:31:0;;;;;;:25;:31;;;;;;;;45389:32;45311:110;:153;;;;-1:-1:-1;;;;;;45439:25:0;;;;;;:19;:25;;;;;;;;45438:26;45311:153;:194;;;;-1:-1:-1;;;;;;45482:23:0;;;;;;:19;:23;;;;;;;;45481:24;45311:194;45293:326;;;45532:8;:15;;;;;;;;45564:10;:8;:10::i;:::-;45591:8;:16;;;;;;45293:326;45650:8;;;;;;;45649:9;:55;;;;-1:-1:-1;;;;;;45675:29:0;;;;;;:25;:29;;;;;;;;45649:55;:85;;;;-1:-1:-1;45721:13:0;;;;45649:85;:153;;;;;45787:15;;45770:14;;:32;;;;:::i;:::-;45751:15;:51;;45649:153;:196;;;;-1:-1:-1;;;;;;45820:25:0;;;;;;:19;:25;;;;;;;;45819:26;45649:196;45631:282;;;45872:29;:27;:29::i;:::-;;45631:282;45941:8;;-1:-1:-1;;;;;46051:25:0;;45925:12;46051:25;;;:19;:25;;;;;;45941:8;;;;;;;45940:9;;46051:25;;:52;;-1:-1:-1;;;;;;46080:23:0;;;;;;:19;:23;;;;;;;;46051:52;46047:100;;;-1:-1:-1;46130:5:0;46047:100;46159:12;46264:7;46260:969;;;-1:-1:-1;;;;;46316:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;46365:1;46349:13;;:17;46316:50;46312:768;;;46394:34;46424:3;46394:25;46405:13;;46394:6;:10;;:25;;;;:::i;:34::-;46387:41;;46497:13;;46477:16;;46470:4;:23;;;;:::i;:::-;46469:41;;;;:::i;:::-;46447:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;46567:13:0;;46553:10;;46546:17;;:4;:17;:::i;:::-;46545:35;;;;:::i;:::-;46529:12;;:51;;;;;;;:::i;:::-;;;;-1:-1:-1;;46649:13:0;;46629:16;;46622:23;;:4;:23;:::i;:::-;46621:41;;;;:::i;:::-;46599:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;46312:768:0;;-1:-1:-1;46312:768:0;;-1:-1:-1;;;;;46724:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;46774:1;46759:12;;:16;46724:51;46720:360;;;46803:33;46832:3;46803:24;46814:12;;46803:6;:10;;:24;;;;:::i;:33::-;46796:40;;46904:12;;46885:15;;46878:4;:22;;;;:::i;:::-;46877:39;;;;:::i;:::-;46855:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;46972:12:0;;46959:9;;46952:16;;:4;:16;:::i;:::-;46951:33;;;;:::i;:::-;46935:12;;:49;;;;;;;:::i;:::-;;;;-1:-1:-1;;47052:12:0;;47033:15;;47026:22;;:4;:22;:::i;:::-;47025:39;;;;:::i;:::-;47003:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;46720:360:0;47100:8;;47096:91;;47129:42;47145:4;47159;47166;47129:15;:42::i;:::-;47203:14;47213:4;47203:14;;:::i;:::-;;;46260:969;47241:33;47257:4;47263:2;47267:6;47241:15;:33::i;:::-;42384:4898;;;;42271:5011;;;:::o;3786:191::-;3879:6;;;-1:-1:-1;;;;;3896:17:0;;;;;;;;;;;3929:40;;3879:6;;;3896:17;3879:6;;3929:40;;3860:16;;3929:40;3849:128;3786:191;:::o;41487:188::-;-1:-1:-1;;;;;41570:31:0;;;;;;:25;:31;;;;;;:39;;;;;;;;;;;;;41627:40;;41570:39;;:31;41627:40;;;41487:188;;:::o;23506:98::-;23564:7;23591:5;23595:1;23591;:5;:::i;:::-;23584:12;23506:98;-1:-1:-1;;;23506:98:0:o;23905:::-;23963:7;23990:5;23994:1;23990;:5;:::i;15272:733::-;-1:-1:-1;;;;;15412:20:0;;15404:70;;;;-1:-1:-1;;;15404:70:0;;13282:2:1;15404:70:0;;;13264:21:1;13321:2;13301:18;;;13294:30;13360:34;13340:18;;;13333:62;13431:7;13411:18;;;13404:35;13456:19;;15404:70:0;13080:401:1;15404:70:0;-1:-1:-1;;;;;15493:23:0;;15485:71;;;;-1:-1:-1;;;15485:71:0;;13688:2:1;15485:71:0;;;13670:21:1;13727:2;13707:18;;;13700:30;13766:34;13746:18;;;13739:62;13837:5;13817:18;;;13810:33;13860:19;;15485:71:0;13486:399:1;15485:71:0;-1:-1:-1;;;;;15653:17:0;;15629:21;15653:17;;;;;;;;;;;15689:23;;;;15681:74;;;;-1:-1:-1;;;15681:74:0;;16248:2:1;15681:74:0;;;16230:21:1;16287:2;16267:18;;;16260:30;16326:34;16306:18;;;16299:62;16397:8;16377:18;;;16370:36;16423:19;;15681:74:0;16046:402:1;15681:74:0;-1:-1:-1;;;;;15791:17:0;;;:9;:17;;;;;;;;;;;15811:22;;;15791:42;;15855:20;;;;;;;;:30;;15827:6;;15791:9;15855:30;;15827:6;;15855:30;:::i;:::-;;;;;;;;15920:9;-1:-1:-1;;;;;15903:35:0;15912:6;-1:-1:-1;;;;;15903:35:0;;15931:6;15903:35;;;;2002:25:1;;1990:2;1975:18;;1856:177;15903:35:0;;;;;;;;15393:612;15272:733;;;:::o;48412:1756::-;48495:4;48451:23;11324:18;;;;;;;;;;;48451:50;;48512:25;48608:12;;48574:18;;48540;;:52;;;;:::i;:::-;:80;;;;:::i;:::-;48512:108;-1:-1:-1;48631:12:0;48660:20;;;:46;;-1:-1:-1;48684:22:0;;48660:46;48656:85;;;48723:7;;;48412:1756::o;48656:85::-;48775:18;;:23;;48796:2;48775:23;:::i;:::-;48757:15;:41;48753:115;;;48833:18;;:23;;48854:2;48833:23;:::i;:::-;48815:41;;48753:115;48929:23;49042:1;49009:17;48974:18;;48956:15;:36;;;;:::i;:::-;48955:71;;;;:::i;:::-;:88;;;;:::i;:::-;48929:114;-1:-1:-1;49054:26:0;49083:36;:15;48929:114;49083:19;:36::i;:::-;49054:65;-1:-1:-1;49160:21:0;49194:36;49054:65;49194:16;:36::i;:::-;49243:18;49264:44;:21;49290:17;49264:25;:44::i;:::-;49243:65;;49321:23;49347:81;49400:17;49347:34;49362:18;;49347:10;:14;;:34;;;;:::i;:81::-;49321:107;;49439:17;49459:51;49492:17;49459:28;49474:12;;49459:10;:14;;:28;;;;:::i;:51::-;49439:71;-1:-1:-1;49523:23:0;49439:71;49549:28;49562:15;49549:10;:28;:::i;:::-;:40;;;;:::i;:::-;49623:1;49602:18;:22;;;49635:18;:22;;;49668:12;:16;;;49719:9;;49711:45;;49523:66;;-1:-1:-1;;;;;;49719:9:0;;49742;;49711:45;49623:1;49711:45;49742:9;49719;49711:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49697:59:0;;-1:-1:-1;;49773:19:0;;;;;:42;;;49814:1;49796:15;:19;49773:42;49769:278;;;49832:46;49845:15;49862;49832:12;:46::i;:::-;50002:18;;49898:137;;;16865:25:1;;;16921:2;16906:18;;16899:34;;;16949:18;;;16942:34;;;;49898:137:0;;;;;;16853:2:1;49898:137:0;;;49769:278;50081:15;;50073:87;;-1:-1:-1;;;;;50081:15:0;;;;50124:21;;50073:87;;;;50124:21;50081:15;50073:87;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;48412:1756:0:o;50739:788::-;50830:15;50813:14;:32;50931:29;;;;;-1:-1:-1;;;;;50946:13:0;1789:55:1;50931:29:0;;;1771:74:1;50796:4:0;;;;50931;;:14;;1744:18:1;;50931:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50900:60;;51010:20;51033:77;51094:5;51033:42;51058:16;;51033:20;:24;;:42;;;;:::i;:77::-;51010:100;-1:-1:-1;51215:16:0;;51211:110;;51248:61;51264:13;51287:6;51296:12;51248:15;:61::i;:::-;51396:19;51433:13;51396:51;;51458:4;-1:-1:-1;;;;;51458:9:0;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;51485:12:0;;;;-1:-1:-1;51485:12:0;;-1:-1:-1;51485:12:0;51515:4;51508:11;;;;;50739:788;:::o;23149:98::-;23207:7;23234:5;23238:1;23234;:5;:::i;47290:589::-;47440:16;;;47454:1;47440:16;;;;;;;;47416:21;;47440:16;;;;;;;;;;-1:-1:-1;47440:16:0;47416:40;;47485:4;47467;47472:1;47467:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;47467:23:0;;;-1:-1:-1;;;;;47467:23:0;;;;;47511:15;-1:-1:-1;;;;;47511:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47501:4;47506:1;47501:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;47501:32:0;;;-1:-1:-1;;;;;47501:32:0;;;;;47546:62;47563:4;47578:15;47596:11;47546:8;:62::i;:::-;47647:224;;;;;-1:-1:-1;;;;;47647:15:0;:66;;;;:224;;47728:11;;47754:1;;47798:4;;47825;;47845:15;;47647:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47345:534;47290:589;:::o;47887:517::-;48035:62;48052:4;48067:15;48085:11;48035:8;:62::i;:::-;48140:256;;;;;48212:4;48140:256;;;19016:34:1;19066:18;;;19059:34;;;48258:1:0;19109:18:1;;;19102:34;;;19152:18;;;19145:34;33370:6:0;19195:19:1;;;19188:44;48370:15:0;19248:19:1;;;19241:35;48140:15:0;-1:-1:-1;;;;;48140:31:0;;;;48179:9;;18927:19:1;;48140:256:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;47887:517;;:::o;14:656: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;586:2:1;574:15;591:66;570:88;555:104;;;;661:2;551:113;;14:656;-1:-1:-1;;;14:656:1:o;675:154::-;-1:-1:-1;;;;;754:5:1;750:54;743:5;740:65;730:93;;819:1;816;809:12;834:315;902:6;910;963:2;951:9;942:7;938:23;934:32;931:52;;;979:1;976;969:12;931:52;1018:9;1005:23;1037:31;1062:5;1037:31;:::i;:::-;1087:5;1139:2;1124:18;;;;1111:32;;-1:-1:-1;;;834:315:1:o;1346:247::-;1405:6;1458:2;1446:9;1437:7;1433:23;1429:32;1426:52;;;1474:1;1471;1464:12;1426:52;1513:9;1500:23;1532:31;1557:5;1532:31;:::i;2038:180::-;2097:6;2150:2;2138:9;2129:7;2125:23;2121:32;2118:52;;;2166:1;2163;2156:12;2118:52;-1:-1:-1;2189:23:1;;2038:180;-1:-1:-1;2038:180:1:o;2223:456::-;2300:6;2308;2316;2369:2;2357:9;2348:7;2344:23;2340:32;2337:52;;;2385:1;2382;2375:12;2337:52;2424:9;2411:23;2443:31;2468:5;2443:31;:::i;:::-;2493:5;-1:-1:-1;2550:2:1;2535:18;;2522:32;2563:33;2522:32;2563:33;:::i;:::-;2223:456;;2615:7;;-1:-1:-1;;;2669:2:1;2654:18;;;;2641:32;;2223:456::o;3104:160::-;3169:20;;3225:13;;3218:21;3208:32;;3198:60;;3254:1;3251;3244:12;3269:316;3343:6;3351;3359;3412:2;3400:9;3391:7;3387:23;3383:32;3380:52;;;3428:1;3425;3418:12;3380:52;3464:9;3451:23;3441:33;;3521:2;3510:9;3506:18;3493:32;3483:42;;3544:35;3575:2;3564:9;3560:18;3544:35;:::i;:::-;3534:45;;3269:316;;;;;:::o;3590:315::-;3655:6;3663;3716:2;3704:9;3695:7;3691:23;3687:32;3684:52;;;3732:1;3729;3722:12;3684:52;3771:9;3758:23;3790:31;3815:5;3790:31;:::i;:::-;3840:5;-1:-1:-1;3864:35:1;3895:2;3880:18;;3864:35;:::i;:::-;3854:45;;3590:315;;;;;:::o;3910:316::-;3987:6;3995;4003;4056:2;4044:9;4035:7;4031:23;4027:32;4024:52;;;4072:1;4069;4062:12;4024:52;-1:-1:-1;;4095:23:1;;;4165:2;4150:18;;4137:32;;-1:-1:-1;4216:2:1;4201:18;;;4188:32;;3910:316;-1:-1:-1;3910:316:1:o;4231:180::-;4287:6;4340:2;4328:9;4319:7;4315:23;4311:32;4308:52;;;4356:1;4353;4346:12;4308:52;4379:26;4395:9;4379:26;:::i;4416:388::-;4484:6;4492;4545:2;4533:9;4524:7;4520:23;4516:32;4513:52;;;4561:1;4558;4551:12;4513:52;4600:9;4587:23;4619:31;4644:5;4619:31;:::i;:::-;4669:5;-1:-1:-1;4726:2:1;4711:18;;4698:32;4739:33;4698:32;4739:33;:::i;:::-;4791:7;4781:17;;;4416:388;;;;;:::o;4809:437::-;4888:1;4884:12;;;;4931;;;4952:61;;5006:4;4998:6;4994:17;4984:27;;4952:61;5059:2;5051:6;5048:14;5028:18;5025:38;5022:218;;;5096:77;5093:1;5086:88;5197:4;5194:1;5187:15;5225:4;5222:1;5215:15;5022:218;;4809:437;;;:::o;5612:184::-;5664:77;5661:1;5654:88;5761:4;5758:1;5751:15;5785:4;5782:1;5775:15;5801:228;5841:7;5967:1;5899:66;5895:74;5892:1;5889:81;5884:1;5877:9;5870:17;5866:105;5863:131;;;5974:18;;:::i;:::-;-1:-1:-1;6014:9:1;;5801:228::o;6034:274::-;6074:1;6100;6090:189;;6135:77;6132:1;6125:88;6236:4;6233:1;6226:15;6264:4;6261:1;6254:15;6090:189;-1:-1:-1;6293:9:1;;6034:274::o;7138:128::-;7178:3;7209:1;7205:6;7202:1;7199:13;7196:39;;;7215:18;;:::i;:::-;-1:-1:-1;7251:9:1;;7138:128::o;12083:184::-;12153:6;12206:2;12194:9;12185:7;12181:23;12177:32;12174:52;;;12222:1;12219;12212:12;12174:52;-1:-1:-1;12245:16:1;;12083:184;-1:-1:-1;12083:184:1:o;15916:125::-;15956:4;15984:1;15981;15978:8;15975:34;;;15989:18;;:::i;:::-;-1:-1:-1;16026:9:1;;15916:125::o;17176:184::-;17228:77;17225:1;17218:88;17325:4;17322:1;17315:15;17349:4;17346:1;17339:15;17365:251;17435:6;17488:2;17476:9;17467:7;17463:23;17459:32;17456:52;;;17504:1;17501;17494:12;17456:52;17536:9;17530:16;17555:31;17580:5;17555:31;:::i;17621:1026::-;17883:4;17931:3;17920:9;17916:19;17962:6;17951:9;17944:25;17988:2;18026:6;18021:2;18010:9;18006:18;17999:34;18069:3;18064:2;18053:9;18049:18;18042:31;18093:6;18128;18122:13;18159:6;18151;18144:22;18197:3;18186:9;18182:19;18175:26;;18236:2;18228:6;18224:15;18210:29;;18257:1;18267:218;18281:6;18278:1;18275:13;18267:218;;;18346:13;;-1:-1:-1;;;;;18342:62:1;18330:75;;18460:15;;;;18425:12;;;;18303:1;18296:9;18267:218;;;-1:-1:-1;;;;;;;18541:55:1;;;;18536:2;18521:18;;18514:83;-1:-1:-1;;;18628:3:1;18613:19;18606:35;18502:3;17621:1026;-1:-1:-1;;;17621:1026:1:o;19287:306::-;19375:6;19383;19391;19444:2;19432:9;19423:7;19419:23;19415:32;19412:52;;;19460:1;19457;19450:12;19412:52;19489:9;19483:16;19473:26;;19539:2;19528:9;19524:18;19518:25;19508:35;;19583:2;19572:9;19568:18;19562:25;19552:35;;19287:306;;;;;:::o

Swarm Source

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