ERC-20
Overview
Max Total Supply
2,141.06 FETFX
Holders
23
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 8 Decimals)
Balance
100 FETFXValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ETFXPool
Compiler Version
v0.6.11+commit.5ef660b1
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-12-17 */ // SPDX-License-Identifier: MIT pragma solidity 0.6.11; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with GSN meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20 { using SafeMath for uint256; using Address for address; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ constructor (string memory name_, string memory symbol_, uint8 decimals_) public { _name = name_; _symbol = symbol_; _decimals = decimals_; } /** * @dev Returns the name of the token. */ function name() external view returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() external view returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is * called. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() external view returns (uint8) { return _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}; * * Requirements: * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens. * * This is internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ function _setupDecimals(uint8 decimals_) internal { _decimals = decimals_; } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { } } /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor () public { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and make it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () public { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies in extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return _functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) { require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: weiValue }(data); if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using SafeMath for uint256; using Address for address; function safeTransfer(IERC20 token, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove(IERC20 token, address spender, uint256 value) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' // solhint-disable-next-line max-line-length require((value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).add(value); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeERC20: decreased allowance below zero"); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional // solhint-disable-next-line max-line-length require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } } contract ETFXPool is ERC20, ReentrancyGuard, Ownable { using SafeERC20 for IERC20; using Address for address; using SafeMath for uint256; mapping(address => uint256) private startStaking; mapping(address => uint256) private rewards; // total 50k = 50 000 00000000 // first month = 25k / 30days = 833 uint256 private mintSpeed = 833 * 1e8; //ETFX daily uint256 public constant ONEDAY = 5760; //1 day = 5760 blocks uint256 public constant DURATION = 172800 ; //1 month for halving uint256 public halvingBlock; IERC20 constant private ETFX = IERC20(0x9c5e7329f4Fb3c9e4ea567987151aa09D8212BB3); //ETFX contract address uint256 private halvingCount; constructor () public ERC20("ETFX-FARM", "FETFX", 8) { halvingBlock = block.number.add(DURATION); } function stake(uint256 amount) external { if (halvingCount != 3) { checkHalving(); } address sender = msg.sender; rewards[sender] = earned(sender); startStaking[sender] = block.number; _mint(sender, amount); ETFX.safeTransferFrom(sender, address(this), amount); } function withdraw(uint256 amount) external { if (halvingCount != 3) { checkHalving(); } address sender = msg.sender; rewards[sender] = earned(sender); if (balanceOf(sender) == amount) { startStaking[sender] = 0; } else { startStaking[sender] = block.number; } ETFX.safeTransfer(sender, amount); _burn(sender, amount); } function earned(address account) public view returns (uint256) { uint256 accountStartStaking = startStaking[account]; uint256 deltaRewards; if (accountStartStaking != 0) { uint256 period; period = block.number.sub(accountStartStaking).div(ONEDAY); deltaRewards = balanceOf(account).mul(period).mul(rewardPerToken()).div(1e8); } deltaRewards = deltaRewards.add(rewards[account]); if (ETFX.balanceOf(address(this)).sub(totalSupply()) < deltaRewards) { deltaRewards = ETFX.balanceOf(address(this)).sub(totalSupply()); } return deltaRewards; } function exit() external { if (halvingCount != 3) { checkHalving(); } address sender = msg.sender; uint256 unstake = balanceOf(sender); ETFX.safeTransfer(sender, unstake.add(earned(sender))); _burn(sender, unstake); startStaking[sender] = 0; rewards[sender] = 0; } function getReward() external { if (halvingCount != 3) { checkHalving(); } address sender = msg.sender; uint256 reward = earned(sender); if (reward != 0) { startStaking[sender] = block.number; ETFX.safeTransfer(sender, reward); rewards[sender] = 0; } } function rewardPerToken() public view returns (uint256) { if (totalSupply() == 0) { return 0; } return mintSpeed.mul(1e8).div(totalSupply()); } function checkHalving() internal { if (block.number >= halvingBlock) { halvingBlock = block.number.add(DURATION); mintSpeed = mintSpeed.mul(50).div(100); halvingCount++; } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DURATION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ONEDAY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"earned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"exit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"halvingBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardPerToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"stake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052641365112100600a553480156200001a57600080fd5b506040518060400160405280600981526020017f455446582d4641524d00000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f464554465800000000000000000000000000000000000000000000000000000081525060088260039080519060200190620000a19291906200024c565b508160049080519060200190620000ba9291906200024c565b5080600560006101000a81548160ff021916908360ff16021790555050505060016006819055506000620000f3620001bb60201b60201c565b905080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350620001af6202a30043620001c360201b620017a21790919060201c565b600b81905550620002fb565b600033905090565b60008082840190508381101562000242576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200028f57805160ff1916838001178555620002c0565b82800160010185558215620002c0579182015b82811115620002bf578251825591602001919060010190620002a2565b5b509050620002cf9190620002d3565b5090565b620002f891905b80821115620002f4576000816000905550600101620002da565b5090565b90565b612a33806200030b6000396000f3fe608060405234801561001057600080fd5b506004361061014c5760003560e01c806370a08231116100c3578063a694fc3a1161007c578063a694fc3a146105e7578063a9059cbb14610615578063cd3daf9d1461067b578063dd62ed3e14610699578063e9fad8ee14610711578063f2fde38b1461071b5761014c565b806370a0823114610434578063715018a61461048c578063718dceb9146104965780638da5cb5b146104b457806395d89b41146104fe578063a457c2d7146105815761014c565b806323499c071161011557806323499c07146102ce57806323b872dd146102ec5780632e1a7d4d14610372578063313ce567146103a057806339509351146103c45780633d18b9121461042a5761014c565b80628cc2621461015157806306fdde03146101a9578063095ea7b31461022c57806318160ddd146102925780631be05289146102b0575b600080fd5b6101936004803603602081101561016757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061075f565b6040518082815260200191505060405180910390f35b6101b1610a58565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156101f15780820151818401526020810190506101d6565b50505050905090810190601f16801561021e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102786004803603604081101561024257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610afa565b604051808215151515815260200191505060405180910390f35b61029a610b18565b6040518082815260200191505060405180910390f35b6102b8610b22565b6040518082815260200191505060405180910390f35b6102d6610b29565b6040518082815260200191505060405180910390f35b6103586004803603606081101561030257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610b2f565b604051808215151515815260200191505060405180910390f35b61039e6004803603602081101561038857600080fd5b8101908080359060200190929190505050610c08565b005b6103a8610d58565b604051808260ff1660ff16815260200191505060405180910390f35b610410600480360360408110156103da57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610d6f565b604051808215151515815260200191505060405180910390f35b610432610e22565b005b6104766004803603602081101561044a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610f1c565b6040518082815260200191505060405180910390f35b610494610f64565b005b61049e6110ef565b6040518082815260200191505060405180910390f35b6104bc6110f5565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61050661111f565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561054657808201518184015260208101905061052b565b50505050905090810190601f1680156105735780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6105cd6004803603604081101561059757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506111c1565b604051808215151515815260200191505060405180910390f35b610613600480360360208110156105fd57600080fd5b810190808035906020019092919050505061128e565b005b6106616004803603604081101561062b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611385565b604051808215151515815260200191505060405180910390f35b6106836113a3565b6040518082815260200191505060405180910390f35b6106fb600480360360408110156106af57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506113f5565b6040518082815260200191505060405180910390f35b61071961147c565b005b61075d6004803603602081101561073157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611592565b005b600080600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060008082146108265760006107d66116806107c8854361182a90919063ffffffff16565b61187490919063ffffffff16565b90506108226305f5e1006108146107eb6113a3565b610806856107f88b610f1c565b6118be90919063ffffffff16565b6118be90919063ffffffff16565b61187490919063ffffffff16565b9150505b610878600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054826117a290919063ffffffff16565b905080610960610886610b18565b739c5e7329f4fb3c9e4ea567987151aa09d8212bb373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561091757600080fd5b505afa15801561092b573d6000803e3d6000fd5b505050506040513d602081101561094157600080fd5b810190808051906020019092919050505061182a90919063ffffffff16565b1015610a4e57610a4b610971610b18565b739c5e7329f4fb3c9e4ea567987151aa09d8212bb373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015610a0257600080fd5b505afa158015610a16573d6000803e3d6000fd5b505050506040513d6020811015610a2c57600080fd5b810190808051906020019092919050505061182a90919063ffffffff16565b90505b8092505050919050565b606060038054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610af05780601f10610ac557610100808354040283529160200191610af0565b820191906000526020600020905b815481529060010190602001808311610ad357829003601f168201915b5050505050905090565b6000610b0e610b07611944565b848461194c565b6001905092915050565b6000600254905090565b6202a30081565b600b5481565b6000610b3c848484611b43565b610bfd84610b48611944565b610bf88560405180606001604052806028815260200161291d60289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610bae611944565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e049092919063ffffffff16565b61194c565b600190509392505050565b6003600c5414610c1b57610c1a611ec4565b5b6000339050610c298161075f565b600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081610c7682610f1c565b1415610cc6576000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610d0b565b43600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b610d4a8183739c5e7329f4fb3c9e4ea567987151aa09d8212bb373ffffffffffffffffffffffffffffffffffffffff16611f2d9092919063ffffffff16565b610d548183611fe5565b5050565b6000600560009054906101000a900460ff16905090565b6000610e18610d7c611944565b84610e138560016000610d8d611944565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117a290919063ffffffff16565b61194c565b6001905092915050565b6003600c5414610e3557610e34611ec4565b5b60003390506000610e458261075f565b905060008114610f185743600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610ed28282739c5e7329f4fb3c9e4ea567987151aa09d8212bb373ffffffffffffffffffffffffffffffffffffffff16611f2d9092919063ffffffff16565b6000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f6c611944565b73ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461102e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b61168081565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156111b75780601f1061118c576101008083540402835291602001916111b7565b820191906000526020600020905b81548152906001019060200180831161119a57829003601f168201915b5050505050905090565b60006112846111ce611944565b8461127f856040518060600160405280602581526020016129d960259139600160006111f8611944565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e049092919063ffffffff16565b61194c565b6001905092915050565b6003600c54146112a1576112a0611ec4565b5b60003390506112af8161075f565b600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555043600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061134081836121a9565b611381813084739c5e7329f4fb3c9e4ea567987151aa09d8212bb373ffffffffffffffffffffffffffffffffffffffff16612370909392919063ffffffff16565b5050565b6000611399611392611944565b8484611b43565b6001905092915050565b6000806113ae610b18565b14156113bd57600090506113f2565b6113ef6113c8610b18565b6113e16305f5e100600a546118be90919063ffffffff16565b61187490919063ffffffff16565b90505b90565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6003600c541461148f5761148e611ec4565b5b6000339050600061149f82610f1c565b90506114fa826114c06114b18561075f565b846117a290919063ffffffff16565b739c5e7329f4fb3c9e4ea567987151aa09d8212bb373ffffffffffffffffffffffffffffffffffffffff16611f2d9092919063ffffffff16565b6115048282611fe5565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b61159a611944565b73ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461165c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116e2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061288e6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080828401905083811015611820576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600061186c83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611e04565b905092915050565b60006118b683836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061245d565b905092915050565b6000808314156118d1576000905061193e565b60008284029050828482816118e257fe5b0414611939576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806128fc6021913960400191505060405180910390fd5b809150505b92915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156119d2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061298b6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a58576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806128b46022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611bc9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806129666025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c4f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806128496023913960400191505060405180910390fd5b611c5a838383612523565b611cc5816040518060600160405280602681526020016128d6602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e049092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611d58816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117a290919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b6000838311158290611eb1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611e76578082015181840152602081019050611e5b565b50505050905090810190601f168015611ea35780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600b544310611f2b57611ee36202a300436117a290919063ffffffff16565b600b81905550611f126064611f046032600a546118be90919063ffffffff16565b61187490919063ffffffff16565b600a81905550600c600081548092919060010191905055505b565b611fe08363a9059cbb60e01b8484604051602401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050612528565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561206b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806129456021913960400191505060405180910390fd5b61207782600083612523565b6120e28160405180606001604052806022815260200161286c602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e049092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506121398160025461182a90919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561224c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b61225860008383612523565b61226d816002546117a290919063ffffffff16565b6002819055506122c4816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117a290919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b612457846323b872dd60e01b858585604051602401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050612528565b50505050565b60008083118290612509576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156124ce5780820151818401526020810190506124b3565b50505050905090810190601f1680156124fb5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161251557fe5b049050809150509392505050565b505050565b606061258a826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166126179092919063ffffffff16565b9050600081511115612612578080602001905160208110156125ab57600080fd5b8101908080519060200190929190505050612611576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806129af602a913960400191505060405180910390fd5b5b505050565b6060612626848460008561262f565b90509392505050565b606061263a85612835565b6126ac576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b602083106126fc57805182526020820191506020810190506020830392506126d9565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d806000811461275e576040519150601f19603f3d011682016040523d82523d6000602084013e612763565b606091505b5091509150811561277857809250505061282d565b60008151111561278b5780518082602001fd5b836040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156127f25780820151818401526020810190506127d7565b50505050905090810190601f16801561281f5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b949350505050565b600080823b90506000811191505091905056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573735361666545524332303a204552433230206f7065726174696f6e20646964206e6f74207375636365656445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220d4da27e9f85c8380f44e1dca60a11af27ed0b7fcbc4bc77ec58e525e5d9f134764736f6c634300060b0033
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061014c5760003560e01c806370a08231116100c3578063a694fc3a1161007c578063a694fc3a146105e7578063a9059cbb14610615578063cd3daf9d1461067b578063dd62ed3e14610699578063e9fad8ee14610711578063f2fde38b1461071b5761014c565b806370a0823114610434578063715018a61461048c578063718dceb9146104965780638da5cb5b146104b457806395d89b41146104fe578063a457c2d7146105815761014c565b806323499c071161011557806323499c07146102ce57806323b872dd146102ec5780632e1a7d4d14610372578063313ce567146103a057806339509351146103c45780633d18b9121461042a5761014c565b80628cc2621461015157806306fdde03146101a9578063095ea7b31461022c57806318160ddd146102925780631be05289146102b0575b600080fd5b6101936004803603602081101561016757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061075f565b6040518082815260200191505060405180910390f35b6101b1610a58565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156101f15780820151818401526020810190506101d6565b50505050905090810190601f16801561021e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102786004803603604081101561024257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610afa565b604051808215151515815260200191505060405180910390f35b61029a610b18565b6040518082815260200191505060405180910390f35b6102b8610b22565b6040518082815260200191505060405180910390f35b6102d6610b29565b6040518082815260200191505060405180910390f35b6103586004803603606081101561030257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610b2f565b604051808215151515815260200191505060405180910390f35b61039e6004803603602081101561038857600080fd5b8101908080359060200190929190505050610c08565b005b6103a8610d58565b604051808260ff1660ff16815260200191505060405180910390f35b610410600480360360408110156103da57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610d6f565b604051808215151515815260200191505060405180910390f35b610432610e22565b005b6104766004803603602081101561044a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610f1c565b6040518082815260200191505060405180910390f35b610494610f64565b005b61049e6110ef565b6040518082815260200191505060405180910390f35b6104bc6110f5565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61050661111f565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561054657808201518184015260208101905061052b565b50505050905090810190601f1680156105735780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6105cd6004803603604081101561059757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506111c1565b604051808215151515815260200191505060405180910390f35b610613600480360360208110156105fd57600080fd5b810190808035906020019092919050505061128e565b005b6106616004803603604081101561062b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611385565b604051808215151515815260200191505060405180910390f35b6106836113a3565b6040518082815260200191505060405180910390f35b6106fb600480360360408110156106af57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506113f5565b6040518082815260200191505060405180910390f35b61071961147c565b005b61075d6004803603602081101561073157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611592565b005b600080600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060008082146108265760006107d66116806107c8854361182a90919063ffffffff16565b61187490919063ffffffff16565b90506108226305f5e1006108146107eb6113a3565b610806856107f88b610f1c565b6118be90919063ffffffff16565b6118be90919063ffffffff16565b61187490919063ffffffff16565b9150505b610878600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054826117a290919063ffffffff16565b905080610960610886610b18565b739c5e7329f4fb3c9e4ea567987151aa09d8212bb373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561091757600080fd5b505afa15801561092b573d6000803e3d6000fd5b505050506040513d602081101561094157600080fd5b810190808051906020019092919050505061182a90919063ffffffff16565b1015610a4e57610a4b610971610b18565b739c5e7329f4fb3c9e4ea567987151aa09d8212bb373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015610a0257600080fd5b505afa158015610a16573d6000803e3d6000fd5b505050506040513d6020811015610a2c57600080fd5b810190808051906020019092919050505061182a90919063ffffffff16565b90505b8092505050919050565b606060038054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610af05780601f10610ac557610100808354040283529160200191610af0565b820191906000526020600020905b815481529060010190602001808311610ad357829003601f168201915b5050505050905090565b6000610b0e610b07611944565b848461194c565b6001905092915050565b6000600254905090565b6202a30081565b600b5481565b6000610b3c848484611b43565b610bfd84610b48611944565b610bf88560405180606001604052806028815260200161291d60289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610bae611944565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e049092919063ffffffff16565b61194c565b600190509392505050565b6003600c5414610c1b57610c1a611ec4565b5b6000339050610c298161075f565b600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081610c7682610f1c565b1415610cc6576000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610d0b565b43600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b610d4a8183739c5e7329f4fb3c9e4ea567987151aa09d8212bb373ffffffffffffffffffffffffffffffffffffffff16611f2d9092919063ffffffff16565b610d548183611fe5565b5050565b6000600560009054906101000a900460ff16905090565b6000610e18610d7c611944565b84610e138560016000610d8d611944565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117a290919063ffffffff16565b61194c565b6001905092915050565b6003600c5414610e3557610e34611ec4565b5b60003390506000610e458261075f565b905060008114610f185743600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610ed28282739c5e7329f4fb3c9e4ea567987151aa09d8212bb373ffffffffffffffffffffffffffffffffffffffff16611f2d9092919063ffffffff16565b6000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f6c611944565b73ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461102e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b61168081565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156111b75780601f1061118c576101008083540402835291602001916111b7565b820191906000526020600020905b81548152906001019060200180831161119a57829003601f168201915b5050505050905090565b60006112846111ce611944565b8461127f856040518060600160405280602581526020016129d960259139600160006111f8611944565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e049092919063ffffffff16565b61194c565b6001905092915050565b6003600c54146112a1576112a0611ec4565b5b60003390506112af8161075f565b600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555043600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061134081836121a9565b611381813084739c5e7329f4fb3c9e4ea567987151aa09d8212bb373ffffffffffffffffffffffffffffffffffffffff16612370909392919063ffffffff16565b5050565b6000611399611392611944565b8484611b43565b6001905092915050565b6000806113ae610b18565b14156113bd57600090506113f2565b6113ef6113c8610b18565b6113e16305f5e100600a546118be90919063ffffffff16565b61187490919063ffffffff16565b90505b90565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6003600c541461148f5761148e611ec4565b5b6000339050600061149f82610f1c565b90506114fa826114c06114b18561075f565b846117a290919063ffffffff16565b739c5e7329f4fb3c9e4ea567987151aa09d8212bb373ffffffffffffffffffffffffffffffffffffffff16611f2d9092919063ffffffff16565b6115048282611fe5565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b61159a611944565b73ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461165c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116e2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061288e6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080828401905083811015611820576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600061186c83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611e04565b905092915050565b60006118b683836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061245d565b905092915050565b6000808314156118d1576000905061193e565b60008284029050828482816118e257fe5b0414611939576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806128fc6021913960400191505060405180910390fd5b809150505b92915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156119d2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061298b6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a58576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806128b46022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611bc9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806129666025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c4f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806128496023913960400191505060405180910390fd5b611c5a838383612523565b611cc5816040518060600160405280602681526020016128d6602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e049092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611d58816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117a290919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b6000838311158290611eb1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611e76578082015181840152602081019050611e5b565b50505050905090810190601f168015611ea35780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600b544310611f2b57611ee36202a300436117a290919063ffffffff16565b600b81905550611f126064611f046032600a546118be90919063ffffffff16565b61187490919063ffffffff16565b600a81905550600c600081548092919060010191905055505b565b611fe08363a9059cbb60e01b8484604051602401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050612528565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561206b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806129456021913960400191505060405180910390fd5b61207782600083612523565b6120e28160405180606001604052806022815260200161286c602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e049092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506121398160025461182a90919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561224c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b61225860008383612523565b61226d816002546117a290919063ffffffff16565b6002819055506122c4816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117a290919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b612457846323b872dd60e01b858585604051602401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050612528565b50505050565b60008083118290612509576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156124ce5780820151818401526020810190506124b3565b50505050905090810190601f1680156124fb5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161251557fe5b049050809150509392505050565b505050565b606061258a826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166126179092919063ffffffff16565b9050600081511115612612578080602001905160208110156125ab57600080fd5b8101908080519060200190929190505050612611576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806129af602a913960400191505060405180910390fd5b5b505050565b6060612626848460008561262f565b90509392505050565b606061263a85612835565b6126ac576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b602083106126fc57805182526020820191506020810190506020830392506126d9565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d806000811461275e576040519150601f19603f3d011682016040523d82523d6000602084013e612763565b606091505b5091509150811561277857809250505061282d565b60008151111561278b5780518082602001fd5b836040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156127f25780820151818401526020810190506127d7565b50505050905090810190601f16801561281f5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b949350505050565b600080823b90506000811191505091905056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573735361666545524332303a204552433230206f7065726174696f6e20646964206e6f74207375636365656445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220d4da27e9f85c8380f44e1dca60a11af27ed0b7fcbc4bc77ec58e525e5d9f134764736f6c634300060b0033
Deployed Bytecode Sourcemap
34375:3194:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35905:610;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;5805:85;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7917:169;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;6886:100;;;:::i;:::-;;;;;;;;;;;;;;;;;;;34825:41;;;:::i;:::-;;;;;;;;;;;;;;;;;;;34894:27;;;:::i;:::-;;;;;;;;;;;;;;;;;;;8560:321;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;35511:388;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;6736:85;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;9290:218;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;36843:319;;;:::i;:::-;;7049:119;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;18901:148;;;:::i;:::-;;34761:37;;;:::i;:::-;;;;;;;;;;;;;;;;;;;18259:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;6009:89;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10011:269;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;35197:308;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;7381:175;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;37170:179;;;:::i;:::-;;;;;;;;;;;;;;;;;;;7619:151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;36523:314;;;:::i;:::-;;19204:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;35905:610;35959:7;35975:27;36005:12;:21;36018:7;36005:21;;;;;;;;;;;;;;;;35975:51;;36033:20;36087:1;36064:19;:24;36060:213;;36099:14;36131:49;34794:4;36131:37;36148:19;36131:12;:16;;:37;;;;:::i;:::-;:41;;:49;;;;:::i;:::-;36122:58;;36204:61;36261:3;36204:52;36239:16;:14;:16::i;:::-;36204:30;36227:6;36204:18;36214:7;36204:9;:18::i;:::-;:22;;:30;;;;:::i;:::-;:34;;:52;;;;:::i;:::-;:56;;:61;;;;:::i;:::-;36189:76;;36060:213;;36294:34;36311:7;:16;36319:7;36311:16;;;;;;;;;;;;;;;;36294:12;:16;;:34;;;;:::i;:::-;36279:49;;36390:12;36339:48;36373:13;:11;:13::i;:::-;34972:42;36339:14;;;36362:4;36339:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:33;;:48;;;;:::i;:::-;:63;36335:149;;;36428:48;36462:13;:11;:13::i;:::-;34972:42;36428:14;;;36451:4;36428:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:33;;:48;;;;:::i;:::-;36413:63;;36335:149;36497:12;36490:19;;;;35905:610;;;:::o;5805:85::-;5844:13;5877:5;5870:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5805:85;:::o;7917:169::-;8000:4;8017:39;8026:12;:10;:12::i;:::-;8040:7;8049:6;8017:8;:39::i;:::-;8074:4;8067:11;;7917:169;;;;:::o;6886:100::-;6939:7;6966:12;;6959:19;;6886:100;:::o;34825:41::-;34860:6;34825:41;:::o;34894:27::-;;;;:::o;8560:321::-;8666:4;8683:36;8693:6;8701:9;8712:6;8683:9;:36::i;:::-;8730:121;8739:6;8747:12;:10;:12::i;:::-;8761:89;8799:6;8761:89;;;;;;;;;;;;;;;;;:11;:19;8773:6;8761:19;;;;;;;;;;;;;;;:33;8781:12;:10;:12::i;:::-;8761:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;8730:8;:121::i;:::-;8869:4;8862:11;;8560:321;;;;;:::o;35511:388::-;35581:1;35565:12;;:17;35561:54;;35593:14;:12;:14::i;:::-;35561:54;35621:14;35638:10;35621:27;;35673:14;35680:6;35673;:14::i;:::-;35655:7;:15;35663:6;35655:15;;;;;;;;;;;;;;;:32;;;;35719:6;35698:17;35708:6;35698:9;:17::i;:::-;:27;35694:132;;;35759:1;35736:12;:20;35749:6;35736:20;;;;;;;;;;;;;;;:24;;;;35694:132;;;35806:12;35783;:20;35796:6;35783:20;;;;;;;;;;;;;;;:35;;;;35694:132;35832:33;35850:6;35858;34972:42;35832:17;;;;:33;;;;;:::i;:::-;35872:21;35878:6;35886;35872:5;:21::i;:::-;35511:388;;:::o;6736:85::-;6779:5;6804:9;;;;;;;;;;;6797:16;;6736:85;:::o;9290:218::-;9378:4;9395:83;9404:12;:10;:12::i;:::-;9418:7;9427:50;9466:10;9427:11;:25;9439:12;:10;:12::i;:::-;9427:25;;;;;;;;;;;;;;;:34;9453:7;9427:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;9395:8;:83::i;:::-;9496:4;9489:11;;9290:218;;;;:::o;36843:319::-;36900:1;36884:12;;:17;36880:54;;36912:14;:12;:14::i;:::-;36880:54;36940:14;36957:10;36940:27;;36974:14;36991;36998:6;36991;:14::i;:::-;36974:31;;37026:1;37016:6;:11;37012:145;;37063:12;37040;:20;37053:6;37040:20;;;;;;;;;;;;;;;:35;;;;37086:33;37104:6;37112;34972:42;37086:17;;;;:33;;;;;:::i;:::-;37148:1;37130:7;:15;37138:6;37130:15;;;;;;;;;;;;;;;:19;;;;37012:145;36843:319;;:::o;7049:119::-;7115:7;7142:9;:18;7152:7;7142:18;;;;;;;;;;;;;;;;7135:25;;7049:119;;;:::o;18901:148::-;18481:12;:10;:12::i;:::-;18471:22;;:6;;;;;;;;;;;:22;;;18463:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19008:1:::1;18971:40;;18992:6;;;;;;;;;;;18971:40;;;;;;;;;;;;19039:1;19022:6;;:19;;;;;;;;;;;;;;;;;;18901:148::o:0;34761:37::-;34794:4;34761:37;:::o;18259:79::-;18297:7;18324:6;;;;;;;;;;;18317:13;;18259:79;:::o;6009:89::-;6050:13;6083:7;6076:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6009:89;:::o;10011:269::-;10104:4;10121:129;10130:12;:10;:12::i;:::-;10144:7;10153:96;10192:15;10153:96;;;;;;;;;;;;;;;;;:11;:25;10165:12;:10;:12::i;:::-;10153:25;;;;;;;;;;;;;;;:34;10179:7;10153:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;10121:8;:129::i;:::-;10268:4;10261:11;;10011:269;;;;:::o;35197:308::-;35264:1;35248:12;;:17;35244:54;;35276:14;:12;:14::i;:::-;35244:54;35304:14;35321:10;35304:27;;35356:14;35363:6;35356;:14::i;:::-;35338:7;:15;35346:6;35338:15;;;;;;;;;;;;;;;:32;;;;35400:12;35377;:20;35390:6;35377:20;;;;;;;;;;;;;;;:35;;;;35419:21;35425:6;35433;35419:5;:21::i;:::-;35447:52;35469:6;35485:4;35492:6;34972:42;35447:21;;;;:52;;;;;;:::i;:::-;35197:308;;:::o;7381:175::-;7467:4;7484:42;7494:12;:10;:12::i;:::-;7508:9;7519:6;7484:9;:42::i;:::-;7544:4;7537:11;;7381:175;;;;:::o;37170:179::-;37217:7;37254:1;37237:13;:11;:13::i;:::-;:18;37233:51;;;37275:1;37268:8;;;;37233:51;37306:37;37329:13;:11;:13::i;:::-;37306:18;37320:3;37306:9;;:13;;:18;;;;:::i;:::-;:22;;:37;;;;:::i;:::-;37290:53;;37170:179;;:::o;7619:151::-;7708:7;7735:11;:18;7747:5;7735:18;;;;;;;;;;;;;;;:27;7754:7;7735:27;;;;;;;;;;;;;;;;7728:34;;7619:151;;;;:::o;36523:314::-;36575:1;36559:12;;:17;36555:54;;36587:14;:12;:14::i;:::-;36555:54;36615:14;36632:10;36615:27;;36649:15;36667:17;36677:6;36667:9;:17::i;:::-;36649:35;;36691:54;36709:6;36717:27;36729:14;36736:6;36729;:14::i;:::-;36717:7;:11;;:27;;;;:::i;:::-;34972:42;36691:17;;;;:54;;;;;:::i;:::-;36752:22;36758:6;36766:7;36752:5;:22::i;:::-;36804:1;36781:12;:20;36794:6;36781:20;;;;;;;;;;;;;;;:24;;;;36830:1;36812:7;:15;36820:6;36812:15;;;;;;;;;;;;;;;:19;;;;36523:314;;:::o;19204:244::-;18481:12;:10;:12::i;:::-;18471:22;;:6;;;;;;;;;;;:22;;;18463:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19313:1:::1;19293:22;;:8;:22;;;;19285:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19403:8;19374:38;;19395:6;;;;;;;;;;;19374:38;;;;;;;;;;;;19432:8;19423:6;;:17;;;;;;;;;;;;;;;;;;19204:244:::0;:::o;20301:181::-;20359:7;20379:9;20395:1;20391;:5;20379:17;;20420:1;20415;:6;;20407:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20473:1;20466:8;;;20301:181;;;;:::o;20765:136::-;20823:7;20850:43;20854:1;20857;20850:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;20843:50;;20765:136;;;;:::o;22602:132::-;22660:7;22687:39;22691:1;22694;22687:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;22680:46;;22602:132;;;;:::o;21655:471::-;21713:7;21963:1;21958;:6;21954:47;;;21988:1;21981:8;;;;21954:47;22013:9;22029:1;22025;:5;22013:17;;22058:1;22053;22049;:5;;;;;;:10;22041:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22117:1;22110:8;;;21655:471;;;;;:::o;3322:106::-;3375:15;3410:10;3403:17;;3322:106;:::o;13158:346::-;13277:1;13260:19;;:5;:19;;;;13252:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13358:1;13339:21;;:7;:21;;;;13331:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13442:6;13412:11;:18;13424:5;13412:18;;;;;;;;;;;;;;;:27;13431:7;13412:27;;;;;;;;;;;;;;;:36;;;;13480:7;13464:32;;13473:5;13464:32;;;13489:6;13464:32;;;;;;;;;;;;;;;;;;13158:346;;;:::o;10770:539::-;10894:1;10876:20;;:6;:20;;;;10868:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10978:1;10957:23;;:9;:23;;;;10949:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11033:47;11054:6;11062:9;11073:6;11033:20;:47::i;:::-;11113:71;11135:6;11113:71;;;;;;;;;;;;;;;;;:9;:17;11123:6;11113:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;11093:9;:17;11103:6;11093:17;;;;;;;;;;;;;;;:91;;;;11218:32;11243:6;11218:9;:20;11228:9;11218:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;11195:9;:20;11205:9;11195:20;;;;;;;;;;;;;;;:55;;;;11283:9;11266:35;;11275:6;11266:35;;;11294:6;11266:35;;;;;;;;;;;;;;;;;;10770:539;;;:::o;21204:192::-;21290:7;21323:1;21318;:6;;21326:12;21310:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21350:9;21366:1;21362;:5;21350:17;;21387:1;21380:8;;;21204:192;;;;;:::o;37355:207::-;37415:12;;37399;:28;37395:162;;37453:26;34860:6;37453:12;:16;;:26;;;;:::i;:::-;37438:12;:41;;;;37500:26;37522:3;37500:17;37514:2;37500:9;;:13;;:17;;;;:::i;:::-;:21;;:26;;;;:::i;:::-;37488:9;:38;;;;37535:12;;:14;;;;;;;;;;;;;37395:162;37355:207::o;31302:177::-;31385:86;31405:5;31435:23;;;31460:2;31464:5;31412:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31385:19;:86::i;:::-;31302:177;;;:::o;12300:418::-;12403:1;12384:21;;:7;:21;;;;12376:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12456:49;12477:7;12494:1;12498:6;12456:20;:49::i;:::-;12539:68;12562:6;12539:68;;;;;;;;;;;;;;;;;:9;:18;12549:7;12539:18;;;;;;;;;;;;;;;;:22;;:68;;;;;:::i;:::-;12518:9;:18;12528:7;12518:18;;;;;;;;;;;;;;;:89;;;;12633:24;12650:6;12633:12;;:16;;:24;;;;:::i;:::-;12618:12;:39;;;;12699:1;12673:37;;12682:7;12673:37;;;12703:6;12673:37;;;;;;;;;;;;;;;;;;12300:418;;:::o;11590:378::-;11693:1;11674:21;;:7;:21;;;;11666:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11744:49;11773:1;11777:7;11786:6;11744:20;:49::i;:::-;11821:24;11838:6;11821:12;;:16;;:24;;;;:::i;:::-;11806:12;:39;;;;11877:30;11900:6;11877:9;:18;11887:7;11877:18;;;;;;;;;;;;;;;;:22;;:30;;;;:::i;:::-;11856:9;:18;11866:7;11856:18;;;;;;;;;;;;;;;:51;;;;11944:7;11923:37;;11940:1;11923:37;;;11953:6;11923:37;;;;;;;;;;;;;;;;;;11590:378;;:::o;31487:205::-;31588:96;31608:5;31638:27;;;31667:4;31673:2;31677:5;31615:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31588:19;:96::i;:::-;31487:205;;;;:::o;23230:278::-;23316:7;23348:1;23344;:5;23351:12;23336:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23375:9;23391:1;23387;:5;;;;;;23375:17;;23499:1;23492:8;;;23230:278;;;;;:::o;14529:92::-;;;;:::o;33607:761::-;34031:23;34057:69;34085:4;34057:69;;;;;;;;;;;;;;;;;34065:5;34057:27;;;;:69;;;;;:::i;:::-;34031:95;;34161:1;34141:10;:17;:21;34137:224;;;34283:10;34272:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34264:85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34137:224;33607:761;;;:::o;28372:196::-;28475:12;28507:53;28530:6;28538:4;28544:1;28547:12;28507:22;:53::i;:::-;28500:60;;28372:196;;;;;:::o;29749:979::-;29879:12;29912:18;29923:6;29912:10;:18::i;:::-;29904:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30038:12;30052:23;30079:6;:11;;30099:8;30110:4;30079:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30037:78;;;;30130:7;30126:595;;;30161:10;30154:17;;;;;;30126:595;30295:1;30275:10;:17;:21;30271:439;;;30538:10;30532:17;30599:15;30586:10;30582:2;30578:19;30571:44;30486:148;30681:12;30674:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29749:979;;;;;;;:::o;25454:422::-;25514:4;25722:12;25833:7;25821:20;25813:28;;25867:1;25860:4;:8;25853:15;;;25454:422;;;:::o
Swarm Source
ipfs://d4da27e9f85c8380f44e1dca60a11af27ed0b7fcbc4bc77ec58e525e5d9f1347
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.