ETH Price: $2,679.12 (-0.67%)

Token

Akino (AKINO)
 

Overview

Max Total Supply

959,760,980.507147516 AKINO

Holders

91

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
65,330.383028043 AKINO

Value
$0.00
0xfcf6a3d7eb8c62a5256a020e48f153c6d5dd6909
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:
Akino

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-09-24
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.6;

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

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

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

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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

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

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

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

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

        (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

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

contract Akino is Context, IERC20, Ownable {
  using SafeMath for uint256;
  using Address for address;

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

  mapping(address => bool) private _isExcluded;
  address[] private _excluded;

  uint256 constant private FEE_PERCENT = 1;
  uint256 constant private BURN_PERCENT = 1;
  uint8 constant private DECIMALS = 9;
  uint256 constant private TOTAL_SUPPLY = 1 * (10 ** 9) * (10 ** DECIMALS);
  uint256 constant private MAX = ~uint256(0);

  uint256 private _rTotal = (MAX - (MAX % TOTAL_SUPPLY));
  uint256 private _tTotal = TOTAL_SUPPLY;
  uint256 private _tFeeTotal;

  constructor () {
    address sender = _msgSender();
    _rOwned[sender] = _rTotal;
    emit Transfer(address(0), sender, TOTAL_SUPPLY);
  }

  function name() public pure returns (string memory) {
    return "Akino";
  }

  function symbol() public pure returns (string memory) {
    return "AKINO";
  }

  function decimals() public pure returns (uint8) {
    return DECIMALS;
  }

  function totalSupply() public view override returns (uint256) {
    return _tTotal;
  }

  function balanceOf(address account) public view override returns (uint256) {
    return isExcluded(account) ? _tOwned[account] : tokenFromReflection(_rOwned[account]);
  }

  function transfer(address recipient, uint256 amount) public override returns (bool) {
    _transfer(_msgSender(), recipient, amount);
    return true;
  }

  function allowance(address owner, address spender) public view override returns (uint256) {
    return _allowances[owner][spender];
  }

  function approve(address spender, uint256 amount) public override returns (bool) {
    _approve(_msgSender(), spender, amount);
    return true;
  }

  function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) {
    _transfer(sender, recipient, amount);
    _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
    return true;
  }

  function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
    _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
    return true;
  }

  function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
    _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
    return true;
  }

  function isExcluded(address account) public view returns (bool) {
    return _isExcluded[account];
  }

  function totalFees() public view returns (uint256) {
    return _tFeeTotal;
  }

  function totalBurned() public view returns (uint256) {
    return TOTAL_SUPPLY - _tTotal;
  }

  function reflect(uint256 tAmount) public {
    address sender = _msgSender();
    require(!_isExcluded[sender], "Excluded addresses cannot call this function");

    (uint256 rAmount,,,,,,) = _getValues(tAmount);
    _rOwned[sender] = _rOwned[sender].sub(rAmount);
    _rTotal = _rTotal.sub(rAmount);
    _tFeeTotal = _tFeeTotal.add(tAmount);
  }

  function reflectionFromToken(uint256 tAmount, bool deductTransferFee) public view returns (uint256) {
    require(tAmount <= _tTotal, "Amount must be less than supply");
    (uint256 rAmount,uint256 rTransferAmount,,,,,) = _getValues(tAmount);
    return deductTransferFee ? rTransferAmount : rAmount;
  }

  function tokenFromReflection(uint256 rAmount) public view returns (uint256) {
    require(rAmount <= _rTotal, "Amount must be less than total reflections");
    return rAmount.div(_getRate());
  }

  function excludeAccount(address account) external onlyOwner() {
    require(!_isExcluded[account], "Account is already excluded");
    if (_rOwned[account] > 0) {
      _tOwned[account] = tokenFromReflection(_rOwned[account]);
    }
    _isExcluded[account] = true;
    _excluded.push(account);
  }

  function includeAccount(address account) external onlyOwner() {
    require(_isExcluded[account], "Account is already excluded");
    for (uint256 i = 0; i < _excluded.length; i++) {
      if (_excluded[i] == account) {
        _excluded[i] = _excluded[_excluded.length - 1];
        _tOwned[account] = 0;
        _isExcluded[account] = false;
        _excluded.pop();
        break;
      }
    }
  }

  function airdrop(address recipient, uint256 amount) public onlyOwner() {
    require(amount > 0, "Invalid transfer amount");

    (uint256 rAmount,,,,,,) = _getValues(amount);
    address sender = _msgSender();
    require(rAmount <= _rOwned[sender], "Insufficient amount");

    _rOwned[sender] = _rOwned[sender].sub(rAmount);
    _rOwned[recipient] = _rOwned[recipient].add(rAmount);
    emit Transfer(sender, recipient, amount);
  }

  function _approve(address owner, address spender, uint256 amount) private {
    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);
  }

  function _transfer(address sender, address recipient, uint256 amount) private {
    require(sender != address(0), "ERC20: transfer from the zero address");
    require(recipient != address(0), "ERC20: transfer to the zero address");
    require(amount > 0, "Transfer amount must be greater than zero");

    if (_isExcluded[sender] && !_isExcluded[recipient]) {
      _transferFromExcluded(sender, recipient, amount);
    } else if (!_isExcluded[sender] && _isExcluded[recipient]) {
      _transferToExcluded(sender, recipient, amount);
    } else if (_isExcluded[sender] && _isExcluded[recipient]) {
      _transferBothExcluded(sender, recipient, amount);
    } else {
      _transferStandard(sender, recipient, amount);
    }
  }

  function _transferStandard(address sender, address recipient, uint256 tAmount) private {
    (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 rBurn, uint256 tTransferAmount, uint256 tFee, uint256 tBurn) = _getValues(tAmount);
    _rOwned[sender] = _rOwned[sender].sub(rAmount);
    _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);

    _reflectFee(rFee, tFee, rBurn, tBurn);
    emit Transfer(sender, recipient, tTransferAmount);
    emit Transfer(sender, address(0), tBurn);
  }

  function _transferToExcluded(address sender, address recipient, uint256 tAmount) private {
    (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 rBurn, uint256 tTransferAmount, uint256 tFee, uint256 tBurn) = _getValues(tAmount);
    _rOwned[sender] = _rOwned[sender].sub(rAmount);
    _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
    _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);

    _reflectFee(rFee, tFee, rBurn, tBurn);
    emit Transfer(sender, recipient, tTransferAmount);
    emit Transfer(sender, address(0), tBurn);
  }

  function _transferFromExcluded(address sender, address recipient, uint256 tAmount) private {
    (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 rBurn, uint256 tTransferAmount, uint256 tFee, uint256 tBurn) = _getValues(tAmount);
    _tOwned[sender] = _tOwned[sender].sub(tAmount);
    _rOwned[sender] = _rOwned[sender].sub(rAmount);
    _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);

    _reflectFee(rFee, tFee, rBurn, tBurn);
    emit Transfer(sender, recipient, tTransferAmount);
    emit Transfer(sender, address(0), tBurn);
  }

  function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private {
    (,,,,uint256 tTransferAmount,,) = _getValues(tAmount);
    emit Transfer(sender, recipient, tTransferAmount);
  }

  function _reflectFee(uint256 rFee, uint256 tFee, uint256 rBurn, uint256 tBurn) private {
    _rTotal = _rTotal.sub(rFee.add(rBurn));
    _tTotal = _tTotal.sub(tBurn);
    _tFeeTotal = _tFeeTotal.add(tFee);
  }

  function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256, uint256, uint256) {
    (uint256 tTransferAmount, uint256 tFee, uint256 tBurn) = _getTValues(tAmount);
    (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 rBurn) = _getRValues(tAmount, tFee, tBurn, _getRate());
    return (rAmount, rTransferAmount, rFee, rBurn, tTransferAmount, tFee, tBurn);
  }

  function _getTValues(uint256 tAmount) private pure returns (uint256, uint256, uint256) {
    uint256 tFee = tAmount.div(100).mul(FEE_PERCENT);
    uint256 tBurn = tAmount.div(100).mul(BURN_PERCENT);
    uint256 tTransferAmount = tAmount.sub(tFee.add(tBurn));
    return (tTransferAmount, tFee, tBurn);
  }

  function _getRValues(uint256 tAmount, uint256 tFee, uint256 tBurn, uint256 rate) private pure returns (uint256, uint256, uint256, uint256) {
    uint256 rAmount = tAmount.mul(rate);
    uint256 rFee = tFee.mul(rate);
    uint256 rBurn = tBurn.mul(rate);
    uint256 rTransferAmount = rAmount.sub(rFee.add(rBurn));
    return (rAmount, rTransferAmount, rFee, rBurn);
  }

  function _getRate() private view returns (uint256) {
    (uint256 rSupply, uint256 tSupply) = _getCurrentSupply();
    return rSupply.div(tSupply);
  }

  function _getCurrentSupply() private view returns (uint256, uint256) {
    uint256 rSupply = _rTotal;
    uint256 tSupply = _tTotal;
    for (uint256 i = 0; i < _excluded.length; i++) {
      if (_rOwned[_excluded[i]] > rSupply || _tOwned[_excluded[i]] > tSupply) return (_rTotal, _tTotal);
      rSupply = rSupply.sub(_rOwned[_excluded[i]]);
      tSupply = tSupply.sub(_tOwned[_excluded[i]]);
    }
    if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal);
    return (rSupply, tSupply);
  }
}

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":"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":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"airdrop","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":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","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":"account","type":"address"}],"name":"excludeAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcluded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"reflect","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalBurned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","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"}]

60806040526009600a620000149190620002d6565b633b9aca0062000025919062000413565b600019620000349190620004c6565b60001962000043919062000474565b6006556009600a620000569190620002d6565b633b9aca0062000067919062000413565b6007553480156200007757600080fd5b50620000986200008c6200018160201b60201c565b6200018960201b60201c565b6000620000aa6200018160201b60201c565b9050600654600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6009600a620001529190620002d6565b633b9aca0062000163919062000413565b6040516200017291906200025e565b60405180910390a35062000569565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200025881620004af565b82525050565b60006020820190506200027560008301846200024d565b92915050565b6000808291508390505b6001851115620002cd57808604811115620002a557620002a4620004fe565b5b6001851615620002b55780820291505b8081029050620002c5856200055c565b945062000285565b94509492505050565b6000620002e382620004af565b9150620002f083620004b9565b92506200031f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000327565b905092915050565b6000826200033957600190506200040c565b816200034957600090506200040c565b81600181146200036257600281146200036d57620003a3565b60019150506200040c565b60ff841115620003825762000381620004fe565b5b8360020a9150848211156200039c576200039b620004fe565b5b506200040c565b5060208310610133831016604e8410600b8410161715620003dd5782820a905083811115620003d757620003d6620004fe565b5b6200040c565b620003ec84848460016200027b565b92509050818404811115620004065762000405620004fe565b5b81810290505b9392505050565b60006200042082620004af565b91506200042d83620004af565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620004695762000468620004fe565b5b828202905092915050565b60006200048182620004af565b91506200048e83620004af565b925082821015620004a457620004a3620004fe565b5b828203905092915050565b6000819050919050565b600060ff82169050919050565b6000620004d382620004af565b9150620004e083620004af565b925082620004f357620004f26200052d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60008160011c9050919050565b61385b80620005796000396000f3fe608060405234801561001057600080fd5b506004361061014d5760003560e01c8063715018a6116100c3578063cba0e9961161007c578063cba0e996146103c8578063d89135cd146103f8578063dd62ed3e14610416578063f2cc0c1814610446578063f2fde38b14610462578063f84354f11461047e5761014d565b8063715018a6146103065780638ba4cc3c146103105780638da5cb5b1461032c57806395d89b411461034a578063a457c2d714610368578063a9059cbb146103985761014d565b806323b872dd1161011557806323b872dd146101f85780632d83811914610228578063313ce5671461025857806339509351146102765780634549b039146102a657806370a08231146102d65761014d565b8063053ab1821461015257806306fdde031461016e578063095ea7b31461018c57806313114a9d146101bc57806318160ddd146101da575b600080fd5b61016c60048036038101906101679190612b25565b61049a565b005b610176610616565b6040516101839190612e04565b60405180910390f35b6101a660048036038101906101a19190612ae5565b610653565b6040516101b39190612de9565b60405180910390f35b6101c4610671565b6040516101d19190612fc6565b60405180910390f35b6101e261067b565b6040516101ef9190612fc6565b60405180910390f35b610212600480360381019061020d9190612a92565b610685565b60405161021f9190612de9565b60405180910390f35b610242600480360381019061023d9190612b25565b61075e565b60405161024f9190612fc6565b60405180910390f35b6102606107c6565b60405161026d9190612fe1565b60405180910390f35b610290600480360381019061028b9190612ae5565b6107cf565b60405161029d9190612de9565b60405180910390f35b6102c060048036038101906102bb9190612b52565b610882565b6040516102cd9190612fc6565b60405180910390f35b6102f060048036038101906102eb9190612a25565b6108f5565b6040516102fd9190612fc6565b60405180910390f35b61030e610999565b005b61032a60048036038101906103259190612ae5565b610a21565b005b610334610d16565b6040516103419190612dce565b60405180910390f35b610352610d3f565b60405161035f9190612e04565b60405180910390f35b610382600480360381019061037d9190612ae5565b610d7c565b60405161038f9190612de9565b60405180910390f35b6103b260048036038101906103ad9190612ae5565b610e49565b6040516103bf9190612de9565b60405180910390f35b6103e260048036038101906103dd9190612a25565b610e67565b6040516103ef9190612de9565b60405180910390f35b610400610ebd565b60405161040d9190612fc6565b60405180910390f35b610430600480360381019061042b9190612a52565b610eee565b60405161043d9190612fc6565b60405180910390f35b610460600480360381019061045b9190612a25565b610f75565b005b61047c60048036038101906104779190612a25565b611210565b005b61049860048036038101906104939190612a25565b611308565b005b60006104a461163e565b9050600460008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610533576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161052a90612fa6565b60405180910390fd5b600061053e83611646565b505050505050905061059881600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546116ac90919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506105f0816006546116ac90919063ffffffff16565b60068190555061060b836008546116c290919063ffffffff16565b600881905550505050565b60606040518060400160405280600581526020017f416b696e6f000000000000000000000000000000000000000000000000000000815250905090565b600061066761066061163e565b84846116d8565b6001905092915050565b6000600854905090565b6000600754905090565b60006106928484846118a3565b6107538461069e61163e565b61074e856040518060600160405280602881526020016137d960289139600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061070461163e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c009092919063ffffffff16565b6116d8565b600190509392505050565b60006006548211156107a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079c90612e46565b60405180910390fd5b6107bf6107b0611c55565b83611c8090919063ffffffff16565b9050919050565b60006009905090565b60006108786107dc61163e565b8461087385600360006107ed61163e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546116c290919063ffffffff16565b6116d8565b6001905092915050565b60006007548311156108c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c090612ec6565b60405180910390fd5b6000806108d585611646565b505050505091509150836108e957816108eb565b805b9250505092915050565b600061090082610e67565b6109515761094c600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461075e565b610992565b600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020545b9050919050565b6109a161163e565b73ffffffffffffffffffffffffffffffffffffffff166109bf610d16565b73ffffffffffffffffffffffffffffffffffffffff1614610a15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0c90612ee6565b60405180910390fd5b610a1f6000611c96565b565b610a2961163e565b73ffffffffffffffffffffffffffffffffffffffff16610a47610d16565b73ffffffffffffffffffffffffffffffffffffffff1614610a9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9490612ee6565b60405180910390fd5b60008111610ae0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad790612f26565b60405180910390fd5b6000610aeb82611646565b50505050505090506000610afd61163e565b9050600160008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054821115610b81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7890612f66565b60405180910390fd5b610bd382600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546116ac90919063ffffffff16565b600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610c6882600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546116c290919063ffffffff16565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051610d089190612fc6565b60405180910390a350505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606040518060400160405280600581526020017f414b494e4f000000000000000000000000000000000000000000000000000000815250905090565b6000610e3f610d8961163e565b84610e3a856040518060600160405280602581526020016138016025913960036000610db361163e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c009092919063ffffffff16565b6116d8565b6001905092915050565b6000610e5d610e5661163e565b84846118a3565b6001905092915050565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60006007546009600a610ed091906130f2565b633b9aca00610edf9190613210565b610ee9919061326a565b905090565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610f7d61163e565b73ffffffffffffffffffffffffffffffffffffffff16610f9b610d16565b73ffffffffffffffffffffffffffffffffffffffff1614610ff1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe890612ee6565b60405180910390fd5b600460008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561107e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107590612ea6565b60405180910390fd5b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411156111525761110e600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461075e565b600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506005819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61121861163e565b73ffffffffffffffffffffffffffffffffffffffff16611236610d16565b73ffffffffffffffffffffffffffffffffffffffff161461128c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128390612ee6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156112fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f390612e66565b60405180910390fd5b61130581611c96565b50565b61131061163e565b73ffffffffffffffffffffffffffffffffffffffff1661132e610d16565b73ffffffffffffffffffffffffffffffffffffffff1614611384576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137b90612ee6565b60405180910390fd5b600460008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611410576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140790612ea6565b60405180910390fd5b60005b60058054905081101561163a578173ffffffffffffffffffffffffffffffffffffffff166005828154811061144b5761144a6133fc565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561162757600560016005805490506114a6919061326a565b815481106114b7576114b66133fc565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600582815481106114f6576114f56133fc565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060058054806115ed576115ec6133cd565b5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055905561163a565b808061163290613326565b915050611413565b5050565b600033905090565b60008060008060008060008060008061165e8b611d5a565b92509250925060008060008061167d8f8787611678611c55565b611df0565b9350935093509350838383838a8a8a9d509d509d509d509d509d509d5050505050505050919395979092949650565b600081836116ba919061326a565b905092915050565b600081836116d09190613018565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611748576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173f90612f86565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117af90612e86565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516118969190612fc6565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611913576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190a90612f46565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611983576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197a90612e26565b60405180910390fd5b600081116119c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119bd90612f06565b60405180910390fd5b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611a695750600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611a7e57611a79838383611e7f565b611bfb565b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015611b215750600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15611b3657611b31838383612143565b611bfa565b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611bd85750600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15611bed57611be8838383612407565b611bf9565b611bf8838383612485565b5b5b5b505050565b6000838311158290611c48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3f9190612e04565b60405180910390fd5b5082840390509392505050565b6000806000611c626126b4565b91509150611c798183611c8090919063ffffffff16565b9250505090565b60008183611c8e919061306e565b905092915050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080600080611d876001611d79606488611c8090919063ffffffff16565b61296790919063ffffffff16565b90506000611db26001611da4606489611c8090919063ffffffff16565b61296790919063ffffffff16565b90506000611ddb611dcc83856116c290919063ffffffff16565b886116ac90919063ffffffff16565b90508083839550955095505050509193909250565b6000806000806000611e0b868a61296790919063ffffffff16565b90506000611e22878a61296790919063ffffffff16565b90506000611e39888a61296790919063ffffffff16565b90506000611e62611e5383856116c290919063ffffffff16565b856116ac90919063ffffffff16565b905083818484975097509750975050505050945094509450949050565b6000806000806000806000611e9388611646565b9650965096509650965096509650611ef388600260008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546116ac90919063ffffffff16565b600260008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611f8887600160008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546116ac90919063ffffffff16565b600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061201d86600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546116c290919063ffffffff16565b600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061206c8583868461297d565b8873ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516120c99190612fc6565b60405180910390a3600073ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161212f9190612fc6565b60405180910390a350505050505050505050565b600080600080600080600061215788611646565b96509650965096509650965096506121b787600160008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546116ac90919063ffffffff16565b600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061224c83600260008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546116c290919063ffffffff16565b600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506122e186600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546116c290919063ffffffff16565b600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506123308583868461297d565b8873ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405161238d9190612fc6565b60405180910390a3600073ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516123f39190612fc6565b60405180910390a350505050505050505050565b600061241282611646565b50509450505050508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516124779190612fc6565b60405180910390a350505050565b600080600080600080600061249988611646565b96509650965096509650965096506124f987600160008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546116ac90919063ffffffff16565b600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061258e86600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546116c290919063ffffffff16565b600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506125dd8583868461297d565b8873ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405161263a9190612fc6565b60405180910390a3600073ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516126a09190612fc6565b60405180910390a350505050505050505050565b600080600060065490506000600754905060005b60058054905081101561292a578260016000600584815481106126ee576126ed6133fc565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411806127dc5750816002600060058481548110612774576127736133fc565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b156127f35760065460075494509450505050612963565b612883600160006005848154811061280e5761280d6133fc565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054846116ac90919063ffffffff16565b925061291560026000600584815481106128a05761289f6133fc565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054836116ac90919063ffffffff16565b9150808061292290613326565b9150506126c8565b50612942600754600654611c8090919063ffffffff16565b82101561295a57600654600754935093505050612963565b81819350935050505b9091565b600081836129759190613210565b905092915050565b6129a461299383866116c290919063ffffffff16565b6006546116ac90919063ffffffff16565b6006819055506129bf816007546116ac90919063ffffffff16565b6007819055506129da836008546116c290919063ffffffff16565b60088190555050505050565b6000813590506129f581613793565b92915050565b600081359050612a0a816137aa565b92915050565b600081359050612a1f816137c1565b92915050565b600060208284031215612a3b57612a3a61342b565b5b6000612a49848285016129e6565b91505092915050565b60008060408385031215612a6957612a6861342b565b5b6000612a77858286016129e6565b9250506020612a88858286016129e6565b9150509250929050565b600080600060608486031215612aab57612aaa61342b565b5b6000612ab9868287016129e6565b9350506020612aca868287016129e6565b9250506040612adb86828701612a10565b9150509250925092565b60008060408385031215612afc57612afb61342b565b5b6000612b0a858286016129e6565b9250506020612b1b85828601612a10565b9150509250929050565b600060208284031215612b3b57612b3a61342b565b5b6000612b4984828501612a10565b91505092915050565b60008060408385031215612b6957612b6861342b565b5b6000612b7785828601612a10565b9250506020612b88858286016129fb565b9150509250929050565b612b9b8161329e565b82525050565b612baa816132b0565b82525050565b6000612bbb82612ffc565b612bc58185613007565b9350612bd58185602086016132f3565b612bde81613430565b840191505092915050565b6000612bf6602383613007565b9150612c018261344e565b604082019050919050565b6000612c19602a83613007565b9150612c248261349d565b604082019050919050565b6000612c3c602683613007565b9150612c47826134ec565b604082019050919050565b6000612c5f602283613007565b9150612c6a8261353b565b604082019050919050565b6000612c82601b83613007565b9150612c8d8261358a565b602082019050919050565b6000612ca5601f83613007565b9150612cb0826135b3565b602082019050919050565b6000612cc8602083613007565b9150612cd3826135dc565b602082019050919050565b6000612ceb602983613007565b9150612cf682613605565b604082019050919050565b6000612d0e601783613007565b9150612d1982613654565b602082019050919050565b6000612d31602583613007565b9150612d3c8261367d565b604082019050919050565b6000612d54601383613007565b9150612d5f826136cc565b602082019050919050565b6000612d77602483613007565b9150612d82826136f5565b604082019050919050565b6000612d9a602c83613007565b9150612da582613744565b604082019050919050565b612db9816132dc565b82525050565b612dc8816132e6565b82525050565b6000602082019050612de36000830184612b92565b92915050565b6000602082019050612dfe6000830184612ba1565b92915050565b60006020820190508181036000830152612e1e8184612bb0565b905092915050565b60006020820190508181036000830152612e3f81612be9565b9050919050565b60006020820190508181036000830152612e5f81612c0c565b9050919050565b60006020820190508181036000830152612e7f81612c2f565b9050919050565b60006020820190508181036000830152612e9f81612c52565b9050919050565b60006020820190508181036000830152612ebf81612c75565b9050919050565b60006020820190508181036000830152612edf81612c98565b9050919050565b60006020820190508181036000830152612eff81612cbb565b9050919050565b60006020820190508181036000830152612f1f81612cde565b9050919050565b60006020820190508181036000830152612f3f81612d01565b9050919050565b60006020820190508181036000830152612f5f81612d24565b9050919050565b60006020820190508181036000830152612f7f81612d47565b9050919050565b60006020820190508181036000830152612f9f81612d6a565b9050919050565b60006020820190508181036000830152612fbf81612d8d565b9050919050565b6000602082019050612fdb6000830184612db0565b92915050565b6000602082019050612ff66000830184612dbf565b92915050565b600081519050919050565b600082825260208201905092915050565b6000613023826132dc565b915061302e836132dc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156130635761306261336f565b5b828201905092915050565b6000613079826132dc565b9150613084836132dc565b9250826130945761309361339e565b5b828204905092915050565b6000808291508390505b60018511156130e9578086048111156130c5576130c461336f565b5b60018516156130d45780820291505b80810290506130e285613441565b94506130a9565b94509492505050565b60006130fd826132dc565b9150613108836132e6565b92506131357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848461313d565b905092915050565b60008261314d5760019050613209565b8161315b5760009050613209565b8160018114613171576002811461317b576131aa565b6001915050613209565b60ff84111561318d5761318c61336f565b5b8360020a9150848211156131a4576131a361336f565b5b50613209565b5060208310610133831016604e8410600b84101617156131df5782820a9050838111156131da576131d961336f565b5b613209565b6131ec848484600161309f565b925090508184048111156132035761320261336f565b5b81810290505b9392505050565b600061321b826132dc565b9150613226836132dc565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561325f5761325e61336f565b5b828202905092915050565b6000613275826132dc565b9150613280836132dc565b9250828210156132935761329261336f565b5b828203905092915050565b60006132a9826132bc565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156133115780820151818401526020810190506132f6565b83811115613320576000848401525b50505050565b6000613331826132dc565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156133645761336361336f565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b60008160011c9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260008201527f65666c656374696f6e7300000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f4163636f756e7420697320616c7265616479206578636c756465640000000000600082015250565b7f416d6f756e74206d757374206265206c657373207468616e20737570706c7900600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b7f496e76616c6964207472616e7366657220616d6f756e74000000000000000000600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f496e73756666696369656e7420616d6f756e7400000000000000000000000000600082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460008201527f6869732066756e6374696f6e0000000000000000000000000000000000000000602082015250565b61379c8161329e565b81146137a757600080fd5b50565b6137b3816132b0565b81146137be57600080fd5b50565b6137ca816132dc565b81146137d557600080fd5b5056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212204a8ab5b9c8ce1648fb9a9d8c276082e4eff2f3b2aca00f9c1b902b933b399dc664736f6c63430008070033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061014d5760003560e01c8063715018a6116100c3578063cba0e9961161007c578063cba0e996146103c8578063d89135cd146103f8578063dd62ed3e14610416578063f2cc0c1814610446578063f2fde38b14610462578063f84354f11461047e5761014d565b8063715018a6146103065780638ba4cc3c146103105780638da5cb5b1461032c57806395d89b411461034a578063a457c2d714610368578063a9059cbb146103985761014d565b806323b872dd1161011557806323b872dd146101f85780632d83811914610228578063313ce5671461025857806339509351146102765780634549b039146102a657806370a08231146102d65761014d565b8063053ab1821461015257806306fdde031461016e578063095ea7b31461018c57806313114a9d146101bc57806318160ddd146101da575b600080fd5b61016c60048036038101906101679190612b25565b61049a565b005b610176610616565b6040516101839190612e04565b60405180910390f35b6101a660048036038101906101a19190612ae5565b610653565b6040516101b39190612de9565b60405180910390f35b6101c4610671565b6040516101d19190612fc6565b60405180910390f35b6101e261067b565b6040516101ef9190612fc6565b60405180910390f35b610212600480360381019061020d9190612a92565b610685565b60405161021f9190612de9565b60405180910390f35b610242600480360381019061023d9190612b25565b61075e565b60405161024f9190612fc6565b60405180910390f35b6102606107c6565b60405161026d9190612fe1565b60405180910390f35b610290600480360381019061028b9190612ae5565b6107cf565b60405161029d9190612de9565b60405180910390f35b6102c060048036038101906102bb9190612b52565b610882565b6040516102cd9190612fc6565b60405180910390f35b6102f060048036038101906102eb9190612a25565b6108f5565b6040516102fd9190612fc6565b60405180910390f35b61030e610999565b005b61032a60048036038101906103259190612ae5565b610a21565b005b610334610d16565b6040516103419190612dce565b60405180910390f35b610352610d3f565b60405161035f9190612e04565b60405180910390f35b610382600480360381019061037d9190612ae5565b610d7c565b60405161038f9190612de9565b60405180910390f35b6103b260048036038101906103ad9190612ae5565b610e49565b6040516103bf9190612de9565b60405180910390f35b6103e260048036038101906103dd9190612a25565b610e67565b6040516103ef9190612de9565b60405180910390f35b610400610ebd565b60405161040d9190612fc6565b60405180910390f35b610430600480360381019061042b9190612a52565b610eee565b60405161043d9190612fc6565b60405180910390f35b610460600480360381019061045b9190612a25565b610f75565b005b61047c60048036038101906104779190612a25565b611210565b005b61049860048036038101906104939190612a25565b611308565b005b60006104a461163e565b9050600460008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610533576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161052a90612fa6565b60405180910390fd5b600061053e83611646565b505050505050905061059881600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546116ac90919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506105f0816006546116ac90919063ffffffff16565b60068190555061060b836008546116c290919063ffffffff16565b600881905550505050565b60606040518060400160405280600581526020017f416b696e6f000000000000000000000000000000000000000000000000000000815250905090565b600061066761066061163e565b84846116d8565b6001905092915050565b6000600854905090565b6000600754905090565b60006106928484846118a3565b6107538461069e61163e565b61074e856040518060600160405280602881526020016137d960289139600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061070461163e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c009092919063ffffffff16565b6116d8565b600190509392505050565b60006006548211156107a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079c90612e46565b60405180910390fd5b6107bf6107b0611c55565b83611c8090919063ffffffff16565b9050919050565b60006009905090565b60006108786107dc61163e565b8461087385600360006107ed61163e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546116c290919063ffffffff16565b6116d8565b6001905092915050565b60006007548311156108c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c090612ec6565b60405180910390fd5b6000806108d585611646565b505050505091509150836108e957816108eb565b805b9250505092915050565b600061090082610e67565b6109515761094c600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461075e565b610992565b600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020545b9050919050565b6109a161163e565b73ffffffffffffffffffffffffffffffffffffffff166109bf610d16565b73ffffffffffffffffffffffffffffffffffffffff1614610a15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0c90612ee6565b60405180910390fd5b610a1f6000611c96565b565b610a2961163e565b73ffffffffffffffffffffffffffffffffffffffff16610a47610d16565b73ffffffffffffffffffffffffffffffffffffffff1614610a9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9490612ee6565b60405180910390fd5b60008111610ae0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad790612f26565b60405180910390fd5b6000610aeb82611646565b50505050505090506000610afd61163e565b9050600160008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054821115610b81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7890612f66565b60405180910390fd5b610bd382600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546116ac90919063ffffffff16565b600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610c6882600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546116c290919063ffffffff16565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051610d089190612fc6565b60405180910390a350505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606040518060400160405280600581526020017f414b494e4f000000000000000000000000000000000000000000000000000000815250905090565b6000610e3f610d8961163e565b84610e3a856040518060600160405280602581526020016138016025913960036000610db361163e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c009092919063ffffffff16565b6116d8565b6001905092915050565b6000610e5d610e5661163e565b84846118a3565b6001905092915050565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60006007546009600a610ed091906130f2565b633b9aca00610edf9190613210565b610ee9919061326a565b905090565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610f7d61163e565b73ffffffffffffffffffffffffffffffffffffffff16610f9b610d16565b73ffffffffffffffffffffffffffffffffffffffff1614610ff1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe890612ee6565b60405180910390fd5b600460008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561107e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107590612ea6565b60405180910390fd5b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411156111525761110e600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461075e565b600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506005819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61121861163e565b73ffffffffffffffffffffffffffffffffffffffff16611236610d16565b73ffffffffffffffffffffffffffffffffffffffff161461128c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128390612ee6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156112fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f390612e66565b60405180910390fd5b61130581611c96565b50565b61131061163e565b73ffffffffffffffffffffffffffffffffffffffff1661132e610d16565b73ffffffffffffffffffffffffffffffffffffffff1614611384576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137b90612ee6565b60405180910390fd5b600460008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611410576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140790612ea6565b60405180910390fd5b60005b60058054905081101561163a578173ffffffffffffffffffffffffffffffffffffffff166005828154811061144b5761144a6133fc565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561162757600560016005805490506114a6919061326a565b815481106114b7576114b66133fc565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600582815481106114f6576114f56133fc565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060058054806115ed576115ec6133cd565b5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055905561163a565b808061163290613326565b915050611413565b5050565b600033905090565b60008060008060008060008060008061165e8b611d5a565b92509250925060008060008061167d8f8787611678611c55565b611df0565b9350935093509350838383838a8a8a9d509d509d509d509d509d509d5050505050505050919395979092949650565b600081836116ba919061326a565b905092915050565b600081836116d09190613018565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611748576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173f90612f86565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117af90612e86565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516118969190612fc6565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611913576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190a90612f46565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611983576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197a90612e26565b60405180910390fd5b600081116119c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119bd90612f06565b60405180910390fd5b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611a695750600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611a7e57611a79838383611e7f565b611bfb565b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015611b215750600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15611b3657611b31838383612143565b611bfa565b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611bd85750600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15611bed57611be8838383612407565b611bf9565b611bf8838383612485565b5b5b5b505050565b6000838311158290611c48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3f9190612e04565b60405180910390fd5b5082840390509392505050565b6000806000611c626126b4565b91509150611c798183611c8090919063ffffffff16565b9250505090565b60008183611c8e919061306e565b905092915050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080600080611d876001611d79606488611c8090919063ffffffff16565b61296790919063ffffffff16565b90506000611db26001611da4606489611c8090919063ffffffff16565b61296790919063ffffffff16565b90506000611ddb611dcc83856116c290919063ffffffff16565b886116ac90919063ffffffff16565b90508083839550955095505050509193909250565b6000806000806000611e0b868a61296790919063ffffffff16565b90506000611e22878a61296790919063ffffffff16565b90506000611e39888a61296790919063ffffffff16565b90506000611e62611e5383856116c290919063ffffffff16565b856116ac90919063ffffffff16565b905083818484975097509750975050505050945094509450949050565b6000806000806000806000611e9388611646565b9650965096509650965096509650611ef388600260008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546116ac90919063ffffffff16565b600260008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611f8887600160008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546116ac90919063ffffffff16565b600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061201d86600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546116c290919063ffffffff16565b600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061206c8583868461297d565b8873ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516120c99190612fc6565b60405180910390a3600073ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161212f9190612fc6565b60405180910390a350505050505050505050565b600080600080600080600061215788611646565b96509650965096509650965096506121b787600160008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546116ac90919063ffffffff16565b600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061224c83600260008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546116c290919063ffffffff16565b600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506122e186600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546116c290919063ffffffff16565b600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506123308583868461297d565b8873ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405161238d9190612fc6565b60405180910390a3600073ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516123f39190612fc6565b60405180910390a350505050505050505050565b600061241282611646565b50509450505050508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516124779190612fc6565b60405180910390a350505050565b600080600080600080600061249988611646565b96509650965096509650965096506124f987600160008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546116ac90919063ffffffff16565b600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061258e86600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546116c290919063ffffffff16565b600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506125dd8583868461297d565b8873ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405161263a9190612fc6565b60405180910390a3600073ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516126a09190612fc6565b60405180910390a350505050505050505050565b600080600060065490506000600754905060005b60058054905081101561292a578260016000600584815481106126ee576126ed6133fc565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411806127dc5750816002600060058481548110612774576127736133fc565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b156127f35760065460075494509450505050612963565b612883600160006005848154811061280e5761280d6133fc565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054846116ac90919063ffffffff16565b925061291560026000600584815481106128a05761289f6133fc565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054836116ac90919063ffffffff16565b9150808061292290613326565b9150506126c8565b50612942600754600654611c8090919063ffffffff16565b82101561295a57600654600754935093505050612963565b81819350935050505b9091565b600081836129759190613210565b905092915050565b6129a461299383866116c290919063ffffffff16565b6006546116ac90919063ffffffff16565b6006819055506129bf816007546116ac90919063ffffffff16565b6007819055506129da836008546116c290919063ffffffff16565b60088190555050505050565b6000813590506129f581613793565b92915050565b600081359050612a0a816137aa565b92915050565b600081359050612a1f816137c1565b92915050565b600060208284031215612a3b57612a3a61342b565b5b6000612a49848285016129e6565b91505092915050565b60008060408385031215612a6957612a6861342b565b5b6000612a77858286016129e6565b9250506020612a88858286016129e6565b9150509250929050565b600080600060608486031215612aab57612aaa61342b565b5b6000612ab9868287016129e6565b9350506020612aca868287016129e6565b9250506040612adb86828701612a10565b9150509250925092565b60008060408385031215612afc57612afb61342b565b5b6000612b0a858286016129e6565b9250506020612b1b85828601612a10565b9150509250929050565b600060208284031215612b3b57612b3a61342b565b5b6000612b4984828501612a10565b91505092915050565b60008060408385031215612b6957612b6861342b565b5b6000612b7785828601612a10565b9250506020612b88858286016129fb565b9150509250929050565b612b9b8161329e565b82525050565b612baa816132b0565b82525050565b6000612bbb82612ffc565b612bc58185613007565b9350612bd58185602086016132f3565b612bde81613430565b840191505092915050565b6000612bf6602383613007565b9150612c018261344e565b604082019050919050565b6000612c19602a83613007565b9150612c248261349d565b604082019050919050565b6000612c3c602683613007565b9150612c47826134ec565b604082019050919050565b6000612c5f602283613007565b9150612c6a8261353b565b604082019050919050565b6000612c82601b83613007565b9150612c8d8261358a565b602082019050919050565b6000612ca5601f83613007565b9150612cb0826135b3565b602082019050919050565b6000612cc8602083613007565b9150612cd3826135dc565b602082019050919050565b6000612ceb602983613007565b9150612cf682613605565b604082019050919050565b6000612d0e601783613007565b9150612d1982613654565b602082019050919050565b6000612d31602583613007565b9150612d3c8261367d565b604082019050919050565b6000612d54601383613007565b9150612d5f826136cc565b602082019050919050565b6000612d77602483613007565b9150612d82826136f5565b604082019050919050565b6000612d9a602c83613007565b9150612da582613744565b604082019050919050565b612db9816132dc565b82525050565b612dc8816132e6565b82525050565b6000602082019050612de36000830184612b92565b92915050565b6000602082019050612dfe6000830184612ba1565b92915050565b60006020820190508181036000830152612e1e8184612bb0565b905092915050565b60006020820190508181036000830152612e3f81612be9565b9050919050565b60006020820190508181036000830152612e5f81612c0c565b9050919050565b60006020820190508181036000830152612e7f81612c2f565b9050919050565b60006020820190508181036000830152612e9f81612c52565b9050919050565b60006020820190508181036000830152612ebf81612c75565b9050919050565b60006020820190508181036000830152612edf81612c98565b9050919050565b60006020820190508181036000830152612eff81612cbb565b9050919050565b60006020820190508181036000830152612f1f81612cde565b9050919050565b60006020820190508181036000830152612f3f81612d01565b9050919050565b60006020820190508181036000830152612f5f81612d24565b9050919050565b60006020820190508181036000830152612f7f81612d47565b9050919050565b60006020820190508181036000830152612f9f81612d6a565b9050919050565b60006020820190508181036000830152612fbf81612d8d565b9050919050565b6000602082019050612fdb6000830184612db0565b92915050565b6000602082019050612ff66000830184612dbf565b92915050565b600081519050919050565b600082825260208201905092915050565b6000613023826132dc565b915061302e836132dc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156130635761306261336f565b5b828201905092915050565b6000613079826132dc565b9150613084836132dc565b9250826130945761309361339e565b5b828204905092915050565b6000808291508390505b60018511156130e9578086048111156130c5576130c461336f565b5b60018516156130d45780820291505b80810290506130e285613441565b94506130a9565b94509492505050565b60006130fd826132dc565b9150613108836132e6565b92506131357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848461313d565b905092915050565b60008261314d5760019050613209565b8161315b5760009050613209565b8160018114613171576002811461317b576131aa565b6001915050613209565b60ff84111561318d5761318c61336f565b5b8360020a9150848211156131a4576131a361336f565b5b50613209565b5060208310610133831016604e8410600b84101617156131df5782820a9050838111156131da576131d961336f565b5b613209565b6131ec848484600161309f565b925090508184048111156132035761320261336f565b5b81810290505b9392505050565b600061321b826132dc565b9150613226836132dc565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561325f5761325e61336f565b5b828202905092915050565b6000613275826132dc565b9150613280836132dc565b9250828210156132935761329261336f565b5b828203905092915050565b60006132a9826132bc565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156133115780820151818401526020810190506132f6565b83811115613320576000848401525b50505050565b6000613331826132dc565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156133645761336361336f565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b60008160011c9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260008201527f65666c656374696f6e7300000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f4163636f756e7420697320616c7265616479206578636c756465640000000000600082015250565b7f416d6f756e74206d757374206265206c657373207468616e20737570706c7900600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b7f496e76616c6964207472616e7366657220616d6f756e74000000000000000000600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f496e73756666696369656e7420616d6f756e7400000000000000000000000000600082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460008201527f6869732066756e6374696f6e0000000000000000000000000000000000000000602082015250565b61379c8161329e565b81146137a757600080fd5b50565b6137b3816132b0565b81146137be57600080fd5b50565b6137ca816132dc565b81146137d557600080fd5b5056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212204a8ab5b9c8ce1648fb9a9d8c276082e4eff2f3b2aca00f9c1b902b933b399dc664736f6c63430008070033

Deployed Bytecode Sourcemap

20411:10041:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23389:354;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21316:79;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22150:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23201:81;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21570:89;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22307:299;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24064:199;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21488:76;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22612:208;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23749:309;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21665:173;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5121:94;;;:::i;:::-;;24998:445;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4470:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21401:81;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22826:259;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21844:157;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23091:104;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23288:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22007:137;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24269:305;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5370:192;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24580:412;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23389:354;23437:14;23454:12;:10;:12::i;:::-;23437:29;;23482:11;:19;23494:6;23482:19;;;;;;;;;;;;;;;;;;;;;;;;;23481:20;23473:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;23560:15;23585:19;23596:7;23585:10;:19::i;:::-;23559:45;;;;;;;;23629:28;23649:7;23629;:15;23637:6;23629:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;23611:7;:15;23619:6;23611:15;;;;;;;;;;;;;;;:46;;;;23674:20;23686:7;23674;;:11;;:20;;;;:::i;:::-;23664:7;:30;;;;23714:23;23729:7;23714:10;;:14;;:23;;;;:::i;:::-;23701:10;:36;;;;23430:313;;23389:354;:::o;21316:79::-;21353:13;21375:14;;;;;;;;;;;;;;;;;;;21316:79;:::o;22150:151::-;22225:4;22238:39;22247:12;:10;:12::i;:::-;22261:7;22270:6;22238:8;:39::i;:::-;22291:4;22284:11;;22150:151;;;;:::o;23201:81::-;23243:7;23266:10;;23259:17;;23201:81;:::o;21570:89::-;21623:7;21646;;21639:14;;21570:89;:::o;22307:299::-;22405:4;22418:36;22428:6;22436:9;22447:6;22418:9;:36::i;:::-;22461:121;22470:6;22478:12;:10;:12::i;:::-;22492:89;22530:6;22492:89;;;;;;;;;;;;;;;;;:11;:19;22504:6;22492:19;;;;;;;;;;;;;;;:33;22512:12;:10;:12::i;:::-;22492:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;22461:8;:121::i;:::-;22596:4;22589:11;;22307:299;;;;;:::o;24064:199::-;24131:7;24166;;24155;:18;;24147:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;24234:23;24246:10;:8;:10::i;:::-;24234:7;:11;;:23;;;;:::i;:::-;24227:30;;24064:199;;;:::o;21488:76::-;21529:5;20900:1;21543:15;;21488:76;:::o;22612:208::-;22700:4;22713:83;22722:12;:10;:12::i;:::-;22736:7;22745:50;22784:10;22745:11;:25;22757:12;:10;:12::i;:::-;22745:25;;;;;;;;;;;;;;;:34;22771:7;22745:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;22713:8;:83::i;:::-;22810:4;22803:11;;22612:208;;;;:::o;23749:309::-;23840:7;23875;;23864;:18;;23856:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;23926:15;23942:23;23974:19;23985:7;23974:10;:19::i;:::-;23925:68;;;;;;;;;24007:17;:45;;24045:7;24007:45;;;24027:15;24007:45;24000:52;;;;23749:309;;;;:::o;21665:173::-;21731:7;21754:19;21765:7;21754:10;:19::i;:::-;:78;;21795:37;21815:7;:16;21823:7;21815:16;;;;;;;;;;;;;;;;21795:19;:37::i;:::-;21754:78;;;21776:7;:16;21784:7;21776:16;;;;;;;;;;;;;;;;21754:78;21747:85;;21665:173;;;:::o;5121:94::-;4701:12;:10;:12::i;:::-;4690:23;;:7;:5;:7::i;:::-;:23;;;4682:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5186:21:::1;5204:1;5186:9;:21::i;:::-;5121:94::o:0;24998:445::-;4701:12;:10;:12::i;:::-;4690:23;;:7;:5;:7::i;:::-;:23;;;4682:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;25093:1:::1;25084:6;:10;25076:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;25132:15;25157:18;25168:6;25157:10;:18::i;:::-;25131:44;;;;;;;;25182:14;25199:12;:10;:12::i;:::-;25182:29;;25237:7;:15;25245:6;25237:15;;;;;;;;;;;;;;;;25226:7;:26;;25218:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;25303:28;25323:7;25303;:15;25311:6;25303:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;25285:7;:15;25293:6;25285:15;;;;;;;;;;;;;;;:46;;;;25359:31;25382:7;25359;:18;25367:9;25359:18;;;;;;;;;;;;;;;;:22;;:31;;;;:::i;:::-;25338:7;:18;25346:9;25338:18;;;;;;;;;;;;;;;:52;;;;25419:9;25402:35;;25411:6;25402:35;;;25430:6;25402:35;;;;;;:::i;:::-;;;;;;;;25069:374;;24998:445:::0;;:::o;4470:87::-;4516:7;4543:6;;;;;;;;;;;4536:13;;4470:87;:::o;21401:81::-;21440:13;21462:14;;;;;;;;;;;;;;;;;;;21401:81;:::o;22826:259::-;22919:4;22932:129;22941:12;:10;:12::i;:::-;22955:7;22964:96;23003:15;22964:96;;;;;;;;;;;;;;;;;:11;:25;22976:12;:10;:12::i;:::-;22964:25;;;;;;;;;;;;;;;:34;22990:7;22964:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;22932:8;:129::i;:::-;23075:4;23068:11;;22826:259;;;;:::o;21844:157::-;21922:4;21935:42;21945:12;:10;:12::i;:::-;21959:9;21970:6;21935:9;:42::i;:::-;21991:4;21984:11;;21844:157;;;;:::o;23091:104::-;23149:4;23169:11;:20;23181:7;23169:20;;;;;;;;;;;;;;;;;;;;;;;;;23162:27;;23091:104;;;:::o;23288:95::-;23332:7;23370;;20900:1;20963:2;:14;;;;:::i;:::-;20946:13;:32;;;;:::i;:::-;23355:22;;;;:::i;:::-;23348:29;;23288:95;:::o;22007:137::-;22088:7;22111:11;:18;22123:5;22111:18;;;;;;;;;;;;;;;:27;22130:7;22111:27;;;;;;;;;;;;;;;;22104:34;;22007:137;;;;:::o;24269:305::-;4701:12;:10;:12::i;:::-;4690:23;;:7;:5;:7::i;:::-;:23;;;4682:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;24347:11:::1;:20;24359:7;24347:20;;;;;;;;;;;;;;;;;;;;;;;;;24346:21;24338:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;24429:1;24410:7;:16;24418:7;24410:16;;;;;;;;;;;;;;;;:20;24406:99;;;24460:37;24480:7;:16;24488:7;24480:16;;;;;;;;;;;;;;;;24460:19;:37::i;:::-;24441:7;:16;24449:7;24441:16;;;;;;;;;;;;;;;:56;;;;24406:99;24534:4;24511:11;:20;24523:7;24511:20;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;24545:9;24560:7;24545:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24269:305:::0;:::o;5370:192::-;4701:12;:10;:12::i;:::-;4690:23;;:7;:5;:7::i;:::-;:23;;;4682:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5479:1:::1;5459:22;;:8;:22;;;;5451:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5535:19;5545:8;5535:9;:19::i;:::-;5370:192:::0;:::o;24580:412::-;4701:12;:10;:12::i;:::-;4690:23;;:7;:5;:7::i;:::-;:23;;;4682:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;24657:11:::1;:20;24669:7;24657:20;;;;;;;;;;;;;;;;;;;;;;;;;24649:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;24721:9;24716:271;24740:9;:16;;;;24736:1;:20;24716:271;;;24792:7;24776:23;;:9;24786:1;24776:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:23;;;24772:208;;;24827:9;24856:1;24837:9;:16;;;;:20;;;;:::i;:::-;24827:31;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;24812:9;24822:1;24812:12;;;;;;;;:::i;:::-;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;24888:1;24869:7;:16;24877:7;24869:16;;;;;;;;;;;;;;;:20;;;;24923:5;24900:11;:20;24912:7;24900:20;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;24939:9;:15;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;24965:5;;24772:208;24758:3;;;;;:::i;:::-;;;;24716:271;;;;24580:412:::0;:::o;599:98::-;652:7;679:10;672:17;;599:98;:::o;28653:421::-;28712:7;28721;28730;28739;28748;28757;28766;28783:23;28808:12;28822:13;28839:20;28851:7;28839:11;:20::i;:::-;28782:77;;;;;;28867:15;28884:23;28909:12;28923:13;28940:45;28952:7;28961:4;28967:5;28974:10;:8;:10::i;:::-;28940:11;:45::i;:::-;28866:119;;;;;;;;29000:7;29009:15;29026:4;29032:5;29039:15;29056:4;29062:5;28992:76;;;;;;;;;;;;;;;;;;;;;28653:421;;;;;;;;;:::o;8832:98::-;8890:7;8921:1;8917;:5;;;;:::i;:::-;8910:12;;8832:98;;;;:::o;8451:::-;8509:7;8540:1;8536;:5;;;;:::i;:::-;8529:12;;8451:98;;;;:::o;25449:317::-;25555:1;25538:19;;:5;:19;;;;25530:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;25632:1;25613:21;;:7;:21;;;;25605:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;25710:6;25680:11;:18;25692:5;25680:18;;;;;;;;;;;;;;;:27;25699:7;25680:27;;;;;;;;;;;;;;;:36;;;;25744:7;25728:32;;25737:5;25728:32;;;25753:6;25728:32;;;;;;:::i;:::-;;;;;;;;25449:317;;;:::o;25772:745::-;25883:1;25865:20;;:6;:20;;;;25857:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;25963:1;25942:23;;:9;:23;;;;25934:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;26029:1;26020:6;:10;26012:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;26089:11;:19;26101:6;26089:19;;;;;;;;;;;;;;;;;;;;;;;;;:46;;;;;26113:11;:22;26125:9;26113:22;;;;;;;;;;;;;;;;;;;;;;;;;26112:23;26089:46;26085:427;;;26146:48;26168:6;26176:9;26187:6;26146:21;:48::i;:::-;26085:427;;;26213:11;:19;26225:6;26213:19;;;;;;;;;;;;;;;;;;;;;;;;;26212:20;:46;;;;;26236:11;:22;26248:9;26236:22;;;;;;;;;;;;;;;;;;;;;;;;;26212:46;26208:304;;;26269:46;26289:6;26297:9;26308:6;26269:19;:46::i;:::-;26208:304;;;26333:11;:19;26345:6;26333:19;;;;;;;;;;;;;;;;;;;;;;;;;:45;;;;;26356:11;:22;26368:9;26356:22;;;;;;;;;;;;;;;;;;;;;;;;;26333:45;26329:183;;;26389:48;26411:6;26419:9;26430:6;26389:21;:48::i;:::-;26329:183;;;26460:44;26478:6;26486:9;26497:6;26460:17;:44::i;:::-;26329:183;26208:304;26085:427;25772:745;;;:::o;10730:240::-;10850:7;10908:1;10903;:6;;10911:12;10895:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;10950:1;10946;:5;10939:12;;10730:240;;;;;:::o;29777:154::-;29819:7;29836:15;29853;29872:19;:17;:19::i;:::-;29835:56;;;;29905:20;29917:7;29905;:11;;:20;;;;:::i;:::-;29898:27;;;;29777:154;:::o;9588:98::-;9646:7;9677:1;9673;:5;;;;:::i;:::-;9666:12;;9588:98;;;;:::o;5570:173::-;5626:16;5645:6;;;;;;;;;;;5626:25;;5671:8;5662:6;;:17;;;;;;;;;;;;;;;;;;5726:8;5695:40;;5716:8;5695:40;;;;;;;;;;;;5615:128;5570:173;:::o;29080:310::-;29140:7;29149;29158;29174:12;29189:33;20814:1;29189:16;29201:3;29189:7;:11;;:16;;;;:::i;:::-;:20;;:33;;;;:::i;:::-;29174:48;;29229:13;29245:34;20860:1;29245:16;29257:3;29245:7;:11;;:16;;;;:::i;:::-;:20;;:34;;;;:::i;:::-;29229:50;;29286:23;29312:28;29324:15;29333:5;29324:4;:8;;:15;;;;:::i;:::-;29312:7;:11;;:28;;;;:::i;:::-;29286:54;;29355:15;29372:4;29378:5;29347:37;;;;;;;;;29080:310;;;;;:::o;29396:375::-;29499:7;29508;29517;29526;29542:15;29560:17;29572:4;29560:7;:11;;:17;;;;:::i;:::-;29542:35;;29584:12;29599:14;29608:4;29599;:8;;:14;;;;:::i;:::-;29584:29;;29620:13;29636:15;29646:4;29636:5;:9;;:15;;;;:::i;:::-;29620:31;;29658:23;29684:28;29696:15;29705:5;29696:4;:8;;:15;;;;:::i;:::-;29684:7;:11;;:28;;;;:::i;:::-;29658:54;;29727:7;29736:15;29753:4;29759:5;29719:46;;;;;;;;;;;;29396:375;;;;;;;;;:::o;27636:573::-;27735:15;27752:23;27777:12;27791:13;27806:23;27831:12;27845:13;27862:19;27873:7;27862:10;:19::i;:::-;27734:147;;;;;;;;;;;;;;27906:28;27926:7;27906;:15;27914:6;27906:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;27888:7;:15;27896:6;27888:15;;;;;;;;;;;;;;;:46;;;;27959:28;27979:7;27959;:15;27967:6;27959:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;27941:7;:15;27949:6;27941:15;;;;;;;;;;;;;;;:46;;;;28015:39;28038:15;28015:7;:18;28023:9;28015:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;27994:7;:18;28002:9;27994:18;;;;;;;;;;;;;;;:60;;;;28063:37;28075:4;28081;28087:5;28094;28063:11;:37::i;:::-;28129:9;28112:44;;28121:6;28112:44;;;28140:15;28112:44;;;;;;:::i;:::-;;;;;;;;28193:1;28168:35;;28177:6;28168:35;;;28197:5;28168:35;;;;;;:::i;:::-;;;;;;;;27727:482;;;;;;;27636:573;;;:::o;27045:585::-;27142:15;27159:23;27184:12;27198:13;27213:23;27238:12;27252:13;27269:19;27280:7;27269:10;:19::i;:::-;27141:147;;;;;;;;;;;;;;27313:28;27333:7;27313;:15;27321:6;27313:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;27295:7;:15;27303:6;27295:15;;;;;;;;;;;;;;;:46;;;;27369:39;27392:15;27369:7;:18;27377:9;27369:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;27348:7;:18;27356:9;27348:18;;;;;;;;;;;;;;;:60;;;;27436:39;27459:15;27436:7;:18;27444:9;27436:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;27415:7;:18;27423:9;27415:18;;;;;;;;;;;;;;;:60;;;;27484:37;27496:4;27502;27508:5;27515;27484:11;:37::i;:::-;27550:9;27533:44;;27542:6;27533:44;;;27561:15;27533:44;;;;;;:::i;:::-;;;;;;;;27614:1;27589:35;;27598:6;27589:35;;;27618:5;27589:35;;;;;;:::i;:::-;;;;;;;;27134:496;;;;;;;27045:585;;;:::o;28215:213::-;28318:23;28347:19;28358:7;28347:10;:19::i;:::-;28313:53;;;;;;;;28395:9;28378:44;;28387:6;28378:44;;;28406:15;28378:44;;;;;;:::i;:::-;;;;;;;;28306:122;28215:213;;;:::o;26523:516::-;26618:15;26635:23;26660:12;26674:13;26689:23;26714:12;26728:13;26745:19;26756:7;26745:10;:19::i;:::-;26617:147;;;;;;;;;;;;;;26789:28;26809:7;26789;:15;26797:6;26789:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;26771:7;:15;26779:6;26771:15;;;;;;;;;;;;;;;:46;;;;26845:39;26868:15;26845:7;:18;26853:9;26845:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;26824:7;:18;26832:9;26824:18;;;;;;;;;;;;;;;:60;;;;26893:37;26905:4;26911;26917:5;26924;26893:11;:37::i;:::-;26959:9;26942:44;;26951:6;26942:44;;;26970:15;26942:44;;;;;;:::i;:::-;;;;;;;;27023:1;26998:35;;27007:6;26998:35;;;27027:5;26998:35;;;;;;:::i;:::-;;;;;;;;26610:429;;;;;;;26523:516;;;:::o;29937:512::-;29988:7;29997;30013:15;30031:7;;30013:25;;30045:15;30063:7;;30045:25;;30082:9;30077:267;30101:9;:16;;;;30097:1;:20;30077:267;;;30161:7;30137;:21;30145:9;30155:1;30145:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;30137:21;;;;;;;;;;;;;;;;:31;:66;;;;30196:7;30172;:21;30180:9;30190:1;30180:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;30172:21;;;;;;;;;;;;;;;;:31;30137:66;30133:97;;;30213:7;;30222;;30205:25;;;;;;;;;30133:97;30249:34;30261:7;:21;30269:9;30279:1;30269:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;30261:21;;;;;;;;;;;;;;;;30249:7;:11;;:34;;;;:::i;:::-;30239:44;;30302:34;30314:7;:21;30322:9;30332:1;30322:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;30314:21;;;;;;;;;;;;;;;;30302:7;:11;;:34;;;;:::i;:::-;30292:44;;30119:3;;;;;:::i;:::-;;;;30077:267;;;;30364:20;30376:7;;30364;;:11;;:20;;;;:::i;:::-;30354:7;:30;30350:61;;;30394:7;;30403;;30386:25;;;;;;;;30350:61;30426:7;30435;30418:25;;;;;;29937:512;;;:::o;9189:98::-;9247:7;9278:1;9274;:5;;;;:::i;:::-;9267:12;;9189:98;;;;:::o;28434:213::-;28538:28;28550:15;28559:5;28550:4;:8;;:15;;;;:::i;:::-;28538:7;;:11;;:28;;;;:::i;:::-;28528:7;:38;;;;28583:18;28595:5;28583:7;;:11;;:18;;;;:::i;:::-;28573:7;:28;;;;28621:20;28636:4;28621:10;;:14;;:20;;;;:::i;:::-;28608:10;:33;;;;28434:213;;;;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;7:139;;;;:::o;152:133::-;195:5;233:6;220:20;211:29;;249:30;273:5;249:30;:::i;:::-;152:133;;;;:::o;291:139::-;337:5;375:6;362:20;353:29;;391:33;418:5;391:33;:::i;:::-;291:139;;;;:::o;436:329::-;495:6;544:2;532:9;523:7;519:23;515:32;512:119;;;550:79;;:::i;:::-;512:119;670:1;695:53;740:7;731:6;720:9;716:22;695:53;:::i;:::-;685:63;;641:117;436:329;;;;:::o;771:474::-;839:6;847;896:2;884:9;875:7;871:23;867:32;864:119;;;902:79;;:::i;:::-;864:119;1022:1;1047:53;1092:7;1083:6;1072:9;1068:22;1047:53;:::i;:::-;1037:63;;993:117;1149:2;1175:53;1220:7;1211:6;1200:9;1196:22;1175:53;:::i;:::-;1165:63;;1120:118;771:474;;;;;:::o;1251:619::-;1328:6;1336;1344;1393:2;1381:9;1372:7;1368:23;1364:32;1361:119;;;1399:79;;:::i;:::-;1361:119;1519:1;1544:53;1589:7;1580:6;1569:9;1565:22;1544:53;:::i;:::-;1534:63;;1490:117;1646:2;1672:53;1717:7;1708:6;1697:9;1693:22;1672:53;:::i;:::-;1662:63;;1617:118;1774:2;1800:53;1845:7;1836:6;1825:9;1821:22;1800:53;:::i;:::-;1790:63;;1745:118;1251:619;;;;;:::o;1876:474::-;1944:6;1952;2001:2;1989:9;1980:7;1976:23;1972:32;1969:119;;;2007:79;;:::i;:::-;1969:119;2127:1;2152:53;2197:7;2188:6;2177:9;2173:22;2152:53;:::i;:::-;2142:63;;2098:117;2254:2;2280:53;2325:7;2316:6;2305:9;2301:22;2280:53;:::i;:::-;2270:63;;2225:118;1876:474;;;;;:::o;2356:329::-;2415:6;2464:2;2452:9;2443:7;2439:23;2435:32;2432:119;;;2470:79;;:::i;:::-;2432:119;2590:1;2615:53;2660:7;2651:6;2640:9;2636:22;2615:53;:::i;:::-;2605:63;;2561:117;2356:329;;;;:::o;2691:468::-;2756:6;2764;2813:2;2801:9;2792:7;2788:23;2784:32;2781:119;;;2819:79;;:::i;:::-;2781:119;2939:1;2964:53;3009:7;3000:6;2989:9;2985:22;2964:53;:::i;:::-;2954:63;;2910:117;3066:2;3092:50;3134:7;3125:6;3114:9;3110:22;3092:50;:::i;:::-;3082:60;;3037:115;2691:468;;;;;:::o;3165:118::-;3252:24;3270:5;3252:24;:::i;:::-;3247:3;3240:37;3165:118;;:::o;3289:109::-;3370:21;3385:5;3370:21;:::i;:::-;3365:3;3358:34;3289:109;;:::o;3404:364::-;3492:3;3520:39;3553:5;3520:39;:::i;:::-;3575:71;3639:6;3634:3;3575:71;:::i;:::-;3568:78;;3655:52;3700:6;3695:3;3688:4;3681:5;3677:16;3655:52;:::i;:::-;3732:29;3754:6;3732:29;:::i;:::-;3727:3;3723:39;3716:46;;3496:272;3404:364;;;;:::o;3774:366::-;3916:3;3937:67;4001:2;3996:3;3937:67;:::i;:::-;3930:74;;4013:93;4102:3;4013:93;:::i;:::-;4131:2;4126:3;4122:12;4115:19;;3774:366;;;:::o;4146:::-;4288:3;4309:67;4373:2;4368:3;4309:67;:::i;:::-;4302:74;;4385:93;4474:3;4385:93;:::i;:::-;4503:2;4498:3;4494:12;4487:19;;4146:366;;;:::o;4518:::-;4660:3;4681:67;4745:2;4740:3;4681:67;:::i;:::-;4674:74;;4757:93;4846:3;4757:93;:::i;:::-;4875:2;4870:3;4866:12;4859:19;;4518:366;;;:::o;4890:::-;5032:3;5053:67;5117:2;5112:3;5053:67;:::i;:::-;5046:74;;5129:93;5218:3;5129:93;:::i;:::-;5247:2;5242:3;5238:12;5231:19;;4890:366;;;:::o;5262:::-;5404:3;5425:67;5489:2;5484:3;5425:67;:::i;:::-;5418:74;;5501:93;5590:3;5501:93;:::i;:::-;5619:2;5614:3;5610:12;5603:19;;5262:366;;;:::o;5634:::-;5776:3;5797:67;5861:2;5856:3;5797:67;:::i;:::-;5790:74;;5873:93;5962:3;5873:93;:::i;:::-;5991:2;5986:3;5982:12;5975:19;;5634:366;;;:::o;6006:::-;6148:3;6169:67;6233:2;6228:3;6169:67;:::i;:::-;6162:74;;6245:93;6334:3;6245:93;:::i;:::-;6363:2;6358:3;6354:12;6347:19;;6006:366;;;:::o;6378:::-;6520:3;6541:67;6605:2;6600:3;6541:67;:::i;:::-;6534:74;;6617:93;6706:3;6617:93;:::i;:::-;6735:2;6730:3;6726:12;6719:19;;6378:366;;;:::o;6750:::-;6892:3;6913:67;6977:2;6972:3;6913:67;:::i;:::-;6906:74;;6989:93;7078:3;6989:93;:::i;:::-;7107:2;7102:3;7098:12;7091:19;;6750:366;;;:::o;7122:::-;7264:3;7285:67;7349:2;7344:3;7285:67;:::i;:::-;7278:74;;7361:93;7450:3;7361:93;:::i;:::-;7479:2;7474:3;7470:12;7463:19;;7122:366;;;:::o;7494:::-;7636:3;7657:67;7721:2;7716:3;7657:67;:::i;:::-;7650:74;;7733:93;7822:3;7733:93;:::i;:::-;7851:2;7846:3;7842:12;7835:19;;7494:366;;;:::o;7866:::-;8008:3;8029:67;8093:2;8088:3;8029:67;:::i;:::-;8022:74;;8105:93;8194:3;8105:93;:::i;:::-;8223:2;8218:3;8214:12;8207:19;;7866:366;;;:::o;8238:::-;8380:3;8401:67;8465:2;8460:3;8401:67;:::i;:::-;8394:74;;8477:93;8566:3;8477:93;:::i;:::-;8595:2;8590:3;8586:12;8579:19;;8238:366;;;:::o;8610:118::-;8697:24;8715:5;8697:24;:::i;:::-;8692:3;8685:37;8610:118;;:::o;8734:112::-;8817:22;8833:5;8817:22;:::i;:::-;8812:3;8805:35;8734:112;;:::o;8852:222::-;8945:4;8983:2;8972:9;8968:18;8960:26;;8996:71;9064:1;9053:9;9049:17;9040:6;8996:71;:::i;:::-;8852:222;;;;:::o;9080:210::-;9167:4;9205:2;9194:9;9190:18;9182:26;;9218:65;9280:1;9269:9;9265:17;9256:6;9218:65;:::i;:::-;9080:210;;;;:::o;9296:313::-;9409:4;9447:2;9436:9;9432:18;9424:26;;9496:9;9490:4;9486:20;9482:1;9471:9;9467:17;9460:47;9524:78;9597:4;9588:6;9524:78;:::i;:::-;9516:86;;9296:313;;;;:::o;9615:419::-;9781:4;9819:2;9808:9;9804:18;9796:26;;9868:9;9862:4;9858:20;9854:1;9843:9;9839:17;9832:47;9896:131;10022:4;9896:131;:::i;:::-;9888:139;;9615:419;;;:::o;10040:::-;10206:4;10244:2;10233:9;10229:18;10221:26;;10293:9;10287:4;10283:20;10279:1;10268:9;10264:17;10257:47;10321:131;10447:4;10321:131;:::i;:::-;10313:139;;10040:419;;;:::o;10465:::-;10631:4;10669:2;10658:9;10654:18;10646:26;;10718:9;10712:4;10708:20;10704:1;10693:9;10689:17;10682:47;10746:131;10872:4;10746:131;:::i;:::-;10738:139;;10465:419;;;:::o;10890:::-;11056:4;11094:2;11083:9;11079:18;11071:26;;11143:9;11137:4;11133:20;11129:1;11118:9;11114:17;11107:47;11171:131;11297:4;11171:131;:::i;:::-;11163:139;;10890:419;;;:::o;11315:::-;11481:4;11519:2;11508:9;11504:18;11496:26;;11568:9;11562:4;11558:20;11554:1;11543:9;11539:17;11532:47;11596:131;11722:4;11596:131;:::i;:::-;11588:139;;11315:419;;;:::o;11740:::-;11906:4;11944:2;11933:9;11929:18;11921:26;;11993:9;11987:4;11983:20;11979:1;11968:9;11964:17;11957:47;12021:131;12147:4;12021:131;:::i;:::-;12013:139;;11740:419;;;:::o;12165:::-;12331:4;12369:2;12358:9;12354:18;12346:26;;12418:9;12412:4;12408:20;12404:1;12393:9;12389:17;12382:47;12446:131;12572:4;12446:131;:::i;:::-;12438:139;;12165:419;;;:::o;12590:::-;12756:4;12794:2;12783:9;12779:18;12771:26;;12843:9;12837:4;12833:20;12829:1;12818:9;12814:17;12807:47;12871:131;12997:4;12871:131;:::i;:::-;12863:139;;12590:419;;;:::o;13015:::-;13181:4;13219:2;13208:9;13204:18;13196:26;;13268:9;13262:4;13258:20;13254:1;13243:9;13239:17;13232:47;13296:131;13422:4;13296:131;:::i;:::-;13288:139;;13015:419;;;:::o;13440:::-;13606:4;13644:2;13633:9;13629:18;13621:26;;13693:9;13687:4;13683:20;13679:1;13668:9;13664:17;13657:47;13721:131;13847:4;13721:131;:::i;:::-;13713:139;;13440:419;;;:::o;13865:::-;14031:4;14069:2;14058:9;14054:18;14046:26;;14118:9;14112:4;14108:20;14104:1;14093:9;14089:17;14082:47;14146:131;14272:4;14146:131;:::i;:::-;14138:139;;13865:419;;;:::o;14290:::-;14456:4;14494:2;14483:9;14479:18;14471:26;;14543:9;14537:4;14533:20;14529:1;14518:9;14514:17;14507:47;14571:131;14697:4;14571:131;:::i;:::-;14563:139;;14290:419;;;:::o;14715:::-;14881:4;14919:2;14908:9;14904:18;14896:26;;14968:9;14962:4;14958:20;14954:1;14943:9;14939:17;14932:47;14996:131;15122:4;14996:131;:::i;:::-;14988:139;;14715:419;;;:::o;15140:222::-;15233:4;15271:2;15260:9;15256:18;15248:26;;15284:71;15352:1;15341:9;15337:17;15328:6;15284:71;:::i;:::-;15140:222;;;;:::o;15368:214::-;15457:4;15495:2;15484:9;15480:18;15472:26;;15508:67;15572:1;15561:9;15557:17;15548:6;15508:67;:::i;:::-;15368:214;;;;:::o;15669:99::-;15721:6;15755:5;15749:12;15739:22;;15669:99;;;:::o;15774:169::-;15858:11;15892:6;15887:3;15880:19;15932:4;15927:3;15923:14;15908:29;;15774:169;;;;:::o;15949:305::-;15989:3;16008:20;16026:1;16008:20;:::i;:::-;16003:25;;16042:20;16060:1;16042:20;:::i;:::-;16037:25;;16196:1;16128:66;16124:74;16121:1;16118:81;16115:107;;;16202:18;;:::i;:::-;16115:107;16246:1;16243;16239:9;16232:16;;15949:305;;;;:::o;16260:185::-;16300:1;16317:20;16335:1;16317:20;:::i;:::-;16312:25;;16351:20;16369:1;16351:20;:::i;:::-;16346:25;;16390:1;16380:35;;16395:18;;:::i;:::-;16380:35;16437:1;16434;16430:9;16425:14;;16260:185;;;;:::o;16451:848::-;16512:5;16519:4;16543:6;16534:15;;16567:5;16558:14;;16581:712;16602:1;16592:8;16589:15;16581:712;;;16697:4;16692:3;16688:14;16682:4;16679:24;16676:50;;;16706:18;;:::i;:::-;16676:50;16756:1;16746:8;16742:16;16739:451;;;17171:4;17164:5;17160:16;17151:25;;16739:451;17221:4;17215;17211:15;17203:23;;17251:32;17274:8;17251:32;:::i;:::-;17239:44;;16581:712;;;16451:848;;;;;;;:::o;17305:281::-;17363:5;17387:23;17405:4;17387:23;:::i;:::-;17379:31;;17431:25;17447:8;17431:25;:::i;:::-;17419:37;;17475:104;17512:66;17502:8;17496:4;17475:104;:::i;:::-;17466:113;;17305:281;;;;:::o;17592:1073::-;17646:5;17837:8;17827:40;;17858:1;17849:10;;17860:5;;17827:40;17886:4;17876:36;;17903:1;17894:10;;17905:5;;17876:36;17972:4;18020:1;18015:27;;;;18056:1;18051:191;;;;17965:277;;18015:27;18033:1;18024:10;;18035:5;;;18051:191;18096:3;18086:8;18083:17;18080:43;;;18103:18;;:::i;:::-;18080:43;18152:8;18149:1;18145:16;18136:25;;18187:3;18180:5;18177:14;18174:40;;;18194:18;;:::i;:::-;18174:40;18227:5;;;17965:277;;18351:2;18341:8;18338:16;18332:3;18326:4;18323:13;18319:36;18301:2;18291:8;18288:16;18283:2;18277:4;18274:12;18270:35;18254:111;18251:246;;;18407:8;18401:4;18397:19;18388:28;;18442:3;18435:5;18432:14;18429:40;;;18449:18;;:::i;:::-;18429:40;18482:5;;18251:246;18522:42;18560:3;18550:8;18544:4;18541:1;18522:42;:::i;:::-;18507:57;;;;18596:4;18591:3;18587:14;18580:5;18577:25;18574:51;;;18605:18;;:::i;:::-;18574:51;18654:4;18647:5;18643:16;18634:25;;17592:1073;;;;;;:::o;18671:348::-;18711:7;18734:20;18752:1;18734:20;:::i;:::-;18729:25;;18768:20;18786:1;18768:20;:::i;:::-;18763:25;;18956:1;18888:66;18884:74;18881:1;18878:81;18873:1;18866:9;18859:17;18855:105;18852:131;;;18963:18;;:::i;:::-;18852:131;19011:1;19008;19004:9;18993:20;;18671:348;;;;:::o;19025:191::-;19065:4;19085:20;19103:1;19085:20;:::i;:::-;19080:25;;19119:20;19137:1;19119:20;:::i;:::-;19114:25;;19158:1;19155;19152:8;19149:34;;;19163:18;;:::i;:::-;19149:34;19208:1;19205;19201:9;19193:17;;19025:191;;;;:::o;19222:96::-;19259:7;19288:24;19306:5;19288:24;:::i;:::-;19277:35;;19222:96;;;:::o;19324:90::-;19358:7;19401:5;19394:13;19387:21;19376:32;;19324:90;;;:::o;19420:126::-;19457:7;19497:42;19490:5;19486:54;19475:65;;19420:126;;;:::o;19552:77::-;19589:7;19618:5;19607:16;;19552:77;;;:::o;19635:86::-;19670:7;19710:4;19703:5;19699:16;19688:27;;19635:86;;;:::o;19727:307::-;19795:1;19805:113;19819:6;19816:1;19813:13;19805:113;;;19904:1;19899:3;19895:11;19889:18;19885:1;19880:3;19876:11;19869:39;19841:2;19838:1;19834:10;19829:15;;19805:113;;;19936:6;19933:1;19930:13;19927:101;;;20016:1;20007:6;20002:3;19998:16;19991:27;19927:101;19776:258;19727:307;;;:::o;20040:233::-;20079:3;20102:24;20120:5;20102:24;:::i;:::-;20093:33;;20148:66;20141:5;20138:77;20135:103;;;20218:18;;:::i;:::-;20135:103;20265:1;20258:5;20254:13;20247:20;;20040:233;;;:::o;20279:180::-;20327:77;20324:1;20317:88;20424:4;20421:1;20414:15;20448:4;20445:1;20438:15;20465:180;20513:77;20510:1;20503:88;20610:4;20607:1;20600:15;20634:4;20631:1;20624:15;20651:180;20699:77;20696:1;20689:88;20796:4;20793:1;20786:15;20820:4;20817:1;20810:15;20837:180;20885:77;20882:1;20875:88;20982:4;20979:1;20972:15;21006:4;21003:1;20996:15;21146:117;21255:1;21252;21245:12;21269:102;21310:6;21361:2;21357:7;21352:2;21345:5;21341:14;21337:28;21327:38;;21269:102;;;:::o;21377:::-;21419:8;21466:5;21463:1;21459:13;21438:34;;21377:102;;;:::o;21485:222::-;21625:34;21621:1;21613:6;21609:14;21602:58;21694:5;21689:2;21681:6;21677:15;21670:30;21485:222;:::o;21713:229::-;21853:34;21849:1;21841:6;21837:14;21830:58;21922:12;21917:2;21909:6;21905:15;21898:37;21713:229;:::o;21948:225::-;22088:34;22084:1;22076:6;22072:14;22065:58;22157:8;22152:2;22144:6;22140:15;22133:33;21948:225;:::o;22179:221::-;22319:34;22315:1;22307:6;22303:14;22296:58;22388:4;22383:2;22375:6;22371:15;22364:29;22179:221;:::o;22406:177::-;22546:29;22542:1;22534:6;22530:14;22523:53;22406:177;:::o;22589:181::-;22729:33;22725:1;22717:6;22713:14;22706:57;22589:181;:::o;22776:182::-;22916:34;22912:1;22904:6;22900:14;22893:58;22776:182;:::o;22964:228::-;23104:34;23100:1;23092:6;23088:14;23081:58;23173:11;23168:2;23160:6;23156:15;23149:36;22964:228;:::o;23198:173::-;23338:25;23334:1;23326:6;23322:14;23315:49;23198:173;:::o;23377:224::-;23517:34;23513:1;23505:6;23501:14;23494:58;23586:7;23581:2;23573:6;23569:15;23562:32;23377:224;:::o;23607:169::-;23747:21;23743:1;23735:6;23731:14;23724:45;23607:169;:::o;23782:223::-;23922:34;23918:1;23910:6;23906:14;23899:58;23991:6;23986:2;23978:6;23974:15;23967:31;23782:223;:::o;24011:231::-;24151:34;24147:1;24139:6;24135:14;24128:58;24220:14;24215:2;24207:6;24203:15;24196:39;24011:231;:::o;24248:122::-;24321:24;24339:5;24321:24;:::i;:::-;24314:5;24311:35;24301:63;;24360:1;24357;24350:12;24301:63;24248:122;:::o;24376:116::-;24446:21;24461:5;24446:21;:::i;:::-;24439:5;24436:32;24426:60;;24482:1;24479;24472:12;24426:60;24376:116;:::o;24498:122::-;24571:24;24589:5;24571:24;:::i;:::-;24564:5;24561:35;24551:63;;24610:1;24607;24600:12;24551:63;24498:122;:::o

Swarm Source

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