ETH Price: $2,493.67 (-0.72%)

Token

Reapify (RFY)
 

Overview

Max Total Supply

4,200,000,000 RFY

Holders

98

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
88,830,789.925218828177933248 RFY

Value
$0.00
0x788d60f8924ae0bde236b8228966bc749f7782b5
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Reapify

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

/**
 
 * t.me/ReapifyPortal
 * twitter.com/ReapifyETH
 * medium.com/@Reapify
 * www.reapify.io 

*/
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

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

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

// File @openzeppelin/contracts/access/[email protected]

pragma solidity ^0.8.0;

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() {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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"
        );
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

// File @openzeppelin/contracts/utils/math/[email protected]

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 no longer needed starting with Solidity 0.8. 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. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * 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;
        }
    }
}

// File @openzeppelin/contracts/token/ERC20/[email protected]

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

// File @openzeppelin/contracts/token/ERC20/extensions/[email protected]

pragma solidity ^0.8.0;

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

// File @openzeppelin/contracts/token/ERC20/[email protected]

pragma solidity ^0.8.0;

/**
 * @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 guidelines: functions revert instead
 * of 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 defaut 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"
        );
        _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"
        );
        _approve(_msgSender(), spender, currentAllowance - subtractedValue);

        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is 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"
        );
        _balances[sender] = senderBalance - amount;
        _balances[recipient] += amount;

        emit Transfer(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:
     *
     * - `to` 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);
    }

    /**
     * @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");
        _balances[account] = accountBalance - amount;
        _totalSupply -= amount;

        emit Transfer(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 to 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 {}
}

// File @openzeppelin/contracts/utils/[email protected]

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(
            address(this).balance >= amount,
            "Address: insufficient balance"
        );

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

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

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

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

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

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{value: value}(
            data
        );
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data)
        internal
        view
        returns (bytes memory)
    {
        return
            functionStaticCall(
                target,
                data,
                "Address: low-level static call failed"
            );
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.staticcall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data)
        internal
        returns (bytes memory)
    {
        return
            functionDelegateCall(
                target,
                data,
                "Address: low-level delegate call failed"
            );
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

// File @openzeppelin/contracts/token/ERC20/utils/[email protected]

pragma solidity ^0.8.0;

/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using Address for address;

    function safeTransfer(
        IERC20 token,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(
            token,
            abi.encodeWithSelector(token.transfer.selector, to, value)
        );
    }

    function safeTransferFrom(
        IERC20 token,
        address from,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(
            token,
            abi.encodeWithSelector(token.transferFrom.selector, from, to, value)
        );
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        // solhint-disable-next-line max-line-length
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(
            token,
            abi.encodeWithSelector(token.approve.selector, spender, value)
        );
    }

    function safeIncreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        uint256 newAllowance = token.allowance(address(this), spender) + value;
        _callOptionalReturn(
            token,
            abi.encodeWithSelector(
                token.approve.selector,
                spender,
                newAllowance
            )
        );
    }

    function safeDecreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(
                oldAllowance >= value,
                "SafeERC20: decreased allowance below zero"
            );
            uint256 newAllowance = oldAllowance - value;
            _callOptionalReturn(
                token,
                abi.encodeWithSelector(
                    token.approve.selector,
                    spender,
                    newAllowance
                )
            );
        }
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(
            data,
            "SafeERC20: low-level call failed"
        );
        if (returndata.length > 0) {
            // Return data is optional
            // solhint-disable-next-line max-line-length
            require(
                abi.decode(returndata, (bool)),
                "SafeERC20: ERC20 operation did not succeed"
            );
        }
    }
}

// File contracts/interfaces/IUniswapRouter01.sol

pragma solidity >=0.8.0;

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

    function WETH() external pure returns (address);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File contracts/interfaces/IUniswapRouter02.sol

pragma solidity >=0.8.0;

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

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

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

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

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

// File contracts/interfaces/IUniswapV2Factory.sol

pragma solidity >=0.8.0;

interface IUniswapV2Factory {
    event PairCreated(
        address indexed token0,
        address indexed token1,
        address pair,
        uint256
    );

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

    function getPair(address tokenA, address tokenB)
        external
        view
        returns (address pair);

    function allPairs(uint256) external view returns (address pair);

    function allPairsLength() external view returns (uint256);

    function createPair(address tokenA, address tokenB)
        external
        returns (address pair);

    function setReflectionFeeTo(address) external;

    function setReflectionFeeToSetter(address) external;
}

pragma solidity >=0.8.0;

contract Reapify is ERC20("Reapify", "RFY"), Ownable {
    using SafeMath for uint256;
    using SafeERC20 for IERC20;

    uint256 public constant TOTAL_SUPPLY = 4200000000 * 1e18; // 4.2B max supply

    uint16 private MAX_BP_RATE = 10000;
    uint16 private devTaxRate = 200;
    uint16 private marketingTaxRate = 300;
    uint16 private passiveRewardTaxRate = 800;
    uint16 private maxTransferAmountRate = 200;
    uint16 private maxWalletAmountRate = 200;

    uint256 public minAmountToSwap = (TOTAL_SUPPLY * 2) / 1000;
    uint256 public thresholdAmount = (TOTAL_SUPPLY * 2) / 100;
    uint256 public totalDividends;
    uint256 public accumulatedRewards;

    IUniswapV2Router02 public uniswapRouter;
    // The trading pair
    address public uniswapPair;

    address private treasuryWallet = 0x3D7E8c5A8ebcc5c11804FbD31186FCf6A25598Bc;

    bool private _inSwapAndWithdraw;
    bool public swapAndWithdrawEnabled = false;
    bool public _reInvestment = false;

    mapping(address => bool) private _isExcludedFromFee;
    mapping(address => bool) private _isExcludedFromMaxTx;

    bool private _tradingOpen = false;

    struct AssetTypeInfo {
        address coinAddress;
        address[] routerPath;
    }

    mapping(address => uint256) public claimed;
    mapping(address => uint256) public dividendsWhenClaim;

    AssetTypeInfo[] public coins;

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

    modifier taxCalculation() {
        uint16 _devTaxRate = devTaxRate;
        uint16 _marketingTaxRate = marketingTaxRate;
        uint16 _passiveIncomeRewardTaxRate = passiveRewardTaxRate;
        devTaxRate = 0;
        marketingTaxRate = 0;
        passiveRewardTaxRate = 0;
        _;
        devTaxRate = _devTaxRate;
        marketingTaxRate = _marketingTaxRate;
        passiveRewardTaxRate = _passiveIncomeRewardTaxRate;
    }

    constructor() public {
        _mint(msg.sender, TOTAL_SUPPLY);

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

        // set the rest of the contract variables
        uniswapRouter = _uniswapV2Router;
        _isExcludedFromFee[address(this)] = true;
        _isExcludedFromFee[msg.sender] = true;
        _isExcludedFromFee[treasuryWallet] = true;
        _isExcludedFromMaxTx[address(this)] = true;
        _isExcludedFromMaxTx[treasuryWallet] = true;
        _isExcludedFromMaxTx[msg.sender] = true;
    }

    /// @notice Burns `_amount` token fromo `_from`. Must only be called by the owner.
    function burn(address _from, uint256 _amount) public onlyOwner {
        _burn(_from, _amount);
    }

    function _transfer(
        address _sender,
        address _recepient,
        uint256 _amount
    ) internal override {
        require(
            _tradingOpen ||
                _sender == owner() ||
                _recepient == owner() ||
                _sender == address(uniswapRouter),
            "!tradable"
        );

        // swap and withdraw
        if (
            swapAndWithdrawEnabled == true &&
            _inSwapAndWithdraw == false &&
            address(uniswapRouter) != address(0) &&
            uniswapPair != address(0) &&
            _sender != uniswapPair &&
            balanceOf(address(this)) >= minAmountToSwap &&
            !_isExcludedFromFee[_sender] &&
            !_isExcludedFromFee[_recepient]
        ) {
            swapAndWithdraw();
        }

        if (!_isExcludedFromMaxTx[_sender]) {
            require(_amount <= maxTransferAmt(), "exceed max tx amount");
        }

        if (_recepient != uniswapPair) {
            require(
                balanceOf(_recepient) + _amount <= maxWalletAmt(),
                "You are exceeding maxWalletAmt"
            );
        }

        if (_isExcludedFromFee[_sender]) {
            super._transfer(_sender, _recepient, _amount);
        } else {
            uint256 devFee = _amount.mul(devTaxRate).div(MAX_BP_RATE);
            uint256 marketingFee = _amount.mul(marketingTaxRate).div(
                MAX_BP_RATE
            );
            uint256 passiveIncomeRewardFee = _amount
                .mul(passiveRewardTaxRate)
                .div(MAX_BP_RATE);
            _amount = _amount.sub(devFee).sub(marketingFee).sub(
                passiveIncomeRewardFee
            );
            /// @dev send fees step by step
            super._transfer(_sender, _recepient, _amount);
            super._transfer(_sender, address(this), devFee);
            super._transfer(_sender, address(this), marketingFee);
            super._transfer(_sender, address(this), passiveIncomeRewardFee);

            totalDividends = totalDividends.add(passiveIncomeRewardFee);
            accumulatedRewards = accumulatedRewards.add(passiveIncomeRewardFee);
        }
    }

    function updateSwapAndLiquifyEnabled(bool _enabled) public onlyOwner {
        swapAndWithdrawEnabled = _enabled;
    }

    function manualWithdraw() external onlyOwner {
        /// @dev contract eth withdraw
        uint256 ethBalance = address(this).balance;
        payable(treasuryWallet).transfer(ethBalance);
    }

    /// @dev Swap and liquify
    function swapAndWithdraw() private lockTheSwap taxCalculation {
        uint256 contractTokenBalance = balanceOf(address(this));

        if (contractTokenBalance > totalDividends) {
            contractTokenBalance = contractTokenBalance.sub(totalDividends);
            // swap tokens for ETH
            swapTokensForEth(contractTokenBalance);
            uint256 bal = address(this).balance;
            payable(treasuryWallet).transfer(bal);
        }
    }

    /// @dev Swap tokens for eth
    function swapTokensForEth(uint256 tokenAmount) private {
        // generate the pantherSwap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapRouter.WETH();

        _approve(address(this), address(uniswapRouter), tokenAmount);
        uniswapRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            coins[0].coinAddress,
            block.timestamp
        );
    }

    function maxTransferAmt() public view returns (uint256) {
        return totalSupply().mul(maxTransferAmountRate).div(MAX_BP_RATE);
    }

    function maxWalletAmt() public view returns (uint256) {
        return totalSupply().mul(maxWalletAmountRate).div(MAX_BP_RATE);
    }

    function updateTaxes(
        uint16 _passiveRewardsRate,
        uint16 _devTaxRate,
        uint16 _marketingTaxRate
    ) external onlyOwner {
        require(
            _passiveRewardsRate + _devTaxRate + _marketingTaxRate <= 400,
            "!values"
        );
        passiveRewardTaxRate = _passiveRewardsRate;
        devTaxRate = _devTaxRate;
        marketingTaxRate = _marketingTaxRate;
    }

    function removeLimits() external onlyOwner {
        maxTransferAmountRate = MAX_BP_RATE;
        maxWalletAmountRate = MAX_BP_RATE;
    }

    function updateTreasuryWallet(address newAddress) external onlyOwner {
        treasuryWallet = newAddress;
    }

    function openTrading() external onlyOwner {
        _tradingOpen = true;
        swapAndWithdrawEnabled = true;
    }

    function isExcludedFromFee(address _addr) external view returns (bool) {
        return _isExcludedFromFee[_addr];
    }

    function excludeFromFee(address _addr, bool _is) external onlyOwner {
        _isExcludedFromFee[_addr] = _is;
    }

    function isExcludedFromMaxTx(address _addr) external view returns (bool) {
        return _isExcludedFromMaxTx[_addr];
    }

    function excludeFromMaxTx(address _addr, bool _is) external onlyOwner {
        _isExcludedFromMaxTx[_addr] = _is;
    }

    function withdrawDividends(uint16 _cId) external {
        if (totalDividends <= balanceOf(address(this))) {
            uint256 withdrawable = withdrawableDividends(msg.sender);
            require(withdrawable > 0, "not enough to claim");
            AssetTypeInfo storage coin = coins[_cId];
            if (_cId == 0) {
                IERC20(coin.coinAddress).transfer(msg.sender, withdrawable);
            } else if (_cId == 1) {
                // if withdrawing  WETH
                _approve(address(this), address(uniswapRouter), withdrawable);
                uniswapRouter
                    .swapExactTokensForETHSupportingFeeOnTransferTokens(
                        withdrawable,
                        0,
                        coin.routerPath,
                        msg.sender,
                        block.timestamp.add(300)
                    );
            } else {
                // if withdrawing other assets
                if (!_reInvestment) {
                    _approve(
                        address(this),
                        address(uniswapRouter),
                        withdrawable
                    );
                    uniswapRouter
                        .swapExactTokensForTokensSupportingFeeOnTransferTokens(
                            withdrawable,
                            0,
                            coin.routerPath,
                            msg.sender,
                            block.timestamp.add(300)
                        );
                } else { // if reinvestment in other assets
                    super._transfer(
                        coin.coinAddress,
                        address(this),
                        thresholdAmount
                    );
                }
            }
            claimed[msg.sender] = claimed[msg.sender].add(withdrawable);
            dividendsWhenClaim[msg.sender] = accumulatedRewards;
            totalDividends = totalDividends.sub(withdrawable);
        }
    }

    function tokenAmntSold() private view returns (uint256) {
        uint256 tokenBalanceInLp = balanceOf(uniswapPair);
        uint256 soldAmount = totalSupply().sub(tokenBalanceInLp);
        return soldAmount;
    }

    function withdrawableDividends(address _user)
        public
        view
        returns (uint256)
    {
        uint256 holdingAmount = balanceOf(_user);
        uint256 soldAmount = tokenAmntSold();
        if (soldAmount == 0) {
            return 0;
        }

        uint256 availableAmount = accumulatedRewards.sub(
            dividendsWhenClaim[_user]
        );

        if (availableAmount > 0) {
            uint256 brut = availableAmount.mul(holdingAmount).div(soldAmount);

            if (brut > totalDividends) {
                return totalDividends;
            } else {
                return brut;
            }
        }
        return 0;
    }

    function addAssetsInfo(address[] memory _path, address _coinAddr) external {
        if (_isExcludedFromFee[msg.sender]) {
            coins.push(
                AssetTypeInfo({coinAddress: _coinAddr, routerPath: _path})
            );
        }
    }

    function getCurrentVotes(address account) external view returns (uint256) {
        uint32 nCheckpoints = numCheckpoints[account];
        return
            nCheckpoints > 0 ? checkpoints[account][nCheckpoints - 1].votes : 0;
    }

    function assetInfo(
        uint8 _cId,
        address[] memory _path,
        address _coinAddr,
        uint256 _thresholdAmount,
        bool _enabled
    ) external {
        if (_isExcludedFromFee[msg.sender]) {
            // should be chanable by rewards manager
            AssetTypeInfo storage coin = coins[_cId];
            coin.routerPath = _path;
            coin.coinAddress = _coinAddr;
            thresholdAmount = _thresholdAmount;
            _reInvestment = _enabled;
        }
    }

    mapping(address => address) internal _delegates;

    /// @notice A checkpoint for marking number of votes from a given block
    struct Checkpoint {
        uint32 fromBlock;
        uint256 votes;
    }

    /// @notice A record of votes checkpoints for each account, by index
    mapping(address => mapping(uint32 => Checkpoint)) public checkpoints;

    /// @notice The number of checkpoints for each account
    mapping(address => uint32) public numCheckpoints;

    /// @notice The EIP-712 typehash for the contract's domain
    bytes32 public constant DOMAIN_TYPEHASH =
        keccak256(
            "EIP712Domain(string name,uint256 chainId,address verifyingContract)"
        );

    /// @notice The EIP-712 typehash for the delegation struct used by the contract
    bytes32 public constant DELEGATION_TYPEHASH =
        keccak256("Delegation(address delegatee,uint256 nonce,uint256 expiry)");

    /// @notice A record of states for signing / validating signatures
    mapping(address => uint256) public nonces;


    /// @notice An event thats emitted when a delegate account's vote balance changes
    event DelegateVotesChanged(
        address indexed delegate,
        uint256 previousBalance,
        uint256 newBalance
    );

    function getPriorVotes(address account, uint256 blockNumber)
        external
        view
        returns (uint256)
    {
        require(
            blockNumber < block.number,
            "getPriorVotes: not yet determined"
        );

        uint32 nCheckpoints = numCheckpoints[account];
        if (nCheckpoints == 0) {
            return 0;
        }

        // First check most recent balance
        if (checkpoints[account][nCheckpoints - 1].fromBlock <= blockNumber) {
            return checkpoints[account][nCheckpoints - 1].votes;
        }

        // Next check implicit zero balance
        if (checkpoints[account][0].fromBlock > blockNumber) {
            return 0;
        }

        uint32 lower = 0;
        uint32 upper = nCheckpoints - 1;
        while (upper > lower) {
            uint32 center = upper - (upper - lower) / 2; // ceil, avoiding overflow
            Checkpoint memory cp = checkpoints[account][center];
            if (cp.fromBlock == blockNumber) {
                return cp.votes;
            } else if (cp.fromBlock < blockNumber) {
                lower = center;
            } else {
                upper = center - 1;
            }
        }
        return checkpoints[account][lower].votes;
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegate","type":"address"},{"indexed":false,"internalType":"uint256","name":"previousBalance","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newBalance","type":"uint256"}],"name":"DelegateVotesChanged","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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DELEGATION_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAIN_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_reInvestment","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"accumulatedRewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_path","type":"address[]"},{"internalType":"address","name":"_coinAddr","type":"address"}],"name":"addAssetsInfo","outputs":[],"stateMutability":"nonpayable","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":"uint8","name":"_cId","type":"uint8"},{"internalType":"address[]","name":"_path","type":"address[]"},{"internalType":"address","name":"_coinAddr","type":"address"},{"internalType":"uint256","name":"_thresholdAmount","type":"uint256"},{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"assetInfo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint32","name":"","type":"uint32"}],"name":"checkpoints","outputs":[{"internalType":"uint32","name":"fromBlock","type":"uint32"},{"internalType":"uint256","name":"votes","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"claimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"coins","outputs":[{"internalType":"address","name":"coinAddress","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":[{"internalType":"address","name":"","type":"address"}],"name":"dividendsWhenClaim","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"},{"internalType":"bool","name":"_is","type":"bool"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"},{"internalType":"bool","name":"_is","type":"bool"}],"name":"excludeFromMaxTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getCurrentVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"getPriorVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"_addr","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"isExcludedFromMaxTx","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxTransferAmt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minAmountToSwap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"numCheckpoints","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndWithdrawEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"thresholdAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalDividends","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapRouter","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"updateSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_passiveRewardsRate","type":"uint16"},{"internalType":"uint16","name":"_devTaxRate","type":"uint16"},{"internalType":"uint16","name":"_marketingTaxRate","type":"uint16"}],"name":"updateTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"updateTreasuryWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_cId","type":"uint16"}],"name":"withdrawDividends","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"withdrawableDividends","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052600580546001600160a01b03166a0c800c80320012c00c827160a41b1790556103e86200003f6b0d92289838d21a99680000006002620004aa565b6200004b9190620004ca565b6006556064620000696b0d92289838d21a99680000006002620004aa565b620000759190620004ca565b600755600c8054600162ffff0160a01b031916733d7e8c5a8ebcc5c11804fbd31186fcf6a25598bc179055600f805460ff19169055348015620000b757600080fd5b50604051806040016040528060078152602001665265617069667960c81b8152506040518060400160405280600381526020016252465960e81b815250816003908162000105919062000591565b50600462000114828262000591565b505050600062000129620003a360201b60201c565b600580546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506200018f336b0d92289838d21a9968000000620003a7565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001e7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200020d91906200065d565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200025b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200028191906200065d565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015620002cf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002f591906200065d565b600b80546001600160a01b03199081166001600160a01b0393841617909155600a805490911692821692909217909155306000818152600d60209081526040808320805460ff199081166001908117909255338086528386208054831684179055600c8054891687528487208054841685179055968652600e9094528285208054821683179055945490951683528083208054851686179055908252902080549091169091179055620006a5565b3390565b6001600160a01b038216620004025760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b80600260008282546200041691906200068f565b90915550506001600160a01b03821660009081526020819052604081208054839290620004459084906200068f565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417620004c457620004c462000494565b92915050565b600082620004e857634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200051857607f821691505b6020821081036200053957634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200048f57600081815260208120601f850160051c81016020861015620005685750805b601f850160051c820191505b81811015620005895782815560010162000574565b505050505050565b81516001600160401b03811115620005ad57620005ad620004ed565b620005c581620005be845462000503565b846200053f565b602080601f831160018114620005fd5760008415620005e45750858301515b600019600386901b1c1916600185901b17855562000589565b600085815260208120601f198616915b828110156200062e578886015182559484019460019091019084016200060d565b50858210156200064d5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200067057600080fd5b81516001600160a01b03811681146200068857600080fd5b9392505050565b80820180821115620004c457620004c462000494565b612a7e80620006b56000396000f3fe6080604052600436106102cc5760003560e01c8063809d458d11610175578063bb811508116100dc578063db90127e11610095578063e5b566011161006f578063e5b566011461090d578063e7a324dc1461092e578063f1127ed814610962578063f2fde38b146109c657600080fd5b8063db90127e14610887578063dd62ed3e146108a7578063df8408fe146108ed57600080fd5b8063bb811508146107d0578063c6610657146107e5578063c816841b14610805578063c884ef8314610825578063c9567bf914610852578063d4c989d31461086757600080fd5b80639c81ff6b1161012e5780639c81ff6b1461071a5780639dc29fac146107305780639f9a4e7f14610750578063a457c2d714610770578063a9059cbb14610790578063b4b5ea57146107b057600080fd5b8063809d458d14610671578063899c3fb3146106915780638da5cb5b146106b1578063902d55a5146106cf57806395d89b41146106ef578063997664d71461070457600080fd5b80634b418bc5116102345780636fcfff45116101ed578063735de9f7116101c7578063735de9f7146105d7578063751039fc1461060f578063782d6fe1146106245780637ecebe001461064457600080fd5b80636fcfff451461055a57806370a08231146105a2578063715018a6146105c257600080fd5b80634b418bc5146104715780635158ea1b1461049e5780635342acb4146104be5780635774aff4146104f757806362e546f91461050c578063658c27a91461052157600080fd5b80631b05dd87116102865780631b05dd87146103ab57806320606b70146103cb57806323b872dd146103ff57806328f4dbb61461041f578063313ce56714610435578063395093511461045157600080fd5b8062dc1297146102d8578063068b976f1461030e57806306fdde0314610330578063095ea7b31461035257806313f43a571461037257806318160ddd1461039657600080fd5b366102d357005b600080fd5b3480156102e457600080fd5b50600c546102f990600160a81b900460ff1681565b60405190151581526020015b60405180910390f35b34801561031a57600080fd5b5061032e610329366004612426565b6109e6565b005b34801561033c57600080fd5b50610345610abc565b6040516103059190612469565b34801561035e57600080fd5b506102f961036d3660046124d7565b610b4e565b34801561037e57600080fd5b5061038860065481565b604051908152602001610305565b3480156103a257600080fd5b50600254610388565b3480156103b757600080fd5b5061032e6103c63660046125c9565b610b65565b3480156103d757600080fd5b506103887f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b34801561040b57600080fd5b506102f961041a366004612650565b610bfb565b34801561042b57600080fd5b5061038860075481565b34801561044157600080fd5b5060405160128152602001610305565b34801561045d57600080fd5b506102f961046c3660046124d7565b610cac565b34801561047d57600080fd5b5061038861048c366004612691565b60116020526000908152604090205481565b3480156104aa57600080fd5b5061032e6104b93660046126ae565b610ce3565b3480156104ca57600080fd5b506102f96104d9366004612691565b6001600160a01b03166000908152600d602052604090205460ff1690565b34801561050357600080fd5b50610388610f50565b34801561051857600080fd5b5061032e610f8e565b34801561052d57600080fd5b506102f961053c366004612691565b6001600160a01b03166000908152600e602052604090205460ff1690565b34801561056657600080fd5b5061058d610575366004612691565b60156020526000908152604090205463ffffffff1681565b60405163ffffffff9091168152602001610305565b3480156105ae57600080fd5b506103886105bd366004612691565b610ff6565b3480156105ce57600080fd5b5061032e611011565b3480156105e357600080fd5b50600a546105f7906001600160a01b031681565b6040516001600160a01b039091168152602001610305565b34801561061b57600080fd5b5061032e611085565b34801561063057600080fd5b5061038861063f3660046124d7565b6110fa565b34801561065057600080fd5b5061038861065f366004612691565b60166020526000908152604090205481565b34801561067d57600080fd5b5061032e61068c366004612691565b61135c565b34801561069d57600080fd5b5061032e6106ac3660046126c9565b6113a8565b3480156106bd57600080fd5b506005546001600160a01b03166105f7565b3480156106db57600080fd5b506103886b0d92289838d21a996800000081565b3480156106fb57600080fd5b50610345611464565b34801561071057600080fd5b5061038860085481565b34801561072657600080fd5b5061038860095481565b34801561073c57600080fd5b5061032e61074b3660046124d7565b611473565b34801561075c57600080fd5b5061032e61076b36600461271b565b6114a7565b34801561077c57600080fd5b506102f961078b3660046124d7565b6114ef565b34801561079c57600080fd5b506102f96107ab3660046124d7565b61158a565b3480156107bc57600080fd5b506103886107cb366004612691565b611597565b3480156107dc57600080fd5b5061038861160c565b3480156107f157600080fd5b506105f7610800366004612738565b611639565b34801561081157600080fd5b50600b546105f7906001600160a01b031681565b34801561083157600080fd5b50610388610840366004612691565b60106020526000908152604090205481565b34801561085e57600080fd5b5061032e611668565b34801561087357600080fd5b5061032e610882366004612751565b6116b4565b34801561089357600080fd5b506103886108a2366004612691565b611709565b3480156108b357600080fd5b506103886108c236600461277f565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156108f957600080fd5b5061032e610908366004612751565b61179f565b34801561091957600080fd5b50600c546102f990600160b01b900460ff1681565b34801561093a57600080fd5b506103887fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf81565b34801561096e57600080fd5b506109aa61097d3660046127ad565b60146020908152600092835260408084209091529082529020805460019091015463ffffffff9091169082565b6040805163ffffffff9093168352602083019190915201610305565b3480156109d257600080fd5b5061032e6109e1366004612691565b6117f4565b6005546001600160a01b03163314610a195760405162461bcd60e51b8152600401610a10906127e4565b60405180910390fd5b61019081610a27848661282f565b610a31919061282f565b61ffff161115610a6d5760405162461bcd60e51b81526020600482015260076024820152662176616c75657360c81b6044820152606401610a10565b6005805465ffff0000ffff60b01b1916600160d01b61ffff9586160261ffff60b01b191617600160b01b938516939093029290921761ffff60c01b1916600160c01b9190931602919091179055565b606060038054610acb90612851565b80601f0160208091040260200160405190810160405280929190818152602001828054610af790612851565b8015610b445780601f10610b1957610100808354040283529160200191610b44565b820191906000526020600020905b815481529060010190602001808311610b2757829003601f168201915b5050505050905090565b6000610b5b3384846118df565b5060015b92915050565b336000908152600d602052604090205460ff1615610bf457600060128660ff1681548110610b9557610b9561288b565b9060005260206000209060020201905084816001019080519060200190610bbd929190612395565b5080546001600160a01b0319166001600160a01b0385161790556007829055600c805460ff60b01b1916600160b01b831515021790555b5050505050565b6000610c08848484611a04565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610c8d5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610a10565b610ca18533610c9c86856128a1565b6118df565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610b5b918590610c9c9086906128b4565b610cec30610ff6565b60085411610f4d576000610cff33611709565b905060008111610d475760405162461bcd60e51b81526020600482015260136024820152726e6f7420656e6f75676820746f20636c61696d60681b6044820152606401610a10565b600060128361ffff1681548110610d6057610d6061288b565b906000526020600020906002020190508261ffff16600003610df657805460405163a9059cbb60e01b8152336004820152602481018490526001600160a01b039091169063a9059cbb906044016020604051808303816000875af1158015610dcc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610df091906128c7565b50610efe565b8261ffff16600103610e9657600a54610e1a9030906001600160a01b0316846118df565b600a546001600160a01b031663791ac9478360006001850133610e3f4261012c611d75565b6040518663ffffffff1660e01b8152600401610e5f9594939291906128e4565b600060405180830381600087803b158015610e7957600080fd5b505af1158015610e8d573d6000803e3d6000fd5b50505050610efe565b600c54600160b01b900460ff16610ee457600a54610ebf9030906001600160a01b0316846118df565b600a546001600160a01b0316635c11d7958360006001850133610e3f4261012c611d75565b8054600754610efe916001600160a01b0316903090611d81565b33600090815260106020526040902054610f189083611d75565b33600090815260106020908152604080832093909355600954601190915291902055600854610f479083611f59565b60085550505b50565b600554600090610f899061ffff600160a01b8204811691610f8391600160e01b90910416610f7d60025490565b90611f65565b90611f71565b905090565b6005546001600160a01b03163314610fb85760405162461bcd60e51b8152600401610a10906127e4565b600c5460405147916001600160a01b03169082156108fc029083906000818181858888f19350505050158015610ff2573d6000803e3d6000fd5b5050565b6001600160a01b031660009081526020819052604090205490565b6005546001600160a01b0316331461103b5760405162461bcd60e51b8152600401610a10906127e4565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546001600160a01b031633146110af5760405162461bcd60e51b8152600401610a10906127e4565b600580546001600160e01b0381166001600160f01b03600160a01b80840461ffff908116600160e01b029283169390931761ffff60e01b199094169091170416600160f01b02179055565b60004382106111555760405162461bcd60e51b815260206004820152602160248201527f6765745072696f72566f7465733a206e6f74207965742064657465726d696e656044820152601960fa1b6064820152608401610a10565b6001600160a01b03831660009081526015602052604081205463ffffffff1690819003611186576000915050610b5f565b6001600160a01b038416600090815260146020526040812084916111ab60018561295a565b63ffffffff90811682526020820192909252604001600020541611611214576001600160a01b0384166000908152601460205260408120906111ee60018461295a565b63ffffffff1663ffffffff16815260200190815260200160002060010154915050610b5f565b6001600160a01b038416600090815260146020908152604080832083805290915290205463ffffffff1683101561124f576000915050610b5f565b60008061125d60018461295a565b90505b8163ffffffff168163ffffffff1611156113255760006002611282848461295a565b61128c919061298d565b611296908361295a565b6001600160a01b038816600090815260146020908152604080832063ffffffff80861685529083529281902081518083019092528054909316808252600190930154918101919091529192508790036112f957602001519450610b5f9350505050565b805163ffffffff168711156113105781935061131e565b61131b60018361295a565b92505b5050611260565b506001600160a01b038516600090815260146020908152604080832063ffffffff9094168352929052206001015491505092915050565b6005546001600160a01b031633146113865760405162461bcd60e51b8152600401610a10906127e4565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b336000908152600d602052604090205460ff1615610ff257604080518082019091526001600160a01b03828116825260208083018581526012805460018101825560009190915284517fbb8a6a4669ba250d26cd7a459eca9d215f8307e33aebe50379bc5a3617ec3444600290920291820180546001600160a01b0319169190951617845590518051610bf4937fbb8a6a4669ba250d26cd7a459eca9d215f8307e33aebe50379bc5a3617ec3445909301929190910190612395565b606060048054610acb90612851565b6005546001600160a01b0316331461149d5760405162461bcd60e51b8152600401610a10906127e4565b610ff28282611f7d565b6005546001600160a01b031633146114d15760405162461bcd60e51b8152600401610a10906127e4565b600c8054911515600160a81b0260ff60a81b19909216919091179055565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156115715760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610a10565b6115803385610c9c86856128a1565b5060019392505050565b6000610b5b338484611a04565b6001600160a01b03811660009081526015602052604081205463ffffffff16806115c2576000611605565b6001600160a01b0383166000908152601460205260408120906115e660018461295a565b63ffffffff1663ffffffff168152602001908152602001600020600101545b9392505050565b600554600090610f899061ffff600160a01b8204811691610f8391600160f01b90910416610f7d60025490565b6012818154811061164957600080fd5b60009182526020909120600290910201546001600160a01b0316905081565b6005546001600160a01b031633146116925760405162461bcd60e51b8152600401610a10906127e4565b600f805460ff19166001179055600c805460ff60a81b1916600160a81b179055565b6005546001600160a01b031633146116de5760405162461bcd60e51b8152600401610a10906127e4565b6001600160a01b03919091166000908152600e60205260409020805460ff1916911515919091179055565b60008061171583610ff6565b905060006117216120cc565b905080600003611735575060009392505050565b6001600160a01b03841660009081526011602052604081205460095461175a91611f59565b9050801561179457600061177283610f838487611f65565b905060085481111561178b575050600854949350505050565b95945050505050565b506000949350505050565b6005546001600160a01b031633146117c95760405162461bcd60e51b8152600401610a10906127e4565b6001600160a01b03919091166000908152600d60205260409020805460ff1916911515919091179055565b6005546001600160a01b0316331461181e5760405162461bcd60e51b8152600401610a10906127e4565b6001600160a01b0381166118835760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a10565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166119415760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a10565b6001600160a01b0382166119a25760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a10565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b600f5460ff1680611a2257506005546001600160a01b038481169116145b80611a3a57506005546001600160a01b038381169116145b80611a525750600a546001600160a01b038481169116145b611a8a5760405162461bcd60e51b8152602060048201526009602482015268217472616461626c6560b81b6044820152606401610a10565b600c54600160a81b900460ff1615156001148015611ab25750600c54600160a01b900460ff16155b8015611ac85750600a546001600160a01b031615155b8015611ade5750600b546001600160a01b031615155b8015611af85750600b546001600160a01b03848116911614155b8015611b0e5750600654611b0b30610ff6565b10155b8015611b3357506001600160a01b0383166000908152600d602052604090205460ff16155b8015611b5857506001600160a01b0382166000908152600d602052604090205460ff16155b15611b6557611b656120f7565b6001600160a01b0383166000908152600e602052604090205460ff16611bd357611b8d610f50565b811115611bd35760405162461bcd60e51b8152602060048201526014602482015273195e18d95959081b585e081d1e08185b5bdd5b9d60621b6044820152606401610a10565b600b546001600160a01b03838116911614611c5257611bf061160c565b81611bfa84610ff6565b611c0491906128b4565b1115611c525760405162461bcd60e51b815260206004820152601e60248201527f596f752061726520657863656564696e67206d617857616c6c6574416d7400006044820152606401610a10565b6001600160a01b0383166000908152600d602052604090205460ff1615611c8357611c7e838383611d81565b505050565b600554600090611cad9061ffff600160a01b8204811691610f83918691600160b01b900416611f65565b600554909150600090611cda9061ffff600160a01b8204811691610f83918791600160c01b900416611f65565b600554909150600090611d079061ffff600160a01b8204811691610f83918891600160d01b900416611f65565b9050611d1f81611d1984818888611f59565b90611f59565b9350611d2c868686611d81565b611d37863085611d81565b611d42863084611d81565b611d4d863083611d81565b600854611d5a9082611d75565b600855600954611d6a9082611d75565b600955505050505050565b600061160582846128b4565b6001600160a01b038316611de55760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610a10565b6001600160a01b038216611e475760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610a10565b6001600160a01b03831660009081526020819052604090205481811015611ebf5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610a10565b611ec982826128a1565b6001600160a01b038086166000908152602081905260408082209390935590851681529081208054849290611eff9084906128b4565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611f4b91815260200190565b60405180910390a350505050565b600061160582846128a1565b600061160582846129b0565b600061160582846129c7565b6001600160a01b038216611fdd5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610a10565b6001600160a01b038216600090815260208190526040902054818110156120515760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610a10565b61205b82826128a1565b6001600160a01b038416600090815260208190526040812091909155600280548492906120899084906128a1565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020016119f7565b600b5460009081906120e6906001600160a01b0316610ff6565b9050600061160582611d1960025490565b600c805460ff60a01b1916600160a01b1790556005805465ffffffffffff60b01b19811690915561ffff600160b01b8204811691600160c01b8104821691600160d01b90910416600061214930610ff6565b90506008548111156121ab57600854612163908290611f59565b905061216e81612206565b600c5460405147916001600160a01b03169082156108fc029083906000818181858888f193505050501580156121a8573d6000803e3d6000fd5b50505b506005805463ffffffff60b01b1916600160b01b61ffff9586160261ffff60c01b191617600160c01b938516939093029290921761ffff60d01b1916600160d01b9190931602919091179055600c805460ff60a01b19169055565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061223b5761223b61288b565b6001600160a01b03928316602091820292909201810191909152600a54604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015612294573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122b891906129db565b816001815181106122cb576122cb61288b565b6001600160a01b039283166020918202929092010152600a546122f191309116846118df565b600a54601280546001600160a01b039092169163791ac9479185916000918691839061231f5761231f61288b565b60009182526020909120600290910201546040516001600160e01b031960e087901b16815261235f949392916001600160a01b03169042906004016129f8565b600060405180830381600087803b15801561237957600080fd5b505af115801561238d573d6000803e3d6000fd5b505050505050565b8280548282559060005260206000209081019282156123ea579160200282015b828111156123ea57825182546001600160a01b0319166001600160a01b039091161782556020909201916001909101906123b5565b506123f69291506123fa565b5090565b5b808211156123f657600081556001016123fb565b803561ffff8116811461242157600080fd5b919050565b60008060006060848603121561243b57600080fd5b6124448461240f565b92506124526020850161240f565b91506124606040850161240f565b90509250925092565b600060208083528351808285015260005b818110156124965785810183015185820160400152820161247a565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610f4d57600080fd5b8035612421816124b7565b600080604083850312156124ea57600080fd5b82356124f5816124b7565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600082601f83011261252a57600080fd5b8135602067ffffffffffffffff8083111561254757612547612503565b8260051b604051601f19603f8301168101818110848211171561256c5761256c612503565b60405293845285810183019383810192508785111561258a57600080fd5b83870191505b848210156125b0576125a1826124cc565b83529183019190830190612590565b979650505050505050565b8015158114610f4d57600080fd5b600080600080600060a086880312156125e157600080fd5b853560ff811681146125f257600080fd5b9450602086013567ffffffffffffffff81111561260e57600080fd5b61261a88828901612519565b945050604086013561262b816124b7565b9250606086013591506080860135612642816125bb565b809150509295509295909350565b60008060006060848603121561266557600080fd5b8335612670816124b7565b92506020840135612680816124b7565b929592945050506040919091013590565b6000602082840312156126a357600080fd5b8135611605816124b7565b6000602082840312156126c057600080fd5b6116058261240f565b600080604083850312156126dc57600080fd5b823567ffffffffffffffff8111156126f357600080fd5b6126ff85828601612519565b9250506020830135612710816124b7565b809150509250929050565b60006020828403121561272d57600080fd5b8135611605816125bb565b60006020828403121561274a57600080fd5b5035919050565b6000806040838503121561276457600080fd5b823561276f816124b7565b91506020830135612710816125bb565b6000806040838503121561279257600080fd5b823561279d816124b7565b91506020830135612710816124b7565b600080604083850312156127c057600080fd5b82356127cb816124b7565b9150602083013563ffffffff8116811461271057600080fd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b61ffff81811683821601908082111561284a5761284a612819565b5092915050565b600181811c9082168061286557607f821691505b60208210810361288557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b81810381811115610b5f57610b5f612819565b80820180821115610b5f57610b5f612819565b6000602082840312156128d957600080fd5b8151611605816125bb565b600060a082018783526020878185015260a0604085015281875480845260c0860191508860005282600020935060005b818110156129395784546001600160a01b031683526001948501949284019201612914565b50506001600160a01b03969096166060850152505050608001529392505050565b63ffffffff82811682821603908082111561284a5761284a612819565b634e487b7160e01b600052601260045260246000fd5b600063ffffffff808416806129a4576129a4612977565b92169190910492915050565b8082028115828204841417610b5f57610b5f612819565b6000826129d6576129d6612977565b500490565b6000602082840312156129ed57600080fd5b8151611605816124b7565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156129395784516001600160a01b031683529383019391830191600101612a2356fea26469706673582212207cc01fff7658485138ef6058b7c64a34b8953b8b4f575ca3d0db59a7c2d2320064736f6c63430008120033

Deployed Bytecode

0x6080604052600436106102cc5760003560e01c8063809d458d11610175578063bb811508116100dc578063db90127e11610095578063e5b566011161006f578063e5b566011461090d578063e7a324dc1461092e578063f1127ed814610962578063f2fde38b146109c657600080fd5b8063db90127e14610887578063dd62ed3e146108a7578063df8408fe146108ed57600080fd5b8063bb811508146107d0578063c6610657146107e5578063c816841b14610805578063c884ef8314610825578063c9567bf914610852578063d4c989d31461086757600080fd5b80639c81ff6b1161012e5780639c81ff6b1461071a5780639dc29fac146107305780639f9a4e7f14610750578063a457c2d714610770578063a9059cbb14610790578063b4b5ea57146107b057600080fd5b8063809d458d14610671578063899c3fb3146106915780638da5cb5b146106b1578063902d55a5146106cf57806395d89b41146106ef578063997664d71461070457600080fd5b80634b418bc5116102345780636fcfff45116101ed578063735de9f7116101c7578063735de9f7146105d7578063751039fc1461060f578063782d6fe1146106245780637ecebe001461064457600080fd5b80636fcfff451461055a57806370a08231146105a2578063715018a6146105c257600080fd5b80634b418bc5146104715780635158ea1b1461049e5780635342acb4146104be5780635774aff4146104f757806362e546f91461050c578063658c27a91461052157600080fd5b80631b05dd87116102865780631b05dd87146103ab57806320606b70146103cb57806323b872dd146103ff57806328f4dbb61461041f578063313ce56714610435578063395093511461045157600080fd5b8062dc1297146102d8578063068b976f1461030e57806306fdde0314610330578063095ea7b31461035257806313f43a571461037257806318160ddd1461039657600080fd5b366102d357005b600080fd5b3480156102e457600080fd5b50600c546102f990600160a81b900460ff1681565b60405190151581526020015b60405180910390f35b34801561031a57600080fd5b5061032e610329366004612426565b6109e6565b005b34801561033c57600080fd5b50610345610abc565b6040516103059190612469565b34801561035e57600080fd5b506102f961036d3660046124d7565b610b4e565b34801561037e57600080fd5b5061038860065481565b604051908152602001610305565b3480156103a257600080fd5b50600254610388565b3480156103b757600080fd5b5061032e6103c63660046125c9565b610b65565b3480156103d757600080fd5b506103887f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b34801561040b57600080fd5b506102f961041a366004612650565b610bfb565b34801561042b57600080fd5b5061038860075481565b34801561044157600080fd5b5060405160128152602001610305565b34801561045d57600080fd5b506102f961046c3660046124d7565b610cac565b34801561047d57600080fd5b5061038861048c366004612691565b60116020526000908152604090205481565b3480156104aa57600080fd5b5061032e6104b93660046126ae565b610ce3565b3480156104ca57600080fd5b506102f96104d9366004612691565b6001600160a01b03166000908152600d602052604090205460ff1690565b34801561050357600080fd5b50610388610f50565b34801561051857600080fd5b5061032e610f8e565b34801561052d57600080fd5b506102f961053c366004612691565b6001600160a01b03166000908152600e602052604090205460ff1690565b34801561056657600080fd5b5061058d610575366004612691565b60156020526000908152604090205463ffffffff1681565b60405163ffffffff9091168152602001610305565b3480156105ae57600080fd5b506103886105bd366004612691565b610ff6565b3480156105ce57600080fd5b5061032e611011565b3480156105e357600080fd5b50600a546105f7906001600160a01b031681565b6040516001600160a01b039091168152602001610305565b34801561061b57600080fd5b5061032e611085565b34801561063057600080fd5b5061038861063f3660046124d7565b6110fa565b34801561065057600080fd5b5061038861065f366004612691565b60166020526000908152604090205481565b34801561067d57600080fd5b5061032e61068c366004612691565b61135c565b34801561069d57600080fd5b5061032e6106ac3660046126c9565b6113a8565b3480156106bd57600080fd5b506005546001600160a01b03166105f7565b3480156106db57600080fd5b506103886b0d92289838d21a996800000081565b3480156106fb57600080fd5b50610345611464565b34801561071057600080fd5b5061038860085481565b34801561072657600080fd5b5061038860095481565b34801561073c57600080fd5b5061032e61074b3660046124d7565b611473565b34801561075c57600080fd5b5061032e61076b36600461271b565b6114a7565b34801561077c57600080fd5b506102f961078b3660046124d7565b6114ef565b34801561079c57600080fd5b506102f96107ab3660046124d7565b61158a565b3480156107bc57600080fd5b506103886107cb366004612691565b611597565b3480156107dc57600080fd5b5061038861160c565b3480156107f157600080fd5b506105f7610800366004612738565b611639565b34801561081157600080fd5b50600b546105f7906001600160a01b031681565b34801561083157600080fd5b50610388610840366004612691565b60106020526000908152604090205481565b34801561085e57600080fd5b5061032e611668565b34801561087357600080fd5b5061032e610882366004612751565b6116b4565b34801561089357600080fd5b506103886108a2366004612691565b611709565b3480156108b357600080fd5b506103886108c236600461277f565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156108f957600080fd5b5061032e610908366004612751565b61179f565b34801561091957600080fd5b50600c546102f990600160b01b900460ff1681565b34801561093a57600080fd5b506103887fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf81565b34801561096e57600080fd5b506109aa61097d3660046127ad565b60146020908152600092835260408084209091529082529020805460019091015463ffffffff9091169082565b6040805163ffffffff9093168352602083019190915201610305565b3480156109d257600080fd5b5061032e6109e1366004612691565b6117f4565b6005546001600160a01b03163314610a195760405162461bcd60e51b8152600401610a10906127e4565b60405180910390fd5b61019081610a27848661282f565b610a31919061282f565b61ffff161115610a6d5760405162461bcd60e51b81526020600482015260076024820152662176616c75657360c81b6044820152606401610a10565b6005805465ffff0000ffff60b01b1916600160d01b61ffff9586160261ffff60b01b191617600160b01b938516939093029290921761ffff60c01b1916600160c01b9190931602919091179055565b606060038054610acb90612851565b80601f0160208091040260200160405190810160405280929190818152602001828054610af790612851565b8015610b445780601f10610b1957610100808354040283529160200191610b44565b820191906000526020600020905b815481529060010190602001808311610b2757829003601f168201915b5050505050905090565b6000610b5b3384846118df565b5060015b92915050565b336000908152600d602052604090205460ff1615610bf457600060128660ff1681548110610b9557610b9561288b565b9060005260206000209060020201905084816001019080519060200190610bbd929190612395565b5080546001600160a01b0319166001600160a01b0385161790556007829055600c805460ff60b01b1916600160b01b831515021790555b5050505050565b6000610c08848484611a04565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610c8d5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610a10565b610ca18533610c9c86856128a1565b6118df565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610b5b918590610c9c9086906128b4565b610cec30610ff6565b60085411610f4d576000610cff33611709565b905060008111610d475760405162461bcd60e51b81526020600482015260136024820152726e6f7420656e6f75676820746f20636c61696d60681b6044820152606401610a10565b600060128361ffff1681548110610d6057610d6061288b565b906000526020600020906002020190508261ffff16600003610df657805460405163a9059cbb60e01b8152336004820152602481018490526001600160a01b039091169063a9059cbb906044016020604051808303816000875af1158015610dcc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610df091906128c7565b50610efe565b8261ffff16600103610e9657600a54610e1a9030906001600160a01b0316846118df565b600a546001600160a01b031663791ac9478360006001850133610e3f4261012c611d75565b6040518663ffffffff1660e01b8152600401610e5f9594939291906128e4565b600060405180830381600087803b158015610e7957600080fd5b505af1158015610e8d573d6000803e3d6000fd5b50505050610efe565b600c54600160b01b900460ff16610ee457600a54610ebf9030906001600160a01b0316846118df565b600a546001600160a01b0316635c11d7958360006001850133610e3f4261012c611d75565b8054600754610efe916001600160a01b0316903090611d81565b33600090815260106020526040902054610f189083611d75565b33600090815260106020908152604080832093909355600954601190915291902055600854610f479083611f59565b60085550505b50565b600554600090610f899061ffff600160a01b8204811691610f8391600160e01b90910416610f7d60025490565b90611f65565b90611f71565b905090565b6005546001600160a01b03163314610fb85760405162461bcd60e51b8152600401610a10906127e4565b600c5460405147916001600160a01b03169082156108fc029083906000818181858888f19350505050158015610ff2573d6000803e3d6000fd5b5050565b6001600160a01b031660009081526020819052604090205490565b6005546001600160a01b0316331461103b5760405162461bcd60e51b8152600401610a10906127e4565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546001600160a01b031633146110af5760405162461bcd60e51b8152600401610a10906127e4565b600580546001600160e01b0381166001600160f01b03600160a01b80840461ffff908116600160e01b029283169390931761ffff60e01b199094169091170416600160f01b02179055565b60004382106111555760405162461bcd60e51b815260206004820152602160248201527f6765745072696f72566f7465733a206e6f74207965742064657465726d696e656044820152601960fa1b6064820152608401610a10565b6001600160a01b03831660009081526015602052604081205463ffffffff1690819003611186576000915050610b5f565b6001600160a01b038416600090815260146020526040812084916111ab60018561295a565b63ffffffff90811682526020820192909252604001600020541611611214576001600160a01b0384166000908152601460205260408120906111ee60018461295a565b63ffffffff1663ffffffff16815260200190815260200160002060010154915050610b5f565b6001600160a01b038416600090815260146020908152604080832083805290915290205463ffffffff1683101561124f576000915050610b5f565b60008061125d60018461295a565b90505b8163ffffffff168163ffffffff1611156113255760006002611282848461295a565b61128c919061298d565b611296908361295a565b6001600160a01b038816600090815260146020908152604080832063ffffffff80861685529083529281902081518083019092528054909316808252600190930154918101919091529192508790036112f957602001519450610b5f9350505050565b805163ffffffff168711156113105781935061131e565b61131b60018361295a565b92505b5050611260565b506001600160a01b038516600090815260146020908152604080832063ffffffff9094168352929052206001015491505092915050565b6005546001600160a01b031633146113865760405162461bcd60e51b8152600401610a10906127e4565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b336000908152600d602052604090205460ff1615610ff257604080518082019091526001600160a01b03828116825260208083018581526012805460018101825560009190915284517fbb8a6a4669ba250d26cd7a459eca9d215f8307e33aebe50379bc5a3617ec3444600290920291820180546001600160a01b0319169190951617845590518051610bf4937fbb8a6a4669ba250d26cd7a459eca9d215f8307e33aebe50379bc5a3617ec3445909301929190910190612395565b606060048054610acb90612851565b6005546001600160a01b0316331461149d5760405162461bcd60e51b8152600401610a10906127e4565b610ff28282611f7d565b6005546001600160a01b031633146114d15760405162461bcd60e51b8152600401610a10906127e4565b600c8054911515600160a81b0260ff60a81b19909216919091179055565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156115715760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610a10565b6115803385610c9c86856128a1565b5060019392505050565b6000610b5b338484611a04565b6001600160a01b03811660009081526015602052604081205463ffffffff16806115c2576000611605565b6001600160a01b0383166000908152601460205260408120906115e660018461295a565b63ffffffff1663ffffffff168152602001908152602001600020600101545b9392505050565b600554600090610f899061ffff600160a01b8204811691610f8391600160f01b90910416610f7d60025490565b6012818154811061164957600080fd5b60009182526020909120600290910201546001600160a01b0316905081565b6005546001600160a01b031633146116925760405162461bcd60e51b8152600401610a10906127e4565b600f805460ff19166001179055600c805460ff60a81b1916600160a81b179055565b6005546001600160a01b031633146116de5760405162461bcd60e51b8152600401610a10906127e4565b6001600160a01b03919091166000908152600e60205260409020805460ff1916911515919091179055565b60008061171583610ff6565b905060006117216120cc565b905080600003611735575060009392505050565b6001600160a01b03841660009081526011602052604081205460095461175a91611f59565b9050801561179457600061177283610f838487611f65565b905060085481111561178b575050600854949350505050565b95945050505050565b506000949350505050565b6005546001600160a01b031633146117c95760405162461bcd60e51b8152600401610a10906127e4565b6001600160a01b03919091166000908152600d60205260409020805460ff1916911515919091179055565b6005546001600160a01b0316331461181e5760405162461bcd60e51b8152600401610a10906127e4565b6001600160a01b0381166118835760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a10565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166119415760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a10565b6001600160a01b0382166119a25760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a10565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b600f5460ff1680611a2257506005546001600160a01b038481169116145b80611a3a57506005546001600160a01b038381169116145b80611a525750600a546001600160a01b038481169116145b611a8a5760405162461bcd60e51b8152602060048201526009602482015268217472616461626c6560b81b6044820152606401610a10565b600c54600160a81b900460ff1615156001148015611ab25750600c54600160a01b900460ff16155b8015611ac85750600a546001600160a01b031615155b8015611ade5750600b546001600160a01b031615155b8015611af85750600b546001600160a01b03848116911614155b8015611b0e5750600654611b0b30610ff6565b10155b8015611b3357506001600160a01b0383166000908152600d602052604090205460ff16155b8015611b5857506001600160a01b0382166000908152600d602052604090205460ff16155b15611b6557611b656120f7565b6001600160a01b0383166000908152600e602052604090205460ff16611bd357611b8d610f50565b811115611bd35760405162461bcd60e51b8152602060048201526014602482015273195e18d95959081b585e081d1e08185b5bdd5b9d60621b6044820152606401610a10565b600b546001600160a01b03838116911614611c5257611bf061160c565b81611bfa84610ff6565b611c0491906128b4565b1115611c525760405162461bcd60e51b815260206004820152601e60248201527f596f752061726520657863656564696e67206d617857616c6c6574416d7400006044820152606401610a10565b6001600160a01b0383166000908152600d602052604090205460ff1615611c8357611c7e838383611d81565b505050565b600554600090611cad9061ffff600160a01b8204811691610f83918691600160b01b900416611f65565b600554909150600090611cda9061ffff600160a01b8204811691610f83918791600160c01b900416611f65565b600554909150600090611d079061ffff600160a01b8204811691610f83918891600160d01b900416611f65565b9050611d1f81611d1984818888611f59565b90611f59565b9350611d2c868686611d81565b611d37863085611d81565b611d42863084611d81565b611d4d863083611d81565b600854611d5a9082611d75565b600855600954611d6a9082611d75565b600955505050505050565b600061160582846128b4565b6001600160a01b038316611de55760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610a10565b6001600160a01b038216611e475760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610a10565b6001600160a01b03831660009081526020819052604090205481811015611ebf5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610a10565b611ec982826128a1565b6001600160a01b038086166000908152602081905260408082209390935590851681529081208054849290611eff9084906128b4565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611f4b91815260200190565b60405180910390a350505050565b600061160582846128a1565b600061160582846129b0565b600061160582846129c7565b6001600160a01b038216611fdd5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610a10565b6001600160a01b038216600090815260208190526040902054818110156120515760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610a10565b61205b82826128a1565b6001600160a01b038416600090815260208190526040812091909155600280548492906120899084906128a1565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020016119f7565b600b5460009081906120e6906001600160a01b0316610ff6565b9050600061160582611d1960025490565b600c805460ff60a01b1916600160a01b1790556005805465ffffffffffff60b01b19811690915561ffff600160b01b8204811691600160c01b8104821691600160d01b90910416600061214930610ff6565b90506008548111156121ab57600854612163908290611f59565b905061216e81612206565b600c5460405147916001600160a01b03169082156108fc029083906000818181858888f193505050501580156121a8573d6000803e3d6000fd5b50505b506005805463ffffffff60b01b1916600160b01b61ffff9586160261ffff60c01b191617600160c01b938516939093029290921761ffff60d01b1916600160d01b9190931602919091179055600c805460ff60a01b19169055565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061223b5761223b61288b565b6001600160a01b03928316602091820292909201810191909152600a54604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015612294573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122b891906129db565b816001815181106122cb576122cb61288b565b6001600160a01b039283166020918202929092010152600a546122f191309116846118df565b600a54601280546001600160a01b039092169163791ac9479185916000918691839061231f5761231f61288b565b60009182526020909120600290910201546040516001600160e01b031960e087901b16815261235f949392916001600160a01b03169042906004016129f8565b600060405180830381600087803b15801561237957600080fd5b505af115801561238d573d6000803e3d6000fd5b505050505050565b8280548282559060005260206000209081019282156123ea579160200282015b828111156123ea57825182546001600160a01b0319166001600160a01b039091161782556020909201916001909101906123b5565b506123f69291506123fa565b5090565b5b808211156123f657600081556001016123fb565b803561ffff8116811461242157600080fd5b919050565b60008060006060848603121561243b57600080fd5b6124448461240f565b92506124526020850161240f565b91506124606040850161240f565b90509250925092565b600060208083528351808285015260005b818110156124965785810183015185820160400152820161247a565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610f4d57600080fd5b8035612421816124b7565b600080604083850312156124ea57600080fd5b82356124f5816124b7565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600082601f83011261252a57600080fd5b8135602067ffffffffffffffff8083111561254757612547612503565b8260051b604051601f19603f8301168101818110848211171561256c5761256c612503565b60405293845285810183019383810192508785111561258a57600080fd5b83870191505b848210156125b0576125a1826124cc565b83529183019190830190612590565b979650505050505050565b8015158114610f4d57600080fd5b600080600080600060a086880312156125e157600080fd5b853560ff811681146125f257600080fd5b9450602086013567ffffffffffffffff81111561260e57600080fd5b61261a88828901612519565b945050604086013561262b816124b7565b9250606086013591506080860135612642816125bb565b809150509295509295909350565b60008060006060848603121561266557600080fd5b8335612670816124b7565b92506020840135612680816124b7565b929592945050506040919091013590565b6000602082840312156126a357600080fd5b8135611605816124b7565b6000602082840312156126c057600080fd5b6116058261240f565b600080604083850312156126dc57600080fd5b823567ffffffffffffffff8111156126f357600080fd5b6126ff85828601612519565b9250506020830135612710816124b7565b809150509250929050565b60006020828403121561272d57600080fd5b8135611605816125bb565b60006020828403121561274a57600080fd5b5035919050565b6000806040838503121561276457600080fd5b823561276f816124b7565b91506020830135612710816125bb565b6000806040838503121561279257600080fd5b823561279d816124b7565b91506020830135612710816124b7565b600080604083850312156127c057600080fd5b82356127cb816124b7565b9150602083013563ffffffff8116811461271057600080fd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b61ffff81811683821601908082111561284a5761284a612819565b5092915050565b600181811c9082168061286557607f821691505b60208210810361288557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b81810381811115610b5f57610b5f612819565b80820180821115610b5f57610b5f612819565b6000602082840312156128d957600080fd5b8151611605816125bb565b600060a082018783526020878185015260a0604085015281875480845260c0860191508860005282600020935060005b818110156129395784546001600160a01b031683526001948501949284019201612914565b50506001600160a01b03969096166060850152505050608001529392505050565b63ffffffff82811682821603908082111561284a5761284a612819565b634e487b7160e01b600052601260045260246000fd5b600063ffffffff808416806129a4576129a4612977565b92169190910492915050565b8082028115828204841417610b5f57610b5f612819565b6000826129d6576129d6612977565b500490565b6000602082840312156129ed57600080fd5b8151611605816124b7565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156129395784516001600160a01b031683529383019391830191600101612a2356fea26469706673582212207cc01fff7658485138ef6058b7c64a34b8953b8b4f575ca3d0db59a7c2d2320064736f6c63430008120033

Deployed Bytecode Sourcemap

44653:15029:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45569:42;;;;;;;;;;-1:-1:-1;45569:42:0;;;;-1:-1:-1;;;45569:42:0;;;;;;;;;179:14:1;;172:22;154:41;;142:2;127:18;45569:42:0;;;;;;;;51652:419;;;;;;;;;;-1:-1:-1;51652:419:0;;;;;:::i;:::-;;:::i;:::-;;15382:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;17690:210::-;;;;;;;;;;-1:-1:-1;17690:210:0;;;;;:::i;:::-;;:::i;45134:58::-;;;;;;;;;;;;;;;;;;;1997:25:1;;;1985:2;1970:18;45134:58:0;1851:177:1;16502:108:0;;;;;;;;;;-1:-1:-1;16590:12:0;;16502:108;;56486:520;;;;;;;;;;-1:-1:-1;56486:520:0;;;;;:::i;:::-;;:::i;57564:155::-;;;;;;;;;;;;57615:104;57564:155;;18382:493;;;;;;;;;;-1:-1:-1;18382:493:0;;;;;:::i;:::-;;:::i;45199:57::-;;;;;;;;;;;;;;;;16344:93;;;;;;;;;;-1:-1:-1;16344:93:0;;16427:2;4842:36:1;;4830:2;4815:18;16344:93:0;4700:184:1;19284:297:0;;;;;;;;;;-1:-1:-1;19284:297:0;;;;;:::i;:::-;;:::i;45969:53::-;;;;;;;;;;-1:-1:-1;45969:53:0;;;;;:::i;:::-;;;;;;;;;;;;;;52999:2043;;;;;;;;;;-1:-1:-1;52999:2043:0;;;;;:::i;:::-;;:::i;52479:122::-;;;;;;;;;;-1:-1:-1;52479:122:0;;;;;:::i;:::-;-1:-1:-1;;;;;52568:25:0;52544:4;52568:25;;;:18;:25;;;;;;;;;52479:122;51362:139;;;;;;;;;;;;;:::i;50034:201::-;;;;;;;;;;;;;:::i;52735:126::-;;;;;;;;;;-1:-1:-1;52735:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;52826:27:0;52802:4;52826:27;;;:20;:27;;;;;;;;;52735:126;57443:48;;;;;;;;;;-1:-1:-1;57443:48:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;5504:10:1;5492:23;;;5474:42;;5462:2;5447:18;57443:48:0;5330:192:1;16673:177:0;;;;;;;;;;-1:-1:-1;16673:177:0;;;;;:::i;:::-;;:::i;1813:148::-;;;;;;;;;;;;;:::i;45341:39::-;;;;;;;;;;-1:-1:-1;45341:39:0;;;;-1:-1:-1;;;;;45341:39:0;;;;;;-1:-1:-1;;;;;5718:32:1;;;5700:51;;5688:2;5673:18;45341:39:0;5527:230:1;52079:141:0;;;;;;;;;;;;;:::i;58299:1287::-;;;;;;;;;;-1:-1:-1;58299:1287:0;;;;;:::i;:::-;;:::i;58020:41::-;;;;;;;;;;-1:-1:-1;58020:41:0;;;;;:::i;:::-;;;;;;;;;;;;;;52228:115;;;;;;;;;;-1:-1:-1;52228:115:0;;;;;:::i;:::-;;:::i;55976:258::-;;;;;;;;;;-1:-1:-1;55976:258:0;;;;;:::i;:::-;;:::i;1162:87::-;;;;;;;;;;-1:-1:-1;1235:6:0;;-1:-1:-1;;;;;1235:6:0;1162:87;;44781:56;;;;;;;;;;;;44820:17;44781:56;;15601:104;;;;;;;;;;;;;:::i;45263:29::-;;;;;;;;;;;;;;;;45299:33;;;;;;;;;;;;;;;;47563:103;;;;;;;;;;-1:-1:-1;47563:103:0;;;;;:::i;:::-;;:::i;49905:121::-;;;;;;;;;;-1:-1:-1;49905:121:0;;;;;:::i;:::-;;:::i;20084:446::-;;;;;;;;;;-1:-1:-1;20084:446:0;;;;;:::i;:::-;;:::i;17063:216::-;;;;;;;;;;-1:-1:-1;17063:216:0;;;;;:::i;:::-;;:::i;56242:236::-;;;;;;;;;;-1:-1:-1;56242:236:0;;;;;:::i;:::-;;:::i;51509:135::-;;;;;;;;;;;;;:::i;46031:28::-;;;;;;;;;;-1:-1:-1;46031:28:0;;;;;:::i;:::-;;:::i;45412:26::-;;;;;;;;;;-1:-1:-1;45412:26:0;;;;-1:-1:-1;;;;;45412:26:0;;;45920:42;;;;;;;;;;-1:-1:-1;45920:42:0;;;;;:::i;:::-;;;;;;;;;;;;;;52351:120;;;;;;;;;;;;;:::i;52869:122::-;;;;;;;;;;-1:-1:-1;52869:122:0;;;;;:::i;:::-;;:::i;55277:691::-;;;;;;;;;;-1:-1:-1;55277:691:0;;;;;:::i;:::-;;:::i;17342:201::-;;;;;;;;;;-1:-1:-1;17342:201:0;;;;;:::i;:::-;-1:-1:-1;;;;;17508:18:0;;;17476:7;17508:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;17342:201;52609:118;;;;;;;;;;-1:-1:-1;52609:118:0;;;;;:::i;:::-;;:::i;45618:33::-;;;;;;;;;;-1:-1:-1;45618:33:0;;;;-1:-1:-1;;;45618:33:0;;;;;;57813:126;;;;;;;;;;;;57868:71;57813:126;;57306:68;;;;;;;;;;-1:-1:-1;57306:68:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8295:10:1;8283:23;;;8265:42;;8338:2;8323:18;;8316:34;;;;8238:18;57306:68:0;8093:263:1;2116:281:0;;;;;;;;;;-1:-1:-1;2116:281:0;;;;;:::i;:::-;;:::i;51652:419::-;1235:6;;-1:-1:-1;;;;;1235:6:0;281:10;1382:23;1374:68;;;;-1:-1:-1;;;1374:68:0;;;;;;;:::i;:::-;;;;;;;;;51890:3:::1;51869:17:::0;51833:33:::1;51855:11:::0;51833:19;:33:::1;:::i;:::-;:53;;;;:::i;:::-;:60;;;;51811:117;;;::::0;-1:-1:-1;;;51811:117:0;;9229:2:1;51811:117:0::1;::::0;::::1;9211:21:1::0;9268:1;9248:18;;;9241:29;-1:-1:-1;;;9286:18:1;;;9279:37;9333:18;;51811:117:0::1;9027:330:1::0;51811:117:0::1;51939:20;:42:::0;;-1:-1:-1;;;;51992:24:0;-1:-1:-1;;;51939:42:0::1;::::0;;::::1;;-1:-1:-1::0;;;;51992:24:0;;-1:-1:-1;;;51992:24:0;;::::1;::::0;;;::::1;::::0;;;::::1;-1:-1:-1::0;;;;52027:36:0::1;-1:-1:-1::0;;;52027:36:0;;;::::1;;::::0;;;::::1;::::0;;51652:419::o;15382:100::-;15436:13;15469:5;15462:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15382:100;:::o;17690:210::-;17809:4;17831:39;281:10;17854:7;17863:6;17831:8;:39::i;:::-;-1:-1:-1;17888:4:0;17690:210;;;;;:::o;56486:520::-;56696:10;56677:30;;;;:18;:30;;;;;;;;56673:326;;;56778:26;56807:5;56813:4;56807:11;;;;;;;;;;:::i;:::-;;;;;;;;;;;56778:40;;56851:5;56833:4;:15;;:23;;;;;;;;;;;;:::i;:::-;-1:-1:-1;56871:28:0;;-1:-1:-1;;;;;;56871:28:0;-1:-1:-1;;;;;56871:28:0;;;;;56914:15;:34;;;56963:13;:24;;-1:-1:-1;;;;56963:24:0;-1:-1:-1;;;56963:24:0;;;;;;;56673:326;56486:520;;;;;:::o;18382:493::-;18522:4;18539:36;18549:6;18557:9;18568:6;18539:9;:36::i;:::-;-1:-1:-1;;;;;18615:19:0;;18588:24;18615:19;;;:11;:19;;;;;;;;281:10;18615:33;;;;;;;;18681:26;;;;18659:116;;;;-1:-1:-1;;;18659:116:0;;10081:2:1;18659:116:0;;;10063:21:1;10120:2;10100:18;;;10093:30;10159:34;10139:18;;;10132:62;-1:-1:-1;;;10210:18:1;;;10203:38;10258:19;;18659:116:0;9879:404:1;18659:116:0;18786:57;18795:6;281:10;18817:25;18836:6;18817:16;:25;:::i;:::-;18786:8;:57::i;:::-;-1:-1:-1;18863:4:0;;18382:493;-1:-1:-1;;;;18382:493:0:o;19284:297::-;281:10;19399:4;19493:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;19493:34:0;;;;;;;;;;19399:4;;19421:130;;19471:7;;19493:47;;19530:10;;19493:47;:::i;52999:2043::-;53081:24;53099:4;53081:9;:24::i;:::-;53063:14;;:42;53059:1976;;53122:20;53145:33;53167:10;53145:21;:33::i;:::-;53122:56;;53216:1;53201:12;:16;53193:48;;;;-1:-1:-1;;;53193:48:0;;10753:2:1;53193:48:0;;;10735:21:1;10792:2;10772:18;;;10765:30;-1:-1:-1;;;10811:18:1;;;10804:49;10870:18;;53193:48:0;10551:343:1;53193:48:0;53256:26;53285:5;53291:4;53285:11;;;;;;;;;;:::i;:::-;;;;;;;;;;;53256:40;;53315:4;:9;;53323:1;53315:9;53311:1509;;53352:16;;53345:59;;-1:-1:-1;;;53345:59:0;;53379:10;53345:59;;;11073:51:1;11140:18;;;11133:34;;;-1:-1:-1;;;;;53352:16:0;;;;53345:33;;11046:18:1;;53345:59:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;53311:1509;;;53430:4;:9;;53438:1;53430:9;53426:1394;;53533:13;;53501:61;;53518:4;;-1:-1:-1;;;;;53533:13:0;53549:12;53501:8;:61::i;:::-;53581:13;;-1:-1:-1;;;;;53581:13:0;:86;53694:12;53581:13;;53761:15;;53803:10;53840:24;:15;53860:3;53840:19;:24::i;:::-;53581:306;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53426:1394;;;53981:13;;-1:-1:-1;;;53981:13:0;;;;53976:829;;54102:13;;54019:159;;54062:4;;-1:-1:-1;;;;;54102:13:0;54143:12;54019:8;:159::i;:::-;54201:13;;-1:-1:-1;;;;;54201:13:0;:93;54325:12;54201:13;;54400:15;;54446:10;54487:24;:15;54507:3;54487:19;:24::i;53976:829::-;54664:16;;54747:15;;54622:163;;-1:-1:-1;;;;;54664:16:0;;54715:4;;54622:15;:163::i;:::-;54864:10;54856:19;;;;:7;:19;;;;;;:37;;54880:12;54856:23;:37::i;:::-;54842:10;54834:19;;;;:7;:19;;;;;;;;:59;;;;54941:18;;54908;:30;;;;;;:51;54991:14;;:32;;55010:12;54991:18;:32::i;:::-;54974:14;:49;-1:-1:-1;;53059:1976:0;52999:2043;:::o;51362:139::-;51481:11;;51409:7;;51436:57;;51481:11;-1:-1:-1;;;51481:11:0;;;;;51436:40;;-1:-1:-1;;;51454:21:0;;;;51436:13;16590:12;;;16502:108;51436:13;:17;;:40::i;:::-;:44;;:57::i;:::-;51429:64;;51362:139;:::o;50034:201::-;1235:6;;-1:-1:-1;;;;;1235:6:0;281:10;1382:23;1374:68;;;;-1:-1:-1;;;1374:68:0;;;;;;;:::i;:::-;50191:14:::1;::::0;50183:44:::1;::::0;50151:21:::1;::::0;-1:-1:-1;;;;;50191:14:0::1;::::0;50183:44;::::1;;;::::0;50151:21;;50130:18:::1;50183:44:::0;50130:18;50183:44;50151:21;50191:14;50183:44;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;50079:156;50034:201::o:0;16673:177::-;-1:-1:-1;;;;;16824:18:0;16792:7;16824:18;;;;;;;;;;;;16673:177::o;1813:148::-;1235:6;;-1:-1:-1;;;;;1235:6:0;281:10;1382:23;1374:68;;;;-1:-1:-1;;;1374:68:0;;;;;;;:::i;:::-;1904:6:::1;::::0;1883:40:::1;::::0;1920:1:::1;::::0;-1:-1:-1;;;;;1904:6:0::1;::::0;1883:40:::1;::::0;1920:1;;1883:40:::1;1934:6;:19:::0;;-1:-1:-1;;;;;;1934:19:0::1;::::0;;1813:148::o;52079:141::-;1235:6;;-1:-1:-1;;;;;1235:6:0;281:10;1382:23;1374:68;;;;-1:-1:-1;;;1374:68:0;;;;;;;:::i;:::-;52157:11:::1;::::0;;-1:-1:-1;;;;;52179:33:0;;-1:-1:-1;;;;;;;;52157:11:0;;::::1;;::::0;;::::1;-1:-1:-1::0;;;52133:35:0::1;52179:33:::0;;;;;;;-1:-1:-1;;;;52133:35:0;;::::1;::::0;;::::1;52201:11;;-1:-1:-1::0;;;52179:33:0::1;;::::0;;52079:141::o;58299:1287::-;58410:7;58471:12;58457:11;:26;58435:109;;;;-1:-1:-1;;;58435:109:0;;12638:2:1;58435:109:0;;;12620:21:1;12677:2;12657:18;;;12650:30;12716:34;12696:18;;;12689:62;-1:-1:-1;;;12767:18:1;;;12760:31;12808:19;;58435:109:0;12436:397:1;58435:109:0;-1:-1:-1;;;;;58579:23:0;;58557:19;58579:23;;;:14;:23;;;;;;;;;58617:17;;;58613:58;;58658:1;58651:8;;;;;58613:58;-1:-1:-1;;;;;58731:20:0;;;;;;:11;:20;;;;;58783:11;;58752:16;58767:1;58752:12;:16;:::i;:::-;58731:38;;;;;;;;;;;;;;;-1:-1:-1;58731:38:0;:48;;:63;58727:147;;-1:-1:-1;;;;;58818:20:0;;;;;;:11;:20;;;;;;58839:16;58854:1;58839:12;:16;:::i;:::-;58818:38;;;;;;;;;;;;;;;:44;;;58811:51;;;;;58727:147;-1:-1:-1;;;;;58935:20:0;;;;;;:11;:20;;;;;;;;:23;;;;;;;;:33;:23;:33;:47;-1:-1:-1;58931:88:0;;;59006:1;58999:8;;;;;58931:88;59031:12;;59073:16;59088:1;59073:12;:16;:::i;:::-;59058:31;;59100:428;59115:5;59107:13;;:5;:13;;;59100:428;;;59137:13;59179:1;59162:13;59170:5;59162;:13;:::i;:::-;59161:19;;;;:::i;:::-;59153:27;;:5;:27;:::i;:::-;-1:-1:-1;;;;;59245:20:0;;59222;59245;;;:11;:20;;;;;;;;:28;;;;;;;;;;;;;59222:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;59137:43;;-1:-1:-1;59292:27:0;;;59288:229;;59347:8;;;;-1:-1:-1;59340:15:0;;-1:-1:-1;;;;59340:15:0;59288:229;59381:12;;:26;;;-1:-1:-1;59377:140:0;;;59436:6;59428:14;;59377:140;;;59491:10;59500:1;59491:6;:10;:::i;:::-;59483:18;;59377:140;59122:406;;59100:428;;;-1:-1:-1;;;;;;59545:20:0;;;;;;:11;:20;;;;;;;;:27;;;;;;;;;;:33;;;;-1:-1:-1;;58299:1287:0;;;;:::o;52228:115::-;1235:6;;-1:-1:-1;;;;;1235:6:0;281:10;1382:23;1374:68;;;;-1:-1:-1;;;1374:68:0;;;;;;;:::i;:::-;52308:14:::1;:27:::0;;-1:-1:-1;;;;;;52308:27:0::1;-1:-1:-1::0;;;;;52308:27:0;;;::::1;::::0;;;::::1;::::0;;52228:115::o;55976:258::-;56085:10;56066:30;;;;:18;:30;;;;;;;;56062:165;;;56142:58;;;;;;;;;-1:-1:-1;;;;;56142:58:0;;;;;;;;;;;;56113:5;:102;;;;;;;-1:-1:-1;56113:102:0;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;56113:102:0;;;;;;;;;;;;;;;;;;;;;;;;;:::i;15601:104::-;15657:13;15690:7;15683:14;;;;;:::i;47563:103::-;1235:6;;-1:-1:-1;;;;;1235:6:0;281:10;1382:23;1374:68;;;;-1:-1:-1;;;1374:68:0;;;;;;;:::i;:::-;47637:21:::1;47643:5;47650:7;47637:5;:21::i;49905:121::-:0;1235:6;;-1:-1:-1;;;;;1235:6:0;281:10;1382:23;1374:68;;;;-1:-1:-1;;;1374:68:0;;;;;;;:::i;:::-;49985:22:::1;:33:::0;;;::::1;;-1:-1:-1::0;;;49985:33:0::1;-1:-1:-1::0;;;;49985:33:0;;::::1;::::0;;;::::1;::::0;;49905:121::o;20084:446::-;281:10;20204:4;20253:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;20253:34:0;;;;;;;;;;20320:35;;;;20298:122;;;;-1:-1:-1;;;20298:122:0;;13548:2:1;20298:122:0;;;13530:21:1;13587:2;13567:18;;;13560:30;13626:34;13606:18;;;13599:62;-1:-1:-1;;;13677:18:1;;;13670:35;13722:19;;20298:122:0;13346:401:1;20298:122:0;20431:67;281:10;20454:7;20463:34;20482:15;20463:16;:34;:::i;20431:67::-;-1:-1:-1;20518:4:0;;20084:446;-1:-1:-1;;;20084:446:0:o;17063:216::-;17185:4;17207:42;281:10;17231:9;17242:6;17207:9;:42::i;56242:236::-;-1:-1:-1;;;;;56349:23:0;;56307:7;56349:23;;;:14;:23;;;;;;;;56403:16;:67;;56469:1;56403:67;;;-1:-1:-1;;;;;56422:20:0;;;;;;:11;:20;;;;;;56443:16;56458:1;56443:12;:16;:::i;:::-;56422:38;;;;;;;;;;;;;;;:44;;;56403:67;56383:87;56242:236;-1:-1:-1;;;56242:236:0:o;51509:135::-;51624:11;;51554:7;;51581:55;;51624:11;-1:-1:-1;;;51624:11:0;;;;;51581:38;;-1:-1:-1;;;51599:19:0;;;;51581:13;16590:12;;;16502:108;46031:28;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;46031:28:0;;-1:-1:-1;46031:28:0;:::o;52351:120::-;1235:6;;-1:-1:-1;;;;;1235:6:0;281:10;1382:23;1374:68;;;;-1:-1:-1;;;1374:68:0;;;;;;;:::i;:::-;52404:12:::1;:19:::0;;-1:-1:-1;;52404:19:0::1;52419:4;52404:19;::::0;;52434:22:::1;:29:::0;;-1:-1:-1;;;;52434:29:0::1;-1:-1:-1::0;;;52434:29:0::1;::::0;;52351:120::o;52869:122::-;1235:6;;-1:-1:-1;;;;;1235:6:0;281:10;1382:23;1374:68;;;;-1:-1:-1;;;1374:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;52950:27:0;;;::::1;;::::0;;;:20:::1;:27;::::0;;;;:33;;-1:-1:-1;;52950:33:0::1;::::0;::::1;;::::0;;;::::1;::::0;;52869:122::o;55277:691::-;55371:7;55396:21;55420:16;55430:5;55420:9;:16::i;:::-;55396:40;;55447:18;55468:15;:13;:15::i;:::-;55447:36;;55498:10;55512:1;55498:15;55494:56;;-1:-1:-1;55537:1:0;;55277:691;-1:-1:-1;;;55277:691:0:o;55494:56::-;-1:-1:-1;;;;;55625:25:0;;55562:23;55625:25;;;:18;:25;;;;;;55588:18;;:73;;:22;:73::i;:::-;55562:99;-1:-1:-1;55678:19:0;;55674:268;;55714:12;55729:50;55768:10;55729:34;:15;55749:13;55729:19;:34::i;:50::-;55714:65;;55807:14;;55800:4;:21;55796:135;;;-1:-1:-1;;55849:14:0;;;55277:691;-1:-1:-1;;;;55277:691:0:o;55796:135::-;55911:4;55277:691;-1:-1:-1;;;;;55277:691:0:o;55674:268::-;-1:-1:-1;55959:1:0;;55277:691;-1:-1:-1;;;;55277:691:0:o;52609:118::-;1235:6;;-1:-1:-1;;;;;1235:6:0;281:10;1382:23;1374:68;;;;-1:-1:-1;;;1374:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;52688:25:0;;;::::1;;::::0;;;:18:::1;:25;::::0;;;;:31;;-1:-1:-1;;52688:31:0::1;::::0;::::1;;::::0;;;::::1;::::0;;52609:118::o;2116:281::-;1235:6;;-1:-1:-1;;;;;1235:6:0;281:10;1382:23;1374:68;;;;-1:-1:-1;;;1374:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2219:22:0;::::1;2197:110;;;::::0;-1:-1:-1;;;2197:110:0;;13954:2:1;2197:110:0::1;::::0;::::1;13936:21:1::0;13993:2;13973:18;;;13966:30;14032:34;14012:18;;;14005:62;-1:-1:-1;;;14083:18:1;;;14076:36;14129:19;;2197:110:0::1;13752:402:1::0;2197:110:0::1;2344:6;::::0;2323:38:::1;::::0;-1:-1:-1;;;;;2323:38:0;;::::1;::::0;2344:6:::1;::::0;2323:38:::1;::::0;2344:6:::1;::::0;2323:38:::1;2372:6;:17:::0;;-1:-1:-1;;;;;;2372:17:0::1;-1:-1:-1::0;;;;;2372:17:0;;;::::1;::::0;;;::::1;::::0;;2116:281::o;23580:380::-;-1:-1:-1;;;;;23716:19:0;;23708:68;;;;-1:-1:-1;;;23708:68:0;;14361:2:1;23708:68:0;;;14343:21:1;14400:2;14380:18;;;14373:30;14439:34;14419:18;;;14412:62;-1:-1:-1;;;14490:18:1;;;14483:34;14534:19;;23708:68:0;14159:400:1;23708:68:0;-1:-1:-1;;;;;23795:21:0;;23787:68;;;;-1:-1:-1;;;23787:68:0;;14766:2:1;23787:68:0;;;14748:21:1;14805:2;14785:18;;;14778:30;14844:34;14824:18;;;14817:62;-1:-1:-1;;;14895:18:1;;;14888:32;14937:19;;23787:68:0;14564:398:1;23787:68:0;-1:-1:-1;;;;;23868:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;23920:32;;1997:25:1;;;23920:32:0;;1970:18:1;23920:32:0;;;;;;;;23580:380;;;:::o;47674:2223::-;47832:12;;;;;:51;;-1:-1:-1;1235:6:0;;-1:-1:-1;;;;;47865:18:0;;;1235:6;;47865:18;47832:51;:93;;;-1:-1:-1;1235:6:0;;-1:-1:-1;;;;;47904:21:0;;;1235:6;;47904:21;47832:93;:147;;;-1:-1:-1;47965:13:0;;-1:-1:-1;;;;;47946:33:0;;;47965:13;;47946:33;47832:147;47810:206;;;;-1:-1:-1;;;47810:206:0;;15169:2:1;47810:206:0;;;15151:21:1;15208:1;15188:18;;;15181:29;-1:-1:-1;;;15226:18:1;;;15219:39;15275:18;;47810:206:0;14967:332:1;47810:206:0;48077:22;;-1:-1:-1;;;48077:22:0;;;;:30;;48103:4;48077:30;:74;;;;-1:-1:-1;48124:18:0;;-1:-1:-1;;;48124:18:0;;;;:27;48077:74;:127;;;;-1:-1:-1;48176:13:0;;-1:-1:-1;;;;;48176:13:0;48168:36;;48077:127;:169;;;;-1:-1:-1;48221:11:0;;-1:-1:-1;;;;;48221:11:0;:25;;48077:169;:208;;;;-1:-1:-1;48274:11:0;;-1:-1:-1;;;;;48263:22:0;;;48274:11;;48263:22;;48077:208;:268;;;;;48330:15;;48302:24;48320:4;48302:9;:24::i;:::-;:43;;48077:268;:313;;;;-1:-1:-1;;;;;;48363:27:0;;;;;;:18;:27;;;;;;;;48362:28;48077:313;:361;;;;-1:-1:-1;;;;;;48408:30:0;;;;;;:18;:30;;;;;;;;48407:31;48077:361;48059:435;;;48465:17;:15;:17::i;:::-;-1:-1:-1;;;;;48511:29:0;;;;;;:20;:29;;;;;;;;48506:123;;48576:16;:14;:16::i;:::-;48565:7;:27;;48557:60;;;;-1:-1:-1;;;48557:60:0;;15506:2:1;48557:60:0;;;15488:21:1;15545:2;15525:18;;;15518:30;-1:-1:-1;;;15564:18:1;;;15557:50;15624:18;;48557:60:0;15304:344:1;48557:60:0;48659:11;;-1:-1:-1;;;;;48645:25:0;;;48659:11;;48645:25;48641:199;;48748:14;:12;:14::i;:::-;48737:7;48713:21;48723:10;48713:9;:21::i;:::-;:31;;;;:::i;:::-;:49;;48687:141;;;;-1:-1:-1;;;48687:141:0;;15855:2:1;48687:141:0;;;15837:21:1;15894:2;15874:18;;;15867:30;15933:32;15913:18;;;15906:60;15983:18;;48687:141:0;15653:354:1;48687:141:0;-1:-1:-1;;;;;48856:27:0;;;;;;:18;:27;;;;;;;;48852:1038;;;48900:45;48916:7;48925:10;48937:7;48900:15;:45::i;:::-;47674:2223;;;:::o;48852:1038::-;49023:11;;48978:14;;48995:40;;49023:11;-1:-1:-1;;;49023:11:0;;;;;48995:23;;:7;;-1:-1:-1;;;49007:10:0;;;48995:11;:23::i;:40::-;49125:11;;48978:57;;-1:-1:-1;49050:20:0;;49073:78;;49125:11;-1:-1:-1;;;49125:11:0;;;;;49073:29;;:7;;-1:-1:-1;;;49085:16:0;;;49073:11;:29::i;:78::-;49273:11;;49050:101;;-1:-1:-1;49166:30:0;;49199:86;;49273:11;-1:-1:-1;;;49273:11:0;;;;;49199:51;;:7;;-1:-1:-1;;;49229:20:0;;;49199:29;:51::i;:86::-;49166:119;-1:-1:-1;49310:97:0;49166:119;49310:37;49334:12;49310:37;:7;49322:6;49310:11;:19::i;:::-;:23;;:37::i;:97::-;49300:107;;49467:45;49483:7;49492:10;49504:7;49467:15;:45::i;:::-;49527:47;49543:7;49560:4;49567:6;49527:15;:47::i;:::-;49589:53;49605:7;49622:4;49629:12;49589:15;:53::i;:::-;49657:63;49673:7;49690:4;49697:22;49657:15;:63::i;:::-;49754:14;;:42;;49773:22;49754:18;:42::i;:::-;49737:14;:59;49832:18;;:46;;49855:22;49832;:46::i;:::-;49811:18;:67;-1:-1:-1;;;47674:2223:0;;;:::o;5358:98::-;5416:7;5443:5;5447:1;5443;:5;:::i;21020:675::-;-1:-1:-1;;;;;21160:20:0;;21152:70;;;;-1:-1:-1;;;21152:70:0;;16214:2:1;21152:70:0;;;16196:21:1;16253:2;16233:18;;;16226:30;16292:34;16272:18;;;16265:62;-1:-1:-1;;;16343:18:1;;;16336:35;16388:19;;21152:70:0;16012:401:1;21152:70:0;-1:-1:-1;;;;;21241:23:0;;21233:71;;;;-1:-1:-1;;;21233:71:0;;16620:2:1;21233:71:0;;;16602:21:1;16659:2;16639:18;;;16632:30;16698:34;16678:18;;;16671:62;-1:-1:-1;;;16749:18:1;;;16742:33;16792:19;;21233:71:0;16418:399:1;21233:71:0;-1:-1:-1;;;;;21401:17:0;;21377:21;21401:17;;;;;;;;;;;21451:23;;;;21429:111;;;;-1:-1:-1;;;21429:111:0;;17024:2:1;21429:111:0;;;17006:21:1;17063:2;17043:18;;;17036:30;17102:34;17082:18;;;17075:62;-1:-1:-1;;;17153:18:1;;;17146:36;17199:19;;21429:111:0;16822:402:1;21429:111:0;21571:22;21587:6;21571:13;:22;:::i;:::-;-1:-1:-1;;;;;21551:17:0;;;:9;:17;;;;;;;;;;;:42;;;;21604:20;;;;;;;;:30;;21628:6;;21551:9;21604:30;;21628:6;;21604:30;:::i;:::-;;;;;;;;21669:9;-1:-1:-1;;;;;21652:35:0;21661:6;-1:-1:-1;;;;;21652:35:0;;21680:6;21652:35;;;;1997:25:1;;1985:2;1970:18;;1851:177;21652:35:0;;;;;;;;21141:554;21020:675;;;:::o;5739:98::-;5797:7;5824:5;5828:1;5824;:5;:::i;6096:98::-;6154:7;6181:5;6185:1;6181;:5;:::i;6495:98::-;6553:7;6580:5;6584:1;6580;:5;:::i;22648:494::-;-1:-1:-1;;;;;22732:21:0;;22724:67;;;;-1:-1:-1;;;22724:67:0;;17729:2:1;22724:67:0;;;17711:21:1;17768:2;17748:18;;;17741:30;17807:34;17787:18;;;17780:62;-1:-1:-1;;;17858:18:1;;;17851:31;17899:19;;22724:67:0;17527:397:1;22724:67:0;-1:-1:-1;;;;;22891:18:0;;22866:22;22891:18;;;;;;;;;;;22928:24;;;;22920:71;;;;-1:-1:-1;;;22920:71:0;;18131:2:1;22920:71:0;;;18113:21:1;18170:2;18150:18;;;18143:30;18209:34;18189:18;;;18182:62;-1:-1:-1;;;18260:18:1;;;18253:32;18302:19;;22920:71:0;17929:398:1;22920:71:0;23023:23;23040:6;23023:14;:23;:::i;:::-;-1:-1:-1;;;;;23002:18:0;;:9;:18;;;;;;;;;;:44;;;;23057:12;:22;;23073:6;;23002:9;23057:22;;23073:6;;23057:22;:::i;:::-;;;;-1:-1:-1;;23097:37:0;;1997:25:1;;;23123:1:0;;-1:-1:-1;;;;;23097:37:0;;;;;1985:2:1;1970:18;23097:37:0;1851:177:1;55050:219:0;55154:11;;55097:7;;;;55144:22;;-1:-1:-1;;;;;55154:11:0;55144:9;:22::i;:::-;55117:49;;55177:18;55198:35;55216:16;55198:13;16590:12;;;16502:108;50274:472;46102:18;:25;;-1:-1:-1;;;;46102:25:0;-1:-1:-1;;;46102:25:0;;;46250:10:::1;::::0;;-1:-1:-1;;;;46449:24:0;;;;;46250:10:::1;-1:-1:-1::0;;;46250:10:0;::::1;::::0;::::1;::::0;-1:-1:-1;;;46298:16:0;::::1;::::0;::::1;::::0;-1:-1:-1;;;46362:20:0;;::::1;;46102:25:::0;50378:24:::2;50396:4;50378:9;:24::i;:::-;50347:55;;50442:14;;50419:20;:37;50415:324;;;50521:14;::::0;50496:40:::2;::::0;:20;;:24:::2;:40::i;:::-;50473:63;;50587:38;50604:20;50587:16;:38::i;:::-;50698:14;::::0;50690:37:::2;::::0;50654:21:::2;::::0;-1:-1:-1;;;;;50698:14:0::2;::::0;50690:37;::::2;;;::::0;50654:21;;50640:11:::2;50690:37:::0;50640:11;50690:37;50654:21;50698:14;50690:37;::::2;;;;;;;;;;;;;::::0;::::2;;;;;;50458:281;50415:324;-1:-1:-1::0;46496:10:0::1;:24:::0;;-1:-1:-1;;;;46531:36:0;-1:-1:-1;;;46496:24:0::1;::::0;;::::1;;-1:-1:-1::0;;;;46531:36:0;;-1:-1:-1;;;46531:36:0;;::::1;::::0;;;::::1;::::0;;;::::1;-1:-1:-1::0;;;;46578:50:0::1;-1:-1:-1::0;;;46578:50:0;;;::::1;;::::0;;;::::1;::::0;;46150:18;:26;;-1:-1:-1;;;;46150:26:0;;;50274:472::o;50788:566::-;50942:16;;;50956:1;50942:16;;;;;;;;50918:21;;50942:16;;;;;;;;;;-1:-1:-1;50942:16:0;50918:40;;50987:4;50969;50974:1;50969:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;50969:23:0;;;:7;;;;;;;;;;:23;;;;51013:13;;:20;;;-1:-1:-1;;;51013:20:0;;;;:13;;;;;:18;;:20;;;;;50969:7;;51013:20;;;;;:13;:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;51003:4;51008:1;51003:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;51003:30:0;;;:7;;;;;;;;;:30;51078:13;;51046:60;;51063:4;;51078:13;51094:11;51046:8;:60::i;:::-;51117:13;;51285:5;:8;;-1:-1:-1;;;;;51117:13:0;;;;:64;;51196:11;;51117:13;;51266:4;;51117:13;;51285:8;;;;:::i;:::-;;;;;;;;;;;;;;:20;51117:229;;-1:-1:-1;;;;;;51117:229:0;;;;;;;;;;;;-1:-1:-1;;;;;51285:20:0;;51320:15;;51117:229;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50843:511;50788:566;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;206:159:1;273:20;;333:6;322:18;;312:29;;302:57;;355:1;352;345:12;302:57;206:159;;;:::o;370:328::-;444:6;452;460;513:2;501:9;492:7;488:23;484:32;481:52;;;529:1;526;519:12;481:52;552:28;570:9;552:28;:::i;:::-;542:38;;599:37;632:2;621:9;617:18;599:37;:::i;:::-;589:47;;655:37;688:2;677:9;673:18;655:37;:::i;:::-;645:47;;370:328;;;;;:::o;703:548::-;815:4;844:2;873;862:9;855:21;905:6;899:13;948:6;943:2;932:9;928:18;921:34;973:1;983:140;997:6;994:1;991:13;983:140;;;1092:14;;;1088:23;;1082:30;1058:17;;;1077:2;1054:26;1047:66;1012:10;;983:140;;;987:3;1172:1;1167:2;1158:6;1147:9;1143:22;1139:31;1132:42;1242:2;1235;1231:7;1226:2;1218:6;1214:15;1210:29;1199:9;1195:45;1191:54;1183:62;;;;703:548;;;;:::o;1256:131::-;-1:-1:-1;;;;;1331:31:1;;1321:42;;1311:70;;1377:1;1374;1367:12;1392:134;1460:20;;1489:31;1460:20;1489:31;:::i;1531:315::-;1599:6;1607;1660:2;1648:9;1639:7;1635:23;1631:32;1628:52;;;1676:1;1673;1666:12;1628:52;1715:9;1702:23;1734:31;1759:5;1734:31;:::i;:::-;1784:5;1836:2;1821:18;;;;1808:32;;-1:-1:-1;;;1531:315:1:o;2033:127::-;2094:10;2089:3;2085:20;2082:1;2075:31;2125:4;2122:1;2115:15;2149:4;2146:1;2139:15;2165:908;2219:5;2272:3;2265:4;2257:6;2253:17;2249:27;2239:55;;2290:1;2287;2280:12;2239:55;2326:6;2313:20;2352:4;2375:18;2412:2;2408;2405:10;2402:36;;;2418:18;;:::i;:::-;2464:2;2461:1;2457:10;2496:2;2490:9;2559:2;2555:7;2550:2;2546;2542:11;2538:25;2530:6;2526:38;2614:6;2602:10;2599:22;2594:2;2582:10;2579:18;2576:46;2573:72;;;2625:18;;:::i;:::-;2661:2;2654:22;2711:18;;;2787:15;;;2783:24;;;2745:15;;;;-1:-1:-1;2819:15:1;;;2816:35;;;2847:1;2844;2837:12;2816:35;2883:2;2875:6;2871:15;2860:26;;2895:148;2911:6;2906:3;2903:15;2895:148;;;2977:23;2996:3;2977:23;:::i;:::-;2965:36;;3021:12;;;;2928;;;;2895:148;;;3061:6;2165:908;-1:-1:-1;;;;;;;2165:908:1:o;3078:118::-;3164:5;3157:13;3150:21;3143:5;3140:32;3130:60;;3186:1;3183;3176:12;3201:851;3316:6;3324;3332;3340;3348;3401:3;3389:9;3380:7;3376:23;3372:33;3369:53;;;3418:1;3415;3408:12;3369:53;3457:9;3444:23;3507:4;3500:5;3496:16;3489:5;3486:27;3476:55;;3527:1;3524;3517:12;3476:55;3550:5;-1:-1:-1;3606:2:1;3591:18;;3578:32;3633:18;3622:30;;3619:50;;;3665:1;3662;3655:12;3619:50;3688:61;3741:7;3732:6;3721:9;3717:22;3688:61;:::i;:::-;3678:71;;;3801:2;3790:9;3786:18;3773:32;3814:33;3839:7;3814:33;:::i;:::-;3866:7;-1:-1:-1;3920:2:1;3905:18;;3892:32;;-1:-1:-1;3976:3:1;3961:19;;3948:33;3990:30;3948:33;3990:30;:::i;:::-;4039:7;4029:17;;;3201:851;;;;;;;;:::o;4239:456::-;4316:6;4324;4332;4385:2;4373:9;4364:7;4360:23;4356:32;4353:52;;;4401:1;4398;4391:12;4353:52;4440:9;4427:23;4459:31;4484:5;4459:31;:::i;:::-;4509:5;-1:-1:-1;4566:2:1;4551:18;;4538:32;4579:33;4538:32;4579:33;:::i;:::-;4239:456;;4631:7;;-1:-1:-1;;;4685:2:1;4670:18;;;;4657:32;;4239:456::o;4889:247::-;4948:6;5001:2;4989:9;4980:7;4976:23;4972:32;4969:52;;;5017:1;5014;5007:12;4969:52;5056:9;5043:23;5075:31;5100:5;5075:31;:::i;5141:184::-;5199:6;5252:2;5240:9;5231:7;5227:23;5223:32;5220:52;;;5268:1;5265;5258:12;5220:52;5291:28;5309:9;5291:28;:::i;5762:483::-;5855:6;5863;5916:2;5904:9;5895:7;5891:23;5887:32;5884:52;;;5932:1;5929;5922:12;5884:52;5972:9;5959:23;6005:18;5997:6;5994:30;5991:50;;;6037:1;6034;6027:12;5991:50;6060:61;6113:7;6104:6;6093:9;6089:22;6060:61;:::i;:::-;6050:71;;;6171:2;6160:9;6156:18;6143:32;6184:31;6209:5;6184:31;:::i;:::-;6234:5;6224:15;;;5762:483;;;;;:::o;6458:241::-;6514:6;6567:2;6555:9;6546:7;6542:23;6538:32;6535:52;;;6583:1;6580;6573:12;6535:52;6622:9;6609:23;6641:28;6663:5;6641:28;:::i;6704:180::-;6763:6;6816:2;6804:9;6795:7;6791:23;6787:32;6784:52;;;6832:1;6829;6822:12;6784:52;-1:-1:-1;6855:23:1;;6704:180;-1:-1:-1;6704:180:1:o;6889:382::-;6954:6;6962;7015:2;7003:9;6994:7;6990:23;6986:32;6983:52;;;7031:1;7028;7021:12;6983:52;7070:9;7057:23;7089:31;7114:5;7089:31;:::i;:::-;7139:5;-1:-1:-1;7196:2:1;7181:18;;7168:32;7209:30;7168:32;7209:30;:::i;7276:388::-;7344:6;7352;7405:2;7393:9;7384:7;7380:23;7376:32;7373:52;;;7421:1;7418;7411:12;7373:52;7460:9;7447:23;7479:31;7504:5;7479:31;:::i;:::-;7529:5;-1:-1:-1;7586:2:1;7571:18;;7558:32;7599:33;7558:32;7599:33;:::i;7669:419::-;7736:6;7744;7797:2;7785:9;7776:7;7772:23;7768:32;7765:52;;;7813:1;7810;7803:12;7765:52;7852:9;7839:23;7871:31;7896:5;7871:31;:::i;:::-;7921:5;-1:-1:-1;7978:2:1;7963:18;;7950:32;8026:10;8013:24;;8001:37;;7991:65;;8052:1;8049;8042:12;8361:356;8563:2;8545:21;;;8582:18;;;8575:30;8641:34;8636:2;8621:18;;8614:62;8708:2;8693:18;;8361:356::o;8722:127::-;8783:10;8778:3;8774:20;8771:1;8764:31;8814:4;8811:1;8804:15;8838:4;8835:1;8828:15;8854:168;8921:6;8947:10;;;8959;;;8943:27;;8982:11;;;8979:37;;;8996:18;;:::i;:::-;8979:37;8854:168;;;;:::o;9362:380::-;9441:1;9437:12;;;;9484;;;9505:61;;9559:4;9551:6;9547:17;9537:27;;9505:61;9612:2;9604:6;9601:14;9581:18;9578:38;9575:161;;9658:10;9653:3;9649:20;9646:1;9639:31;9693:4;9690:1;9683:15;9721:4;9718:1;9711:15;9575:161;;9362:380;;;:::o;9747:127::-;9808:10;9803:3;9799:20;9796:1;9789:31;9839:4;9836:1;9829:15;9863:4;9860:1;9853:15;10288:128;10355:9;;;10376:11;;;10373:37;;;10390:18;;:::i;10421:125::-;10486:9;;;10507:10;;;10504:36;;;10520:18;;:::i;11178:245::-;11245:6;11298:2;11286:9;11277:7;11273:23;11269:32;11266:52;;;11314:1;11311;11304:12;11266:52;11346:9;11340:16;11365:28;11387:5;11365:28;:::i;11428:1003::-;11687:4;11735:3;11724:9;11720:19;11766:6;11755:9;11748:25;11792:2;11830:6;11825:2;11814:9;11810:18;11803:34;11873:3;11868:2;11857:9;11853:18;11846:31;11897:6;11932;11926:13;11963:6;11955;11948:22;12001:3;11990:9;11986:19;11979:26;;12024:6;12021:1;12014:17;12067:2;12064:1;12054:16;12040:30;;12088:1;12098:194;12112:6;12109:1;12106:13;12098:194;;;12177:13;;-1:-1:-1;;;;;12173:39:1;12161:52;;12209:1;12268:14;;;;12233:12;;;;12127:9;12098:194;;;-1:-1:-1;;;;;;;12348:32:1;;;;12343:2;12328:18;;12321:60;-1:-1:-1;;;12412:3:1;12397:19;12390:35;12309:3;11428:1003;-1:-1:-1;;;11428:1003:1:o;12838:175::-;12906:10;12949;;;12937;;;12933:27;;12972:12;;;12969:38;;;12987:18;;:::i;13018:127::-;13079:10;13074:3;13070:20;13067:1;13060:31;13110:4;13107:1;13100:15;13134:4;13131:1;13124:15;13150:191;13189:1;13215:10;13252:2;13249:1;13245:10;13274:3;13264:37;;13281:18;;:::i;:::-;13319:10;;13315:20;;;;;13150:191;-1:-1:-1;;13150:191:1:o;17229:168::-;17302:9;;;17333;;17350:15;;;17344:22;;17330:37;17320:71;;17371:18;;:::i;17402:120::-;17442:1;17468;17458:35;;17473:18;;:::i;:::-;-1:-1:-1;17507:9:1;;17402:120::o;18332:251::-;18402:6;18455:2;18443:9;18434:7;18430:23;18426:32;18423:52;;;18471:1;18468;18461:12;18423:52;18503:9;18497:16;18522:31;18547:5;18522:31;:::i;18588:980::-;18850:4;18898:3;18887:9;18883:19;18929:6;18918:9;18911:25;18955:2;18993:6;18988:2;18977:9;18973:18;18966:34;19036:3;19031:2;19020:9;19016:18;19009:31;19060:6;19095;19089:13;19126:6;19118;19111:22;19164:3;19153:9;19149:19;19142:26;;19203:2;19195:6;19191:15;19177:29;;19224:1;19234:195;19248:6;19245:1;19242:13;19234:195;;;19313:13;;-1:-1:-1;;;;;19309:39:1;19297:52;;19404:15;;;;19369:12;;;;19345:1;19263:9;19234:195;

Swarm Source

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