ETH Price: $3,073.04 (+2.51%)
Gas: 3 Gwei

Token

ERC20 ***
 

Overview

Max Total Supply

8.188248455306409668 ERC20 ***

Holders

2

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
3.378502092846993073 ERC20 ***

Value
$0.00
0x8164199d893249f5ddf78a7161d5e521ba8e958e
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:
tPoolDAI

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

pragma solidity 0.6.12;


// SPDX-License-Identifier: MIT
//
// TCORE-DAI vault v1 smart contract
// https://tornado.finance
// https://t.me/tornadofinance
//
//-._    _.--'"`'--._    _.--'"`'--._    _.--'"`'--._    _   
//    '-:`.'|`|"':-.  '-:`.'|`|"':-.  '-:`.'|`|"':-.  '.` : '.   
//  '. T'.  | |  | |'. C'.  | |  | |'. O'.  | |  | |'. R'.:   '. E'.
//  : '.  '.| |  | |  '.  '.| |  | |  '.  '.| |  | |  '.  '.  : '.D `.
//  '   '.  `.:_ | :_.' '.v `.:_ | :_.' '.1 `.:_ | :_.' '.  `.'   `.A `.
//         `-..,..-'       `-..,..-'       `-..,..-'       `         `I `.
//

/**
 * @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 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) {
        // According to EIP-1052, 0x0 is the value returned for not-yet created accounts
        // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
        // for accounts without code, i.e. `keccak256('')`
        bytes32 codehash;
        bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
        // solhint-disable-next-line no-inline-assembly
        assembly { codehash := extcodehash(account) }
        return (codehash != accountHash && codehash != 0x0);
    }

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

/*
 * @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) public {
        _name = name;
        _symbol = symbol;
        _decimals = 18;
    }

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public 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() public 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 { }
}

interface IController {
    function vaults(address) external view returns (address);
    function rewards() external view returns (address);
    function want(address) external view returns (address); // NOTE: Only StrategyControllerV2 implements this
    function balanceOf(address) external view returns (uint);
    function withdraw(address, uint) external;
    function earn(address, uint) external;
}

interface OneSplitAudit {
    function swap(
        address fromToken,
        address destToken,
        uint256 amount,
        uint256 minReturn,
        uint256[] calldata distribution,
        uint256 flags
    )
        external
        payable
        returns(uint256 returnAmount);

    function getExpectedReturn(
        address fromToken,
        address destToken,
        uint256 amount,
        uint256 parts,
        uint256 flags // See constants in IOneSplit.sol
    )
        external
        view
        returns(
            uint256 returnAmount,
            uint256[] memory distribution
        );
}

contract tPoolDAI is ERC20 {
    using SafeERC20 for IERC20;
    using Address for address;
    using SafeMath for uint256;

    IERC20 public token = IERC20(0x6B175474E89094C44Da98b954EedeAC495271d0F); // DAI
    IERC20 public TCORE = IERC20(0x7A3D5d49D64E57DBd6FBB21dF7202bD3EE7A2253);
    address public onesplit = address(0x50FDA034C0Ce7a8f7EFDAebDA7Aa7cA21CC1267e);
    uint public onesplitParts = 1;

    uint public onesplitSlippageMin = 500; // 5% default
    uint public constant onesplitSlippageMax = 10000;

    uint public min = 9500;
    uint public constant max = 10000;

    uint public TCOREMin = 50; // 0.5% default
    uint public constant TCOREMax = 7000;

    bool public enableTCOREYield = true;

    address public governance;
    address public controller;

    constructor (address _controller)
        public ERC20(
          string(abi.encodePacked("TCORE ", ERC20(address(token)).name())),
          string(abi.encodePacked("t", ERC20(address(token)).symbol()))
        )
    {
        _setupDecimals(ERC20(address(token)).decimals());
        governance = msg.sender;
        controller = _controller;
    }

    // Total balance of token in both vault and corresponding strategy
    function balance() public view returns (uint) {
        return token.balanceOf(address(this))
                .add(IController(controller).balanceOf(address(token)));
    }

    function setMin(uint _min) external {
        require(msg.sender == governance, "!governance");
        min = _min;
    }

    function setTCOREBuyMin(uint _TCOREMin) external {
        require(msg.sender == governance, "!governance");
        TCOREMin = _TCOREMin;
    }

    function setOneSplitSlippageMin(uint _onesplitSlippageMin) external {
        require(msg.sender == governance, "!governance");
        onesplitSlippageMin = _onesplitSlippageMin;
    }

    function setOneSplit(address _onesplit) public {
        require(msg.sender == governance, "!governance");
        onesplit = _onesplit;
    }

    function setOneSplitParts(uint _onesplitParts) public {
        require(msg.sender == governance, "!governance");
        onesplitParts = _onesplitParts;
    }

    function setEnableTCOREYield(bool _status) public {
        require(msg.sender == governance, "!governance");
        enableTCOREYield = _status;
    }

    function setGovernance(address _governance) public {
        require(msg.sender == governance, "!governance");
        governance = _governance;
    }

    function setController(address _controller) public {
        require(msg.sender == governance, "!governance");
        controller = _controller;
    }

    // Custom logic in here for how much the vault allows to be borrowed
    // Sets minimum required on-hand to keep small withdrawals cheap
    function available() public view returns (uint) {
        return token.balanceOf(address(this)).mul(min).div(max);
    }

    // Called by Keeper to put deposited token into strategy
    function earn() public {
        uint _bal = available();
        token.safeTransfer(controller, _bal);
        IController(controller).earn(address(token), _bal);
    }

    function depositAll() external {
        deposit(token.balanceOf(msg.sender));
    }

    function deposit(uint _amount) public {
        uint _pool = balance();
        uint _before = token.balanceOf(address(this));
        token.safeTransferFrom(msg.sender, address(this), _amount);
        uint _after = token.balanceOf(address(this));
        _amount = _after.sub(_before); // Additional check for deflationary tokens
        uint shares = 0;
        if (totalSupply() == 0) {
            shares = _amount;
        } else {
            shares = (_amount.mul(totalSupply())).div(_pool);
        }
        _mint(msg.sender, shares);
    }

    function withdrawAll() external {
        withdraw(balanceOf(msg.sender));
    }

    // Used to swap any borrowed reserve over the debt limit to liquidate to 'token'
    function harvest(address reserve, uint amount) external {
        require(msg.sender == controller, "!controller");
        require(reserve != address(token), "token");
        IERC20(reserve).safeTransfer(controller, amount);
    }

    // No rebalance implementation for lower fees and faster swaps
    function withdraw(uint _shares) public {
        uint r = (balance().mul(_shares)).div(totalSupply());
        _burn(msg.sender, _shares);

        // Check balance
        uint b = token.balanceOf(address(this));
        if (b < r) {
            uint _withdraw = r.sub(b);
            IController(controller).withdraw(address(token), _withdraw);
            uint _after = token.balanceOf(address(this));
            uint _diff = _after.sub(b);
            if (_diff < _withdraw) {
                r = b.add(_diff);
            }
        }

        if (!enableTCOREYield) {
          token.safeTransfer(msg.sender, r);
        } else {
          uint tokenToBuyTCORE = r.mul(TCOREMin).div(TCOREMax);
          r = r.sub(tokenToBuyTCORE);
          token.safeTransfer(msg.sender, r);

          if (tokenToBuyTCORE > 0) {
              uint _before = IERC20(TCORE).balanceOf(address(this));
              token.safeApprove(onesplit, 0);
              token.safeApprove(onesplit, tokenToBuyTCORE);
              uint[] memory _distribution;
              uint _expected;
              (_expected, _distribution) = OneSplitAudit(onesplit).getExpectedReturn(address(token), address(TCORE), tokenToBuyTCORE, onesplitParts, 0);
              uint _expectedAfterSlippage = _expected.sub(_expected.mul(onesplitSlippageMin).div(onesplitSlippageMax));
              OneSplitAudit(onesplit).swap(address(token), address(TCORE), tokenToBuyTCORE, _expectedAfterSlippage, _distribution, 0);
              uint _after = IERC20(TCORE).balanceOf(address(this));
              if (_after > _before) {
                  uint _diff = _after.sub(_before);
                  TCORE.safeTransfer(msg.sender, _diff);
              }
          }
        }
    }

    // Shouldn't have any dangling TCORE balance in the pool
    function withdrawTCOREInCaseStuck() public {
        require(msg.sender == governance, "!governance");
        uint _amount = TCORE.balanceOf(address(this));
        TCORE.safeTransfer(msg.sender, _amount);
    }

    function getPricePerFullShare() public view returns (uint) {
        return balance().mul(1e18).div(totalSupply());
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_controller","type":"address"}],"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":"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":"TCORE","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TCOREMax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TCOREMin","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":[],"name":"available","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"balance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"controller","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"depositAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"earn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTCOREYield","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPricePerFullShare","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"governance","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"reserve","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"harvest","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"max","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"min","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onesplit","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onesplitParts","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onesplitSlippageMax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onesplitSlippageMin","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_controller","type":"address"}],"name":"setController","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"setEnableTCOREYield","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_governance","type":"address"}],"name":"setGovernance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_min","type":"uint256"}],"name":"setMin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_onesplit","type":"address"}],"name":"setOneSplit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_onesplitParts","type":"uint256"}],"name":"setOneSplitParts","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_onesplitSlippageMin","type":"uint256"}],"name":"setOneSplitSlippageMin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_TCOREMin","type":"uint256"}],"name":"setTCOREBuyMin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"token","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"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":"uint256","name":"_shares","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawTCOREInCaseStuck","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260058054746b175474e89094c44da98b954eedeac495271d0f00610100600160a81b0319909116179055600680546001600160a01b0319908116737a3d5d49d64e57dbd6fbb21df7202bd3ee7a225317909155600780549091167350fda034c0ce7a8f7efdaebda7aa7ca21cc1267e179055600160088190556101f460095561251c600a556032600b55600c805460ff19169091179055348015620000a857600080fd5b5060405162002bf738038062002bf783398181016040526020811015620000ce57600080fd5b5051600554604080516306fdde0360e01b815290516101009092046001600160a01b0316916306fdde0391600480820192600092909190829003018186803b1580156200011a57600080fd5b505afa1580156200012f573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405260208110156200015957600080fd5b81019080805160405193929190846401000000008211156200017a57600080fd5b9083019060208201858111156200019057600080fd5b8251640100000000811182820188101715620001ab57600080fd5b82525081516020918201929091019080838360005b83811015620001da578181015183820152602001620001c0565b50505050905090810190601f168015620002085780820380516001836020036101000a031916815260200191505b5060405250505060405160200180806502a21a7a922960d51b81525060060182805190602001908083835b60208310620002545780518252601f19909201916020918201910162000233565b6001836020036101000a038019825116818451168082178552505050505050905001915050604051602081830303815290604052600560019054906101000a90046001600160a01b03166001600160a01b03166395d89b416040518163ffffffff1660e01b815260040160006040518083038186803b158015620002d757600080fd5b505afa158015620002ec573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405260208110156200031657600080fd5b81019080805160405193929190846401000000008211156200033757600080fd5b9083019060208201858111156200034d57600080fd5b82516401000000008111828201881017156200036857600080fd5b82525081516020918201929091019080838360005b83811015620003975781810151838201526020016200037d565b50505050905090810190601f168015620003c55780820380516001836020036101000a031916815260200191505b506040525050506040516020018080601d60fa1b81525060010182805190602001908083835b602083106200040c5780518252601f199092019160209182019101620003eb565b6001836020036101000a03801982511681845116808217855250505050505090500191505060405160208183030381529060405281600390805190602001906200045892919062000555565b5080516200046e90600490602084019062000555565b505060058054601260ff1990911617908190556040805163313ce56760e01b815290516200050293506101009092046001600160a01b03169163313ce56791600480820192602092909190829003018186803b158015620004ce57600080fd5b505afa158015620004e3573d6000803e3d6000fd5b505050506040513d6020811015620004fa57600080fd5b50516200053f565b600c8054610100600160a81b0319163361010002179055600d80546001600160a01b0319166001600160a01b0392909216919091179055620005f1565b6005805460ff191660ff92909216919091179055565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200059857805160ff1916838001178555620005c8565b82800160010185558215620005c8579182015b82811115620005c8578251825591602001919060010190620005ab565b50620005d6929150620005da565b5090565b5b80821115620005d65760008155600101620005db565b6125f680620006016000396000f3fe608060405234801561001057600080fd5b506004361061025e5760003560e01c80638fc8a01111610146578063b6b55f25116100c3578063f712adbb11610087578063f712adbb1461065f578063f77c479114610667578063f88979451461066f578063f9eecd5914610677578063fc0c546a1461067f578063ff4a1704146106875761025e565b8063b6b55f25146105e7578063cae6751014610604578063d389800f14610621578063dd62ed3e14610629578063de5f6268146106575761025e565b806395d89b411161010a57806395d89b4114610559578063a457c2d714610561578063a9059cbb1461058d578063ab033ea9146105b9578063b69ef8a8146105df5761025e565b80638fc8a0111461050657806392aa06bc1461050e57806392eefe9b1461052b5780639452fca41461055157806394a13ae4146104755761025e565b806348a0d754116101df57806377c7b8fc116101a357806377c7b8fc146104a3578063829561f3146104ab578063832e3ec2146104c8578063853828b6146104d05780638da1df4d146104d85780638ed06823146104fe5761025e565b806348a0d7541461042a5780634e60fe78146104325780635aa6e675146104515780636ac5db191461047557806370a082311461047d5761025e565b806323b872dd1161022657806323b872dd146103705780632e1a7d4d146103a6578063313ce567146103c357806339509351146103e157806345dc3dd81461040d5761025e565b8063018ee9b71461026357806306fdde03146102915780630805cf071461030e578063095ea7b31461031657806318160ddd14610356575b600080fd5b61028f6004803603604081101561027957600080fd5b506001600160a01b03813516906020013561068f565b005b61029961074a565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102d35781810151838201526020016102bb565b50505050905090810190601f1680156103005780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61028f6107e0565b6103426004803603604081101561032c57600080fd5b506001600160a01b0381351690602001356108c6565b604080519115158252519081900360200190f35b61035e6108e4565b60408051918252519081900360200190f35b6103426004803603606081101561038657600080fd5b506001600160a01b038135811691602081013590911690604001356108ea565b61028f600480360360208110156103bc57600080fd5b5035610971565b6103cb610fb6565b6040805160ff9092168252519081900360200190f35b610342600480360360408110156103f757600080fd5b506001600160a01b038135169060200135610fbf565b61028f6004803603602081101561042357600080fd5b503561100d565b61035e611064565b61028f6004803603602081101561044857600080fd5b5035151561110b565b610459611170565b604080516001600160a01b039092168252519081900360200190f35b61035e611184565b61035e6004803603602081101561049357600080fd5b50356001600160a01b031661118a565b61035e6111a5565b61028f600480360360208110156104c157600080fd5b50356111c6565b61035e61121d565b61028f611223565b61028f600480360360208110156104ee57600080fd5b50356001600160a01b0316611236565b6104596112aa565b61035e6112b9565b61028f6004803603602081101561052457600080fd5b50356112bf565b61028f6004803603602081101561054157600080fd5b50356001600160a01b0316611316565b61035e61138a565b610299611390565b6103426004803603604081101561057757600080fd5b506001600160a01b0381351690602001356113f1565b610342600480360360408110156105a357600080fd5b506001600160a01b038135169060200135611459565b61028f600480360360208110156105cf57600080fd5b50356001600160a01b031661146d565b61035e6114e7565b61028f600480360360208110156105fd57600080fd5b50356115ed565b61028f6004803603602081101561061a57600080fd5b5035611772565b61028f6117c9565b61035e6004803603604081101561063f57600080fd5b506001600160a01b0381358116916020013516611869565b61028f611894565b610459611916565b610459611925565b61035e611934565b61035e61193a565b610459611940565b610342611954565b600d546001600160a01b031633146106dc576040805162461bcd60e51b815260206004820152600b60248201526a10b1b7b73a3937b63632b960a91b604482015290519081900360640190fd5b6005546001600160a01b0383811661010090920416141561072c576040805162461bcd60e51b81526020600482015260056024820152643a37b5b2b760d91b604482015290519081900360640190fd5b600d54610746906001600160a01b0384811691168361195d565b5050565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107d65780601f106107ab576101008083540402835291602001916107d6565b820191906000526020600020905b8154815290600101906020018083116107b957829003601f168201915b5050505050905090565b600c5461010090046001600160a01b03163314610832576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b600654604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b15801561087d57600080fd5b505afa158015610891573d6000803e3d6000fd5b505050506040513d60208110156108a757600080fd5b50516006549091506108c3906001600160a01b0316338361195d565b50565b60006108da6108d36119af565b84846119b3565b5060015b92915050565b60025490565b60006108f7848484611a9f565b610967846109036119af565b610962856040518060600160405280602881526020016124aa602891396001600160a01b038a166000908152600160205260408120906109416119af565b6001600160a01b031681526020810191909152604001600020549190611bfa565b6119b3565b5060019392505050565b600061099661097e6108e4565b6109908461098a6114e7565b90611c91565b90611cf1565b90506109a23383611d33565b600554604080516370a0823160e01b8152306004820152905160009261010090046001600160a01b0316916370a08231916024808301926020929190829003018186803b1580156109f257600080fd5b505afa158015610a06573d6000803e3d6000fd5b505050506040513d6020811015610a1c57600080fd5b5051905081811015610b51576000610a348383611e2f565b600d546005546040805163f3fef3a360e01b81526001600160a01b036101009093048316600482015260248101859052905193945091169163f3fef3a39160448082019260009290919082900301818387803b158015610a9357600080fd5b505af1158015610aa7573d6000803e3d6000fd5b5050600554604080516370a0823160e01b81523060048201529051600094506101009092046001600160a01b031692506370a08231916024808301926020929190829003018186803b158015610afc57600080fd5b505afa158015610b10573d6000803e3d6000fd5b505050506040513d6020811015610b2657600080fd5b505190506000610b368285611e2f565b905082811015610b4d57610b4a8482611e71565b94505b5050505b600c5460ff16610b7c57600554610b779061010090046001600160a01b0316338461195d565b610fb1565b6000610b99611b58610990600b5486611c9190919063ffffffff16565b9050610ba58382611e2f565b600554909350610bc49061010090046001600160a01b0316338561195d565b8015610faf57600654604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b158015610c1557600080fd5b505afa158015610c29573d6000803e3d6000fd5b505050506040513d6020811015610c3f57600080fd5b5051600754600554919250610c679161010090046001600160a01b0390811691166000611ecb565b600754600554610c89916001600160a01b036101009092048216911684611ecb565b6007546005546006546008546040805163085e2c5b60e01b81526001600160a01b03610100909504851660048201529284166024840152604483018790526064830191909152600060848301819052905160609491939091169163085e2c5b9160a48083019286929190829003018186803b158015610d0757600080fd5b505afa158015610d1b573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040908152811015610d4457600080fd5b815160208301805160405192949293830192919084640100000000821115610d6b57600080fd5b908301906020820185811115610d8057600080fd5b8251866020820283011164010000000082111715610d9d57600080fd5b82525081516020918201928201910280838360005b83811015610dca578181015183820152602001610db2565b5050505090500160405250505080935081925050506000610e06610dff61271061099060095486611c9190919063ffffffff16565b8390611e2f565b600754600554600654604051637153a8af60e11b81526001600160a01b0361010090930483166004820181815292841660248301819052604483018c905260648301879052600060a4840181905260c0608485019081528b5160c48601528b51989950959096169663e2a7515e96929591948d948a948d949093909160e4019060208681019102808383885b83811015610eaa578181015183820152602001610e92565b50505050905001975050505050505050602060405180830381600087803b158015610ed457600080fd5b505af1158015610ee8573d6000803e3d6000fd5b505050506040513d6020811015610efe57600080fd5b5050600654604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b158015610f4b57600080fd5b505afa158015610f5f573d6000803e3d6000fd5b505050506040513d6020811015610f7557600080fd5b5051905084811115610fa9576000610f8d8287611e2f565b600654909150610fa7906001600160a01b0316338361195d565b505b50505050505b505b505050565b60055460ff1690565b60006108da610fcc6119af565b846109628560016000610fdd6119af565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611e71565b600c5461010090046001600160a01b0316331461105f576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b600a55565b6000611106612710610990600a54600560019054906101000a90046001600160a01b03166001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b1580156110d457600080fd5b505afa1580156110e8573d6000803e3d6000fd5b505050506040513d60208110156110fe57600080fd5b505190611c91565b905090565b600c5461010090046001600160a01b0316331461115d576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b600c805460ff1916911515919091179055565b600c5461010090046001600160a01b031681565b61271081565b6001600160a01b031660009081526020819052604090205490565b60006111066111b26108e4565b610990670de0b6b3a764000061098a6114e7565b600c5461010090046001600160a01b03163314611218576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b600b55565b60095481565b61123461122f3361118a565b610971565b565b600c5461010090046001600160a01b03163314611288576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b600780546001600160a01b0319166001600160a01b0392909216919091179055565b6006546001600160a01b031681565b600b5481565b600c5461010090046001600160a01b03163314611311576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b600855565b600c5461010090046001600160a01b03163314611368576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b60085481565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107d65780601f106107ab576101008083540402835291602001916107d6565b60006108da6113fe6119af565b846109628560405180606001604052806025815260200161259c60259139600160006114286119af565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611bfa565b60006108da6114666119af565b8484611a9f565b600c5461010090046001600160a01b031633146114bf576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b600c80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b600d54600554604080516370a0823160e01b81526001600160a01b036101009093048316600482015290516000936111069316916370a08231916024808301926020929190829003018186803b15801561154057600080fd5b505afa158015611554573d6000803e3d6000fd5b505050506040513d602081101561156a57600080fd5b5051600554604080516370a0823160e01b815230600482015290516101009092046001600160a01b0316916370a0823191602480820192602092909190829003018186803b1580156115bb57600080fd5b505afa1580156115cf573d6000803e3d6000fd5b505050506040513d60208110156115e557600080fd5b505190611e71565b60006115f76114e7565b90506000600560019054906101000a90046001600160a01b03166001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b15801561165d57600080fd5b505afa158015611671573d6000803e3d6000fd5b505050506040513d602081101561168757600080fd5b50516005549091506116a99061010090046001600160a01b0316333086611fde565b600554604080516370a0823160e01b8152306004820152905160009261010090046001600160a01b0316916370a08231916024808301926020929190829003018186803b1580156116f957600080fd5b505afa15801561170d573d6000803e3d6000fd5b505050506040513d602081101561172357600080fd5b505190506117318183611e2f565b9350600061173d6108e4565b611748575083611761565b61175e846109906117576108e4565b8890611c91565b90505b61176b3382612038565b5050505050565b600c5461010090046001600160a01b031633146117c4576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b600955565b60006117d3611064565b600d546005549192506117f89161010090046001600160a01b0390811691168361195d565b600d546005546040805163b02bf4b960e01b81526101009092046001600160a01b03908116600484015260248301859052905192169163b02bf4b99160448082019260009290919082900301818387803b15801561185557600080fd5b505af115801561176b573d6000803e3d6000fd5b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b600554604080516370a0823160e01b815233600482015290516112349261010090046001600160a01b0316916370a08231916024808301926020929190829003018186803b1580156118e557600080fd5b505afa1580156118f9573d6000803e3d6000fd5b505050506040513d602081101561190f57600080fd5b50516115ed565b6007546001600160a01b031681565b600d546001600160a01b031681565b600a5481565b611b5881565b60055461010090046001600160a01b031681565b600c5460ff1681565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610fb1908490612128565b3390565b6001600160a01b0383166119f85760405162461bcd60e51b81526004018080602001828103825260248152602001806125186024913960400191505060405180910390fd5b6001600160a01b038216611a3d5760405162461bcd60e51b81526004018080602001828103825260228152602001806124416022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316611ae45760405162461bcd60e51b81526004018080602001828103825260258152602001806124f36025913960400191505060405180910390fd5b6001600160a01b038216611b295760405162461bcd60e51b81526004018080602001828103825260238152602001806123fc6023913960400191505060405180910390fd5b611b34838383610fb1565b611b7181604051806060016040528060268152602001612463602691396001600160a01b0386166000908152602081905260409020549190611bfa565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611ba09082611e71565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115611c895760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611c4e578181015183820152602001611c36565b50505050905090810190601f168015611c7b5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082611ca0575060006108de565b82820282848281611cad57fe5b0414611cea5760405162461bcd60e51b81526004018080602001828103825260218152602001806124896021913960400191505060405180910390fd5b9392505050565b6000611cea83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506121d9565b6001600160a01b038216611d785760405162461bcd60e51b81526004018080602001828103825260218152602001806124d26021913960400191505060405180910390fd5b611d8482600083610fb1565b611dc18160405180606001604052806022815260200161241f602291396001600160a01b0385166000908152602081905260409020549190611bfa565b6001600160a01b038316600090815260208190526040902055600254611de79082611e2f565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6000611cea83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611bfa565b600082820183811015611cea576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b801580611f51575060408051636eb1769f60e11b81523060048201526001600160a01b03848116602483015291519185169163dd62ed3e91604480820192602092909190829003018186803b158015611f2357600080fd5b505afa158015611f37573d6000803e3d6000fd5b505050506040513d6020811015611f4d57600080fd5b5051155b611f8c5760405162461bcd60e51b81526004018080602001828103825260368152602001806125666036913960400191505060405180910390fd5b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663095ea7b360e01b179052610fb1908490612128565b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b179052610faf908590612128565b6001600160a01b038216612093576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b61209f60008383610fb1565b6002546120ac9082611e71565b6002556001600160a01b0382166000908152602081905260409020546120d29082611e71565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b606061217d826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661223e9092919063ffffffff16565b805190915015610fb15780806020019051602081101561219c57600080fd5b5051610fb15760405162461bcd60e51b815260040180806020018281038252602a81526020018061253c602a913960400191505060405180910390fd5b600081836122285760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611c4e578181015183820152602001611c36565b50600083858161223457fe5b0495945050505050565b606061224d8484600085612255565b949350505050565b6060612260856123c2565b6122b1576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b602083106122f05780518252601f1990920191602091820191016122d1565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114612352576040519150601f19603f3d011682016040523d82523d6000602084013e612357565b606091505b5091509150811561236b57915061224d9050565b80511561237b5780518082602001fd5b60405162461bcd60e51b8152602060048201818152865160248401528651879391928392604401919085019080838360008315611c4e578181015183820152602001611c36565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47081811480159061224d57505015159291505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573735361666545524332303a204552433230206f7065726174696f6e20646964206e6f7420737563636565645361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f20746f206e6f6e2d7a65726f20616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212201d2ba7ece2110553c81269567ec4a7d48bfa59314148328b2ad2ca1f1a4e577d64736f6c634300060c0033000000000000000000000000575ad0e9d6debb4199168ca042e40810a477be37

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061025e5760003560e01c80638fc8a01111610146578063b6b55f25116100c3578063f712adbb11610087578063f712adbb1461065f578063f77c479114610667578063f88979451461066f578063f9eecd5914610677578063fc0c546a1461067f578063ff4a1704146106875761025e565b8063b6b55f25146105e7578063cae6751014610604578063d389800f14610621578063dd62ed3e14610629578063de5f6268146106575761025e565b806395d89b411161010a57806395d89b4114610559578063a457c2d714610561578063a9059cbb1461058d578063ab033ea9146105b9578063b69ef8a8146105df5761025e565b80638fc8a0111461050657806392aa06bc1461050e57806392eefe9b1461052b5780639452fca41461055157806394a13ae4146104755761025e565b806348a0d754116101df57806377c7b8fc116101a357806377c7b8fc146104a3578063829561f3146104ab578063832e3ec2146104c8578063853828b6146104d05780638da1df4d146104d85780638ed06823146104fe5761025e565b806348a0d7541461042a5780634e60fe78146104325780635aa6e675146104515780636ac5db191461047557806370a082311461047d5761025e565b806323b872dd1161022657806323b872dd146103705780632e1a7d4d146103a6578063313ce567146103c357806339509351146103e157806345dc3dd81461040d5761025e565b8063018ee9b71461026357806306fdde03146102915780630805cf071461030e578063095ea7b31461031657806318160ddd14610356575b600080fd5b61028f6004803603604081101561027957600080fd5b506001600160a01b03813516906020013561068f565b005b61029961074a565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102d35781810151838201526020016102bb565b50505050905090810190601f1680156103005780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61028f6107e0565b6103426004803603604081101561032c57600080fd5b506001600160a01b0381351690602001356108c6565b604080519115158252519081900360200190f35b61035e6108e4565b60408051918252519081900360200190f35b6103426004803603606081101561038657600080fd5b506001600160a01b038135811691602081013590911690604001356108ea565b61028f600480360360208110156103bc57600080fd5b5035610971565b6103cb610fb6565b6040805160ff9092168252519081900360200190f35b610342600480360360408110156103f757600080fd5b506001600160a01b038135169060200135610fbf565b61028f6004803603602081101561042357600080fd5b503561100d565b61035e611064565b61028f6004803603602081101561044857600080fd5b5035151561110b565b610459611170565b604080516001600160a01b039092168252519081900360200190f35b61035e611184565b61035e6004803603602081101561049357600080fd5b50356001600160a01b031661118a565b61035e6111a5565b61028f600480360360208110156104c157600080fd5b50356111c6565b61035e61121d565b61028f611223565b61028f600480360360208110156104ee57600080fd5b50356001600160a01b0316611236565b6104596112aa565b61035e6112b9565b61028f6004803603602081101561052457600080fd5b50356112bf565b61028f6004803603602081101561054157600080fd5b50356001600160a01b0316611316565b61035e61138a565b610299611390565b6103426004803603604081101561057757600080fd5b506001600160a01b0381351690602001356113f1565b610342600480360360408110156105a357600080fd5b506001600160a01b038135169060200135611459565b61028f600480360360208110156105cf57600080fd5b50356001600160a01b031661146d565b61035e6114e7565b61028f600480360360208110156105fd57600080fd5b50356115ed565b61028f6004803603602081101561061a57600080fd5b5035611772565b61028f6117c9565b61035e6004803603604081101561063f57600080fd5b506001600160a01b0381358116916020013516611869565b61028f611894565b610459611916565b610459611925565b61035e611934565b61035e61193a565b610459611940565b610342611954565b600d546001600160a01b031633146106dc576040805162461bcd60e51b815260206004820152600b60248201526a10b1b7b73a3937b63632b960a91b604482015290519081900360640190fd5b6005546001600160a01b0383811661010090920416141561072c576040805162461bcd60e51b81526020600482015260056024820152643a37b5b2b760d91b604482015290519081900360640190fd5b600d54610746906001600160a01b0384811691168361195d565b5050565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107d65780601f106107ab576101008083540402835291602001916107d6565b820191906000526020600020905b8154815290600101906020018083116107b957829003601f168201915b5050505050905090565b600c5461010090046001600160a01b03163314610832576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b600654604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b15801561087d57600080fd5b505afa158015610891573d6000803e3d6000fd5b505050506040513d60208110156108a757600080fd5b50516006549091506108c3906001600160a01b0316338361195d565b50565b60006108da6108d36119af565b84846119b3565b5060015b92915050565b60025490565b60006108f7848484611a9f565b610967846109036119af565b610962856040518060600160405280602881526020016124aa602891396001600160a01b038a166000908152600160205260408120906109416119af565b6001600160a01b031681526020810191909152604001600020549190611bfa565b6119b3565b5060019392505050565b600061099661097e6108e4565b6109908461098a6114e7565b90611c91565b90611cf1565b90506109a23383611d33565b600554604080516370a0823160e01b8152306004820152905160009261010090046001600160a01b0316916370a08231916024808301926020929190829003018186803b1580156109f257600080fd5b505afa158015610a06573d6000803e3d6000fd5b505050506040513d6020811015610a1c57600080fd5b5051905081811015610b51576000610a348383611e2f565b600d546005546040805163f3fef3a360e01b81526001600160a01b036101009093048316600482015260248101859052905193945091169163f3fef3a39160448082019260009290919082900301818387803b158015610a9357600080fd5b505af1158015610aa7573d6000803e3d6000fd5b5050600554604080516370a0823160e01b81523060048201529051600094506101009092046001600160a01b031692506370a08231916024808301926020929190829003018186803b158015610afc57600080fd5b505afa158015610b10573d6000803e3d6000fd5b505050506040513d6020811015610b2657600080fd5b505190506000610b368285611e2f565b905082811015610b4d57610b4a8482611e71565b94505b5050505b600c5460ff16610b7c57600554610b779061010090046001600160a01b0316338461195d565b610fb1565b6000610b99611b58610990600b5486611c9190919063ffffffff16565b9050610ba58382611e2f565b600554909350610bc49061010090046001600160a01b0316338561195d565b8015610faf57600654604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b158015610c1557600080fd5b505afa158015610c29573d6000803e3d6000fd5b505050506040513d6020811015610c3f57600080fd5b5051600754600554919250610c679161010090046001600160a01b0390811691166000611ecb565b600754600554610c89916001600160a01b036101009092048216911684611ecb565b6007546005546006546008546040805163085e2c5b60e01b81526001600160a01b03610100909504851660048201529284166024840152604483018790526064830191909152600060848301819052905160609491939091169163085e2c5b9160a48083019286929190829003018186803b158015610d0757600080fd5b505afa158015610d1b573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040908152811015610d4457600080fd5b815160208301805160405192949293830192919084640100000000821115610d6b57600080fd5b908301906020820185811115610d8057600080fd5b8251866020820283011164010000000082111715610d9d57600080fd5b82525081516020918201928201910280838360005b83811015610dca578181015183820152602001610db2565b5050505090500160405250505080935081925050506000610e06610dff61271061099060095486611c9190919063ffffffff16565b8390611e2f565b600754600554600654604051637153a8af60e11b81526001600160a01b0361010090930483166004820181815292841660248301819052604483018c905260648301879052600060a4840181905260c0608485019081528b5160c48601528b51989950959096169663e2a7515e96929591948d948a948d949093909160e4019060208681019102808383885b83811015610eaa578181015183820152602001610e92565b50505050905001975050505050505050602060405180830381600087803b158015610ed457600080fd5b505af1158015610ee8573d6000803e3d6000fd5b505050506040513d6020811015610efe57600080fd5b5050600654604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b158015610f4b57600080fd5b505afa158015610f5f573d6000803e3d6000fd5b505050506040513d6020811015610f7557600080fd5b5051905084811115610fa9576000610f8d8287611e2f565b600654909150610fa7906001600160a01b0316338361195d565b505b50505050505b505b505050565b60055460ff1690565b60006108da610fcc6119af565b846109628560016000610fdd6119af565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611e71565b600c5461010090046001600160a01b0316331461105f576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b600a55565b6000611106612710610990600a54600560019054906101000a90046001600160a01b03166001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b1580156110d457600080fd5b505afa1580156110e8573d6000803e3d6000fd5b505050506040513d60208110156110fe57600080fd5b505190611c91565b905090565b600c5461010090046001600160a01b0316331461115d576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b600c805460ff1916911515919091179055565b600c5461010090046001600160a01b031681565b61271081565b6001600160a01b031660009081526020819052604090205490565b60006111066111b26108e4565b610990670de0b6b3a764000061098a6114e7565b600c5461010090046001600160a01b03163314611218576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b600b55565b60095481565b61123461122f3361118a565b610971565b565b600c5461010090046001600160a01b03163314611288576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b600780546001600160a01b0319166001600160a01b0392909216919091179055565b6006546001600160a01b031681565b600b5481565b600c5461010090046001600160a01b03163314611311576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b600855565b600c5461010090046001600160a01b03163314611368576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b60085481565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107d65780601f106107ab576101008083540402835291602001916107d6565b60006108da6113fe6119af565b846109628560405180606001604052806025815260200161259c60259139600160006114286119af565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611bfa565b60006108da6114666119af565b8484611a9f565b600c5461010090046001600160a01b031633146114bf576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b600c80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b600d54600554604080516370a0823160e01b81526001600160a01b036101009093048316600482015290516000936111069316916370a08231916024808301926020929190829003018186803b15801561154057600080fd5b505afa158015611554573d6000803e3d6000fd5b505050506040513d602081101561156a57600080fd5b5051600554604080516370a0823160e01b815230600482015290516101009092046001600160a01b0316916370a0823191602480820192602092909190829003018186803b1580156115bb57600080fd5b505afa1580156115cf573d6000803e3d6000fd5b505050506040513d60208110156115e557600080fd5b505190611e71565b60006115f76114e7565b90506000600560019054906101000a90046001600160a01b03166001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b15801561165d57600080fd5b505afa158015611671573d6000803e3d6000fd5b505050506040513d602081101561168757600080fd5b50516005549091506116a99061010090046001600160a01b0316333086611fde565b600554604080516370a0823160e01b8152306004820152905160009261010090046001600160a01b0316916370a08231916024808301926020929190829003018186803b1580156116f957600080fd5b505afa15801561170d573d6000803e3d6000fd5b505050506040513d602081101561172357600080fd5b505190506117318183611e2f565b9350600061173d6108e4565b611748575083611761565b61175e846109906117576108e4565b8890611c91565b90505b61176b3382612038565b5050505050565b600c5461010090046001600160a01b031633146117c4576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b600955565b60006117d3611064565b600d546005549192506117f89161010090046001600160a01b0390811691168361195d565b600d546005546040805163b02bf4b960e01b81526101009092046001600160a01b03908116600484015260248301859052905192169163b02bf4b99160448082019260009290919082900301818387803b15801561185557600080fd5b505af115801561176b573d6000803e3d6000fd5b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b600554604080516370a0823160e01b815233600482015290516112349261010090046001600160a01b0316916370a08231916024808301926020929190829003018186803b1580156118e557600080fd5b505afa1580156118f9573d6000803e3d6000fd5b505050506040513d602081101561190f57600080fd5b50516115ed565b6007546001600160a01b031681565b600d546001600160a01b031681565b600a5481565b611b5881565b60055461010090046001600160a01b031681565b600c5460ff1681565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610fb1908490612128565b3390565b6001600160a01b0383166119f85760405162461bcd60e51b81526004018080602001828103825260248152602001806125186024913960400191505060405180910390fd5b6001600160a01b038216611a3d5760405162461bcd60e51b81526004018080602001828103825260228152602001806124416022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316611ae45760405162461bcd60e51b81526004018080602001828103825260258152602001806124f36025913960400191505060405180910390fd5b6001600160a01b038216611b295760405162461bcd60e51b81526004018080602001828103825260238152602001806123fc6023913960400191505060405180910390fd5b611b34838383610fb1565b611b7181604051806060016040528060268152602001612463602691396001600160a01b0386166000908152602081905260409020549190611bfa565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611ba09082611e71565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115611c895760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611c4e578181015183820152602001611c36565b50505050905090810190601f168015611c7b5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082611ca0575060006108de565b82820282848281611cad57fe5b0414611cea5760405162461bcd60e51b81526004018080602001828103825260218152602001806124896021913960400191505060405180910390fd5b9392505050565b6000611cea83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506121d9565b6001600160a01b038216611d785760405162461bcd60e51b81526004018080602001828103825260218152602001806124d26021913960400191505060405180910390fd5b611d8482600083610fb1565b611dc18160405180606001604052806022815260200161241f602291396001600160a01b0385166000908152602081905260409020549190611bfa565b6001600160a01b038316600090815260208190526040902055600254611de79082611e2f565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6000611cea83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611bfa565b600082820183811015611cea576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b801580611f51575060408051636eb1769f60e11b81523060048201526001600160a01b03848116602483015291519185169163dd62ed3e91604480820192602092909190829003018186803b158015611f2357600080fd5b505afa158015611f37573d6000803e3d6000fd5b505050506040513d6020811015611f4d57600080fd5b5051155b611f8c5760405162461bcd60e51b81526004018080602001828103825260368152602001806125666036913960400191505060405180910390fd5b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663095ea7b360e01b179052610fb1908490612128565b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b179052610faf908590612128565b6001600160a01b038216612093576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b61209f60008383610fb1565b6002546120ac9082611e71565b6002556001600160a01b0382166000908152602081905260409020546120d29082611e71565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b606061217d826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661223e9092919063ffffffff16565b805190915015610fb15780806020019051602081101561219c57600080fd5b5051610fb15760405162461bcd60e51b815260040180806020018281038252602a81526020018061253c602a913960400191505060405180910390fd5b600081836122285760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611c4e578181015183820152602001611c36565b50600083858161223457fe5b0495945050505050565b606061224d8484600085612255565b949350505050565b6060612260856123c2565b6122b1576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b602083106122f05780518252601f1990920191602091820191016122d1565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114612352576040519150601f19603f3d011682016040523d82523d6000602084013e612357565b606091505b5091509150811561236b57915061224d9050565b80511561237b5780518082602001fd5b60405162461bcd60e51b8152602060048201818152865160248401528651879391928392604401919085019080838360008315611c4e578181015183820152602001611c36565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47081811480159061224d57505015159291505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573735361666545524332303a204552433230206f7065726174696f6e20646964206e6f7420737563636565645361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f20746f206e6f6e2d7a65726f20616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212201d2ba7ece2110553c81269567ec4a7d48bfa59314148328b2ad2ca1f1a4e577d64736f6c634300060c0033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000575ad0e9d6debb4199168ca042e40810a477be37

-----Decoded View---------------
Arg [0] : _controller (address): 0x575AD0E9d6DeBb4199168cA042E40810a477Be37

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000575ad0e9d6debb4199168ca042e40810a477be37


Deployed Bytecode Sourcemap

31276:6585:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35355:236;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;35355:236:0;;;;;;;;:::i;:::-;;21390:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37511:216;;;:::i;23496:169::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;23496:169:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;22465:100;;;:::i;:::-;;;;;;;;;;;;;;;;24139:321;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;24139:321:0;;;;;;;;;;;;;;;;;:::i;35667:1774::-;;;;;;;;;;;;;;;;-1:-1:-1;35667:1774:0;;:::i;22317:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;24869:218;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;24869:218:0;;;;;;;;:::i;32707:124::-;;;;;;;;;;;;;;;;-1:-1:-1;32707:124:0;;:::i;34141:122::-;;;:::i;33513:154::-;;;;;;;;;;;;;;;;-1:-1:-1;33513:154:0;;;;:::i;32019:25::-;;;:::i;:::-;;;;-1:-1:-1;;;;;32019:25:0;;;;;;;;;;;;;;31841:32;;;:::i;22628:119::-;;;;;;;;;;;;;;;;-1:-1:-1;22628:119:0;-1:-1:-1;;;;;22628:119:0;;:::i;37735:123::-;;;:::i;32839:147::-;;;;;;;;;;;;;;;;-1:-1:-1;32839:147:0;;:::i;31697:37::-;;;:::i;35179:82::-;;;:::i;33190:145::-;;;;;;;;;;;;;;;;-1:-1:-1;33190:145:0;-1:-1:-1;;;;;33190:145:0;;:::i;31496:72::-;;;:::i;31882:25::-;;;:::i;33343:162::-;;;;;;;;;;;;;;;;-1:-1:-1;33343:162:0;;:::i;33836:153::-;;;;;;;;;;;;;;;;-1:-1:-1;33836:153:0;-1:-1:-1;;;;;33836:153:0;;:::i;31659:29::-;;;:::i;21592:87::-;;;:::i;25590:269::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;25590:269:0;;;;;;;;:::i;22960:175::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;22960:175:0;;;;;;;;:::i;33675:153::-;;;;;;;;;;;;;;;;-1:-1:-1;33675:153:0;-1:-1:-1;;;;;33675:153:0;;:::i;32524:175::-;;;:::i;34608:563::-;;;;;;;;;;;;;;;;-1:-1:-1;34608:563:0;;:::i;32994:188::-;;;;;;;;;;;;;;;;-1:-1:-1;32994:188:0;;:::i;34333:173::-;;;:::i;23198:151::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;23198:151:0;;;;;;;;;;:::i;34514:86::-;;;:::i;31575:77::-;;;:::i;32051:25::-;;;:::i;31812:22::-;;;:::i;31930:36::-;;;:::i;31410:72::-;;;:::i;31975:35::-;;;:::i;35355:236::-;35444:10;;-1:-1:-1;;;;;35444:10:0;35430;:24;35422:48;;;;;-1:-1:-1;;;35422:48:0;;;;;;;;;;;;-1:-1:-1;;;35422:48:0;;;;;;;;;;;;;;;35508:5;;-1:-1:-1;;;;;35489:25:0;;;35508:5;;;;;35489:25;;35481:43;;;;;-1:-1:-1;;;35481:43:0;;;;;;;;;;;;-1:-1:-1;;;35481:43:0;;;;;;;;;;;;;;;35564:10;;35535:48;;-1:-1:-1;;;;;35535:28:0;;;;35564:10;35576:6;35535:28;:48::i;:::-;35355:236;;:::o;21390:83::-;21460:5;21453:12;;;;;;;;-1:-1:-1;;21453:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21427:13;;21453:12;;21460:5;;21453:12;;21460:5;21453:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21390:83;:::o;37511:216::-;37587:10;;;;;-1:-1:-1;;;;;37587:10:0;37573;:24;37565:48;;;;;-1:-1:-1;;;37565:48:0;;;;;;;;;;;;-1:-1:-1;;;37565:48:0;;;;;;;;;;;;;;;37639:5;;:30;;;-1:-1:-1;;;37639:30:0;;37663:4;37639:30;;;;;;37624:12;;-1:-1:-1;;;;;37639:5:0;;:15;;:30;;;;;;;;;;;;;;:5;:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37639:30:0;37680:5;;37639:30;;-1:-1:-1;37680:39:0;;-1:-1:-1;;;;;37680:5:0;37699:10;37639:30;37680:18;:39::i;:::-;37511:216;:::o;23496:169::-;23579:4;23596:39;23605:12;:10;:12::i;:::-;23619:7;23628:6;23596:8;:39::i;:::-;-1:-1:-1;23653:4:0;23496:169;;;;;:::o;22465:100::-;22545:12;;22465:100;:::o;24139:321::-;24245:4;24262:36;24272:6;24280:9;24291:6;24262:9;:36::i;:::-;24309:121;24318:6;24326:12;:10;:12::i;:::-;24340:89;24378:6;24340:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;24340:19:0;;;;;;:11;:19;;;;;;24360:12;:10;:12::i;:::-;-1:-1:-1;;;;;24340:33:0;;;;;;;;;;;;-1:-1:-1;24340:33:0;;;:89;:37;:89::i;:::-;24309:8;:121::i;:::-;-1:-1:-1;24448:4:0;24139:321;;;;;:::o;35667:1774::-;35717:6;35726:43;35755:13;:11;:13::i;:::-;35727:22;35741:7;35727:9;:7;:9::i;:::-;:13;;:22::i;:::-;35726:28;;:43::i;:::-;35717:52;;35780:26;35786:10;35798:7;35780:5;:26::i;:::-;35854:5;;:30;;;-1:-1:-1;;;35854:30:0;;35878:4;35854:30;;;;;;-1:-1:-1;;35854:5:0;;;-1:-1:-1;;;;;35854:5:0;;:15;;:30;;;;;;;;;;;;;;:5;:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35854:30:0;;-1:-1:-1;35899:5:0;;;35895:325;;;35921:14;35938:8;:1;35944;35938:5;:8::i;:::-;35973:10;;36002:5;;35961:59;;;-1:-1:-1;;;35961:59:0;;-1:-1:-1;;;;;35973:10:0;36002:5;;;;;35961:59;;;;;;;;;;;;;;-1:-1:-1;35973:10:0;;;35961:32;;:59;;;;;-1:-1:-1;;35961:59:0;;;;;;;;-1:-1:-1;35973:10:0;35961:59;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;36049:5:0;;:30;;;-1:-1:-1;;;36049:30:0;;36073:4;36049:30;;;;;;-1:-1:-1;;;36049:5:0;;;;-1:-1:-1;;;;;36049:5:0;;-1:-1:-1;36049:15:0;;:30;;;;;;;;;;;;;;:5;:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36049:30:0;;-1:-1:-1;36094:10:0;36107:13;36049:30;36118:1;36107:10;:13::i;:::-;36094:26;;36147:9;36139:5;:17;36135:74;;;36181:12;:1;36187:5;36181;:12::i;:::-;36177:16;;36135:74;35895:325;;;;36237:16;;;;36232:1202;;36268:5;;:33;;:5;;;-1:-1:-1;;;;;36268:5:0;36287:10;36299:1;36268:18;:33::i;:::-;36232:1202;;;36332:20;36355:29;31962:4;36355:15;36361:8;;36355:1;:5;;:15;;;;:::i;:29::-;36332:52;-1:-1:-1;36401:22:0;:1;36332:52;36401:5;:22::i;:::-;36436:5;;36397:26;;-1:-1:-1;36436:33:0;;:5;;;-1:-1:-1;;;;;36436:5:0;36455:10;36397:26;36436:18;:33::i;:::-;36488:19;;36484:939;;36548:5;;36541:38;;;-1:-1:-1;;;36541:38:0;;36573:4;36541:38;;;;;;36526:12;;-1:-1:-1;;;;;36548:5:0;;36541:23;;:38;;;;;;;;;;;;;;36548:5;36541:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36541:38:0;36614:8;;36596:5;;36541:38;;-1:-1:-1;36596:30:0;;36614:8;36596:5;;-1:-1:-1;;;;;36596:5:0;;;;36614:8;;36596:17;:30::i;:::-;36661:8;;36643:5;;:44;;-1:-1:-1;;;;;36661:8:0;36643:5;;;;;;36661:8;36671:15;36643:17;:44::i;:::-;36822:8;;36858:5;;36874;;36899:13;;36808:108;;;-1:-1:-1;;;36808:108:0;;-1:-1:-1;;;;;36822:8:0;36858:5;;;;;36808:108;;;;36874:5;;;36808:108;;;;;;;;;;;;;;;;;-1:-1:-1;36808:108:0;;;;;;;;36704:27;;-1:-1:-1;;36822:8:0;;;;36808:41;;:108;;;;;-1:-1:-1;;36808:108:0;;;;;;;36822:8;36808:108;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;36808:108:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36808:108:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36779:137;;;;;;;;36933:27;36963:74;36977:59;31798:5;36977:34;36991:19;;36977:9;:13;;:34;;;;:::i;:59::-;36963:9;;:13;:74::i;:::-;37068:8;;37091:5;;37107;;37054:119;;-1:-1:-1;;;37054:119:0;;-1:-1:-1;;;;;37068:8:0;37091:5;;;;;37054:119;;;;;;37107:5;;;37054:119;;;;;;;;;;;;;;;;;;-1:-1:-1;37054:119:0;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37068:8:0;;;;;37054:28;;37091:5;;37107;;37054:119;;;;;;-1:-1:-1;;37054:119:0;;;;;-1:-1:-1;37054:119:0;;;;;;;;-1:-1:-1;37054:119:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;37211:5:0;;37204:38;;;-1:-1:-1;;;37204:38:0;;37236:4;37204:38;;;;;;37190:11;;-1:-1:-1;;;;;37211:5:0;;37204:23;;:38;;;;;37054:119;;37204:38;;;;;;;37211:5;37204:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37204:38:0;;-1:-1:-1;37263:16:0;;;37259:151;;;37302:10;37315:19;:6;37326:7;37315:10;:19::i;:::-;37355:5;;37302:32;;-1:-1:-1;37355:37:0;;-1:-1:-1;;;;;37355:5:0;37374:10;37302:32;37355:18;:37::i;:::-;37259:151;;36484:939;;;;;;36232:1202;;35667:1774;;;:::o;22317:83::-;22383:9;;;;22317:83;:::o;24869:218::-;24957:4;24974:83;24983:12;:10;:12::i;:::-;24997:7;25006:50;25045:10;25006:11;:25;25018:12;:10;:12::i;:::-;-1:-1:-1;;;;;25006:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;25006:25:0;;;:34;;;;;;;;;;;:38;:50::i;32707:124::-;32776:10;;;;;-1:-1:-1;;;;;32776:10:0;32762;:24;32754:48;;;;;-1:-1:-1;;;32754:48:0;;;;;;;;;;;;-1:-1:-1;;;32754:48:0;;;;;;;;;;;;;;;32813:3;:10;32707:124::o;34141:122::-;34183:4;34207:48;31868:5;34207:39;34242:3;;34207:5;;;;;;;;;-1:-1:-1;;;;;34207:5:0;-1:-1:-1;;;;;34207:15:0;;34231:4;34207:30;;;;;;;;;;;;;-1:-1:-1;;;;;34207:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34207:30:0;;:34;:39::i;:48::-;34200:55;;34141:122;:::o;33513:154::-;33596:10;;;;;-1:-1:-1;;;;;33596:10:0;33582;:24;33574:48;;;;;-1:-1:-1;;;33574:48:0;;;;;;;;;;;;-1:-1:-1;;;33574:48:0;;;;;;;;;;;;;;;33633:16;:26;;-1:-1:-1;;33633:26:0;;;;;;;;;;33513:154::o;32019:25::-;;;;;;-1:-1:-1;;;;;32019:25:0;;:::o;31841:32::-;31868:5;31841:32;:::o;22628:119::-;-1:-1:-1;;;;;22721:18:0;22694:7;22721:18;;;;;;;;;;;;22628:119::o;37735:123::-;37788:4;37812:38;37836:13;:11;:13::i;:::-;37812:19;37826:4;37812:9;:7;:9::i;32839:147::-;32921:10;;;;;-1:-1:-1;;;;;32921:10:0;32907;:24;32899:48;;;;;-1:-1:-1;;;32899:48:0;;;;;;;;;;;;-1:-1:-1;;;32899:48:0;;;;;;;;;;;;;;;32958:8;:20;32839:147::o;31697:37::-;;;;:::o;35179:82::-;35222:31;35231:21;35241:10;35231:9;:21::i;:::-;35222:8;:31::i;:::-;35179:82::o;33190:145::-;33270:10;;;;;-1:-1:-1;;;;;33270:10:0;33256;:24;33248:48;;;;;-1:-1:-1;;;33248:48:0;;;;;;;;;;;;-1:-1:-1;;;33248:48:0;;;;;;;;;;;;;;;33307:8;:20;;-1:-1:-1;;;;;;33307:20:0;-1:-1:-1;;;;;33307:20:0;;;;;;;;;;33190:145::o;31496:72::-;;;-1:-1:-1;;;;;31496:72:0;;:::o;31882:25::-;;;;:::o;33343:162::-;33430:10;;;;;-1:-1:-1;;;;;33430:10:0;33416;:24;33408:48;;;;;-1:-1:-1;;;33408:48:0;;;;;;;;;;;;-1:-1:-1;;;33408:48:0;;;;;;;;;;;;;;;33467:13;:30;33343:162::o;33836:153::-;33920:10;;;;;-1:-1:-1;;;;;33920:10:0;33906;:24;33898:48;;;;;-1:-1:-1;;;33898:48:0;;;;;;;;;;;;-1:-1:-1;;;33898:48:0;;;;;;;;;;;;;;;33957:10;:24;;-1:-1:-1;;;;;;33957:24:0;-1:-1:-1;;;;;33957:24:0;;;;;;;;;;33836:153::o;31659:29::-;;;;:::o;21592:87::-;21664:7;21657:14;;;;;;;;-1:-1:-1;;21657:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21631:13;;21657:14;;21664:7;;21657:14;;21664:7;21657:14;;;;;;;;;;;;;;;;;;;;;;;;25590:269;25683:4;25700:129;25709:12;:10;:12::i;:::-;25723:7;25732:96;25771:15;25732:96;;;;;;;;;;;;;;;;;:11;:25;25744:12;:10;:12::i;:::-;-1:-1:-1;;;;;25732:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;25732:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;22960:175::-;23046:4;23063:42;23073:12;:10;:12::i;:::-;23087:9;23098:6;23063:9;:42::i;33675:153::-;33759:10;;;;;-1:-1:-1;;;;;33759:10:0;33745;:24;33737:48;;;;;-1:-1:-1;;;33737:48:0;;;;;;;;;;;;-1:-1:-1;;;33737:48:0;;;;;;;;;;;;;;;33796:10;:24;;-1:-1:-1;;;;;33796:24:0;;;;;-1:-1:-1;;;;;;33796:24:0;;;;;;;;;33675:153::o;32524:175::-;32653:10;;32683:5;;32641:49;;;-1:-1:-1;;;32641:49:0;;-1:-1:-1;;;;;32653:10:0;32683:5;;;;;32641:49;;;;;;-1:-1:-1;;32588:103:0;;32653:10;;32641:33;;:49;;;;;;;;;;;;;;32653:10;32641:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32641:49:0;32588:5;;:30;;;-1:-1:-1;;;32588:30:0;;32612:4;32588:30;;;;;;:5;;;;-1:-1:-1;;;;;32588:5:0;;:15;;:30;;;;;32641:49;;32588:30;;;;;;;;:5;:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32588:30:0;;:52;:103::i;34608:563::-;34657:10;34670:9;:7;:9::i;:::-;34657:22;;34690:12;34705:5;;;;;;;;;-1:-1:-1;;;;;34705:5:0;-1:-1:-1;;;;;34705:15:0;;34729:4;34705:30;;;;;;;;;;;;;-1:-1:-1;;;;;34705:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34705:30:0;34746:5;;34705:30;;-1:-1:-1;34746:58:0;;:5;;;-1:-1:-1;;;;;34746:5:0;34769:10;34789:4;34796:7;34746:22;:58::i;:::-;34829:5;;:30;;;-1:-1:-1;;;34829:30:0;;34853:4;34829:30;;;;;;-1:-1:-1;;34829:5:0;;;-1:-1:-1;;;;;34829:5:0;;:15;;:30;;;;;;;;;;;;;;:5;:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34829:30:0;;-1:-1:-1;34880:19:0;34829:30;34891:7;34880:10;:19::i;:::-;34870:29;;34954:11;34984:13;:11;:13::i;:::-;34980:148;;-1:-1:-1;35028:7:0;34980:148;;;35077:39;35110:5;35078:26;35090:13;:11;:13::i;:::-;35078:7;;:11;:26::i;35077:39::-;35068:48;;34980:148;35138:25;35144:10;35156:6;35138:5;:25::i;:::-;34608:563;;;;;:::o;32994:188::-;33095:10;;;;;-1:-1:-1;;;;;33095:10:0;33081;:24;33073:48;;;;;-1:-1:-1;;;33073:48:0;;;;;;;;;;;;-1:-1:-1;;;33073:48:0;;;;;;;;;;;;;;;33132:19;:42;32994:188::o;34333:173::-;34367:9;34379:11;:9;:11::i;:::-;34420:10;;34401:5;;34367:23;;-1:-1:-1;34401:36:0;;34420:10;34401:5;;-1:-1:-1;;;;;34401:5:0;;;;34420:10;34367:23;34401:18;:36::i;:::-;34460:10;;34485:5;;34448:50;;;-1:-1:-1;;;34448:50:0;;34460:10;34485:5;;;-1:-1:-1;;;;;34485:5:0;;;34448:50;;;;;;;;;;;;34460:10;;;34448:28;;:50;;;;;34460:10;;34448:50;;;;;;;;34460:10;;34448:50;;;;;;;;;;;;;;;;;;;;;;;;;;23198:151;-1:-1:-1;;;;;23314:18:0;;;23287:7;23314:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;23198:151::o;34514:86::-;34564:5;;:27;;;-1:-1:-1;;;34564:27:0;;34580:10;34564:27;;;;;;34556:36;;34564:5;;;-1:-1:-1;;;;;34564:5:0;;:15;;:27;;;;;;;;;;;;;;:5;:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34564:27:0;34556:7;:36::i;31575:77::-;;;-1:-1:-1;;;;;31575:77:0;;:::o;32051:25::-;;;-1:-1:-1;;;;;32051:25:0;;:::o;31812:22::-;;;;:::o;31930:36::-;31962:4;31930:36;:::o;31410:72::-;;;;;;-1:-1:-1;;;;;31410:72:0;;:::o;31975:35::-;;;;;;:::o;15327:177::-;15437:58;;;-1:-1:-1;;;;;15437:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15437:58:0;-1:-1:-1;;;15437:58:0;;;15410:86;;15430:5;;15410:19;:86::i;18943:106::-;19031:10;18943:106;:::o;28737:346::-;-1:-1:-1;;;;;28839:19:0;;28831:68;;;;-1:-1:-1;;;28831:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28918:21:0;;28910:68;;;;-1:-1:-1;;;28910:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28991:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;29043:32;;;;;;;;;;;;;;;;;28737:346;;;:::o;26349:539::-;-1:-1:-1;;;;;26455:20:0;;26447:70;;;;-1:-1:-1;;;26447:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;26536:23:0;;26528:71;;;;-1:-1:-1;;;26528:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26612:47;26633:6;26641:9;26652:6;26612:20;:47::i;:::-;26692:71;26714:6;26692:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;26692:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;26672:17:0;;;:9;:17;;;;;;;;;;;:91;;;;26797:20;;;;;;;:32;;26822:6;26797:24;:32::i;:::-;-1:-1:-1;;;;;26774:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;26845:35;;;;;;;26774:20;;26845:35;;;;;;;;;;;;;26349:539;;;:::o;5052:192::-;5138:7;5174:12;5166:6;;;;5158:29;;;;-1:-1:-1;;;5158:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5210:5:0;;;5052:192::o;5503:471::-;5561:7;5806:6;5802:47;;-1:-1:-1;5836:1:0;5829:8;;5802:47;5873:5;;;5877:1;5873;:5;:1;5897:5;;;;;:10;5889:56;;;;-1:-1:-1;;;5889:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5965:1;5503:471;-1:-1:-1;;;5503:471:0:o;6450:132::-;6508:7;6535:39;6539:1;6542;6535:39;;;;;;;;;;;;;;;;;:3;:39::i;27879:418::-;-1:-1:-1;;;;;27963:21:0;;27955:67;;;;-1:-1:-1;;;27955:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28035:49;28056:7;28073:1;28077:6;28035:20;:49::i;:::-;28118:68;28141:6;28118:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28118:18:0;;:9;:18;;;;;;;;;;;;:68;:22;:68::i;:::-;-1:-1:-1;;;;;28097:18:0;;:9;:18;;;;;;;;;;:89;28212:12;;:24;;28229:6;28212:16;:24::i;:::-;28197:12;:39;28252:37;;;;;;;;28278:1;;-1:-1:-1;;;;;28252:37:0;;;;;;;;;;;;27879:418;;:::o;4613:136::-;4671:7;4698:43;4702:1;4705;4698:43;;;;;;;;;;;;;;;;;:3;:43::i;4149:181::-;4207:7;4239:5;;;4263:6;;;;4255:46;;;;;-1:-1:-1;;;4255:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;15986:622;16356:10;;;16355:62;;-1:-1:-1;16372:39:0;;;-1:-1:-1;;;16372:39:0;;16396:4;16372:39;;;;-1:-1:-1;;;;;16372:39:0;;;;;;;;;:15;;;;;;:39;;;;;;;;;;;;;;;:15;:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16372:39:0;:44;16355:62;16347:152;;;;-1:-1:-1;;;16347:152:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16537:62;;;-1:-1:-1;;;;;16537:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16537:62:0;-1:-1:-1;;;16537:62:0;;;16510:90;;16530:5;;16510:19;:90::i;15512:205::-;15640:68;;;-1:-1:-1;;;;;15640:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15640:68:0;-1:-1:-1;;;15640:68:0;;;15613:96;;15633:5;;15613:19;:96::i;27169:378::-;-1:-1:-1;;;;;27253:21:0;;27245:65;;;;;-1:-1:-1;;;27245:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;27323:49;27352:1;27356:7;27365:6;27323:20;:49::i;:::-;27400:12;;:24;;27417:6;27400:16;:24::i;:::-;27385:12;:39;-1:-1:-1;;;;;27456:18:0;;:9;:18;;;;;;;;;;;:30;;27479:6;27456:22;:30::i;:::-;-1:-1:-1;;;;;27435:18:0;;:9;:18;;;;;;;;;;;:51;;;;27502:37;;;;;;;27435:18;;:9;;27502:37;;;;;;;;;;27169:378;;:::o;17632:761::-;18056:23;18082:69;18110:4;18082:69;;;;;;;;;;;;;;;;;18090:5;-1:-1:-1;;;;;18082:27:0;;;:69;;;;;:::i;:::-;18166:17;;18056:95;;-1:-1:-1;18166:21:0;18162:224;;18308:10;18297:30;;;;;;;;;;;;;;;-1:-1:-1;18297:30:0;18289:85;;;;-1:-1:-1;;;18289:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7078:278;7164:7;7199:12;7192:5;7184:28;;;;-1:-1:-1;;;7184:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7223:9;7239:1;7235;:5;;;;;;;7078:278;-1:-1:-1;;;;;7078:278:0:o;12405:196::-;12508:12;12540:53;12563:6;12571:4;12577:1;12580:12;12540:22;:53::i;:::-;12533:60;12405:196;-1:-1:-1;;;;12405:196:0:o;13782:979::-;13912:12;13945:18;13956:6;13945:10;:18::i;:::-;13937:60;;;;;-1:-1:-1;;;13937:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;14071:12;14085:23;14112:6;-1:-1:-1;;;;;14112:11:0;14132:8;14143:4;14112:36;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;14112:36:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14070:78;;;;14163:7;14159:595;;;14194:10;-1:-1:-1;14187:17:0;;-1:-1:-1;14187:17:0;14159:595;14308:17;;:21;14304:439;;14571:10;14565:17;14632:15;14619:10;14615:2;14611:19;14604:44;14519:148;14707:20;;-1:-1:-1;;;14707:20:0;;;;;;;;;;;;;;;;;14714:12;;14707:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9290:619;9350:4;9818:20;;9661:66;9858:23;;;;;;:42;;-1:-1:-1;;9885:15:0;;;9850:51;-1:-1:-1;;9290:619:0:o

Swarm Source

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