ERC-20
Overview
Max Total Supply
9,778.158528 ERC20 ***
Holders
1
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 6 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
zpaToken
Compiler Version
v0.6.6+commit.6c089d02
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-11-22 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/GSN/Context.sol pragma solidity ^0.6.0; /* * 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; } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol pragma solidity ^0.6.0; /** * Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * 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); /** * 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); /** * 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); /** * 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); function decimals() external view returns (uint8); /** * 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); /** * Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File: @openzeppelin/contracts/math/SafeMath.sol pragma solidity ^0.6.0; /** * 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 { /** * 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; } /** * 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"); } /** * 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; } /** * 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; } /** * 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"); } /** * 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; } /** * 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"); } /** * 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; } } // File: @openzeppelin/contracts/utils/Address.sol pragma solidity ^0.6.2; /** * Collection of functions related to the address type */ library Address { /** * Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // According to EIP-1052, 0x0 is the value returned for not-yet created accounts // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned // for accounts without code, i.e. `keccak256('')` bytes32 codehash; bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470; // solhint-disable-next-line no-inline-assembly assembly { codehash := extcodehash(account) } return (codehash != accountHash && codehash != 0x0); } /** * 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"); } /** * 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"); } /** * 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); } /** * 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"); } /** * 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); } } } } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol pragma solidity ^0.6.0; /** * 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; /** * Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ constructor (string memory name, string memory symbol) public { _name = name; _symbol = symbol; _decimals = 18; } /** * Returns the name of the token. */ function name() public view returns (string memory) { return _name; } /** * Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view returns (string memory) { return _symbol; } /** * Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is * called. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view override returns (uint8) { return _decimals; } /** * See {IERC20-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _totalSupply; } /** * See {IERC20-balanceOf}. */ function balanceOf(address account) public view override returns (uint256) { return _balances[account]; } /** * 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; } /** * See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * 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; } /** * 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; } /** * 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; } /** * 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; } /** * 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"); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** 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"); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * 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"); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * 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); } /** * 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_; } } // File: @openzeppelin/contracts/access/Ownable.sol pragma solidity ^0.6.0; /** * 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. */ contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * Initializes the contract setting the deployer as the initial owner. */ constructor () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * Returns the address of the current owner. */ function governance() public view returns (address) { return _owner; } /** * Throws if called by any account other than the owner. */ modifier onlyGovernance() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferGovernance(address newOwner) internal virtual onlyGovernance { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } 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"); } } } // File: contracts/zpaTokenTemplate.sol // zpaTokens are Stabilize proxy tokens that serve as receipts for deposits into the Aave lending pool // zpaTokens increase gradually in value as the underlying value of the contract increases // The underlying asset in Aave does increase in size and users of zpaTokens can share a percentage of the underlying asset // When someone deposits into the zpaToken contract, tokens are minted and when they redeem, tokens are burned // Withdraw fees are split between the staking pool and the treasury pragma solidity ^0.6.6; interface LendingPoolAddressesProvider { function getLendingPool() external view returns (address); function getLendingPoolCore() external view returns (address); } interface LendingPool { function deposit(address, uint256, uint16) external; } interface aTokenContract is IERC20 { function redeem(uint256 _amount) external; } interface StabilizeStakingPool { function notifyRewardAmount(uint256) external; } interface StabilizePriceOracle { function getPrice(address _address) external view returns (uint256); } interface UniswapRouter { function WETH() external pure returns (address); // Get address for WETH function swapExactTokensForTokens(uint, uint, address[] calldata, address, uint) external returns (uint[] memory); } contract zpaToken is ERC20("Stabilize Proxy Aave USDC Token", "zpa-USDC"), Ownable { using SafeERC20 for IERC20; // Variables uint256 constant divisionFactor = 100000; // First the fee schedule // Max fee applies when token price <= 0.98%, min fee applies when token price >= 1.02 uint256 public maxFee = 100; // 100 = 0.1%, 100000 = 100%, max fee restricted in contract is 10% uint256 public minFee = 20; // 20 = 0.02% // Split between treasury and staking pool uint256 public percentStakers = 50000; // 50% of WETH goes to stakers, can be changed // Token information // AaveProvider address on Mainnet: 0x24a42fD28C976A61Df5D00D0599C34c4f90748c8 // Kovan Testnet: 0x506B0B2CF20FAA8f38a4E2B524EE43e1f4458Cc5 address public aaveProviderAddress = 0x24a42fD28C976A61Df5D00D0599C34c4f90748c8; LendingPoolAddressesProvider aaveProvider; IERC20 private _underlyingAsset; // Token of the deposited asset aTokenContract private _aToken; // The aToken returned to this contract by depositing address public treasuryAddress; address public stakingAddress; // Address to the STBZ staking pool StabilizePriceOracle private oracleContract; // A reference to the price oracle contract address constant uniswapRouterAddress = address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); //Address of Uniswap Router v2 // Events event Wrapped(address indexed user, uint256 amount); event Unwrapped(address indexed user, uint256 amount, uint256 fee); constructor (IERC20 _asset, aTokenContract _aavetoken, address _treasury, address _staking, StabilizePriceOracle _oracle) public { _underlyingAsset = _asset; _aToken = _aavetoken; treasuryAddress = _treasury; stakingAddress = _staking; oracleContract = _oracle; aaveProvider = LendingPoolAddressesProvider(aaveProviderAddress); // Load the lending address provider _setupDecimals(_aToken.decimals()); } function underlyingAsset() public view returns (address) { return address(_underlyingAsset); } function totalPrincipalAndInterest() public view returns (uint256) { return _aToken.balanceOf(address(this)); // This will be the same balance as all deposited plus interest earned } function pricePerToken() external view returns (uint256) { if(totalSupply() == 0){ return 1e18; // Shown in Wei units }else{ return uint256(1e18).mul(totalPrincipalAndInterest()).div(totalSupply()); } } // This calculates the fee percent function calculateWithdrawFee() public view returns (uint256) { if(maxFee == 0){return 0;} // Bypass if there is no fee uint256 price = oracleContract.getPrice(underlyingAsset()); if(price == 0){ price = 1e18; // Default price is $1 } uint256 highPrice = 1020000000000000000; // 1.02 uint256 lowPrice = 980000000000000000; // 0.98 // Calculate the fee uint256 fee = 0; if(price >= highPrice){ fee = minFee; }else if(price <= lowPrice){ fee = maxFee; }else{ uint256 feeRange = maxFee.sub(minFee); uint256 priceRange = highPrice.sub(lowPrice); uint256 diff = price.sub(lowPrice).mul(feeRange).div(priceRange); // The difference between the current price and the minimum fee = maxFee.sub(diff); } return fee; } // Now handle deposits into Aave function deposit(uint256 amount) public { require(amount > 0, "Cannot deposit 0"); _underlyingAsset.safeTransferFrom(_msgSender(), address(this), amount); // Transfer stablecoin to this address // Now send those same stablecoins to the Aave lending pool LendingPool lendingPool = LendingPool(aaveProvider.getLendingPool()); // Get the lending pool // Approve the lending pool core to transfer from this contract the amount deposited _underlyingAsset.safeApprove(aaveProvider.getLendingPoolCore(), amount); // Now finally deposit and receive aTokens into this contract, the balance of aTokens increases uint256 total = totalPrincipalAndInterest(); // We are going to verify Aave deposits 1:1 uint256 _underlyingBalance = _underlyingAsset.balanceOf(address(this)); lendingPool.deposit(underlyingAsset(), amount, 0); // Last field is referral code, there is none // Aave tokens are returned to this contract 1:1 with what was deposited but increase in quantity with time uint256 movedBalance = _underlyingBalance.sub(_underlyingAsset.balanceOf(address(this))); require(movedBalance == amount, "Aave failed to properly move the entire amount"); // Now lets figure out how many tokens to print to user uint256 mintAmount = amount; if(totalSupply() > 0){ // There is already a balance here, calculate our share mintAmount = amount.mul(totalSupply()).div(total); // Our share of the total } _mint(_msgSender(),mintAmount); // Now mint new zpa-token to the depositor emit Wrapped(_msgSender(), amount); } function redeem(uint256 amount) public { // Essentially withdraw our equivalent share of the pool based on share value require(amount > 0, "Cannot withdraw 0"); require(totalSupply() > 0, "No value redeemable"); uint256 tokenTotal = totalSupply(); // Now burn the token _burn(_msgSender(),amount); // Burn the amount, will fail if user doesn't have enough uint256 withdrawAmount = totalPrincipalAndInterest().mul(amount).div(tokenTotal); // We are going to verify Aave redeems 1:1 uint256 _underlyingBalance = _underlyingAsset.balanceOf(address(this)); // Get the underlying asset amount in contract _aToken.redeem(withdrawAmount); // Burn the aTokens to redeem the underlying asset 1:1 uint256 movedBalance = _underlyingAsset.balanceOf(address(this)).sub(_underlyingBalance); require(movedBalance >= withdrawAmount, "Aave failed to properly move the entire amount"); // Should be equal at least // Pay fee upon withdrawing uint256 fee = calculateWithdrawFee(); fee = withdrawAmount.mul(fee).div(divisionFactor); withdrawAmount = withdrawAmount.sub(fee); // Now withdraw this amount to the user and send fee to treasury _underlyingAsset.safeTransfer(_msgSender(), withdrawAmount); // Now we split the fee between the staking pool and the treasury // First we need to buy WETH from Uniswap with fee if(fee > 0){ UniswapRouter router = UniswapRouter(uniswapRouterAddress); IERC20 weth = IERC20(router.WETH()); swapUniswap(address(_underlyingAsset), address(weth), fee); if(weth.balanceOf(address(this)) > 0){ // Split the amount sent to the treasury and stakers uint256 stakersAmount = weth.balanceOf(address(this)).mul(percentStakers).div(divisionFactor); uint256 treasuryAmount = weth.balanceOf(address(this)).sub(stakersAmount); if(treasuryAmount > 0){ weth.safeTransfer(treasuryAddress, treasuryAmount); } if(stakersAmount > 0){ if(stakingAddress != address(0)){ weth.safeTransfer(stakingAddress, stakersAmount); StabilizeStakingPool(stakingAddress).notifyRewardAmount(stakersAmount); }else{ // No staking pool selected, just send to the treasury weth.safeTransfer(treasuryAddress, stakersAmount); } } } } emit Unwrapped(_msgSender(), withdrawAmount, fee); } function swapUniswap(address _from, address _to, uint256 _sellAmount) internal { require(_to != address(0)); address[] memory path; UniswapRouter router = UniswapRouter(uniswapRouterAddress); address weth = router.WETH(); if (_from == weth || _to == weth) { path = new address[](2); path[0] = _from; path[1] = _to; } else { path = new address[](3); path[0] = _from; path[1] = weth; path[2] = _to; } IERC20(_from).safeApprove(address(router), 0); // Some tokens require this to be set to 0 first IERC20(_from).safeApprove(address(router), _sellAmount); router.swapExactTokensForTokens(_sellAmount, 1, path, address(this), now.add(60)); } // Governance functions // Timelock variables uint256 private _timelockStart; // The start of the timelock to change governance variables uint256 private _timelockType; // The function that needs to be changed uint256 constant _timelockDuration = 86400; // Timelock is 24 hours // Reusable timelock variables uint256[2] private _timelock_data; address private _timelock_address; modifier timelockConditionsMet(uint256 _type) { require(_timelockType == _type, "Timelock not acquired for this function"); _timelockType = 0; // Reset the type once the timelock is used if(totalSupply() > 0){ // Timelock is only required after tokens exist require(now >= _timelockStart + _timelockDuration, "Timelock time not met"); } _; } // Change the owner of the token contract // -------------------- function startGovernanceChange(address _address) external onlyGovernance { _timelockStart = now; _timelockType = 1; _timelock_address = _address; } function finishGovernanceChange() external onlyGovernance timelockConditionsMet(1) { transferGovernance(_timelock_address); } // -------------------- // Used to change the fee rates // -------------------- function startChangeFeeRates(uint256 _max, uint256 _min) external onlyGovernance { require(_max <= 10000,"Fee can never be greater than 10%"); require(_min <= _max,"Min fee must be less than or equal to max fee"); _timelockStart = now; _timelockType = 2; _timelock_data[0] = _max; _timelock_data[1] = _min; } function finishChangeFeeRates() external onlyGovernance timelockConditionsMet(2) { maxFee = _timelock_data[0]; minFee = _timelock_data[1]; } // -------------------- // Change the treasury address // -------------------- function startChangeTreasury(address _address) external onlyGovernance { _timelockStart = now; _timelockType = 3; _timelock_address = _address; } function finishChangeTreasury() external onlyGovernance timelockConditionsMet(3) { treasuryAddress = _timelock_address; } // -------------------- // Change the staking address // -------------------- function startChangeStakingPool(address _address) external onlyGovernance { _timelockStart = now; _timelockType = 4; _timelock_address = _address; } function finishChangeStakingPool() external onlyGovernance timelockConditionsMet(4) { stakingAddress = _timelock_address; } // -------------------- // Change the price oracle contract used, in case of upgrades // -------------------- function startChangePriceOracle(address _address) external onlyGovernance { _timelockStart = now; _timelockType = 5; _timelock_address = _address; } function finishChangePriceOracle() external onlyGovernance timelockConditionsMet(5) { oracleContract = StabilizePriceOracle(_timelock_address); } // -------------------- // Change the percent going to stakers for WETH // -------------------- function startChangeStakersPercent(uint256 _percent) external onlyGovernance { require(_percent <= 100000,"Percent cannot be greater than 100%"); _timelockStart = now; _timelockType = 6; _timelock_data[0] = _percent; } function finishChangeStakersPercent() external onlyGovernance timelockConditionsMet(6) { percentStakers = _timelock_data[0]; } // -------------------- }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"contract IERC20","name":"_asset","type":"address"},{"internalType":"contract aTokenContract","name":"_aavetoken","type":"address"},{"internalType":"address","name":"_treasury","type":"address"},{"internalType":"address","name":"_staking","type":"address"},{"internalType":"contract StabilizePriceOracle","name":"_oracle","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"fee","type":"uint256"}],"name":"Unwrapped","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Wrapped","type":"event"},{"inputs":[],"name":"aaveProviderAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"calculateWithdrawFee","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":"uint256","name":"amount","type":"uint256"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"finishChangeFeeRates","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"finishChangePriceOracle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"finishChangeStakersPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"finishChangeStakingPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"finishChangeTreasury","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"finishGovernanceChange","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"governance","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"maxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"percentStakers","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pricePerToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"redeem","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stakingAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"},{"internalType":"uint256","name":"_min","type":"uint256"}],"name":"startChangeFeeRates","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"startChangePriceOracle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_percent","type":"uint256"}],"name":"startChangeStakersPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"startChangeStakingPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"startChangeTreasury","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"startGovernanceChange","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalPrincipalAndInterest","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"treasuryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"underlyingAsset","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040526064600655601460075561c350600855600980546001600160a01b0319167324a42fd28c976a61df5d00d0599c34c4f90748c81790553480156200004757600080fd5b506040516200359f3803806200359f833981810160405260a08110156200006d57600080fd5b508051602080830151604080850151606086015160809096015182518084018452601f81527f53746162696c697a652050726f78792041617665205553444320546f6b656e00818701908152845180860190955260088552677a70612d5553444360c01b968501969096528051969794969295919390929091620000f5916003919062000290565b5080516200010b90600490602084019062000290565b50506005805460ff19166012179055506000620001306001600160e01b036200027516565b60058054610100600160a81b0319166101006001600160a01b03841690810291909117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600b80546001600160a01b038088166001600160a01b031992831617909255600c80548784169083161790819055600d8054878516908416179055600e8054868516908416179055600f8054858516908416179055600954600a8054909316908416179091556040805163313ce56760e01b815290516200026a93929092169163313ce56791600481810192602092909190829003018186803b1580156200022d57600080fd5b505afa15801562000242573d6000803e3d6000fd5b505050506040513d60208110156200025957600080fd5b50516001600160e01b036200027a16565b505050505062000332565b335b90565b6005805460ff191660ff92909216919091179055565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620002d357805160ff191683800117855562000303565b8280016001018555821562000303579182015b8281111562000303578251825591602001919060010190620002e6565b506200031192915062000315565b5090565b6200027791905b808211156200031157600081556001016200031c565b61325d80620003426000396000f3fe608060405234801561001057600080fd5b506004361061021c5760003560e01c806387f61c8111610125578063d5344f79116100ad578063db006a751161007c578063db006a7514610545578063dd62ed3e14610562578063e41a055a14610590578063f03bcd8e14610598578063f8008776146105be5761021c565b8063d5344f791461050a578063d6e6184a14610512578063d7b4be2414610535578063d822979f1461053d5761021c565b8063b6b55f25116100f4578063b6b55f25146104cd578063b9195072146104ea578063ba49848b146104f2578063bd3a4dfa146104fa578063c5f956af146105025761021c565b806387f61c811461046557806395d89b411461046d578063a457c2d714610475578063a9059cbb146104a15761021c565b80633e3bc623116101a857806357a537991161017757806357a53799146104035780635aa6e6751461040b57806370a082311461042f5780637158da7c146104555780637b1b1de61461045d5761021c565b80633e3bc623146103b05780634d607fb2146103d65780634e3b4f32146103de578063529216a6146103fb5761021c565b806318160ddd116101ef57806318160ddd1461032057806323b872dd1461032857806324ec75901461035e578063313ce5671461036657806339509351146103845761021c565b806301f59d161461022157806306fdde031461023b578063095ea7b3146102b857806314aabd01146102f8575b600080fd5b6102296105e4565b60408051918252519081900360200190f35b6102436105ea565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561027d578181015183820152602001610265565b50505050905090810190601f1680156102aa5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102e4600480360360408110156102ce57600080fd5b506001600160a01b038135169060200135610681565b604080519115158252519081900360200190f35b61031e6004803603602081101561030e57600080fd5b50356001600160a01b031661069f565b005b610229610727565b6102e46004803603606081101561033e57600080fd5b506001600160a01b0381358116916020810135909116906040013561072d565b6102296107ba565b61036e6107c0565b6040805160ff9092168252519081900360200190f35b6102e46004803603604081101561039a57600080fd5b506001600160a01b0381351690602001356107c9565b61031e600480360360208110156103c657600080fd5b50356001600160a01b031661081d565b6102296108a5565b61031e600480360360208110156103f457600080fd5b5035610a13565b610229610ac0565b61031e610b3c565b610413610c69565b604080516001600160a01b039092168252519081900360200190f35b6102296004803603602081101561044557600080fd5b50356001600160a01b0316610c7d565b610413610c98565b610229610ca7565b61031e610cf6565b610243610e23565b6102e46004803603604081101561048b57600080fd5b506001600160a01b038135169060200135610e84565b6102e4600480360360408110156104b757600080fd5b506001600160a01b038135169060200135610ef2565b61031e600480360360208110156104e357600080fd5b5035610f06565b61031e6112db565b61031e6113fb565b61031e611528565b61041361163f565b61022961164e565b61031e6004803603604081101561052857600080fd5b5080359060200135611654565b610413611745565b61031e611754565b61031e6004803603602081101561055b57600080fd5b5035611865565b6102296004803603604081101561057857600080fd5b506001600160a01b0381358116916020013516611e97565b610413611ec2565b61031e600480360360208110156105ae57600080fd5b50356001600160a01b0316611ed1565b61031e600480360360208110156105d457600080fd5b50356001600160a01b0316611f59565b60065481565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106765780601f1061064b57610100808354040283529160200191610676565b820191906000526020600020905b81548152906001019060200180831161065957829003601f168201915b505050505090505b90565b600061069561068e611fe1565b8484611fe5565b5060015b92915050565b6106a7611fe1565b60055461010090046001600160a01b039081169116146106fc576040805162461bcd60e51b815260206004820181905260248201526000805160206130d5833981519152604482015290519081900360640190fd5b426010556004601155601480546001600160a01b0319166001600160a01b0392909216919091179055565b60025490565b600061073a8484846120d1565b6107b084610746611fe1565b6107ab856040518060600160405280602881526020016130ad602891396001600160a01b038a16600090815260016020526040812090610784611fe1565b6001600160a01b03168152602081019190915260400160002054919063ffffffff61222d16565b611fe5565b5060019392505050565b60075481565b60055460ff1690565b60006106956107d6611fe1565b846107ab85600160006107e7611fe1565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff6122c416565b610825611fe1565b60055461010090046001600160a01b0390811691161461087a576040805162461bcd60e51b815260206004820181905260248201526000805160206130d5833981519152604482015290519081900360640190fd5b426010556005601155601480546001600160a01b0319166001600160a01b0392909216919091179055565b6000600654600014156108ba5750600061067e565b600f546000906001600160a01b03166341976e096108d6610c98565b6040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b0316815260200191505060206040518083038186803b15801561091c57600080fd5b505afa158015610930573d6000803e3d6000fd5b505050506040513d602081101561094657600080fd5b505190508061095a5750670de0b6b3a76400005b670e27c49886e60000670d99a8cec7e20000600082841061097e5750600754610a0b565b81841161098e5750600654610a0b565b60006109a760075460065461232590919063ffffffff16565b905060006109bb858563ffffffff61232516565b905060006109ef826109e3856109d78b8a63ffffffff61232516565b9063ffffffff61236716565b9063ffffffff6123c016565b600654909150610a05908263ffffffff61232516565b93505050505b935050505090565b610a1b611fe1565b60055461010090046001600160a01b03908116911614610a70576040805162461bcd60e51b815260206004820181905260248201526000805160206130d5833981519152604482015290519081900360640190fd5b620186a0811115610ab25760405162461bcd60e51b815260040180806020018281038252602381526020018061313b6023913960400191505060405180910390fd5b426010556006601155601255565b600c54604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b158015610b0b57600080fd5b505afa158015610b1f573d6000803e3d6000fd5b505050506040513d6020811015610b3557600080fd5b5051905090565b610b44611fe1565b60055461010090046001600160a01b03908116911614610b99576040805162461bcd60e51b815260206004820181905260248201526000805160206130d5833981519152604482015290519081900360640190fd5b60058060115414610bdb5760405162461bcd60e51b81526004018080602001828103825260278152602001806130656027913960400191505060405180910390fd5b60006011819055610bea610727565b1115610c44576201518060105401421015610c44576040805162461bcd60e51b8152602060048201526015602482015274151a5b595b1bd8dac81d1a5b59481b9bdd081b595d605a1b604482015290519081900360640190fd5b50601454600f80546001600160a01b0319166001600160a01b03909216919091179055565b60055461010090046001600160a01b031690565b6001600160a01b031660009081526020819052604090205490565b600b546001600160a01b031690565b6000610cb1610727565b610cc45750670de0b6b3a764000061067e565b610cef610ccf610727565b6109e3610cda610ac0565b670de0b6b3a76400009063ffffffff61236716565b905061067e565b610cfe611fe1565b60055461010090046001600160a01b03908116911614610d53576040805162461bcd60e51b815260206004820181905260248201526000805160206130d5833981519152604482015290519081900360640190fd5b60048060115414610d955760405162461bcd60e51b81526004018080602001828103825260278152602001806130656027913960400191505060405180910390fd5b60006011819055610da4610727565b1115610dfe576201518060105401421015610dfe576040805162461bcd60e51b8152602060048201526015602482015274151a5b595b1bd8dac81d1a5b59481b9bdd081b595d605a1b604482015290519081900360640190fd5b50601454600e80546001600160a01b0319166001600160a01b03909216919091179055565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106765780601f1061064b57610100808354040283529160200191610676565b6000610695610e91611fe1565b846107ab856040518060600160405280602581526020016132036025913960016000610ebb611fe1565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff61222d16565b6000610695610eff611fe1565b84846120d1565b60008111610f4e576040805162461bcd60e51b815260206004820152601060248201526f043616e6e6f74206465706f73697420360841b604482015290519081900360640190fd5b610f73610f59611fe1565b600b546001600160a01b031690308463ffffffff61240216565b600a5460408051630261bf8b60e01b815290516000926001600160a01b031691630261bf8b916004808301926020929190829003018186803b158015610fb857600080fd5b505afa158015610fcc573d6000803e3d6000fd5b505050506040513d6020811015610fe257600080fd5b5051600a546040805163076b7fbb60e51b81529051929350611075926001600160a01b039092169163ed6ff76091600480820192602092909190829003018186803b15801561103057600080fd5b505afa158015611044573d6000803e3d6000fd5b505050506040513d602081101561105a57600080fd5b5051600b546001600160a01b0316908463ffffffff61246216565b600061107f610ac0565b600b54604080516370a0823160e01b815230600482015290519293506000926001600160a01b03909216916370a0823191602480820192602092909190829003018186803b1580156110d057600080fd5b505afa1580156110e4573d6000803e3d6000fd5b505050506040513d60208110156110fa57600080fd5b505190506001600160a01b03831663d2d0e066611115610c98565b604080516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201889052600060448301819052905160648084019382900301818387803b15801561116757600080fd5b505af115801561117b573d6000803e3d6000fd5b5050600b54604080516370a0823160e01b815230600482015290516000945061120a93506001600160a01b03909216916370a0823191602480820192602092909190829003018186803b1580156111d157600080fd5b505afa1580156111e5573d6000803e3d6000fd5b505050506040513d60208110156111fb57600080fd5b5051839063ffffffff61232516565b905084811461124a5760405162461bcd60e51b815260040180806020018281038252602e815260200180613037602e913960400191505060405180910390fd5b846000611255610727565b111561127a57611277846109e361126a610727565b899063ffffffff61236716565b90505b61128b611285611fe1565b8261257a565b611293611fe1565b6001600160a01b03167f4700c1726b4198077cd40320a32c45265a1910521eb0ef713dd1d8412413d7fc876040518082815260200191505060405180910390a2505050505050565b6112e3611fe1565b60055461010090046001600160a01b03908116911614611338576040805162461bcd60e51b815260206004820181905260248201526000805160206130d5833981519152604482015290519081900360640190fd5b6001806011541461137a5760405162461bcd60e51b81526004018080602001828103825260278152602001806130656027913960400191505060405180910390fd5b60006011819055611389610727565b11156113e35762015180601054014210156113e3576040805162461bcd60e51b8152602060048201526015602482015274151a5b595b1bd8dac81d1a5b59481b9bdd081b595d605a1b604482015290519081900360640190fd5b6014546113f8906001600160a01b031661266a565b50565b611403611fe1565b60055461010090046001600160a01b03908116911614611458576040805162461bcd60e51b815260206004820181905260248201526000805160206130d5833981519152604482015290519081900360640190fd5b6003806011541461149a5760405162461bcd60e51b81526004018080602001828103825260278152602001806130656027913960400191505060405180910390fd5b600060118190556114a9610727565b1115611503576201518060105401421015611503576040805162461bcd60e51b8152602060048201526015602482015274151a5b595b1bd8dac81d1a5b59481b9bdd081b595d605a1b604482015290519081900360640190fd5b50601454600d80546001600160a01b0319166001600160a01b03909216919091179055565b611530611fe1565b60055461010090046001600160a01b03908116911614611585576040805162461bcd60e51b815260206004820181905260248201526000805160206130d5833981519152604482015290519081900360640190fd5b600280601154146115c75760405162461bcd60e51b81526004018080602001828103825260278152602001806130656027913960400191505060405180910390fd5b600060118190556115d6610727565b1115611630576201518060105401421015611630576040805162461bcd60e51b8152602060048201526015602482015274151a5b595b1bd8dac81d1a5b59481b9bdd081b595d605a1b604482015290519081900360640190fd5b50601254600655601354600755565b600d546001600160a01b031681565b60085481565b61165c611fe1565b60055461010090046001600160a01b039081169116146116b1576040805162461bcd60e51b815260206004820181905260248201526000805160206130d5833981519152604482015290519081900360640190fd5b6127108211156116f25760405162461bcd60e51b81526004018080602001828103825260218152602001806131826021913960400191505060405180910390fd5b818111156117315760405162461bcd60e51b815260040180806020018281038252602d81526020018061300a602d913960400191505060405180910390fd5b426010556002601155601291909155601355565b600e546001600160a01b031681565b61175c611fe1565b60055461010090046001600160a01b039081169116146117b1576040805162461bcd60e51b815260206004820181905260248201526000805160206130d5833981519152604482015290519081900360640190fd5b600680601154146117f35760405162461bcd60e51b81526004018080602001828103825260278152602001806130656027913960400191505060405180910390fd5b60006011819055611802610727565b111561185c57620151806010540142101561185c576040805162461bcd60e51b8152602060048201526015602482015274151a5b595b1bd8dac81d1a5b59481b9bdd081b595d605a1b604482015290519081900360640190fd5b50601254600855565b600081116118ae576040805162461bcd60e51b8152602060048201526011602482015270043616e6e6f74207769746864726177203607c1b604482015290519081900360640190fd5b60006118b8610727565b11611900576040805162461bcd60e51b81526020600482015260136024820152724e6f2076616c75652072656465656d61626c6560681b604482015290519081900360640190fd5b600061190a610727565b905061191d611917611fe1565b83612773565b600061192f826109e3856109d7610ac0565b600b54604080516370a0823160e01b815230600482015290519293506000926001600160a01b03909216916370a0823191602480820192602092909190829003018186803b15801561198057600080fd5b505afa158015611994573d6000803e3d6000fd5b505050506040513d60208110156119aa57600080fd5b5051600c546040805163db006a7560e01b81526004810186905290519293506001600160a01b039091169163db006a759160248082019260009290919082900301818387803b1580156119fc57600080fd5b505af1158015611a10573d6000803e3d6000fd5b5050600b54604080516370a0823160e01b8152306004820152905160009450611a9d935085926001600160a01b0316916370a08231916024808301926020929190829003018186803b158015611a6557600080fd5b505afa158015611a79573d6000803e3d6000fd5b505050506040513d6020811015611a8f57600080fd5b50519063ffffffff61232516565b905082811015611ade5760405162461bcd60e51b815260040180806020018281038252602e815260200180613037602e913960400191505060405180910390fd5b6000611ae86108a5565b9050611b01620186a06109e3868463ffffffff61236716565b9050611b13848263ffffffff61232516565b9350611b39611b20611fe1565b600b546001600160a01b0316908663ffffffff61286f16565b8015611e3f576000737a250d5630b4cf539739df2c5dacb4c659f2488d90506000816001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015611b9357600080fd5b505afa158015611ba7573d6000803e3d6000fd5b505050506040513d6020811015611bbd57600080fd5b5051600b54909150611bd9906001600160a01b031682856128c1565b604080516370a0823160e01b815230600482015290516000916001600160a01b038416916370a0823191602480820192602092909190829003018186803b158015611c2357600080fd5b505afa158015611c37573d6000803e3d6000fd5b505050506040513d6020811015611c4d57600080fd5b50511115611e3c576000611cf2620186a06109e3600854856001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b0316815260200191505060206040518083038186803b158015611cba57600080fd5b505afa158015611cce573d6000803e3d6000fd5b505050506040513d6020811015611ce457600080fd5b50519063ffffffff61236716565b90506000611d5082846001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b0316815260200191505060206040518083038186803b158015611a6557600080fd5b90508015611d7857600d54611d78906001600160a01b0385811691168363ffffffff61286f16565b8115611e3957600e546001600160a01b031615611e1957600e54611daf906001600160a01b0385811691168463ffffffff61286f16565b600e5460408051633c6b16ab60e01b81526004810185905290516001600160a01b0390921691633c6b16ab9160248082019260009290919082900301818387803b158015611dfc57600080fd5b505af1158015611e10573d6000803e3d6000fd5b50505050611e39565b600d54611e39906001600160a01b0385811691168463ffffffff61286f16565b50505b50505b611e47611fe1565b6001600160a01b03167ff64ae1cc3e0e07da9c895b3225439175cab5838aca24c4e74852704858c96a7b8583604051808381526020018281526020019250505060405180910390a2505050505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6009546001600160a01b031681565b611ed9611fe1565b60055461010090046001600160a01b03908116911614611f2e576040805162461bcd60e51b815260206004820181905260248201526000805160206130d5833981519152604482015290519081900360640190fd5b426010556003601155601480546001600160a01b0319166001600160a01b0392909216919091179055565b611f61611fe1565b60055461010090046001600160a01b03908116911614611fb6576040805162461bcd60e51b815260206004820181905260248201526000805160206130d5833981519152604482015290519081900360640190fd5b426010556001601155601480546001600160a01b0319166001600160a01b0392909216919091179055565b3390565b6001600160a01b03831661202a5760405162461bcd60e51b815260040180806020018281038252602481526020018061315e6024913960400191505060405180910390fd5b6001600160a01b03821661206f5760405162461bcd60e51b8152600401808060200182810382526022815260200180612fc26022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166121165760405162461bcd60e51b81526004018080602001828103825260258152602001806131166025913960400191505060405180910390fd5b6001600160a01b03821661215b5760405162461bcd60e51b8152600401808060200182810382526023815260200180612f576023913960400191505060405180910390fd5b61219e81604051806060016040528060268152602001612fe4602691396001600160a01b038616600090815260208190526040902054919063ffffffff61222d16565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546121d3908263ffffffff6122c416565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600081848411156122bc5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612281578181015183820152602001612269565b50505050905090810190601f1680156122ae5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008282018381101561231e576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b600061231e83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061222d565b60008261237657506000610699565b8282028284828161238357fe5b041461231e5760405162461bcd60e51b815260040180806020018281038252602181526020018061308c6021913960400191505060405180910390fd5b600061231e83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612c83565b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b17905261245c908590612ce8565b50505050565b8015806124e8575060408051636eb1769f60e11b81523060048201526001600160a01b03848116602483015291519185169163dd62ed3e91604480820192602092909190829003018186803b1580156124ba57600080fd5b505afa1580156124ce573d6000803e3d6000fd5b505050506040513d60208110156124e457600080fd5b5051155b6125235760405162461bcd60e51b81526004018080602001828103825260368152602001806131cd6036913960400191505060405180910390fd5b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663095ea7b360e01b179052612575908490612ce8565b505050565b6001600160a01b0382166125d5576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6002546125e8908263ffffffff6122c416565b6002556001600160a01b038216600090815260208190526040902054612614908263ffffffff6122c416565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b612672611fe1565b60055461010090046001600160a01b039081169116146126c7576040805162461bcd60e51b815260206004820181905260248201526000805160206130d5833981519152604482015290519081900360640190fd5b6001600160a01b03811661270c5760405162461bcd60e51b8152600401808060200182810382526026815260200180612f9c6026913960400191505060405180910390fd5b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6001600160a01b0382166127b85760405162461bcd60e51b81526004018080602001828103825260218152602001806130f56021913960400191505060405180910390fd5b6127fb81604051806060016040528060228152602001612f7a602291396001600160a01b038516600090815260208190526040902054919063ffffffff61222d16565b6001600160a01b038316600090815260208190526040902055600254612827908263ffffffff61232516565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052612575908490612ce8565b6001600160a01b0382166128d457600080fd5b60606000737a250d5630b4cf539739df2c5dacb4c659f2488d90506000816001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561292a57600080fd5b505afa15801561293e573d6000803e3d6000fd5b505050506040513d602081101561295457600080fd5b505190506001600160a01b0386811690821614806129835750806001600160a01b0316856001600160a01b0316145b15612a0957604080516002808252606082018352909160208301908036833701905050925085836000815181106129b657fe5b60200260200101906001600160a01b031690816001600160a01b03168152505084836001815181106129e457fe5b60200260200101906001600160a01b031690816001600160a01b031681525050612ab5565b6040805160038082526080820190925290602082016060803683370190505092508583600081518110612a3857fe5b60200260200101906001600160a01b031690816001600160a01b0316815250508083600181518110612a6657fe5b60200260200101906001600160a01b031690816001600160a01b0316815250508483600281518110612a9457fe5b60200260200101906001600160a01b031690816001600160a01b0316815250505b612ad06001600160a01b03871683600063ffffffff61246216565b612aea6001600160a01b038716838663ffffffff61246216565b6001600160a01b0382166338ed17398560018630612b0f42603c63ffffffff6122c416565b6040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03166001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015612b88578181015183820152602001612b70565b505050509050019650505050505050600060405180830381600087803b158015612bb157600080fd5b505af1158015612bc5573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526020811015612bee57600080fd5b8101908080516040519392919084640100000000821115612c0e57600080fd5b908301906020820185811115612c2357600080fd5b8251866020820283011164010000000082111715612c4057600080fd5b82525081516020918201928201910280838360005b83811015612c6d578181015183820152602001612c55565b5050505090500160405250505050505050505050565b60008183612cd25760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315612281578181015183820152602001612269565b506000838581612cde57fe5b0495945050505050565b6060612d3d826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316612d999092919063ffffffff16565b80519091501561257557808060200190516020811015612d5c57600080fd5b50516125755760405162461bcd60e51b815260040180806020018281038252602a8152602001806131a3602a913960400191505060405180910390fd5b6060612da88484600085612db0565b949350505050565b6060612dbb85612f1d565b612e0c576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b60208310612e4b5780518252601f199092019160209182019101612e2c565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114612ead576040519150601f19603f3d011682016040523d82523d6000602084013e612eb2565b606091505b50915091508115612ec6579150612da89050565b805115612ed65780518082602001fd5b60405162461bcd60e51b8152602060048201818152865160248401528651879391928392604401919085019080838360008315612281578181015183820152602001612269565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470818114801590612da857505015159291505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654d696e20666565206d757374206265206c657373207468616e206f7220657175616c20746f206d61782066656541617665206661696c656420746f2070726f7065726c79206d6f76652074686520656e7469726520616d6f756e7454696d656c6f636b206e6f7420616371756972656420666f7220746869732066756e6374696f6e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737350657263656e742063616e6e6f742062652067726561746572207468616e203130302545524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734665652063616e206e657665722062652067726561746572207468616e203130255361666545524332303a204552433230206f7065726174696f6e20646964206e6f7420737563636565645361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f20746f206e6f6e2d7a65726f20616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220531a1b27d65dfe2acdfab9bb46ece443f90f1500b82cd8a4c452fd95dc98076364736f6c63430006060033000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb480000000000000000000000009ba00d6856a4edf4665bca2c2309936572473b7e00000000000000000000000042cbe17335ef8d52f8d1e0a261ea2e78e829c56e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000438462bf1b159c64c05d795b5589435f318c25fc
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061021c5760003560e01c806387f61c8111610125578063d5344f79116100ad578063db006a751161007c578063db006a7514610545578063dd62ed3e14610562578063e41a055a14610590578063f03bcd8e14610598578063f8008776146105be5761021c565b8063d5344f791461050a578063d6e6184a14610512578063d7b4be2414610535578063d822979f1461053d5761021c565b8063b6b55f25116100f4578063b6b55f25146104cd578063b9195072146104ea578063ba49848b146104f2578063bd3a4dfa146104fa578063c5f956af146105025761021c565b806387f61c811461046557806395d89b411461046d578063a457c2d714610475578063a9059cbb146104a15761021c565b80633e3bc623116101a857806357a537991161017757806357a53799146104035780635aa6e6751461040b57806370a082311461042f5780637158da7c146104555780637b1b1de61461045d5761021c565b80633e3bc623146103b05780634d607fb2146103d65780634e3b4f32146103de578063529216a6146103fb5761021c565b806318160ddd116101ef57806318160ddd1461032057806323b872dd1461032857806324ec75901461035e578063313ce5671461036657806339509351146103845761021c565b806301f59d161461022157806306fdde031461023b578063095ea7b3146102b857806314aabd01146102f8575b600080fd5b6102296105e4565b60408051918252519081900360200190f35b6102436105ea565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561027d578181015183820152602001610265565b50505050905090810190601f1680156102aa5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102e4600480360360408110156102ce57600080fd5b506001600160a01b038135169060200135610681565b604080519115158252519081900360200190f35b61031e6004803603602081101561030e57600080fd5b50356001600160a01b031661069f565b005b610229610727565b6102e46004803603606081101561033e57600080fd5b506001600160a01b0381358116916020810135909116906040013561072d565b6102296107ba565b61036e6107c0565b6040805160ff9092168252519081900360200190f35b6102e46004803603604081101561039a57600080fd5b506001600160a01b0381351690602001356107c9565b61031e600480360360208110156103c657600080fd5b50356001600160a01b031661081d565b6102296108a5565b61031e600480360360208110156103f457600080fd5b5035610a13565b610229610ac0565b61031e610b3c565b610413610c69565b604080516001600160a01b039092168252519081900360200190f35b6102296004803603602081101561044557600080fd5b50356001600160a01b0316610c7d565b610413610c98565b610229610ca7565b61031e610cf6565b610243610e23565b6102e46004803603604081101561048b57600080fd5b506001600160a01b038135169060200135610e84565b6102e4600480360360408110156104b757600080fd5b506001600160a01b038135169060200135610ef2565b61031e600480360360208110156104e357600080fd5b5035610f06565b61031e6112db565b61031e6113fb565b61031e611528565b61041361163f565b61022961164e565b61031e6004803603604081101561052857600080fd5b5080359060200135611654565b610413611745565b61031e611754565b61031e6004803603602081101561055b57600080fd5b5035611865565b6102296004803603604081101561057857600080fd5b506001600160a01b0381358116916020013516611e97565b610413611ec2565b61031e600480360360208110156105ae57600080fd5b50356001600160a01b0316611ed1565b61031e600480360360208110156105d457600080fd5b50356001600160a01b0316611f59565b60065481565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106765780601f1061064b57610100808354040283529160200191610676565b820191906000526020600020905b81548152906001019060200180831161065957829003601f168201915b505050505090505b90565b600061069561068e611fe1565b8484611fe5565b5060015b92915050565b6106a7611fe1565b60055461010090046001600160a01b039081169116146106fc576040805162461bcd60e51b815260206004820181905260248201526000805160206130d5833981519152604482015290519081900360640190fd5b426010556004601155601480546001600160a01b0319166001600160a01b0392909216919091179055565b60025490565b600061073a8484846120d1565b6107b084610746611fe1565b6107ab856040518060600160405280602881526020016130ad602891396001600160a01b038a16600090815260016020526040812090610784611fe1565b6001600160a01b03168152602081019190915260400160002054919063ffffffff61222d16565b611fe5565b5060019392505050565b60075481565b60055460ff1690565b60006106956107d6611fe1565b846107ab85600160006107e7611fe1565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff6122c416565b610825611fe1565b60055461010090046001600160a01b0390811691161461087a576040805162461bcd60e51b815260206004820181905260248201526000805160206130d5833981519152604482015290519081900360640190fd5b426010556005601155601480546001600160a01b0319166001600160a01b0392909216919091179055565b6000600654600014156108ba5750600061067e565b600f546000906001600160a01b03166341976e096108d6610c98565b6040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b0316815260200191505060206040518083038186803b15801561091c57600080fd5b505afa158015610930573d6000803e3d6000fd5b505050506040513d602081101561094657600080fd5b505190508061095a5750670de0b6b3a76400005b670e27c49886e60000670d99a8cec7e20000600082841061097e5750600754610a0b565b81841161098e5750600654610a0b565b60006109a760075460065461232590919063ffffffff16565b905060006109bb858563ffffffff61232516565b905060006109ef826109e3856109d78b8a63ffffffff61232516565b9063ffffffff61236716565b9063ffffffff6123c016565b600654909150610a05908263ffffffff61232516565b93505050505b935050505090565b610a1b611fe1565b60055461010090046001600160a01b03908116911614610a70576040805162461bcd60e51b815260206004820181905260248201526000805160206130d5833981519152604482015290519081900360640190fd5b620186a0811115610ab25760405162461bcd60e51b815260040180806020018281038252602381526020018061313b6023913960400191505060405180910390fd5b426010556006601155601255565b600c54604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b158015610b0b57600080fd5b505afa158015610b1f573d6000803e3d6000fd5b505050506040513d6020811015610b3557600080fd5b5051905090565b610b44611fe1565b60055461010090046001600160a01b03908116911614610b99576040805162461bcd60e51b815260206004820181905260248201526000805160206130d5833981519152604482015290519081900360640190fd5b60058060115414610bdb5760405162461bcd60e51b81526004018080602001828103825260278152602001806130656027913960400191505060405180910390fd5b60006011819055610bea610727565b1115610c44576201518060105401421015610c44576040805162461bcd60e51b8152602060048201526015602482015274151a5b595b1bd8dac81d1a5b59481b9bdd081b595d605a1b604482015290519081900360640190fd5b50601454600f80546001600160a01b0319166001600160a01b03909216919091179055565b60055461010090046001600160a01b031690565b6001600160a01b031660009081526020819052604090205490565b600b546001600160a01b031690565b6000610cb1610727565b610cc45750670de0b6b3a764000061067e565b610cef610ccf610727565b6109e3610cda610ac0565b670de0b6b3a76400009063ffffffff61236716565b905061067e565b610cfe611fe1565b60055461010090046001600160a01b03908116911614610d53576040805162461bcd60e51b815260206004820181905260248201526000805160206130d5833981519152604482015290519081900360640190fd5b60048060115414610d955760405162461bcd60e51b81526004018080602001828103825260278152602001806130656027913960400191505060405180910390fd5b60006011819055610da4610727565b1115610dfe576201518060105401421015610dfe576040805162461bcd60e51b8152602060048201526015602482015274151a5b595b1bd8dac81d1a5b59481b9bdd081b595d605a1b604482015290519081900360640190fd5b50601454600e80546001600160a01b0319166001600160a01b03909216919091179055565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106765780601f1061064b57610100808354040283529160200191610676565b6000610695610e91611fe1565b846107ab856040518060600160405280602581526020016132036025913960016000610ebb611fe1565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff61222d16565b6000610695610eff611fe1565b84846120d1565b60008111610f4e576040805162461bcd60e51b815260206004820152601060248201526f043616e6e6f74206465706f73697420360841b604482015290519081900360640190fd5b610f73610f59611fe1565b600b546001600160a01b031690308463ffffffff61240216565b600a5460408051630261bf8b60e01b815290516000926001600160a01b031691630261bf8b916004808301926020929190829003018186803b158015610fb857600080fd5b505afa158015610fcc573d6000803e3d6000fd5b505050506040513d6020811015610fe257600080fd5b5051600a546040805163076b7fbb60e51b81529051929350611075926001600160a01b039092169163ed6ff76091600480820192602092909190829003018186803b15801561103057600080fd5b505afa158015611044573d6000803e3d6000fd5b505050506040513d602081101561105a57600080fd5b5051600b546001600160a01b0316908463ffffffff61246216565b600061107f610ac0565b600b54604080516370a0823160e01b815230600482015290519293506000926001600160a01b03909216916370a0823191602480820192602092909190829003018186803b1580156110d057600080fd5b505afa1580156110e4573d6000803e3d6000fd5b505050506040513d60208110156110fa57600080fd5b505190506001600160a01b03831663d2d0e066611115610c98565b604080516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201889052600060448301819052905160648084019382900301818387803b15801561116757600080fd5b505af115801561117b573d6000803e3d6000fd5b5050600b54604080516370a0823160e01b815230600482015290516000945061120a93506001600160a01b03909216916370a0823191602480820192602092909190829003018186803b1580156111d157600080fd5b505afa1580156111e5573d6000803e3d6000fd5b505050506040513d60208110156111fb57600080fd5b5051839063ffffffff61232516565b905084811461124a5760405162461bcd60e51b815260040180806020018281038252602e815260200180613037602e913960400191505060405180910390fd5b846000611255610727565b111561127a57611277846109e361126a610727565b899063ffffffff61236716565b90505b61128b611285611fe1565b8261257a565b611293611fe1565b6001600160a01b03167f4700c1726b4198077cd40320a32c45265a1910521eb0ef713dd1d8412413d7fc876040518082815260200191505060405180910390a2505050505050565b6112e3611fe1565b60055461010090046001600160a01b03908116911614611338576040805162461bcd60e51b815260206004820181905260248201526000805160206130d5833981519152604482015290519081900360640190fd5b6001806011541461137a5760405162461bcd60e51b81526004018080602001828103825260278152602001806130656027913960400191505060405180910390fd5b60006011819055611389610727565b11156113e35762015180601054014210156113e3576040805162461bcd60e51b8152602060048201526015602482015274151a5b595b1bd8dac81d1a5b59481b9bdd081b595d605a1b604482015290519081900360640190fd5b6014546113f8906001600160a01b031661266a565b50565b611403611fe1565b60055461010090046001600160a01b03908116911614611458576040805162461bcd60e51b815260206004820181905260248201526000805160206130d5833981519152604482015290519081900360640190fd5b6003806011541461149a5760405162461bcd60e51b81526004018080602001828103825260278152602001806130656027913960400191505060405180910390fd5b600060118190556114a9610727565b1115611503576201518060105401421015611503576040805162461bcd60e51b8152602060048201526015602482015274151a5b595b1bd8dac81d1a5b59481b9bdd081b595d605a1b604482015290519081900360640190fd5b50601454600d80546001600160a01b0319166001600160a01b03909216919091179055565b611530611fe1565b60055461010090046001600160a01b03908116911614611585576040805162461bcd60e51b815260206004820181905260248201526000805160206130d5833981519152604482015290519081900360640190fd5b600280601154146115c75760405162461bcd60e51b81526004018080602001828103825260278152602001806130656027913960400191505060405180910390fd5b600060118190556115d6610727565b1115611630576201518060105401421015611630576040805162461bcd60e51b8152602060048201526015602482015274151a5b595b1bd8dac81d1a5b59481b9bdd081b595d605a1b604482015290519081900360640190fd5b50601254600655601354600755565b600d546001600160a01b031681565b60085481565b61165c611fe1565b60055461010090046001600160a01b039081169116146116b1576040805162461bcd60e51b815260206004820181905260248201526000805160206130d5833981519152604482015290519081900360640190fd5b6127108211156116f25760405162461bcd60e51b81526004018080602001828103825260218152602001806131826021913960400191505060405180910390fd5b818111156117315760405162461bcd60e51b815260040180806020018281038252602d81526020018061300a602d913960400191505060405180910390fd5b426010556002601155601291909155601355565b600e546001600160a01b031681565b61175c611fe1565b60055461010090046001600160a01b039081169116146117b1576040805162461bcd60e51b815260206004820181905260248201526000805160206130d5833981519152604482015290519081900360640190fd5b600680601154146117f35760405162461bcd60e51b81526004018080602001828103825260278152602001806130656027913960400191505060405180910390fd5b60006011819055611802610727565b111561185c57620151806010540142101561185c576040805162461bcd60e51b8152602060048201526015602482015274151a5b595b1bd8dac81d1a5b59481b9bdd081b595d605a1b604482015290519081900360640190fd5b50601254600855565b600081116118ae576040805162461bcd60e51b8152602060048201526011602482015270043616e6e6f74207769746864726177203607c1b604482015290519081900360640190fd5b60006118b8610727565b11611900576040805162461bcd60e51b81526020600482015260136024820152724e6f2076616c75652072656465656d61626c6560681b604482015290519081900360640190fd5b600061190a610727565b905061191d611917611fe1565b83612773565b600061192f826109e3856109d7610ac0565b600b54604080516370a0823160e01b815230600482015290519293506000926001600160a01b03909216916370a0823191602480820192602092909190829003018186803b15801561198057600080fd5b505afa158015611994573d6000803e3d6000fd5b505050506040513d60208110156119aa57600080fd5b5051600c546040805163db006a7560e01b81526004810186905290519293506001600160a01b039091169163db006a759160248082019260009290919082900301818387803b1580156119fc57600080fd5b505af1158015611a10573d6000803e3d6000fd5b5050600b54604080516370a0823160e01b8152306004820152905160009450611a9d935085926001600160a01b0316916370a08231916024808301926020929190829003018186803b158015611a6557600080fd5b505afa158015611a79573d6000803e3d6000fd5b505050506040513d6020811015611a8f57600080fd5b50519063ffffffff61232516565b905082811015611ade5760405162461bcd60e51b815260040180806020018281038252602e815260200180613037602e913960400191505060405180910390fd5b6000611ae86108a5565b9050611b01620186a06109e3868463ffffffff61236716565b9050611b13848263ffffffff61232516565b9350611b39611b20611fe1565b600b546001600160a01b0316908663ffffffff61286f16565b8015611e3f576000737a250d5630b4cf539739df2c5dacb4c659f2488d90506000816001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015611b9357600080fd5b505afa158015611ba7573d6000803e3d6000fd5b505050506040513d6020811015611bbd57600080fd5b5051600b54909150611bd9906001600160a01b031682856128c1565b604080516370a0823160e01b815230600482015290516000916001600160a01b038416916370a0823191602480820192602092909190829003018186803b158015611c2357600080fd5b505afa158015611c37573d6000803e3d6000fd5b505050506040513d6020811015611c4d57600080fd5b50511115611e3c576000611cf2620186a06109e3600854856001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b0316815260200191505060206040518083038186803b158015611cba57600080fd5b505afa158015611cce573d6000803e3d6000fd5b505050506040513d6020811015611ce457600080fd5b50519063ffffffff61236716565b90506000611d5082846001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b0316815260200191505060206040518083038186803b158015611a6557600080fd5b90508015611d7857600d54611d78906001600160a01b0385811691168363ffffffff61286f16565b8115611e3957600e546001600160a01b031615611e1957600e54611daf906001600160a01b0385811691168463ffffffff61286f16565b600e5460408051633c6b16ab60e01b81526004810185905290516001600160a01b0390921691633c6b16ab9160248082019260009290919082900301818387803b158015611dfc57600080fd5b505af1158015611e10573d6000803e3d6000fd5b50505050611e39565b600d54611e39906001600160a01b0385811691168463ffffffff61286f16565b50505b50505b611e47611fe1565b6001600160a01b03167ff64ae1cc3e0e07da9c895b3225439175cab5838aca24c4e74852704858c96a7b8583604051808381526020018281526020019250505060405180910390a2505050505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6009546001600160a01b031681565b611ed9611fe1565b60055461010090046001600160a01b03908116911614611f2e576040805162461bcd60e51b815260206004820181905260248201526000805160206130d5833981519152604482015290519081900360640190fd5b426010556003601155601480546001600160a01b0319166001600160a01b0392909216919091179055565b611f61611fe1565b60055461010090046001600160a01b03908116911614611fb6576040805162461bcd60e51b815260206004820181905260248201526000805160206130d5833981519152604482015290519081900360640190fd5b426010556001601155601480546001600160a01b0319166001600160a01b0392909216919091179055565b3390565b6001600160a01b03831661202a5760405162461bcd60e51b815260040180806020018281038252602481526020018061315e6024913960400191505060405180910390fd5b6001600160a01b03821661206f5760405162461bcd60e51b8152600401808060200182810382526022815260200180612fc26022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166121165760405162461bcd60e51b81526004018080602001828103825260258152602001806131166025913960400191505060405180910390fd5b6001600160a01b03821661215b5760405162461bcd60e51b8152600401808060200182810382526023815260200180612f576023913960400191505060405180910390fd5b61219e81604051806060016040528060268152602001612fe4602691396001600160a01b038616600090815260208190526040902054919063ffffffff61222d16565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546121d3908263ffffffff6122c416565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600081848411156122bc5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612281578181015183820152602001612269565b50505050905090810190601f1680156122ae5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008282018381101561231e576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b600061231e83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061222d565b60008261237657506000610699565b8282028284828161238357fe5b041461231e5760405162461bcd60e51b815260040180806020018281038252602181526020018061308c6021913960400191505060405180910390fd5b600061231e83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612c83565b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b17905261245c908590612ce8565b50505050565b8015806124e8575060408051636eb1769f60e11b81523060048201526001600160a01b03848116602483015291519185169163dd62ed3e91604480820192602092909190829003018186803b1580156124ba57600080fd5b505afa1580156124ce573d6000803e3d6000fd5b505050506040513d60208110156124e457600080fd5b5051155b6125235760405162461bcd60e51b81526004018080602001828103825260368152602001806131cd6036913960400191505060405180910390fd5b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663095ea7b360e01b179052612575908490612ce8565b505050565b6001600160a01b0382166125d5576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6002546125e8908263ffffffff6122c416565b6002556001600160a01b038216600090815260208190526040902054612614908263ffffffff6122c416565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b612672611fe1565b60055461010090046001600160a01b039081169116146126c7576040805162461bcd60e51b815260206004820181905260248201526000805160206130d5833981519152604482015290519081900360640190fd5b6001600160a01b03811661270c5760405162461bcd60e51b8152600401808060200182810382526026815260200180612f9c6026913960400191505060405180910390fd5b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6001600160a01b0382166127b85760405162461bcd60e51b81526004018080602001828103825260218152602001806130f56021913960400191505060405180910390fd5b6127fb81604051806060016040528060228152602001612f7a602291396001600160a01b038516600090815260208190526040902054919063ffffffff61222d16565b6001600160a01b038316600090815260208190526040902055600254612827908263ffffffff61232516565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052612575908490612ce8565b6001600160a01b0382166128d457600080fd5b60606000737a250d5630b4cf539739df2c5dacb4c659f2488d90506000816001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561292a57600080fd5b505afa15801561293e573d6000803e3d6000fd5b505050506040513d602081101561295457600080fd5b505190506001600160a01b0386811690821614806129835750806001600160a01b0316856001600160a01b0316145b15612a0957604080516002808252606082018352909160208301908036833701905050925085836000815181106129b657fe5b60200260200101906001600160a01b031690816001600160a01b03168152505084836001815181106129e457fe5b60200260200101906001600160a01b031690816001600160a01b031681525050612ab5565b6040805160038082526080820190925290602082016060803683370190505092508583600081518110612a3857fe5b60200260200101906001600160a01b031690816001600160a01b0316815250508083600181518110612a6657fe5b60200260200101906001600160a01b031690816001600160a01b0316815250508483600281518110612a9457fe5b60200260200101906001600160a01b031690816001600160a01b0316815250505b612ad06001600160a01b03871683600063ffffffff61246216565b612aea6001600160a01b038716838663ffffffff61246216565b6001600160a01b0382166338ed17398560018630612b0f42603c63ffffffff6122c416565b6040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03166001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015612b88578181015183820152602001612b70565b505050509050019650505050505050600060405180830381600087803b158015612bb157600080fd5b505af1158015612bc5573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526020811015612bee57600080fd5b8101908080516040519392919084640100000000821115612c0e57600080fd5b908301906020820185811115612c2357600080fd5b8251866020820283011164010000000082111715612c4057600080fd5b82525081516020918201928201910280838360005b83811015612c6d578181015183820152602001612c55565b5050505090500160405250505050505050505050565b60008183612cd25760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315612281578181015183820152602001612269565b506000838581612cde57fe5b0495945050505050565b6060612d3d826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316612d999092919063ffffffff16565b80519091501561257557808060200190516020811015612d5c57600080fd5b50516125755760405162461bcd60e51b815260040180806020018281038252602a8152602001806131a3602a913960400191505060405180910390fd5b6060612da88484600085612db0565b949350505050565b6060612dbb85612f1d565b612e0c576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b60208310612e4b5780518252601f199092019160209182019101612e2c565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114612ead576040519150601f19603f3d011682016040523d82523d6000602084013e612eb2565b606091505b50915091508115612ec6579150612da89050565b805115612ed65780518082602001fd5b60405162461bcd60e51b8152602060048201818152865160248401528651879391928392604401919085019080838360008315612281578181015183820152602001612269565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470818114801590612da857505015159291505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654d696e20666565206d757374206265206c657373207468616e206f7220657175616c20746f206d61782066656541617665206661696c656420746f2070726f7065726c79206d6f76652074686520656e7469726520616d6f756e7454696d656c6f636b206e6f7420616371756972656420666f7220746869732066756e6374696f6e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737350657263656e742063616e6e6f742062652067726561746572207468616e203130302545524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734665652063616e206e657665722062652067726561746572207468616e203130255361666545524332303a204552433230206f7065726174696f6e20646964206e6f7420737563636565645361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f20746f206e6f6e2d7a65726f20616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220531a1b27d65dfe2acdfab9bb46ece443f90f1500b82cd8a4c452fd95dc98076364736f6c63430006060033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb480000000000000000000000009ba00d6856a4edf4665bca2c2309936572473b7e00000000000000000000000042cbe17335ef8d52f8d1e0a261ea2e78e829c56e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000438462bf1b159c64c05d795b5589435f318c25fc
-----Decoded View---------------
Arg [0] : _asset (address): 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48
Arg [1] : _aavetoken (address): 0x9bA00D6856a4eDF4665BcA2C2309936572473B7E
Arg [2] : _treasury (address): 0x42Cbe17335ef8d52F8d1e0a261eA2e78E829C56e
Arg [3] : _staking (address): 0x0000000000000000000000000000000000000000
Arg [4] : _oracle (address): 0x438462BF1B159c64C05d795b5589435f318c25fC
-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48
Arg [1] : 0000000000000000000000009ba00d6856a4edf4665bca2c2309936572473b7e
Arg [2] : 00000000000000000000000042cbe17335ef8d52f8d1e0a261ea2e78e829c56e
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [4] : 000000000000000000000000438462bf1b159c64c05d795b5589435f318c25fc
Deployed Bytecode Sourcemap
31708:12964:0:-:0;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;31708:12964:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;9;2:12;32027:27:0;;;:::i;:::-;;;;;;;;;;;;;;;;17524:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;17524:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19604:169;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;19604:169:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;43287:180;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;43287:180:0;-1:-1:-1;;;;;43287:180:0;;:::i;:::-;;18593:100;;;:::i;20242:321::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;20242:321:0;;;;;;;;;;;;;;;;;:::i;32129:26::-;;;:::i;18441:92::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;20967:218;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;20967:218:0;;;;;;;;:::i;43753:180::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;43753:180:0;-1:-1:-1;;;;;43753:180:0;;:::i;34413:920::-;;;:::i;44227:259::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;44227:259:0;;:::i;33892:196::-;;;:::i;43945:159::-;;;:::i;26473:84::-;;;:::i;:::-;;;;-1:-1:-1;;;;;26473:84:0;;;;;;;;;;;;;;18751:119;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;18751:119:0;-1:-1:-1;;;;;18751:119:0;;:::i;33772:108::-;;;:::i;34101:260::-;;;:::i;43479:137::-;;;:::i;17721:87::-;;;:::i;21683:269::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;21683:269:0;;;;;;;;:::i;19078:175::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;19078:175:0;;;;;;;;:::i;35383:1747::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;35383:1747:0;;:::i;41964:139::-;;;:::i;43047:135::-;;;:::i;42589:163::-;;;:::i;32798:30::-;;;:::i;32230:37::-;;;:::i;42210:367::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;42210:367:0;;;;;;;:::i;32835:29::-;;;:::i;44498:140::-;;;:::i;37142:2824::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;37142:2824:0;;:::i;19311:151::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;19311:151:0;;;;;;;;;;:::i;32503:79::-;;;:::i;42858:177::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;42858:177:0;-1:-1:-1;;;;;42858:177:0;;:::i;41766:186::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;41766:186:0;-1:-1:-1;;;;;41766:186:0;;:::i;32027:27::-;;;;:::o;17524:83::-;17594:5;17587:12;;;;;;;;-1:-1:-1;;17587:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17561:13;;17587:12;;17594:5;;17587:12;;17594:5;17587:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17524:83;;:::o;19604:169::-;19687:4;19704:39;19713:12;:10;:12::i;:::-;19727:7;19736:6;19704:8;:39::i;:::-;-1:-1:-1;19761:4:0;19604:169;;;;;:::o;43287:180::-;26700:12;:10;:12::i;:::-;26690:6;;;;;-1:-1:-1;;;;;26690:6:0;;;:22;;;26682:67;;;;;-1:-1:-1;;;26682:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;26682:67:0;;;;;;;;;;;;;;;43389:3:::1;43372:14;:20:::0;43419:1:::1;43403:13;:17:::0;43431::::1;:28:::0;;-1:-1:-1;;;;;;43431:28:0::1;-1:-1:-1::0;;;;;43431:28:0;;;::::1;::::0;;;::::1;::::0;;43287:180::o;18593:100::-;18673:12;;18593:100;:::o;20242:321::-;20348:4;20365:36;20375:6;20383:9;20394:6;20365:9;:36::i;:::-;20412:121;20421:6;20429:12;:10;:12::i;:::-;20443:89;20481:6;20443:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20443:19:0;;;;;;:11;:19;;;;;;20463:12;:10;:12::i;:::-;-1:-1:-1;;;;;20443:33:0;;;;;;;;;;;;-1:-1:-1;20443:33:0;;;:89;;:37;:89;:::i;:::-;20412:8;:121::i;:::-;-1:-1:-1;20551:4:0;20242:321;;;;;:::o;32129:26::-;;;;:::o;18441:92::-;18516:9;;;;18441:92;:::o;20967:218::-;21055:4;21072:83;21081:12;:10;:12::i;:::-;21095:7;21104:50;21143:10;21104:11;:25;21116:12;:10;:12::i;:::-;-1:-1:-1;;;;;21104:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;21104:25:0;;;:34;;;;;;;;;;;:50;:38;:50;:::i;43753:180::-;26700:12;:10;:12::i;:::-;26690:6;;;;;-1:-1:-1;;;;;26690:6:0;;;:22;;;26682:67;;;;;-1:-1:-1;;;26682:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;26682:67:0;;;;;;;;;;;;;;;43855:3:::1;43838:14;:20:::0;43885:1:::1;43869:13;:17:::0;43897::::1;:28:::0;;-1:-1:-1;;;;;;43897:28:0::1;-1:-1:-1::0;;;;;43897:28:0;;;::::1;::::0;;;::::1;::::0;;43753:180::o;34413:920::-;34466:7;34489:6;;34499:1;34489:11;34486:26;;;-1:-1:-1;34509:1:0;34502:8;;34486:26;34567:14;;34551:13;;-1:-1:-1;;;;;34567:14:0;:23;34591:17;:15;:17::i;:::-;34567:42;;;;;;;;;;;;;-1:-1:-1;;;;;34567:42:0;-1:-1:-1;;;;;34567:42:0;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;34567:42:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;34567:42:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;34567:42:0;;-1:-1:-1;34623:10:0;34620:76;;-1:-1:-1;34657:4:0;34620:76;34726:19;34783:18;34706:17;34879:18;;;34876:429;;-1:-1:-1;34919:6:0;;34876:429;;;34954:8;34945:5;:17;34942:363;;-1:-1:-1;34984:6:0;;34942:363;;;35021:16;35040:18;35051:6;;35040;;:10;;:18;;;;:::i;:::-;35021:37;-1:-1:-1;35073:18:0;35094:23;:9;35108:8;35094:23;:13;:23;:::i;:::-;35073:44;-1:-1:-1;35132:12:0;35147:49;35073:44;35147:33;35171:8;35147:19;:5;35157:8;35147:19;:9;:19;:::i;:::-;:23;:33;:23;:33;:::i;:::-;:37;:49;:37;:49;:::i;:::-;35277:6;;35132:64;;-1:-1:-1;35277:16:0;;35132:64;35277:16;:10;:16;:::i;:::-;35271:22;;34942:363;;;;35322:3;-1:-1:-1;;;;34413:920:0;:::o;44227:259::-;26700:12;:10;:12::i;:::-;26690:6;;;;;-1:-1:-1;;;;;26690:6:0;;;:22;;;26682:67;;;;;-1:-1:-1;;;26682:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;26682:67:0;;;;;;;;;;;;;;;44335:6:::1;44323:8;:18;;44315:65;;;;-1:-1:-1::0;;;44315:65:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44408:3;44391:14;:20:::0;44438:1:::1;44422:13;:17:::0;44450:14:::1;:28:::0;44227:259::o;33892:196::-;33977:7;;:32;;;-1:-1:-1;;;33977:32:0;;34003:4;33977:32;;;;;;33950:7;;-1:-1:-1;;;;;33977:7:0;;:17;;:32;;;;;;;;;;;;;;:7;:32;;;2:2:-1;;;;27:1;24;17:12;2:2;33977:32:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;33977:32:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;33977:32:0;;-1:-1:-1;33892:196:0;:::o;43945:159::-;26700:12;:10;:12::i;:::-;26690:6;;;;;-1:-1:-1;;;;;26690:6:0;;;:22;;;26682:67;;;;;-1:-1:-1;;;26682:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;26682:67:0;;;;;;;;;;;;;;;44026:1:::1;41343:5;41326:13;;:22;41318:74;;;;-1:-1:-1::0;;;41318:74:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41419:1;41403:13;:17:::0;;;41478:13:::1;:11;:13::i;:::-;:17;41475:184;;;41097:5;41587:14;;:34;41580:3;:41;;41572:75;;;::::0;;-1:-1:-1;;;41572:75:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;41572:75:0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;44078:17:0::2;::::0;44040:14:::2;:56:::0;;-1:-1:-1;;;;;;44040:56:0::2;-1:-1:-1::0;;;;;44078:17:0;;::::2;44040:56:::0;;;::::2;::::0;;43945:159::o;26473:84::-;26543:6;;;;;-1:-1:-1;;;;;26543:6:0;;26473:84::o;18751:119::-;-1:-1:-1;;;;;18844:18:0;18817:7;18844:18;;;;;;;;;;;;18751:119::o;33772:108::-;33855:16;;-1:-1:-1;;;;;33855:16:0;33772:108;:::o;34101:260::-;34149:7;34172:13;:11;:13::i;:::-;34169:185;;-1:-1:-1;34213:4:0;34206:11;;34169:185;34277:65;34328:13;:11;:13::i;:::-;34277:46;34295:27;:25;:27::i;:::-;34285:4;;34277:46;:17;:46;:::i;:65::-;34270:72;;;;43479:137;26700:12;:10;:12::i;:::-;26690:6;;;;;-1:-1:-1;;;;;26690:6:0;;;:22;;;26682:67;;;;;-1:-1:-1;;;26682:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;26682:67:0;;;;;;;;;;;;;;;43560:1:::1;41343:5;41326:13;;:22;41318:74;;;;-1:-1:-1::0;;;41318:74:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41419:1;41403:13;:17:::0;;;41478:13:::1;:11;:13::i;:::-;:17;41475:184;;;41097:5;41587:14;;:34;41580:3;:41;;41572:75;;;::::0;;-1:-1:-1;;;41572:75:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;41572:75:0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;43591:17:0::2;::::0;43574:14:::2;:34:::0;;-1:-1:-1;;;;;;43574:34:0::2;-1:-1:-1::0;;;;;43591:17:0;;::::2;43574:34:::0;;;::::2;::::0;;43479:137::o;17721:87::-;17793:7;17786:14;;;;;;;;-1:-1:-1;;17786:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17760:13;;17786:14;;17793:7;;17786:14;;17793:7;17786:14;;;;;;;;;;;;;;;;;;;;;;;;21683:269;21776:4;21793:129;21802:12;:10;:12::i;:::-;21816:7;21825:96;21864:15;21825:96;;;;;;;;;;;;;;;;;:11;:25;21837:12;:10;:12::i;:::-;-1:-1:-1;;;;;21825:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;21825:25:0;;;:34;;;;;;;;;;;:96;;:38;:96;:::i;19078:175::-;19164:4;19181:42;19191:12;:10;:12::i;:::-;19205:9;19216:6;19181:9;:42::i;35383:1747::-;35451:1;35442:6;:10;35434:39;;;;;-1:-1:-1;;;35434:39:0;;;;;;;;;;;;-1:-1:-1;;;35434:39:0;;;;;;;;;;;;;;;35484:70;35518:12;:10;:12::i;:::-;35484:16;;-1:-1:-1;;;;;35484:16:0;;35540:4;35547:6;35484:70;:33;:70;:::i;:::-;35721:12;;:29;;;-1:-1:-1;;;35721:29:0;;;;35683:23;;-1:-1:-1;;;;;35721:12:0;;:27;;:29;;;;;;;;;;;;;;:12;:29;;;2:2:-1;;;;27:1;24;17:12;2:2;35721:29:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;35721:29:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;35721:29:0;35909:12;;:33;;;-1:-1:-1;;;35909:33:0;;;;35721:29;;-1:-1:-1;35880:71:0;;-1:-1:-1;;;;;35909:12:0;;;;:31;;:33;;;;;35721:29;;35909:33;;;;;;;;:12;:33;;;2:2:-1;;;;27:1;24;17:12;2:2;35909:33:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;35909:33:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;35909:33:0;35880:16;;-1:-1:-1;;;;;35880:16:0;;35944:6;35880:71;:28;:71;:::i;:::-;36077:13;36093:27;:25;:27::i;:::-;36213:16;;:41;;;-1:-1:-1;;;36213:41:0;;36248:4;36213:41;;;;;;36077:43;;-1:-1:-1;36184:26:0;;-1:-1:-1;;;;;36213:16:0;;;;:26;;:41;;;;;;;;;;;;;;;:16;:41;;;2:2:-1;;;;27:1;24;17:12;2:2;36213:41:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;36213:41:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;36213:41:0;;-1:-1:-1;;;;;;36265:19:0;;;36285:17;:15;:17::i;:::-;36265:49;;;-1:-1:-1;;;;;;36265:49:0;;;;;;;-1:-1:-1;;;;;36265:49:0;;;;;;;;;;;;;36312:1;36265:49;;;;;;;;;;;;;;;;;;36312:1;36265:49;;;;2:2:-1;;;;27:1;24;17:12;2:2;36265:49:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;36534:16:0;;:41;;;-1:-1:-1;;;36534:41:0;;36569:4;36534:41;;;;;;36488:20;;-1:-1:-1;36511:65:0;;-1:-1:-1;;;;;;36534:16:0;;;;:26;;:41;;;;;;;;;;;;;;;:16;:41;;;2:2:-1;;;;27:1;24;17:12;2:2;36534:41:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;36534:41:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;36534:41:0;36511:18;;:65;:22;:65;:::i;:::-;36488:88;;36611:6;36595:12;:22;36587:81;;;;-1:-1:-1;;;36587:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36775:6;36754:18;36795:13;:11;:13::i;:::-;:17;36792:192;;;36910:36;36940:5;36910:25;36921:13;:11;:13::i;:::-;36910:6;;:25;:10;:25;:::i;:36::-;36897:49;;36792:192;36994:30;37000:12;:10;:12::i;:::-;37013:10;36994:5;:30::i;:::-;37101:12;:10;:12::i;:::-;-1:-1:-1;;;;;37093:29:0;;37115:6;37093:29;;;;;;;;;;;;;;;;;;35383:1747;;;;;;:::o;41964:139::-;26700:12;:10;:12::i;:::-;26690:6;;;;;-1:-1:-1;;;;;26690:6:0;;;:22;;;26682:67;;;;;-1:-1:-1;;;26682:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;26682:67:0;;;;;;;;;;;;;;;42044:1:::1;41343:5;41326:13;;:22;41318:74;;;;-1:-1:-1::0;;;41318:74:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41419:1;41403:13;:17:::0;;;41478:13:::1;:11;:13::i;:::-;:17;41475:184;;;41097:5;41587:14;;:34;41580:3;:41;;41572:75;;;::::0;;-1:-1:-1;;;41572:75:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;41572:75:0;;;;;;;;;;;;;::::1;;42077:17:::2;::::0;42058:37:::2;::::0;-1:-1:-1;;;;;42077:17:0::2;42058:18;:37::i;:::-;26760:1:::1;41964:139::o:0;43047:135::-;26700:12;:10;:12::i;:::-;26690:6;;;;;-1:-1:-1;;;;;26690:6:0;;;:22;;;26682:67;;;;;-1:-1:-1;;;26682:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;26682:67:0;;;;;;;;;;;;;;;43125:1:::1;41343:5;41326:13;;:22;41318:74;;;;-1:-1:-1::0;;;41318:74:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41419:1;41403:13;:17:::0;;;41478:13:::1;:11;:13::i;:::-;:17;41475:184;;;41097:5;41587:14;;:34;41580:3;:41;;41572:75;;;::::0;;-1:-1:-1;;;41572:75:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;41572:75:0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;43157:17:0::2;::::0;43139:15:::2;:35:::0;;-1:-1:-1;;;;;;43139:35:0::2;-1:-1:-1::0;;;;;43157:17:0;;::::2;43139:35:::0;;;::::2;::::0;;43047:135::o;42589:163::-;26700:12;:10;:12::i;:::-;26690:6;;;;;-1:-1:-1;;;;;26690:6:0;;;:22;;;26682:67;;;;;-1:-1:-1;;;26682:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;26682:67:0;;;;;;;;;;;;;;;42667:1:::1;41343:5;41326:13;;:22;41318:74;;;;-1:-1:-1::0;;;41318:74:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41419:1;41403:13;:17:::0;;;41478:13:::1;:11;:13::i;:::-;:17;41475:184;;;41097:5;41587:14;;:34;41580:3;:41;;41572:75;;;::::0;;-1:-1:-1;;;41572:75:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;41572:75:0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;42690:14:0::2;:17:::0;42681:6:::2;:26:::0;42727:17;;42718:6:::2;:26:::0;42589:163::o;32798:30::-;;;-1:-1:-1;;;;;32798:30:0;;:::o;32230:37::-;;;;:::o;42210:367::-;26700:12;:10;:12::i;:::-;26690:6;;;;;-1:-1:-1;;;;;26690:6:0;;;:22;;;26682:67;;;;;-1:-1:-1;;;26682:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;26682:67:0;;;;;;;;;;;;;;;42318:5:::1;42310:4;:13;;42302:58;;;;-1:-1:-1::0;;;42302:58:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42387:4;42379;:12;;42371:69;;;;-1:-1:-1::0;;;42371:69:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42468:3;42451:14;:20:::0;42498:1:::1;42482:13;:17:::0;42510:14:::1;:24:::0;;;;42545:17;:24;42210:367::o;32835:29::-;;;-1:-1:-1;;;;;32835:29:0;;:::o;44498:140::-;26700:12;:10;:12::i;:::-;26690:6;;;;;-1:-1:-1;;;;;26690:6:0;;;:22;;;26682:67;;;;;-1:-1:-1;;;26682:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;26682:67:0;;;;;;;;;;;;;;;44582:1:::1;41343:5;41326:13;;:22;41318:74;;;;-1:-1:-1::0;;;41318:74:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41419:1;41403:13;:17:::0;;;41478:13:::1;:11;:13::i;:::-;:17;41475:184;;;41097:5;41587:14;;:34;41580:3;:41;;41572:75;;;::::0;;-1:-1:-1;;;41572:75:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;41572:75:0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;44613:14:0::2;:17:::0;44596:14:::2;:34:::0;44498:140::o;37142:2824::-;37296:1;37287:6;:10;37279:40;;;;;-1:-1:-1;;;37279:40:0;;;;;;;;;;;;-1:-1:-1;;;37279:40:0;;;;;;;;;;;;;;;37354:1;37338:13;:11;:13::i;:::-;:17;37330:49;;;;;-1:-1:-1;;;37330:49:0;;;;;;;;;;;;-1:-1:-1;;;37330:49:0;;;;;;;;;;;;;;;37390:18;37411:13;:11;:13::i;:::-;37390:34;;37466:26;37472:12;:10;:12::i;:::-;37485:6;37466:5;:26::i;:::-;37563:22;37588:55;37632:10;37588:39;37620:6;37588:27;:25;:27::i;:55::-;37735:16;;:41;;;-1:-1:-1;;;37735:41:0;;37770:4;37735:41;;;;;;37563:80;;-1:-1:-1;37706:26:0;;-1:-1:-1;;;;;37735:16:0;;;;:26;;:41;;;;;;;;;;;;;;;:16;:41;;;2:2:-1;;;;27:1;24;17:12;2:2;37735:41:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;37735:41:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;37735:41:0;37834:7;;:30;;;-1:-1:-1;;;37834:30:0;;;;;;;;;;37735:41;;-1:-1:-1;;;;;;37834:7:0;;;;:14;;:30;;;;;:7;;:30;;;;;;;;:7;;:30;;;2:2:-1;;;;27:1;24;17:12;2:2;37834:30:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;37953:16:0;;:41;;;-1:-1:-1;;;37953:41:0;;37988:4;37953:41;;;;;;37930:20;;-1:-1:-1;37953:65:0;;-1:-1:-1;37999:18:0;;-1:-1:-1;;;;;37953:16:0;;:26;;:41;;;;;;;;;;;;;;:16;:41;;;2:2:-1;;;;27:1;24;17:12;2:2;37953:41:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;37953:41:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;37953:41:0;;:65;:45;:65;:::i;:::-;37930:88;;38053:14;38037:12;:30;;38029:89;;;;-1:-1:-1;;;38029:89:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38204:11;38218:22;:20;:22::i;:::-;38204:36;-1:-1:-1;38257:43:0;31885:6;38257:23;:14;38204:36;38257:23;:18;:23;:::i;:43::-;38251:49;-1:-1:-1;38328:23:0;:14;38251:49;38328:23;:18;:23;:::i;:::-;38311:40;;38446:59;38476:12;:10;:12::i;:::-;38446:16;;-1:-1:-1;;;;;38446:16:0;;38490:14;38446:59;:29;:59;:::i;:::-;38674:7;;38671:1218;;38697:20;33055:42;38697:58;;38770:11;38791:6;-1:-1:-1;;;;;38791:11:0;;:13;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;38791:13:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;38791:13:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;38791:13:0;38840:16;;38791:13;;-1:-1:-1;38820:58:0;;-1:-1:-1;;;;;38840:16:0;38791:13;38874:3;38820:11;:58::i;:::-;38896:29;;;-1:-1:-1;;;38896:29:0;;38919:4;38896:29;;;;;;38928:1;;-1:-1:-1;;;;;38896:14:0;;;;;:29;;;;;;;;;;;;;;;:14;:29;;;2:2:-1;;;;27:1;24;17:12;2:2;38896:29:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;38896:29:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;38896:29:0;:33;38893:985;;;39019:21;39043:69;31885:6;39043:49;39077:14;;39043:4;-1:-1:-1;;;;;39043:14:0;;39066:4;39043:29;;;;;;;;;;;;;-1:-1:-1;;;;;39043:29:0;-1:-1:-1;;;;;39043:29:0;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;39043:29:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;39043:29:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;39043:29:0;;:49;:33;:49;:::i;:69::-;39019:93;;39131:22;39156:48;39190:13;39156:4;-1:-1:-1;;;;;39156:14:0;;39179:4;39156:29;;;;;;;;;;;;;-1:-1:-1;;;;;39156:29:0;-1:-1:-1;;;;;39156:29:0;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24;17:12;39156:48:0;39131:73;-1:-1:-1;39226:18:0;;39223:115;;39286:15;;39268:50;;-1:-1:-1;;;;;39268:17:0;;;;39286:15;39303:14;39268:50;:17;:50;:::i;:::-;39359:17;;39356:507;;39403:14;;-1:-1:-1;;;;;39403:14:0;:28;39400:444;;39477:14;;39459:48;;-1:-1:-1;;;;;39459:17:0;;;;39477:14;39493:13;39459:48;:17;:48;:::i;:::-;39555:14;;39534:70;;;-1:-1:-1;;;39534:70:0;;;;;;;;;;-1:-1:-1;;;;;39555:14:0;;;;39534:55;;:70;;;;;39555:14;;39534:70;;;;;;;;39555:14;;39534:70;;;2:2:-1;;;;27:1;24;17:12;2:2;39534:70:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;39534:70:0;;;;39400:444;;;39789:15;;39771:49;;-1:-1:-1;;;;;39771:17:0;;;;39789:15;39806:13;39771:49;:17;:49;:::i;:::-;38893:985;;;38671:1218;;;39924:12;:10;:12::i;:::-;-1:-1:-1;;;;;39914:44:0;;39938:14;39954:3;39914:44;;;;;;;;;;;;;;;;;;;;;;;;37142:2824;;;;;;:::o;19311:151::-;-1:-1:-1;;;;;19427:18:0;;;19400:7;19427:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;19311:151::o;32503:79::-;;;-1:-1:-1;;;;;32503:79:0;;:::o;42858:177::-;26700:12;:10;:12::i;:::-;26690:6;;;;;-1:-1:-1;;;;;26690:6:0;;;:22;;;26682:67;;;;;-1:-1:-1;;;26682:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;26682:67:0;;;;;;;;;;;;;;;42957:3:::1;42940:14;:20:::0;42987:1:::1;42971:13;:17:::0;42999::::1;:28:::0;;-1:-1:-1;;;;;;42999:28:0::1;-1:-1:-1::0;;;;;42999:28:0;;;::::1;::::0;;;::::1;::::0;;42858:177::o;41766:186::-;26700:12;:10;:12::i;:::-;26690:6;;;;;-1:-1:-1;;;;;26690:6:0;;;:22;;;26682:67;;;;;-1:-1:-1;;;26682:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;26682:67:0;;;;;;;;;;;;;;;41867:3:::1;41850:14;:20:::0;41897:1:::1;41881:13;:17:::0;41909::::1;:28:::0;;-1:-1:-1;;;;;;41909:28:0::1;-1:-1:-1::0;;;;;41909:28:0;;;::::1;::::0;;;::::1;::::0;;41766:186::o;650:106::-;738:10;650:106;:::o;24626:346::-;-1:-1:-1;;;;;24728:19:0;;24720:68;;;;-1:-1:-1;;;24720:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;24807:21:0;;24799:68;;;;-1:-1:-1;;;24799:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;24880:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;24932:32;;;;;;;;;;;;;;;;;24626:346;;;:::o;22437:479::-;-1:-1:-1;;;;;22543:20:0;;22535:70;;;;-1:-1:-1;;;22535:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22624:23:0;;22616:71;;;;-1:-1:-1;;;22616:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22720;22742:6;22720:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22720:17:0;;:9;:17;;;;;;;;;;;;:71;;:21;:71;:::i;:::-;-1:-1:-1;;;;;22700:17:0;;;:9;:17;;;;;;;;;;;:91;;;;22825:20;;;;;;;:32;;22850:6;22825:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;22802:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;22873:35;;;;;;;22802:20;;22873:35;;;;;;;;;;;;;22437:479;;;:::o;5624:192::-;5710:7;5746:12;5738:6;;;;5730:29;;;;-1:-1:-1;;;5730:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;5730:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5782:5:0;;;5624:192::o;4731:181::-;4789:7;4821:5;;;4845:6;;;;4837:46;;;;;-1:-1:-1;;;4837:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;4903:1;4731:181;-1:-1:-1;;;4731:181:0:o;5190:136::-;5248:7;5275:43;5279:1;5282;5275:43;;;;;;;;;;;;;;;;;:3;:43::i;6070:471::-;6128:7;6373:6;6369:47;;-1:-1:-1;6403:1:0;6396:8;;6369:47;6440:5;;;6444:1;6440;:5;:1;6464:5;;;;;:10;6456:56;;;;-1:-1:-1;;;6456:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7012:132;7070:7;7097:39;7101:1;7104;7097:39;;;;;;;;;;;;;;;;;:3;:39::i;27455:205::-;27583:68;;;-1:-1:-1;;;;;27583:68:0;;;;;;;;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;27583:68:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;27556:96:0;;27576:5;;27556:19;:96::i;:::-;27455:205;;;;:::o;27929:622::-;28299:10;;;28298:62;;-1:-1:-1;28315:39:0;;;-1:-1:-1;;;28315:39:0;;28339:4;28315:39;;;;-1:-1:-1;;;;;28315:39:0;;;;;;;;;:15;;;;;;:39;;;;;;;;;;;;;;;:15;:39;;;2:2:-1;;;;27:1;24;17:12;2:2;28315:39:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;28315:39:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;28315:39:0;:44;28298:62;28290:152;;;;-1:-1:-1;;;28290:152:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28480:62;;;-1:-1:-1;;;;;28480:62:0;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;28480:62:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;28453:90:0;;28473:5;;28453:19;:90::i;:::-;27929:622;;;:::o;23192:316::-;-1:-1:-1;;;;;23276:21:0;;23268:65;;;;;-1:-1:-1;;;23268:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;23361:12;;:24;;23378:6;23361:24;:16;:24;:::i;:::-;23346:12;:39;-1:-1:-1;;;;;23417:18:0;;:9;:18;;;;;;;;;;;:30;;23440:6;23417:30;:22;:30;:::i;:::-;-1:-1:-1;;;;;23396:18:0;;:9;:18;;;;;;;;;;;:51;;;;23463:37;;;;;;;23396:18;;:9;;23463:37;;;;;;;;;;23192:316;;:::o;26919:252::-;26700:12;:10;:12::i;:::-;26690:6;;;;;-1:-1:-1;;;;;26690:6:0;;;:22;;;26682:67;;;;;-1:-1:-1;;;26682:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;26682:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;27016:22:0;::::1;27008:73;;;;-1:-1:-1::0;;;27008:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27118:6;::::0;27097:38:::1;::::0;-1:-1:-1;;;;;27097:38:0;;::::1;::::0;27118:6:::1;::::0;::::1;;::::0;27097:38:::1;::::0;;;::::1;27146:6;:17:::0;;-1:-1:-1;;;;;27146:17:0;;::::1;;;-1:-1:-1::0;;;;;;27146:17:0;;::::1;::::0;;;::::1;::::0;;26919:252::o;23835:356::-;-1:-1:-1;;;;;23919:21:0;;23911:67;;;;-1:-1:-1;;;23911:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24012:68;24035:6;24012:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;24012:18:0;;:9;:18;;;;;;;;;;;;:68;;:22;:68;:::i;:::-;-1:-1:-1;;;;;23991:18:0;;:9;:18;;;;;;;;;;:89;24106:12;;:24;;24123:6;24106:24;:16;:24;:::i;:::-;24091:12;:39;24146:37;;;;;;;;24172:1;;-1:-1:-1;;;;;24146:37:0;;;;;;;;;;;;23835:356;;:::o;27270:177::-;27380:58;;;-1:-1:-1;;;;;27380:58:0;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;27380:58:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;27353:86:0;;27373:5;;27353:19;:86::i;39978:828::-;-1:-1:-1;;;;;40076:17:0;;40068:26;;12:1:-1;9;2:12;40068:26:0;40107:21;40139:20;33055:42;40139:58;;40208:12;40223:6;-1:-1:-1;;;;;40223:11:0;;:13;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;40223:13:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;40223:13:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;40223:13:0;;-1:-1:-1;;;;;;40253:13:0;;;;;;;;:28;;;40277:4;-1:-1:-1;;;;;40270:11:0;:3;-1:-1:-1;;;;;40270:11:0;;40253:28;40249:285;;;40305:16;;;40319:1;40305:16;;;;;;;;;;;;;;;109:14:-1;40305:16:0;88:42:-1;144:17;;-1:-1;40305:16:0;40298:23;;40346:5;40336:4;40341:1;40336:7;;;;;;;;;;;;;:15;-1:-1:-1;;;;;40336:15:0;;;-1:-1:-1;;;;;40336:15:0;;;;;40376:3;40366:4;40371:1;40366:7;;;;;;;;;;;;;:13;-1:-1:-1;;;;;40366:13:0;;;-1:-1:-1;;;;;40366:13:0;;;;;40249:285;;;40419:16;;;40433:1;40419:16;;;;;;;;;;;;;17:15:-1;;109:14;40419:16:0;88:42:-1;144:17;;-1:-1;40419:16:0;40412:23;;40460:5;40450:4;40455:1;40450:7;;;;;;;;;;;;;:15;-1:-1:-1;;;;;40450:15:0;;;-1:-1:-1;;;;;40450:15:0;;;;;40490:4;40480;40485:1;40480:7;;;;;;;;;;;;;:14;-1:-1:-1;;;;;40480:14:0;;;-1:-1:-1;;;;;40480:14:0;;;;;40519:3;40509:4;40514:1;40509:7;;;;;;;;;;;;;:13;-1:-1:-1;;;;;40509:13:0;;;-1:-1:-1;;;;;40509:13:0;;;;;40249:285;40546:45;-1:-1:-1;;;;;40546:25:0;;40580:6;40589:1;40546:45;:25;:45;:::i;:::-;40651:55;-1:-1:-1;;;;;40651:25:0;;40685:6;40694:11;40651:55;:25;:55;:::i;:::-;-1:-1:-1;;;;;40717:31:0;;;40749:11;40762:1;40765:4;40779;40786:11;:3;40794:2;40786:11;:7;:11;:::i;:::-;40717:81;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;40717:81:0;-1:-1:-1;;;;;40717:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;40717:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;40717:81:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;40717:81:0;;;;;;39:16:-1;36:1;17:17;2:54;101:4;40717:81:0;80:15:-1;;;-1:-1;;76:31;65:43;;120:4;113:20;15:2;7:11;;4:2;;;31:1;28;21:12;4:2;40717:81:0;;;;;;;;;;;;;19:11:-1;14:3;11:20;8:2;;;44:1;41;34:12;8:2;62:21;;;;123:4;114:14;;138:31;;;135:2;;;182:1;179;172:12;135:2;219:3;213:10;331:9;325:2;311:12;307:21;289:16;285:44;282:59;261:11;247:12;244:29;233:116;230:2;;;362:1;359;352:12;230:2;373:25;;-1:-1;40717:81:0;;421:4:-1;412:14;;;;40717:81:0;;;;;412:14:-1;40717:81:0;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;40717:81:0;;;;;;;;;;;;39978:828;;;;;;:::o;7635:278::-;7721:7;7756:12;7749:5;7741:28;;;;-1:-1:-1;;;7741:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;7741:28:0;;7780:9;7796:1;7792;:5;;;;;;;7635:278;-1:-1:-1;;;;;7635:278:0:o;29575:761::-;29999:23;30025:69;30053:4;30025:69;;;;;;;;;;;;;;;;;30033:5;-1:-1:-1;;;;;30025:27:0;;;:69;;;;;:::i;:::-;30109:17;;29999:95;;-1:-1:-1;30109:21:0;30105:224;;30251:10;30240:30;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;30240:30:0;30232:85;;;;-1:-1:-1;;;30232:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13008:196;13111:12;13143:53;13166:6;13174:4;13180:1;13183:12;13143:22;:53::i;:::-;13136:60;13008:196;-1:-1:-1;;;;13008:196:0:o;14375:979::-;14505:12;14538:18;14549:6;14538:10;:18::i;:::-;14530:60;;;;;-1:-1:-1;;;14530:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;14664:12;14678:23;14705:6;-1:-1:-1;;;;;14705:11:0;14725:8;14736:4;14705:36;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;14705:36:0;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;19;14:27;;;;67:4;61:11;56:16;;134:4;130:9;123:4;105:16;101:27;97:43;94:1;90:51;84:4;77:65;157:16;154:1;147:27;211:16;208:1;201:4;198:1;194:12;179:49;5:228;;14:27;32:4;27:9;;5:228;;14663:78:0;;;;14756:7;14752:595;;;14787:10;-1:-1:-1;14780:17:0;;-1:-1:-1;14780:17:0;14752:595;14901:17;;:21;14897:439;;15164:10;15158:17;15225:15;15212:10;15208:2;15204:19;15197:44;15112:148;15300:20;;-1:-1:-1;;;15300:20:0;;;;;;;;;;;;;;;;;15307:12;;15300:20;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;9908:619:0;9968:4;10436:20;;10279:66;10476:23;;;;;;:42;;-1:-1:-1;;10503:15:0;;;10468:51;-1:-1:-1;;9908:619:0:o
Swarm Source
ipfs://531a1b27d65dfe2acdfab9bb46ece443f90f1500b82cd8a4c452fd95dc980763
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.