ETH Price: $2,310.45 (-0.00%)
Gas: 2.3 Gwei

Token

ERC20 ***
 

Overview

Max Total Supply

275 ERC20 ***

Holders

1

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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:
ETFXDAIV2Pool

Compiler Version
v0.6.11+commit.5ef660b1

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-12-17
*/

// SPDX-License-Identifier: MIT

pragma solidity 0.6.11;

/**
 * @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 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 GSN 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 payable) {
        return msg.sender;
    }

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





/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of returning `false` on failure. This behavior is nonetheless conventional
 * and does not conflict with the expectations of ERC20 applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20 {
    using SafeMath for uint256;
    using Address for address;

    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @dev Sets the values for {name} and {symbol}, initializes {decimals} with
     * a default value of 18.
     *
     * To select a different value for {decimals}, use {_setupDecimals}.
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name_, string memory symbol_, uint8 decimals_) public {
        _name = name_;
        _symbol = symbol_;
        _decimals = decimals_;
    }

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(sender, recipient, amount);

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

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

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

        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }

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

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

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

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

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

    /**
     * @dev Sets {decimals} to a value other than the default one of 18.
     *
     * WARNING: This function should only be called from the constructor. Most
     * applications that interact with token contracts will not expect
     * {decimals} to ever change, and may work incorrectly if it does.
     */
    function _setupDecimals(uint8 decimals_) internal {
        _decimals = decimals_;
    }

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



/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor () public {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and make it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}





/**
 * @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 () public {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}




/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @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) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @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 sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

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

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts 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) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts 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) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts 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 mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message 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, string memory errorMessage) internal pure returns (uint256) {
        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 in extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

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

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

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

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

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

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

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

    function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) {
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: weiValue }(data);
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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





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

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

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

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

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

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

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

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


interface Aave {
    function deposit(address asset, uint256 amount, address onBehalfOf, uint16 referralCode) external;
    function withdraw(address asset, uint256 amount, address to) external;
}

contract ETFXDAIV2Pool is ERC20, ReentrancyGuard, Ownable {
  using SafeERC20 for IERC20;
  using Address for address;
  using SafeMath for uint256;

  mapping(address => uint256) private startStaking;
  mapping(address => uint256) private rewards;
  
  // total 25000 00000000
  // first month = 12500 / 30days  = 416
  uint256 private mintSpeed = 416 * 1e8; //ETFX daily
  uint256 public constant ONEDAY = 5760; //1 day = 5760 blocks
  uint256 public constant DURATION = 172800 ; //1 month for halving
  uint256 public halvingBlock;
  
  IERC20 constant private  ETFX    = IERC20(0x9c5e7329f4Fb3c9e4ea567987151aa09D8212BB3); //ETFX contract address
  address constant private DAIaddress   = address(0x6B175474E89094C44Da98b954EedeAC495271d0F); //DAI contract address
  IERC20 constant private  DAI   = IERC20(DAIaddress); //DAI 
  
  address constant private AAVEaddress = address(0x7d2768dE32b0b80b7a3454c06BdAc94A69DDc7A9);
  Aave  constant private AAVE = Aave(AAVEaddress);
  
  IERC20 constant private aaveDAIToken  = IERC20(0x028171bCA77440897B824Ca71D1c56caC55b68A3); //aDAI
  
  uint256 private halvingCount;

  constructor () public ERC20("ETFX-DAI", "DETFX", 18)  {
    halvingBlock = block.number.add(DURATION);
    DAI.safeApprove(AAVEaddress, uint(-1));
  }

  
  function stake(uint256 amount) external {
    if (halvingCount != 3) {
      checkHalving();
    }
    address sender = msg.sender;
    rewards[sender] = earned(sender);
    startStaking[sender] = block.number;
    _mint(sender, amount);
    DAI.safeTransferFrom(sender, address(this), amount);
    AAVE.deposit(DAIaddress, amount, address(this), 88);
  }

  function withdraw(uint256 amount) external {
    if (halvingCount != 3) {
      checkHalving();
    }
    address sender = msg.sender;
    rewards[sender] = earned(sender);
    if (balanceOf(sender) == amount) {
      startStaking[sender] = 0;
    } else {
      startStaking[sender] = block.number;
    }
    AAVE.withdraw(DAIaddress, amount, sender);
    _burn(sender, amount);
  }

  function earned(address account) public view returns (uint256) {
    uint256 accountStartStaking = startStaking[account];
    uint256 deltaRewards;
    if (accountStartStaking != 0) {
      uint256 period;
      period = block.number.sub(accountStartStaking).div(ONEDAY);
      deltaRewards = balanceOf(account).mul(period).mul(rewardPerToken()).div(1e18);
    }
    deltaRewards = deltaRewards.add(rewards[account]);
    if (ETFX.balanceOf(address(this)) < deltaRewards) {
      deltaRewards = ETFX.balanceOf(address(this));
    }
    return deltaRewards;
  }
  
  function exit() external {
    if (halvingCount != 3) {
      checkHalving();
    }
    address sender = msg.sender;
    uint256 unstake = balanceOf(sender);
    uint256 reward = earned(sender);
    AAVE.withdraw(DAIaddress, unstake, sender);
    _burn(sender, unstake);
    startStaking[sender] = 0;
    
    if (reward != 0) {
        ETFX.safeTransfer(sender, reward);
        rewards[sender] = 0;
    }
  }

  function getReward() external {
    if (halvingCount != 3) {
      checkHalving();
    }
    address sender = msg.sender;
    uint256 reward = earned(sender);
    if (reward != 0) {
        startStaking[sender] = block.number;
        ETFX.safeTransfer(sender, reward);
        rewards[sender] = 0;
    }
  }
  
  function rewardPerToken() public view returns (uint256) {
    if (totalSupply() == 0) {
        return 0;
    }
    return
        mintSpeed.mul(1e18).div(totalSupply());
  }

  function checkHalving() internal {
    if (block.number >= halvingBlock) {
      halvingBlock = block.number.add(DURATION);
      mintSpeed = mintSpeed.mul(50).div(100);
      halvingCount++;
    }
  }
  
  function checkRewards() external view returns (uint256) {
      uint256 aavebalance = aaveDAIToken.balanceOf(address(this));
      uint256 wrappedbalance = totalSupply();
      return aavebalance.sub(wrappedbalance);
  }
  
  function devRewards() external onlyOwner {
      uint256 aavebalance = aaveDAIToken.balanceOf(address(this));
      uint256 wrappedbalance = totalSupply();
      uint256 devrewards = aavebalance.sub(wrappedbalance);
      require(devrewards > 0, "zero rewards");
      AAVE.withdraw(DAIaddress, devrewards, msg.sender);
  }

}

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":[],"name":"DURATION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ONEDAY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"checkRewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"earned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"exit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"halvingBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardPerToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"stake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526409af8da000600a553480156200001a57600080fd5b506040518060400160405280600881526020017f455446582d4441490000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f444554465800000000000000000000000000000000000000000000000000000081525060128260039080519060200190620000a192919062000821565b508160049080519060200190620000ba92919062000821565b5080600560006101000a81548160ff021916908360ff16021790555050505060016006819055506000620000f36200023560201b60201c565b905080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350620001af6202a300436200023d60201b62001eac1790919060201c565b600b819055506200022f737d2768de32b0b80b7a3454c06bdac94a69ddc7a97fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff736b175474e89094c44da98b954eedeac495271d0f73ffffffffffffffffffffffffffffffffffffffff16620002c660201b62001f34179092919060201c565b620008d0565b600033905090565b600080828401905083811015620002bc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6000811480620003c4575060008373ffffffffffffffffffffffffffffffffffffffff1663dd62ed3e30856040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019250505060206040518083038186803b1580156200038557600080fd5b505afa1580156200039a573d6000803e3d6000fd5b505050506040513d6020811015620003b157600080fd5b8101908080519060200190929190505050145b6200041b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603681526020018062003c846036913960400191505060405180910390fd5b620004d68363095ea7b360e01b8484604051602401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050620004db60201b60201c565b505050565b606062000544826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff16620005d560201b6200213b179092919060201c565b9050600081511115620005d0578080602001905160208110156200056757600080fd5b8101908080519060200190929190505050620005cf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a81526020018062003c5a602a913960400191505060405180910390fd5b5b505050565b6060620005ec8484600085620005f560201b60201c565b90509392505050565b606062000608856200080e60201b60201c565b6200067b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b60208310620006cd5780518252602082019150602081019050602083039250620006a8565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d806000811462000731576040519150601f19603f3d011682016040523d82523d6000602084013e62000736565b606091505b509150915081156200074d57809250505062000806565b600081511115620007615780518082602001fd5b836040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015620007ca578082015181840152602081019050620007ad565b50505050905090810190601f168015620007f85780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b949350505050565b600080823b905060008111915050919050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200086457805160ff191683800117855562000895565b8280016001018555821562000895579182015b828111156200089457825182559160200191906001019062000877565b5b509050620008a49190620008a8565b5090565b620008cd91905b80821115620008c9576000816000905550600101620008af565b5090565b90565b61337a80620008e06000396000f3fe608060405234801561001057600080fd5b50600436106101725760003560e01c806370a08231116100de578063a457c2d711610097578063cd3daf9d11610071578063cd3daf9d146106c9578063dd62ed3e146106e7578063e9fad8ee1461075f578063f2fde38b1461076957610172565b8063a457c2d7146105cf578063a694fc3a14610635578063a9059cbb1461066357610172565b806370a0823114610478578063715018a6146104d0578063718dceb9146104da5780638da5cb5b146104f857806395d89b4114610542578063a086d50a146105c557610172565b806323b872dd1161013057806323b872dd146103125780632aeaa291146103985780632e1a7d4d146103b6578063313ce567146103e457806339509351146104085780633d18b9121461046e57610172565b80628cc2621461017757806306fdde03146101cf578063095ea7b31461025257806318160ddd146102b85780631be05289146102d657806323499c07146102f4575b600080fd5b6101b96004803603602081101561018d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506107ad565b6040518082815260200191505060405180910390f35b6101d7610a78565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102175780820151818401526020810190506101fc565b50505050905090810190601f1680156102445780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61029e6004803603604081101561026857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610b1a565b604051808215151515815260200191505060405180910390f35b6102c0610b38565b6040518082815260200191505060405180910390f35b6102de610b42565b6040518082815260200191505060405180910390f35b6102fc610b49565b6040518082815260200191505060405180910390f35b61037e6004803603606081101561032857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610b4f565b604051808215151515815260200191505060405180910390f35b6103a0610c28565b6040518082815260200191505060405180910390f35b6103e2600480360360208110156103cc57600080fd5b8101908080359060200190929190505050610d1f565b005b6103ec610f2b565b604051808260ff1660ff16815260200191505060405180910390f35b6104546004803603604081101561041e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f42565b604051808215151515815260200191505060405180910390f35b610476610ff5565b005b6104ba6004803603602081101561048e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506110ef565b6040518082815260200191505060405180910390f35b6104d8611137565b005b6104e26112c2565b6040518082815260200191505060405180910390f35b6105006112c8565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61054a6112f2565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561058a57808201518184015260208101905061056f565b50505050905090810190601f1680156105b75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6105cd611394565b005b61061b600480360360408110156105e557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506116c7565b604051808215151515815260200191505060405180910390f35b6106616004803603602081101561064b57600080fd5b8101908080359060200190929190505050611794565b005b6106af6004803603604081101561067957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611993565b604051808215151515815260200191505060405180910390f35b6106d16119b1565b6040518082815260200191505060405180910390f35b610749600480360360408110156106fd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611a07565b6040518082815260200191505060405180910390f35b610767611a8e565b005b6107ab6004803603602081101561077f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611c9c565b005b600080600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000808214610878576000610824611680610816854361215390919063ffffffff16565b61219d90919063ffffffff16565b9050610874670de0b6b3a764000061086661083d6119b1565b6108588561084a8b6110ef565b6121e790919063ffffffff16565b6121e790919063ffffffff16565b61219d90919063ffffffff16565b9150505b6108ca600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205482611eac90919063ffffffff16565b905080739c5e7329f4fb3c9e4ea567987151aa09d8212bb373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561095e57600080fd5b505afa158015610972573d6000803e3d6000fd5b505050506040513d602081101561098857600080fd5b81019080805190602001909291905050501015610a6e57739c5e7329f4fb3c9e4ea567987151aa09d8212bb373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015610a3057600080fd5b505afa158015610a44573d6000803e3d6000fd5b505050506040513d6020811015610a5a57600080fd5b810190808051906020019092919050505090505b8092505050919050565b606060038054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610b105780601f10610ae557610100808354040283529160200191610b10565b820191906000526020600020905b815481529060010190602001808311610af357829003601f168201915b5050505050905090565b6000610b2e610b2761226d565b8484612275565b6001905092915050565b6000600254905090565b6202a30081565b600b5481565b6000610b5c84848461246c565b610c1d84610b6861226d565b610c188560405180606001604052806028815260200161322e60289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610bce61226d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461272d9092919063ffffffff16565b612275565b600190509392505050565b60008073028171bca77440897b824ca71d1c56cac55b68a373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015610cbc57600080fd5b505afa158015610cd0573d6000803e3d6000fd5b505050506040513d6020811015610ce657600080fd5b810190808051906020019092919050505090506000610d03610b38565b9050610d18818361215390919063ffffffff16565b9250505090565b6003600c5414610d3257610d316127ed565b5b6000339050610d40816107ad565b600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081610d8d826110ef565b1415610ddd576000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610e22565b43600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b737d2768de32b0b80b7a3454c06bdac94a69ddc7a973ffffffffffffffffffffffffffffffffffffffff166369328dec736b175474e89094c44da98b954eedeac495271d0f84846040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018381526020018273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019350505050600060405180830381600087803b158015610f0557600080fd5b505af1158015610f19573d6000803e3d6000fd5b50505050610f278183612856565b5050565b6000600560009054906101000a900460ff16905090565b6000610feb610f4f61226d565b84610fe68560016000610f6061226d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611eac90919063ffffffff16565b612275565b6001905092915050565b6003600c5414611008576110076127ed565b5b60003390506000611018826107ad565b9050600081146110eb5743600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506110a58282739c5e7329f4fb3c9e4ea567987151aa09d8212bb373ffffffffffffffffffffffffffffffffffffffff16612a1a9092919063ffffffff16565b6000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61113f61226d565b73ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611201576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b61168081565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561138a5780601f1061135f5761010080835404028352916020019161138a565b820191906000526020600020905b81548152906001019060200180831161136d57829003601f168201915b5050505050905090565b61139c61226d565b73ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461145e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073028171bca77440897b824ca71d1c56cac55b68a373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156114f157600080fd5b505afa158015611505573d6000803e3d6000fd5b505050506040513d602081101561151b57600080fd5b810190808051906020019092919050505090506000611538610b38565b9050600061154f828461215390919063ffffffff16565b9050600081116115c7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600c8152602001807f7a65726f2072657761726473000000000000000000000000000000000000000081525060200191505060405180910390fd5b737d2768de32b0b80b7a3454c06bdac94a69ddc7a973ffffffffffffffffffffffffffffffffffffffff166369328dec736b175474e89094c44da98b954eedeac495271d0f83336040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018381526020018273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019350505050600060405180830381600087803b1580156116aa57600080fd5b505af11580156116be573d6000803e3d6000fd5b50505050505050565b600061178a6116d461226d565b846117858560405180606001604052806025815260200161332060259139600160006116fe61226d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461272d9092919063ffffffff16565b612275565b6001905092915050565b6003600c54146117a7576117a66127ed565b5b60003390506117b5816107ad565b600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555043600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506118468183612ad2565b611887813084736b175474e89094c44da98b954eedeac495271d0f73ffffffffffffffffffffffffffffffffffffffff16612c99909392919063ffffffff16565b737d2768de32b0b80b7a3454c06bdac94a69ddc7a973ffffffffffffffffffffffffffffffffffffffff1663e8eda9df736b175474e89094c44da98b954eedeac495271d0f843060586040518563ffffffff1660e01b8152600401808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018481526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018261ffff168152602001945050505050600060405180830381600087803b15801561197757600080fd5b505af115801561198b573d6000803e3d6000fd5b505050505050565b60006119a76119a061226d565b848461246c565b6001905092915050565b6000806119bc610b38565b14156119cb5760009050611a04565b611a016119d6610b38565b6119f3670de0b6b3a7640000600a546121e790919063ffffffff16565b61219d90919063ffffffff16565b90505b90565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6003600c5414611aa157611aa06127ed565b5b60003390506000611ab1826110ef565b90506000611abe836107ad565b9050737d2768de32b0b80b7a3454c06bdac94a69ddc7a973ffffffffffffffffffffffffffffffffffffffff166369328dec736b175474e89094c44da98b954eedeac495271d0f84866040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018381526020018273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019350505050600060405180830381600087803b158015611ba357600080fd5b505af1158015611bb7573d6000803e3d6000fd5b50505050611bc58383612856565b6000600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060008114611c9757611c518382739c5e7329f4fb3c9e4ea567987151aa09d8212bb373ffffffffffffffffffffffffffffffffffffffff16612a1a9092919063ffffffff16565b6000600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b611ca461226d565b73ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611d66576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611dec576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061319f6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080828401905083811015611f2a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600081148061202e575060008373ffffffffffffffffffffffffffffffffffffffff1663dd62ed3e30856040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019250505060206040518083038186803b158015611ff157600080fd5b505afa158015612005573d6000803e3d6000fd5b505050506040513d602081101561201b57600080fd5b8101908080519060200190929190505050145b612083576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260368152602001806132ea6036913960400191505060405180910390fd5b6121368363095ea7b360e01b8484604051602401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050612d86565b505050565b606061214a8484600085612e75565b90509392505050565b600061219583836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061272d565b905092915050565b60006121df83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061307b565b905092915050565b6000808314156121fa5760009050612267565b600082840290508284828161220b57fe5b0414612262576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061320d6021913960400191505060405180910390fd5b809150505b92915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156122fb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061329c6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612381576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806131c56022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156124f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806132776025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612578576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602381526020018061315a6023913960400191505060405180910390fd5b612583838383613141565b6125ee816040518060600160405280602681526020016131e7602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461272d9092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612681816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611eac90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b60008383111582906127da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561279f578082015181840152602081019050612784565b50505050905090810190601f1680156127cc5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600b5443106128545761280c6202a30043611eac90919063ffffffff16565b600b8190555061283b606461282d6032600a546121e790919063ffffffff16565b61219d90919063ffffffff16565b600a81905550600c600081548092919060010191905055505b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806132566021913960400191505060405180910390fd5b6128e882600083613141565b6129538160405180606001604052806022815260200161317d602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461272d9092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506129aa8160025461215390919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b612acd8363a9059cbb60e01b8484604051602401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050612d86565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b75576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b612b8160008383613141565b612b9681600254611eac90919063ffffffff16565b600281905550612bed816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611eac90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b612d80846323b872dd60e01b858585604051602401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050612d86565b50505050565b6060612de8826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff1661213b9092919063ffffffff16565b9050600081511115612e7057808060200190516020811015612e0957600080fd5b8101908080519060200190929190505050612e6f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806132c0602a913960400191505060405180910390fd5b5b505050565b6060612e8085613146565b612ef2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b60208310612f425780518252602082019150602081019050602083039250612f1f565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114612fa4576040519150601f19603f3d011682016040523d82523d6000602084013e612fa9565b606091505b50915091508115612fbe578092505050613073565b600081511115612fd15780518082602001fd5b836040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561303857808201518184015260208101905061301d565b50505050905090810190601f1680156130655780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b949350505050565b60008083118290613127576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156130ec5780820151818401526020810190506130d1565b50505050905090810190601f1680156131195780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161313357fe5b049050809150509392505050565b505050565b600080823b90506000811191505091905056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573735361666545524332303a204552433230206f7065726174696f6e20646964206e6f7420737563636565645361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f20746f206e6f6e2d7a65726f20616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122065067dcf1b069b07bac81df7929127b89ca126ccdf6eb9f5d38fd21dd259cb6264736f6c634300060b00335361666545524332303a204552433230206f7065726174696f6e20646964206e6f7420737563636565645361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f20746f206e6f6e2d7a65726f20616c6c6f77616e6365

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101725760003560e01c806370a08231116100de578063a457c2d711610097578063cd3daf9d11610071578063cd3daf9d146106c9578063dd62ed3e146106e7578063e9fad8ee1461075f578063f2fde38b1461076957610172565b8063a457c2d7146105cf578063a694fc3a14610635578063a9059cbb1461066357610172565b806370a0823114610478578063715018a6146104d0578063718dceb9146104da5780638da5cb5b146104f857806395d89b4114610542578063a086d50a146105c557610172565b806323b872dd1161013057806323b872dd146103125780632aeaa291146103985780632e1a7d4d146103b6578063313ce567146103e457806339509351146104085780633d18b9121461046e57610172565b80628cc2621461017757806306fdde03146101cf578063095ea7b31461025257806318160ddd146102b85780631be05289146102d657806323499c07146102f4575b600080fd5b6101b96004803603602081101561018d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506107ad565b6040518082815260200191505060405180910390f35b6101d7610a78565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102175780820151818401526020810190506101fc565b50505050905090810190601f1680156102445780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61029e6004803603604081101561026857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610b1a565b604051808215151515815260200191505060405180910390f35b6102c0610b38565b6040518082815260200191505060405180910390f35b6102de610b42565b6040518082815260200191505060405180910390f35b6102fc610b49565b6040518082815260200191505060405180910390f35b61037e6004803603606081101561032857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610b4f565b604051808215151515815260200191505060405180910390f35b6103a0610c28565b6040518082815260200191505060405180910390f35b6103e2600480360360208110156103cc57600080fd5b8101908080359060200190929190505050610d1f565b005b6103ec610f2b565b604051808260ff1660ff16815260200191505060405180910390f35b6104546004803603604081101561041e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f42565b604051808215151515815260200191505060405180910390f35b610476610ff5565b005b6104ba6004803603602081101561048e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506110ef565b6040518082815260200191505060405180910390f35b6104d8611137565b005b6104e26112c2565b6040518082815260200191505060405180910390f35b6105006112c8565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61054a6112f2565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561058a57808201518184015260208101905061056f565b50505050905090810190601f1680156105b75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6105cd611394565b005b61061b600480360360408110156105e557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506116c7565b604051808215151515815260200191505060405180910390f35b6106616004803603602081101561064b57600080fd5b8101908080359060200190929190505050611794565b005b6106af6004803603604081101561067957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611993565b604051808215151515815260200191505060405180910390f35b6106d16119b1565b6040518082815260200191505060405180910390f35b610749600480360360408110156106fd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611a07565b6040518082815260200191505060405180910390f35b610767611a8e565b005b6107ab6004803603602081101561077f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611c9c565b005b600080600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000808214610878576000610824611680610816854361215390919063ffffffff16565b61219d90919063ffffffff16565b9050610874670de0b6b3a764000061086661083d6119b1565b6108588561084a8b6110ef565b6121e790919063ffffffff16565b6121e790919063ffffffff16565b61219d90919063ffffffff16565b9150505b6108ca600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205482611eac90919063ffffffff16565b905080739c5e7329f4fb3c9e4ea567987151aa09d8212bb373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561095e57600080fd5b505afa158015610972573d6000803e3d6000fd5b505050506040513d602081101561098857600080fd5b81019080805190602001909291905050501015610a6e57739c5e7329f4fb3c9e4ea567987151aa09d8212bb373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015610a3057600080fd5b505afa158015610a44573d6000803e3d6000fd5b505050506040513d6020811015610a5a57600080fd5b810190808051906020019092919050505090505b8092505050919050565b606060038054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610b105780601f10610ae557610100808354040283529160200191610b10565b820191906000526020600020905b815481529060010190602001808311610af357829003601f168201915b5050505050905090565b6000610b2e610b2761226d565b8484612275565b6001905092915050565b6000600254905090565b6202a30081565b600b5481565b6000610b5c84848461246c565b610c1d84610b6861226d565b610c188560405180606001604052806028815260200161322e60289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610bce61226d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461272d9092919063ffffffff16565b612275565b600190509392505050565b60008073028171bca77440897b824ca71d1c56cac55b68a373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015610cbc57600080fd5b505afa158015610cd0573d6000803e3d6000fd5b505050506040513d6020811015610ce657600080fd5b810190808051906020019092919050505090506000610d03610b38565b9050610d18818361215390919063ffffffff16565b9250505090565b6003600c5414610d3257610d316127ed565b5b6000339050610d40816107ad565b600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081610d8d826110ef565b1415610ddd576000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610e22565b43600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b737d2768de32b0b80b7a3454c06bdac94a69ddc7a973ffffffffffffffffffffffffffffffffffffffff166369328dec736b175474e89094c44da98b954eedeac495271d0f84846040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018381526020018273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019350505050600060405180830381600087803b158015610f0557600080fd5b505af1158015610f19573d6000803e3d6000fd5b50505050610f278183612856565b5050565b6000600560009054906101000a900460ff16905090565b6000610feb610f4f61226d565b84610fe68560016000610f6061226d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611eac90919063ffffffff16565b612275565b6001905092915050565b6003600c5414611008576110076127ed565b5b60003390506000611018826107ad565b9050600081146110eb5743600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506110a58282739c5e7329f4fb3c9e4ea567987151aa09d8212bb373ffffffffffffffffffffffffffffffffffffffff16612a1a9092919063ffffffff16565b6000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61113f61226d565b73ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611201576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b61168081565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561138a5780601f1061135f5761010080835404028352916020019161138a565b820191906000526020600020905b81548152906001019060200180831161136d57829003601f168201915b5050505050905090565b61139c61226d565b73ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461145e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073028171bca77440897b824ca71d1c56cac55b68a373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156114f157600080fd5b505afa158015611505573d6000803e3d6000fd5b505050506040513d602081101561151b57600080fd5b810190808051906020019092919050505090506000611538610b38565b9050600061154f828461215390919063ffffffff16565b9050600081116115c7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600c8152602001807f7a65726f2072657761726473000000000000000000000000000000000000000081525060200191505060405180910390fd5b737d2768de32b0b80b7a3454c06bdac94a69ddc7a973ffffffffffffffffffffffffffffffffffffffff166369328dec736b175474e89094c44da98b954eedeac495271d0f83336040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018381526020018273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019350505050600060405180830381600087803b1580156116aa57600080fd5b505af11580156116be573d6000803e3d6000fd5b50505050505050565b600061178a6116d461226d565b846117858560405180606001604052806025815260200161332060259139600160006116fe61226d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461272d9092919063ffffffff16565b612275565b6001905092915050565b6003600c54146117a7576117a66127ed565b5b60003390506117b5816107ad565b600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555043600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506118468183612ad2565b611887813084736b175474e89094c44da98b954eedeac495271d0f73ffffffffffffffffffffffffffffffffffffffff16612c99909392919063ffffffff16565b737d2768de32b0b80b7a3454c06bdac94a69ddc7a973ffffffffffffffffffffffffffffffffffffffff1663e8eda9df736b175474e89094c44da98b954eedeac495271d0f843060586040518563ffffffff1660e01b8152600401808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018481526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018261ffff168152602001945050505050600060405180830381600087803b15801561197757600080fd5b505af115801561198b573d6000803e3d6000fd5b505050505050565b60006119a76119a061226d565b848461246c565b6001905092915050565b6000806119bc610b38565b14156119cb5760009050611a04565b611a016119d6610b38565b6119f3670de0b6b3a7640000600a546121e790919063ffffffff16565b61219d90919063ffffffff16565b90505b90565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6003600c5414611aa157611aa06127ed565b5b60003390506000611ab1826110ef565b90506000611abe836107ad565b9050737d2768de32b0b80b7a3454c06bdac94a69ddc7a973ffffffffffffffffffffffffffffffffffffffff166369328dec736b175474e89094c44da98b954eedeac495271d0f84866040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018381526020018273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019350505050600060405180830381600087803b158015611ba357600080fd5b505af1158015611bb7573d6000803e3d6000fd5b50505050611bc58383612856565b6000600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060008114611c9757611c518382739c5e7329f4fb3c9e4ea567987151aa09d8212bb373ffffffffffffffffffffffffffffffffffffffff16612a1a9092919063ffffffff16565b6000600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b611ca461226d565b73ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611d66576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611dec576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061319f6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080828401905083811015611f2a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600081148061202e575060008373ffffffffffffffffffffffffffffffffffffffff1663dd62ed3e30856040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019250505060206040518083038186803b158015611ff157600080fd5b505afa158015612005573d6000803e3d6000fd5b505050506040513d602081101561201b57600080fd5b8101908080519060200190929190505050145b612083576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260368152602001806132ea6036913960400191505060405180910390fd5b6121368363095ea7b360e01b8484604051602401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050612d86565b505050565b606061214a8484600085612e75565b90509392505050565b600061219583836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061272d565b905092915050565b60006121df83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061307b565b905092915050565b6000808314156121fa5760009050612267565b600082840290508284828161220b57fe5b0414612262576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061320d6021913960400191505060405180910390fd5b809150505b92915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156122fb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061329c6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612381576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806131c56022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156124f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806132776025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612578576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602381526020018061315a6023913960400191505060405180910390fd5b612583838383613141565b6125ee816040518060600160405280602681526020016131e7602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461272d9092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612681816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611eac90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b60008383111582906127da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561279f578082015181840152602081019050612784565b50505050905090810190601f1680156127cc5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600b5443106128545761280c6202a30043611eac90919063ffffffff16565b600b8190555061283b606461282d6032600a546121e790919063ffffffff16565b61219d90919063ffffffff16565b600a81905550600c600081548092919060010191905055505b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806132566021913960400191505060405180910390fd5b6128e882600083613141565b6129538160405180606001604052806022815260200161317d602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461272d9092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506129aa8160025461215390919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b612acd8363a9059cbb60e01b8484604051602401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050612d86565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b75576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b612b8160008383613141565b612b9681600254611eac90919063ffffffff16565b600281905550612bed816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611eac90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b612d80846323b872dd60e01b858585604051602401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050612d86565b50505050565b6060612de8826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff1661213b9092919063ffffffff16565b9050600081511115612e7057808060200190516020811015612e0957600080fd5b8101908080519060200190929190505050612e6f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806132c0602a913960400191505060405180910390fd5b5b505050565b6060612e8085613146565b612ef2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b60208310612f425780518252602082019150602081019050602083039250612f1f565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114612fa4576040519150601f19603f3d011682016040523d82523d6000602084013e612fa9565b606091505b50915091508115612fbe578092505050613073565b600081511115612fd15780518082602001fd5b836040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561303857808201518184015260208101905061301d565b50505050905090810190601f1680156130655780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b949350505050565b60008083118290613127576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156130ec5780820151818401526020810190506130d1565b50505050905090810190601f1680156131195780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161313357fe5b049050809150509392505050565b505050565b600080823b90506000811191505091905056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573735361666545524332303a204552433230206f7065726174696f6e20646964206e6f7420737563636565645361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f20746f206e6f6e2d7a65726f20616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122065067dcf1b069b07bac81df7929127b89ca126ccdf6eb9f5d38fd21dd259cb6264736f6c634300060b0033

Deployed Bytecode Sourcemap

34580:4389:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36663:573;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;5805:85;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7917:169;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;6886:100;;;:::i;:::-;;;;;;;;;;;;;;;;;;;35030:41;;;:::i;:::-;;;;;;;;;;;;;;;;;;;35099:27;;;:::i;:::-;;;;;;;;;;;;;;;;;;;8560:321;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;38403:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;36261:396;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;6736:85;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;9290:218;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;37675:319;;;:::i;:::-;;7049:119;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;18901:148;;;:::i;:::-;;34966:37;;;:::i;:::-;;;;;;;;;;;;;;;;;;;18259:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;6009:89;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38635:329;;;:::i;:::-;;10011:269;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;35890:365;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;7381:175;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;38002:180;;;:::i;:::-;;;;;;;;;;;;;;;;;;;7619:151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;37244:425;;;:::i;:::-;;19204:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;36663:573;36717:7;36733:27;36763:12;:21;36776:7;36763:21;;;;;;;;;;;;;;;;36733:51;;36791:20;36845:1;36822:19;:24;36818:214;;36857:14;36889:49;34999:4;36889:37;36906:19;36889:12;:16;;:37;;;;:::i;:::-;:41;;:49;;;;:::i;:::-;36880:58;;36962:62;37019:4;36962:52;36997:16;:14;:16::i;:::-;36962:30;36985:6;36962:18;36972:7;36962:9;:18::i;:::-;:22;;:30;;;;:::i;:::-;:34;;:52;;;;:::i;:::-;:56;;:62;;;;:::i;:::-;36947:77;;36818:214;;37053:34;37070:7;:16;37078:7;37070:16;;;;;;;;;;;;;;;;37053:12;:16;;:34;;;;:::i;:::-;37038:49;;37130:12;35177:42;37098:14;;;37121:4;37098:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:44;37094:111;;;35177:42;37168:14;;;37191:4;37168:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37153:44;;37094:111;37218:12;37211:19;;;;36663:573;;;:::o;5805:85::-;5844:13;5877:5;5870:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5805:85;:::o;7917:169::-;8000:4;8017:39;8026:12;:10;:12::i;:::-;8040:7;8049:6;8017:8;:39::i;:::-;8074:4;8067:11;;7917:169;;;;:::o;6886:100::-;6939:7;6966:12;;6959:19;;6886:100;:::o;35030:41::-;35065:6;35030:41;:::o;35099:27::-;;;;:::o;8560:321::-;8666:4;8683:36;8693:6;8701:9;8712:6;8683:9;:36::i;:::-;8730:121;8739:6;8747:12;:10;:12::i;:::-;8761:89;8799:6;8761:89;;;;;;;;;;;;;;;;;:11;:19;8773:6;8761:19;;;;;;;;;;;;;;;:33;8781:12;:10;:12::i;:::-;8761:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;8730:8;:121::i;:::-;8869:4;8862:11;;8560:321;;;;;:::o;38403:224::-;38450:7;38468:19;35633:42;38490:22;;;38521:4;38490:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38468:59;;38536:22;38561:13;:11;:13::i;:::-;38536:38;;38590:31;38606:14;38590:11;:15;;:31;;;;:::i;:::-;38583:38;;;;38403:224;:::o;36261:396::-;36331:1;36315:12;;:17;36311:54;;36343:14;:12;:14::i;:::-;36311:54;36371:14;36388:10;36371:27;;36423:14;36430:6;36423;:14::i;:::-;36405:7;:15;36413:6;36405:15;;;;;;;;;;;;;;;:32;;;;36469:6;36448:17;36458:6;36448:9;:17::i;:::-;:27;36444:132;;;36509:1;36486:12;:20;36499:6;36486:20;;;;;;;;;;;;;;;:24;;;;36444:132;;;36556:12;36533;:20;36546:6;36533:20;;;;;;;;;;;;;;;:35;;;;36444:132;35482:42;36582:13;;;35297:42;36608:6;36616;36582:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36630:21;36636:6;36644;36630:5;:21::i;:::-;36261:396;;:::o;6736:85::-;6779:5;6804:9;;;;;;;;;;;6797:16;;6736:85;:::o;9290:218::-;9378:4;9395:83;9404:12;:10;:12::i;:::-;9418:7;9427:50;9466:10;9427:11;:25;9439:12;:10;:12::i;:::-;9427:25;;;;;;;;;;;;;;;:34;9453:7;9427:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;9395:8;:83::i;:::-;9496:4;9489:11;;9290:218;;;;:::o;37675:319::-;37732:1;37716:12;;:17;37712:54;;37744:14;:12;:14::i;:::-;37712:54;37772:14;37789:10;37772:27;;37806:14;37823;37830:6;37823;:14::i;:::-;37806:31;;37858:1;37848:6;:11;37844:145;;37895:12;37872;:20;37885:6;37872:20;;;;;;;;;;;;;;;:35;;;;37918:33;37936:6;37944;35177:42;37918:17;;;;:33;;;;;:::i;:::-;37980:1;37962:7;:15;37970:6;37962:15;;;;;;;;;;;;;;;:19;;;;37844:145;37675:319;;:::o;7049:119::-;7115:7;7142:9;:18;7152:7;7142:18;;;;;;;;;;;;;;;;7135:25;;7049:119;;;:::o;18901:148::-;18481:12;:10;:12::i;:::-;18471:22;;:6;;;;;;;;;;;:22;;;18463:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19008:1:::1;18971:40;;18992:6;;;;;;;;;;;18971:40;;;;;;;;;;;;19039:1;19022:6;;:19;;;;;;;;;;;;;;;;;;18901:148::o:0;34966:37::-;34999:4;34966:37;:::o;18259:79::-;18297:7;18324:6;;;;;;;;;;;18317:13;;18259:79;:::o;6009:89::-;6050:13;6083:7;6076:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6009:89;:::o;38635:329::-;18481:12;:10;:12::i;:::-;18471:22;;:6;;;;;;;;;;;:22;;;18463:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38685:19:::1;35633:42;38707:22;;;38738:4;38707:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;38685:59;;38753:22;38778:13;:11;:13::i;:::-;38753:38;;38800:18;38821:31;38837:14;38821:11;:15;;:31;;;;:::i;:::-;38800:52;;38882:1;38869:10;:14;38861:39;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;35482:42;38909:13;;;35297:42;38935:10;38947;38909:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;18541:1;;;38635:329::o:0;10011:269::-;10104:4;10121:129;10130:12;:10;:12::i;:::-;10144:7;10153:96;10192:15;10153:96;;;;;;;;;;;;;;;;;:11;:25;10165:12;:10;:12::i;:::-;10153:25;;;;;;;;;;;;;;;:34;10179:7;10153:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;10121:8;:129::i;:::-;10268:4;10261:11;;10011:269;;;;:::o;35890:365::-;35957:1;35941:12;;:17;35937:54;;35969:14;:12;:14::i;:::-;35937:54;35997:14;36014:10;35997:27;;36049:14;36056:6;36049;:14::i;:::-;36031:7;:15;36039:6;36031:15;;;;;;;;;;;;;;;:32;;;;36093:12;36070;:20;36083:6;36070:20;;;;;;;;;;;;;;;:35;;;;36112:21;36118:6;36126;36112:5;:21::i;:::-;36140:51;36161:6;36177:4;36184:6;35297:42;36140:20;;;;:51;;;;;;:::i;:::-;35482:42;36198:12;;;35297:42;36223:6;36239:4;36246:2;36198:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35890:365;;:::o;7381:175::-;7467:4;7484:42;7494:12;:10;:12::i;:::-;7508:9;7519:6;7484:9;:42::i;:::-;7544:4;7537:11;;7381:175;;;;:::o;38002:180::-;38049:7;38086:1;38069:13;:11;:13::i;:::-;:18;38065:51;;;38107:1;38100:8;;;;38065:51;38138:38;38162:13;:11;:13::i;:::-;38138:19;38152:4;38138:9;;:13;;:19;;;;:::i;:::-;:23;;:38;;;;:::i;:::-;38122:54;;38002:180;;:::o;7619:151::-;7708:7;7735:11;:18;7747:5;7735:18;;;;;;;;;;;;;;;:27;7754:7;7735:27;;;;;;;;;;;;;;;;7728:34;;7619:151;;;;:::o;37244:425::-;37296:1;37280:12;;:17;37276:54;;37308:14;:12;:14::i;:::-;37276:54;37336:14;37353:10;37336:27;;37370:15;37388:17;37398:6;37388:9;:17::i;:::-;37370:35;;37412:14;37429;37436:6;37429;:14::i;:::-;37412:31;;35482:42;37450:13;;;35297:42;37476:7;37485:6;37450:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37499:22;37505:6;37513:7;37499:5;:22::i;:::-;37551:1;37528:12;:20;37541:6;37528:20;;;;;;;;;;;;;;;:24;;;;37579:1;37569:6;:11;37565:99;;37593:33;37611:6;37619;35177:42;37593:17;;;;:33;;;;;:::i;:::-;37655:1;37637:7;:15;37645:6;37637:15;;;;;;;;;;;;;;;:19;;;;37565:99;37244:425;;;:::o;19204:244::-;18481:12;:10;:12::i;:::-;18471:22;;:6;;;;;;;;;;;:22;;;18463:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19313:1:::1;19293:22;;:8;:22;;;;19285:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19403:8;19374:38;;19395:6;;;;;;;;;;;19374:38;;;;;;;;;;;;19432:8;19423:6;;:17;;;;;;;;;;;;;;;;;;19204:244:::0;:::o;20301:181::-;20359:7;20379:9;20395:1;20391;:5;20379:17;;20420:1;20415;:6;;20407:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20473:1;20466:8;;;20301:181;;;;:::o;31961:622::-;32340:1;32331:5;:10;32330:62;;;;32390:1;32347:5;:15;;;32371:4;32378:7;32347:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:44;32330:62;32322:152;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32485:90;32505:5;32535:22;;;32559:7;32568:5;32512:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32485:19;:90::i;:::-;31961:622;;;:::o;28372:196::-;28475:12;28507:53;28530:6;28538:4;28544:1;28547:12;28507:22;:53::i;:::-;28500:60;;28372:196;;;;;:::o;20765:136::-;20823:7;20850:43;20854:1;20857;20850:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;20843:50;;20765:136;;;;:::o;22602:132::-;22660:7;22687:39;22691:1;22694;22687:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;22680:46;;22602:132;;;;:::o;21655:471::-;21713:7;21963:1;21958;:6;21954:47;;;21988:1;21981:8;;;;21954:47;22013:9;22029:1;22025;:5;22013:17;;22058:1;22053;22049;:5;;;;;;:10;22041:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22117:1;22110:8;;;21655:471;;;;;:::o;3322:106::-;3375:15;3410:10;3403:17;;3322:106;:::o;13158:346::-;13277:1;13260:19;;:5;:19;;;;13252:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13358:1;13339:21;;:7;:21;;;;13331:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13442:6;13412:11;:18;13424:5;13412:18;;;;;;;;;;;;;;;:27;13431:7;13412:27;;;;;;;;;;;;;;;:36;;;;13480:7;13464:32;;13473:5;13464:32;;;13489:6;13464:32;;;;;;;;;;;;;;;;;;13158:346;;;:::o;10770:539::-;10894:1;10876:20;;:6;:20;;;;10868:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10978:1;10957:23;;:9;:23;;;;10949:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11033:47;11054:6;11062:9;11073:6;11033:20;:47::i;:::-;11113:71;11135:6;11113:71;;;;;;;;;;;;;;;;;:9;:17;11123:6;11113:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;11093:9;:17;11103:6;11093:17;;;;;;;;;;;;;;;:91;;;;11218:32;11243:6;11218:9;:20;11228:9;11218:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;11195:9;:20;11205:9;11195:20;;;;;;;;;;;;;;;:55;;;;11283:9;11266:35;;11275:6;11266:35;;;11294:6;11266:35;;;;;;;;;;;;;;;;;;10770:539;;;:::o;21204:192::-;21290:7;21323:1;21318;:6;;21326:12;21310:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21350:9;21366:1;21362;:5;21350:17;;21387:1;21380:8;;;21204:192;;;;;:::o;38188:207::-;38248:12;;38232;:28;38228:162;;38286:26;35065:6;38286:12;:16;;:26;;;;:::i;:::-;38271:12;:41;;;;38333:26;38355:3;38333:17;38347:2;38333:9;;:13;;:17;;;;:::i;:::-;:21;;:26;;;;:::i;:::-;38321:9;:38;;;;38368:12;;:14;;;;;;;;;;;;;38228:162;38188:207::o;12300:418::-;12403:1;12384:21;;:7;:21;;;;12376:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12456:49;12477:7;12494:1;12498:6;12456:20;:49::i;:::-;12539:68;12562:6;12539:68;;;;;;;;;;;;;;;;;:9;:18;12549:7;12539:18;;;;;;;;;;;;;;;;:22;;:68;;;;;:::i;:::-;12518:9;:18;12528:7;12518:18;;;;;;;;;;;;;;;:89;;;;12633:24;12650:6;12633:12;;:16;;:24;;;;:::i;:::-;12618:12;:39;;;;12699:1;12673:37;;12682:7;12673:37;;;12703:6;12673:37;;;;;;;;;;;;;;;;;;12300:418;;:::o;31302:177::-;31385:86;31405:5;31435:23;;;31460:2;31464:5;31412:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31385:19;:86::i;:::-;31302:177;;;:::o;11590:378::-;11693:1;11674:21;;:7;:21;;;;11666:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11744:49;11773:1;11777:7;11786:6;11744:20;:49::i;:::-;11821:24;11838:6;11821:12;;:16;;:24;;;;:::i;:::-;11806:12;:39;;;;11877:30;11900:6;11877:9;:18;11887:7;11877:18;;;;;;;;;;;;;;;;:22;;:30;;;;:::i;:::-;11856:9;:18;11866:7;11856:18;;;;;;;;;;;;;;;:51;;;;11944:7;11923:37;;11940:1;11923:37;;;11953:6;11923:37;;;;;;;;;;;;;;;;;;11590:378;;:::o;31487:205::-;31588:96;31608:5;31638:27;;;31667:4;31673:2;31677:5;31615:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31588:19;:96::i;:::-;31487:205;;;;:::o;33607:761::-;34031:23;34057:69;34085:4;34057:69;;;;;;;;;;;;;;;;;34065:5;34057:27;;;;:69;;;;;:::i;:::-;34031:95;;34161:1;34141:10;:17;:21;34137:224;;;34283:10;34272:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34264:85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34137:224;33607:761;;;:::o;29749:979::-;29879:12;29912:18;29923:6;29912:10;:18::i;:::-;29904:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30038:12;30052:23;30079:6;:11;;30099:8;30110:4;30079:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30037:78;;;;30130:7;30126:595;;;30161:10;30154:17;;;;;;30126:595;30295:1;30275:10;:17;:21;30271:439;;;30538:10;30532:17;30599:15;30586:10;30582:2;30578:19;30571:44;30486:148;30681:12;30674:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29749:979;;;;;;;:::o;23230:278::-;23316:7;23348:1;23344;:5;23351:12;23336:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23375:9;23391:1;23387;:5;;;;;;23375:17;;23499:1;23492:8;;;23230:278;;;;;:::o;14529:92::-;;;;:::o;25454:422::-;25514:4;25722:12;25833:7;25821:20;25813:28;;25867:1;25860:4;:8;25853:15;;;25454:422;;;:::o

Swarm Source

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