Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 2 internal transactions
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
10570266 | 1620 days ago | Contract Creation | 0 ETH | |||
10569517 | 1620 days ago | Contract Creation | 0 ETH |
Loading...
Loading
Contract Name:
TendiesFarm
Compiler Version
v0.5.17+commit.d19bba13
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-07-31 */ /** *Submitted for verification at Etherscan.io on 2020-07-31 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/GSN/Context.sol pragma solidity ^0.5.17; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with GSN meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ contract Context { // Empty internal constructor, to prevent people from mistakenly deploying // an instance of this contract, which should be used via inheritance. constructor () internal { } // solhint-disable-previous-line no-empty-blocks function _msgSender() internal view returns (address payable) { return msg.sender; } function _msgData() internal view 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.5.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. Does not include * the optional functions; to access them see {ERC20Detailed}. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File: @openzeppelin/contracts/math/SafeMath.sol pragma solidity ^0.5.0; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * - Subtraction cannot overflow. * * _Available since v2.4.0._ */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. * * _Available since v2.4.0._ */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { // Solidity only automatically asserts when dividing by 0 require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. * * _Available since v2.4.0._ */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol pragma solidity ^0.5.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20Mintable}. * * 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; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}; * * Requirements: * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for `sender`'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal { 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); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal { 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); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal { 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); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens. * * This is internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Destroys `amount` tokens from `account`.`amount` is then deducted * from the caller's allowance. * * See {_burn} and {_approve}. */ function _burnFrom(address account, uint256 amount) internal { _burn(account, amount); _approve(account, _msgSender(), _allowances[account][_msgSender()].sub(amount, "ERC20: burn amount exceeds allowance")); } } // File: @openzeppelin/contracts/utils/Address.sol pragma solidity ^0.5.5; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // According to EIP-1052, 0x0 is the value returned for not-yet created accounts // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned // for accounts without code, i.e. `keccak256('')` bytes32 codehash; bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470; // solhint-disable-next-line no-inline-assembly assembly { codehash := extcodehash(account) } return (codehash != accountHash && codehash != 0x0); } /** * @dev Converts an `address` into `address payable`. Note that this is * simply a type cast: the actual underlying value is not changed. * * _Available since v2.4.0._ */ function toPayable(address account) internal pure returns (address payable) { return address(uint160(account)); } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. * * _Available since v2.4.0._ */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-call-value (bool success, ) = recipient.call.value(amount)(""); require(success, "Address: unable to send value, recipient may have reverted"); } } // File: @openzeppelin/contracts/token/ERC20/SafeERC20.sol pragma solidity ^0.5.0; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for ERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using SafeMath for uint256; using Address for address; function safeTransfer(IERC20 token, address to, uint256 value) internal { callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal { callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } 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. // A Solidity high level call has three parts: // 1. The target address is checked to verify it contains contract code // 2. The call itself is made, and success asserted // 3. The return value is decoded, which in turn checks the size of the returned data. // solhint-disable-next-line max-line-length require(address(token).isContract(), "SafeERC20: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = address(token).call(data); require(success, "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: @openzeppelin/contracts/token/ERC20/ERC20Detailed.sol pragma solidity ^0.5.0; /** * @dev Optional functions from the ERC20 standard. */ contract ERC20Detailed is IERC20 { string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for `name`, `symbol`, and `decimals`. All three of * these values are immutable: they can only be set once during * construction. */ constructor (string memory name, string memory symbol, uint8 decimals) public { _name = name; _symbol = symbol; _decimals = decimals; } /** * @dev Returns the name of the token. */ function name() public view returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view returns (uint8) { return _decimals; } } // File: @openzeppelin/contracts/utils/ReentrancyGuard.sol pragma solidity ^0.5.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. * * _Since v2.5.0:_ this module is now much more gas efficient, given net gas * metering changes introduced in the Istanbul hardfork. */ contract ReentrancyGuard { bool private _notEntered; constructor () internal { // Storing an initial non-zero value makes deployment a bit more // expensive, but in exchange the refund on every call to nonReentrant // will be lower in amount. Since refunds are capped to a percetange of // the total transaction's gas, it is best to keep them low in cases // like this one, to increase the likelihood of the full refund coming // into effect. _notEntered = true; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and make it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_notEntered, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _notEntered = false; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _notEntered = true; } } pragma solidity ^0.5.17; // Interface interface ITendies { function grillPool() external; function claimRewards() external; function unclaimedRewards(address) external returns (uint); function getGrillAmount() external view returns (uint); } interface IweebTendies { function burn(uint256) external; } // NOTE: term slave here refers to ones in BDSM context. Does not refer to any specific historical events. contract TendiesFarmSlave { using SafeERC20 for ERC20; address public master; ERC20 public constant TEND = ERC20(0x1453Dbb8A29551ADe11D89825CA812e05317EAEB); constructor() public { master = msg.sender; } function takeMyTendiesMaster(uint256 amount) external { require(msg.sender == master); TEND.safeTransfer(master, amount); } function totalTEND() external view returns (uint256 total) { total = TEND.balanceOf(address(this)); } } /** * @title TendiesFarm * @author Weeb_Mcgee on twitter / YieldFarming.info */ contract TendiesFarm is ERC20, ERC20Detailed, ReentrancyGuard { using SafeMath for uint256; using SafeERC20 for ERC20; ERC20 public constant TEND = ERC20(0x1453Dbb8A29551ADe11D89825CA812e05317EAEB); ITendies public constant ITEND = ITendies(0x1453Dbb8A29551ADe11D89825CA812e05317EAEB); ERC20 public constant weebTEND = ERC20(0x171aaBEa00881D7F424A11D070dc98767F4f5eD6); IweebTendies public constant IweebTEND = IweebTendies(0x171aaBEa00881D7F424A11D070dc98767F4f5eD6); address public constant owner = 0x4BC821fef2ff947B57585a5FDBC73690Db288A49; uint256 public totalStakedTendies = 0; // NOTE: term slave here refers to ones in BDSM context. Does not refer to any specific historical events. mapping(uint256 => TendiesFarmSlave) public slaves; uint256 public slaveCount; uint256 public maxSlaveCount; /** * @dev Set contract deployer as owner */ constructor() public ERC20Detailed("TendiesFarm", "weebTEND-V2", 18) { slaves[0] = new TendiesFarmSlave(); slaveCount = 1; maxSlaveCount = 1; } // Mint weebTEND with TEND function mint(uint256 amount) public { grillPool(); claimRewards(); uint256 totalStakedTendiesBefore = totalStakedTendies; // Receive TEND TEND.safeTransferFrom(msg.sender, address(this), amount); _depositToSlave(TEND.balanceOf(address(this))); uint256 totalStakedTendiesAfter = totalStakedTendies; if (totalSupply() == 0) { _mint(msg.sender, amount); } else { uint256 mintAmount = (totalStakedTendiesAfter.sub(totalStakedTendiesBefore)) .mul(totalSupply()) .div(totalStakedTendiesBefore); _mint(msg.sender, mintAmount); } } // Burn weebTEND to get collected TEND function burn(uint256 amount) public nonReentrant { grillPool(); claimRewards(); // Burn weebTEND uint256 proRataTend = totalStakedTendies.mul(amount).div(totalSupply()); _burn(msg.sender, amount); // Calculate burn fee and transfer underlying TEND uint256 _fee = proRataTend.mul(5).div(10000); // Withdraw amount _withdrawFromSlave(proRataTend); TEND.safeTransfer(msg.sender, proRataTend.sub(_fee)); TEND.safeTransfer(owner, _fee); totalStakedTendies -= proRataTend; } function convert() public { uint256 oldTokenAmount = weebTEND.balanceOf(msg.sender); weebTEND.safeTransferFrom(msg.sender, address(this), oldTokenAmount); uint256 TENDbefore = TEND.balanceOf(address(this)); // burn old weebTEND tokens to get TEND IweebTEND.burn(oldTokenAmount); uint256 TENDafter = TEND.balanceOf(address(this)); // mint new weebTEND-V2 tokens with the newly acquired TEND mint(TENDafter.sub(TENDbefore)); } function getPricePerFullShare() public view returns (uint256 price) { price = totalStakedTendies.mul(1e18).div(totalSupply()); } // Internal functions function _depositToSlave(uint256 amount) internal { TEND.safeTransfer(address(slaves[slaveCount - 1]), amount); totalStakedTendies += amount; } function _withdrawFromSlave(uint256 amount) internal { if (amount > slaves[slaveCount - 1].totalTEND()) { uint256 amountLeftOver = amount; while(amountLeftOver > 0) { TendiesFarmSlave slave = slaves[slaveCount - 1]; if (amountLeftOver > slave.totalTEND() && slaveCount > 1) { // Need to withdraw all and destroy a slave uint256 totalSlaveTEND = slave.totalTEND(); amountLeftOver -= totalSlaveTEND; slave.takeMyTendiesMaster(totalSlaveTEND); slaveCount -= 1; } else { slave.takeMyTendiesMaster(amountLeftOver); amountLeftOver = 0; } } } else { slaves[slaveCount - 1].takeMyTendiesMaster(amount); } totalStakedTendies -= amount; } // TEND functions function grillPool() public { if (ITEND.getGrillAmount() >= 1 * 1e18 ) { ITEND.grillPool(); _depositToSlave(TEND.balanceOf(address(this))); } } function claimRewards() public { if (ITEND.unclaimedRewards(address(this)) > 0) { ITEND.claimRewards(); _depositToSlave(TEND.balanceOf(address(this))); } } // Admin functions function rebalance(uint256 splitNumber) public { require(msg.sender == owner && splitNumber > 0); grillPool(); claimRewards(); if (splitNumber > maxSlaveCount) { for (uint i = maxSlaveCount; i < splitNumber; i++) { slaves[i] = new TendiesFarmSlave(); } maxSlaveCount = splitNumber; } for (uint i = 0; i < slaveCount; i++) { TendiesFarmSlave slave = slaves[i]; slave.takeMyTendiesMaster(slave.totalTEND()); } uint256 amountPerPool = totalStakedTendies.div(splitNumber); for (uint i = 0; i < splitNumber - 1; i++) { TEND.safeTransfer(address(slaves[i]), amountPerPool); } TEND.safeTransfer(address(slaves[splitNumber - 1]), TEND.balanceOf(address(this))); slaveCount = splitNumber; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"constant":true,"inputs":[],"name":"ITEND","outputs":[{"internalType":"contract ITendies","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"IweebTEND","outputs":[{"internalType":"contract IweebTendies","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"TEND","outputs":[{"internalType":"contract ERC20","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"claimRewards","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"convert","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"getPricePerFullShare","outputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"grillPool","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"maxSlaveCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"splitNumber","type":"uint256"}],"name":"rebalance","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"slaveCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"slaves","outputs":[{"internalType":"contract TendiesFarmSlave","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalStakedTendies","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"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"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"weebTEND","outputs":[{"internalType":"contract ERC20","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"}]
Contract Creation Code
608060405260006006553480156200001657600080fd5b506040518060400160405280600b81526020017f54656e646965734661726d0000000000000000000000000000000000000000008152506040518060400160405280600b81526020017f7765656254454e442d5632000000000000000000000000000000000000000000815250601282600390805190602001906200009d92919062000183565b508160049080519060200190620000b692919062000183565b5080600560006101000a81548160ff021916908360ff1602179055505050506001600560016101000a81548160ff021916908315150217905550604051620000fe906200020a565b604051809103906000f0801580156200011b573d6000803e3d6000fd5b506007600080815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600881905550600160098190555062000240565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620001c657805160ff1916838001178555620001f7565b82800160010185558215620001f7579182015b82811115620001f6578251825591602001919060010190620001d9565b5b50905062000206919062000218565b5090565b6107238062003d5283390190565b6200023d91905b80821115620002395760008160009055506001016200021f565b5090565b90565b613b0280620002506000396000f3fe608060405234801561001057600080fd5b50600436106101a95760003560e01c806370a08231116100f9578063a0712d6811610097578063c5f5843111610071578063c5f58431146107aa578063d5dd08af146107f4578063dd62ed3e1461083e578063f4993018146108b6576101a9565b8063a0712d68146106b0578063a457c2d7146106de578063a9059cbb14610744576101a9565b80638da5cb5b116100d35780638da5cb5b1461058f57806391bbdcc7146105d957806395d89b41146105e3578063a01fef7614610666576101a9565b806370a082311461050f57806370ed27a51461056757806377c7b8fc14610571576101a9565b8063313ce567116101665780633d875531116101405780633d8755311461045b5780633e918078146104a557806342966c68146104c35780636fad5037146104f1576101a9565b8063313ce567146103c7578063372500ab146103eb57806339509351146103f5576101a9565b806306fdde03146101ae578063095ea7b3146102315780631109c9251461029757806318160ddd1461030557806323b872dd146103235780632d6d93a6146103a9575b600080fd5b6101b66108e4565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156101f65780820151818401526020810190506101db565b50505050905090810190601f1680156102235780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61027d6004803603604081101561024757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610986565b604051808215151515815260200191505060405180910390f35b6102c3600480360360208110156102ad57600080fd5b81019080803590602001909291905050506109a4565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61030d6109d7565b6040518082815260200191505060405180910390f35b61038f6004803603606081101561033957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506109e1565b604051808215151515815260200191505060405180910390f35b6103b1610aba565b6040518082815260200191505060405180910390f35b6103cf610ac0565b604051808260ff1660ff16815260200191505060405180910390f35b6103f3610ad7565b005b6104416004803603604081101561040b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610cf8565b604051808215151515815260200191505060405180910390f35b610463610dab565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6104ad610dc3565b6040518082815260200191505060405180910390f35b6104ef600480360360208110156104d957600080fd5b8101908080359060200190929190505050610dc9565b005b6104f9610fbb565b6040518082815260200191505060405180910390f35b6105516004803603602081101561052557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610fc1565b6040518082815260200191505060405180910390f35b61056f611009565b005b6105796111f7565b6040518082815260200191505060405180910390f35b610597611234565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6105e161124c565b005b6105eb61159c565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561062b578082015181840152602081019050610610565b50505050905090810190601f1680156106585780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61066e61163e565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6106dc600480360360208110156106c657600080fd5b8101908080359060200190929190505050611656565b005b61072a600480360360408110156106f457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506117fb565b604051808215151515815260200191505060405180910390f35b6107906004803603604081101561075a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506118c8565b604051808215151515815260200191505060405180910390f35b6107b26118e6565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6107fc6118fe565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6108a06004803603604081101561085457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611916565b6040518082815260200191505060405180910390f35b6108e2600480360360208110156108cc57600080fd5b810190808035906020019092919050505061199d565b005b606060038054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561097c5780601f106109515761010080835404028352916020019161097c565b820191906000526020600020905b81548152906001019060200180831161095f57829003601f168201915b5050505050905090565b600061099a610993611de6565b8484611dee565b6001905092915050565b60076020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b60006109ee848484611fe5565b610aaf846109fa611de6565b610aaa856040518060600160405280602881526020016139ed60289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610a60611de6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461229b9092919063ffffffff16565b611dee565b600190509392505050565b60095481565b6000600560009054906101000a900460ff16905090565b6000731453dbb8a29551ade11d89825ca812e05317eaeb73ffffffffffffffffffffffffffffffffffffffff1663949813b8306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001915050602060405180830381600087803b158015610b6c57600080fd5b505af1158015610b80573d6000803e3d6000fd5b505050506040513d6020811015610b9657600080fd5b81019080805190602001909291905050501115610cf657731453dbb8a29551ade11d89825ca812e05317eaeb73ffffffffffffffffffffffffffffffffffffffff1663372500ab6040518163ffffffff1660e01b8152600401600060405180830381600087803b158015610c0957600080fd5b505af1158015610c1d573d6000803e3d6000fd5b50505050610cf5731453dbb8a29551ade11d89825ca812e05317eaeb73ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015610cb557600080fd5b505afa158015610cc9573d6000803e3d6000fd5b505050506040513d6020811015610cdf57600080fd5b810190808051906020019092919050505061235b565b5b565b6000610da1610d05611de6565b84610d9c8560016000610d16611de6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123e590919063ffffffff16565b611dee565b6001905092915050565b73171aabea00881d7f424a11d070dc98767f4f5ed681565b60085481565b600560019054906101000a900460ff16610e4b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b6000600560016101000a81548160ff021916908315150217905550610e6e611009565b610e76610ad7565b6000610ea6610e836109d7565b610e988460065461246d90919063ffffffff16565b6124f390919063ffffffff16565b9050610eb2338361253d565b6000610edc612710610ece60058561246d90919063ffffffff16565b6124f390919063ffffffff16565b9050610ee7826126f5565b610f3833610efe8385612ad690919063ffffffff16565b731453dbb8a29551ade11d89825ca812e05317eaeb73ffffffffffffffffffffffffffffffffffffffff16612b209092919063ffffffff16565b610f8b734bc821fef2ff947b57585a5fdbc73690db288a4982731453dbb8a29551ade11d89825ca812e05317eaeb73ffffffffffffffffffffffffffffffffffffffff16612b209092919063ffffffff16565b8160066000828254039250508190555050506001600560016101000a81548160ff02191690831515021790555050565b60065481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b670de0b6b3a7640000731453dbb8a29551ade11d89825ca812e05317eaeb73ffffffffffffffffffffffffffffffffffffffff1663cb57bcd06040518163ffffffff1660e01b815260040160206040518083038186803b15801561106c57600080fd5b505afa158015611080573d6000803e3d6000fd5b505050506040513d602081101561109657600080fd5b8101908080519060200190929190505050106111f557731453dbb8a29551ade11d89825ca812e05317eaeb73ffffffffffffffffffffffffffffffffffffffff166370ed27a56040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561110857600080fd5b505af115801561111c573d6000803e3d6000fd5b505050506111f4731453dbb8a29551ade11d89825ca812e05317eaeb73ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156111b457600080fd5b505afa1580156111c8573d6000803e3d6000fd5b505050506040513d60208110156111de57600080fd5b810190808051906020019092919050505061235b565b5b565b600061122f6112046109d7565b611221670de0b6b3a764000060065461246d90919063ffffffff16565b6124f390919063ffffffff16565b905090565b734bc821fef2ff947b57585a5fdbc73690db288a4981565b600073171aabea00881d7f424a11d070dc98767f4f5ed673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156112df57600080fd5b505afa1580156112f3573d6000803e3d6000fd5b505050506040513d602081101561130957600080fd5b8101908080519060200190929190505050905061135d33308373171aabea00881d7f424a11d070dc98767f4f5ed673ffffffffffffffffffffffffffffffffffffffff16612bf1909392919063ffffffff16565b6000731453dbb8a29551ade11d89825ca812e05317eaeb73ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156113f057600080fd5b505afa158015611404573d6000803e3d6000fd5b505050506040513d602081101561141a57600080fd5b8101908080519060200190929190505050905073171aabea00881d7f424a11d070dc98767f4f5ed673ffffffffffffffffffffffffffffffffffffffff166342966c68836040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b15801561149457600080fd5b505af11580156114a8573d6000803e3d6000fd5b505050506000731453dbb8a29551ade11d89825ca812e05317eaeb73ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561153f57600080fd5b505afa158015611553573d6000803e3d6000fd5b505050506040513d602081101561156957600080fd5b810190808051906020019092919050505090506115976115928383612ad690919063ffffffff16565b611656565b505050565b606060048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156116345780601f1061160957610100808354040283529160200191611634565b820191906000526020600020905b81548152906001019060200180831161161757829003601f168201915b5050505050905090565b731453dbb8a29551ade11d89825ca812e05317eaeb81565b61165e611009565b611666610ad7565b600060065490506116ae333084731453dbb8a29551ade11d89825ca812e05317eaeb73ffffffffffffffffffffffffffffffffffffffff16612bf1909392919063ffffffff16565b611782731453dbb8a29551ade11d89825ca812e05317eaeb73ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561174257600080fd5b505afa158015611756573d6000803e3d6000fd5b505050506040513d602081101561176c57600080fd5b810190808051906020019092919050505061235b565b6000600654905060006117936109d7565b14156117a8576117a33384612cf7565b6117f6565b60006117e8836117da6117b96109d7565b6117cc8787612ad690919063ffffffff16565b61246d90919063ffffffff16565b6124f390919063ffffffff16565b90506117f43382612cf7565b505b505050565b60006118be611808611de6565b846118b985604051806060016040528060258152602001613aa96025913960016000611832611de6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461229b9092919063ffffffff16565b611dee565b6001905092915050565b60006118dc6118d5611de6565b8484611fe5565b6001905092915050565b73171aabea00881d7f424a11d070dc98767f4f5ed681565b731453dbb8a29551ade11d89825ca812e05317eaeb81565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b734bc821fef2ff947b57585a5fdbc73690db288a4973ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480156119ec5750600081115b6119f557600080fd5b6119fd611009565b611a05610ad7565b600954811115611aaf57600060095490505b81811015611aa657604051611a2b9061320e565b604051809103906000f080158015611a47573d6000803e3d6000fd5b506007600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508080600101915050611a17565b50806009819055505b60008090505b600854811015611bf05760006007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663fa1207ce8273ffffffffffffffffffffffffffffffffffffffff16632e9601fb6040518163ffffffff1660e01b815260040160206040518083038186803b158015611b5957600080fd5b505afa158015611b6d573d6000803e3d6000fd5b505050506040513d6020811015611b8357600080fd5b81019080805190602001909291905050506040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b158015611bca57600080fd5b505af1158015611bde573d6000803e3d6000fd5b50505050508080600101915050611ab5565b506000611c08826006546124f390919063ffffffff16565b905060008090505b60018303811015611c9a57611c8d6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683731453dbb8a29551ade11d89825ca812e05317eaeb73ffffffffffffffffffffffffffffffffffffffff16612b209092919063ffffffff16565b8080600101915050611c10565b50611ddb6007600060018503815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16731453dbb8a29551ade11d89825ca812e05317eaeb73ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015611d6657600080fd5b505afa158015611d7a573d6000803e3d6000fd5b505050506040513d6020811015611d9057600080fd5b8101908080519060200190929190505050731453dbb8a29551ade11d89825ca812e05317eaeb73ffffffffffffffffffffffffffffffffffffffff16612b209092919063ffffffff16565b816008819055505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611e74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180613a5b6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611efa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806139846022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561206b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180613a366025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120f1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602381526020018061393f6023913960400191505060405180910390fd5b61215c816040518060600160405280602681526020016139a6602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461229b9092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506121ef816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123e590919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b6000838311158290612348576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561230d5780820151818401526020810190506122f2565b50505050905090810190601f16801561233a5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6123d260076000600160085403815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682731453dbb8a29551ade11d89825ca812e05317eaeb73ffffffffffffffffffffffffffffffffffffffff16612b209092919063ffffffff16565b8060066000828254019250508190555050565b600080828401905083811015612463576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b60008083141561248057600090506124ed565b600082840290508284828161249157fe5b04146124e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806139cc6021913960400191505060405180910390fd5b809150505b92915050565b600061253583836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612eb2565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125c3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180613a156021913960400191505060405180910390fd5b61262e81604051806060016040528060228152602001613962602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461229b9092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061268581600254612ad690919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b60076000600160085403815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16632e9601fb6040518163ffffffff1660e01b815260040160206040518083038186803b15801561277357600080fd5b505afa158015612787573d6000803e3d6000fd5b505050506040513d602081101561279d57600080fd5b8101908080519060200190929190505050811115612a1f5760008190505b6000811115612a1957600060076000600160085403815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff16632e9601fb6040518163ffffffff1660e01b815260040160206040518083038186803b15801561284757600080fd5b505afa15801561285b573d6000803e3d6000fd5b505050506040513d602081101561287157600080fd5b81019080805190602001909291905050508211801561289257506001600854115b156129a35760008173ffffffffffffffffffffffffffffffffffffffff16632e9601fb6040518163ffffffff1660e01b815260040160206040518083038186803b1580156128df57600080fd5b505afa1580156128f3573d6000803e3d6000fd5b505050506040513d602081101561290957600080fd5b8101908080519060200190929190505050905080830392508173ffffffffffffffffffffffffffffffffffffffff1663fa1207ce826040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b15801561297457600080fd5b505af1158015612988573d6000803e3d6000fd5b50505050600160086000828254039250508190555050612a13565b8073ffffffffffffffffffffffffffffffffffffffff1663fa1207ce836040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b1580156129f657600080fd5b505af1158015612a0a573d6000803e3d6000fd5b50505050600091505b506127bb565b50612ac3565b60076000600160085403815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fa1207ce826040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b158015612aaa57600080fd5b505af1158015612abe573d6000803e3d6000fd5b505050505b8060066000828254039250508190555050565b6000612b1883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061229b565b905092915050565b612bec838473ffffffffffffffffffffffffffffffffffffffff1663a9059cbb905060e01b8484604051602401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050612f78565b505050565b612cf1848573ffffffffffffffffffffffffffffffffffffffff166323b872dd905060e01b858585604051602401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050612f78565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d9a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b612daf816002546123e590919063ffffffff16565b600281905550612e06816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123e590919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b60008083118290612f5e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612f23578082015181840152602081019050612f08565b50505050905090810190601f168015612f505780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581612f6a57fe5b049050809150509392505050565b612f978273ffffffffffffffffffffffffffffffffffffffff166131c3565b613009576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5361666545524332303a2063616c6c20746f206e6f6e2d636f6e74726163740081525060200191505060405180910390fd5b600060608373ffffffffffffffffffffffffffffffffffffffff16836040518082805190602001908083835b602083106130585780518252602082019150602081019050602083039250613035565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d80600081146130ba576040519150601f19603f3d011682016040523d82523d6000602084013e6130bf565b606091505b509150915081613137576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c656481525060200191505060405180910390fd5b6000815111156131bd5780806020019051602081101561315657600080fd5b81019080805190602001909291905050506131bc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180613a7f602a913960400191505060405180910390fd5b5b50505050565b60008060007fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47060001b9050833f915080821415801561320557506000801b8214155b92505050919050565b6107238061321c8339019056fe608060405234801561001057600080fd5b50336000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506106c3806100606000396000f3fe608060405234801561001057600080fd5b506004361061004c5760003560e01c80632e9601fb14610051578063d5dd08af1461006f578063ee97f7f3146100b9578063fa1207ce14610103575b600080fd5b610059610131565b6040518082815260200191505060405180910390f35b610077610204565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6100c161021c565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61012f6004803603602081101561011957600080fd5b8101908080359060200190929190505050610241565b005b6000731453dbb8a29551ade11d89825ca812e05317eaeb73ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156101c457600080fd5b505afa1580156101d8573d6000803e3d6000fd5b505050506040513d60208110156101ee57600080fd5b8101908080519060200190929190505050905090565b731453dbb8a29551ade11d89825ca812e05317eaeb81565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461029a57600080fd5b6102fa6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682731453dbb8a29551ade11d89825ca812e05317eaeb73ffffffffffffffffffffffffffffffffffffffff166102fd9092919063ffffffff16565b50565b6103c9838473ffffffffffffffffffffffffffffffffffffffff1663a9059cbb905060e01b8484604051602401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506103ce565b505050565b6103ed8273ffffffffffffffffffffffffffffffffffffffff16610619565b61045f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5361666545524332303a2063616c6c20746f206e6f6e2d636f6e74726163740081525060200191505060405180910390fd5b600060608373ffffffffffffffffffffffffffffffffffffffff16836040518082805190602001908083835b602083106104ae578051825260208201915060208101905060208303925061048b565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114610510576040519150601f19603f3d011682016040523d82523d6000602084013e610515565b606091505b50915091508161058d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c656481525060200191505060405180910390fd5b600081511115610613578080602001905160208110156105ac57600080fd5b8101908080519060200190929190505050610612576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180610665602a913960400191505060405180910390fd5b5b50505050565b60008060007fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47060001b9050833f915080821415801561065b57506000801b8214155b9250505091905056fe5361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a265627a7a723158207925250b1aa0f84fbcc9fd6c5d52f204bacf5c9a34a5b088f736e1b06da6eaed64736f6c6343000511003245524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573735361666545524332303a204552433230206f7065726174696f6e20646964206e6f74207375636365656445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa265627a7a72315820465c81e00f8d5d45c81b8080e5c340a634206b72fb8817930946ef20238fb4f964736f6c63430005110032608060405234801561001057600080fd5b50336000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506106c3806100606000396000f3fe608060405234801561001057600080fd5b506004361061004c5760003560e01c80632e9601fb14610051578063d5dd08af1461006f578063ee97f7f3146100b9578063fa1207ce14610103575b600080fd5b610059610131565b6040518082815260200191505060405180910390f35b610077610204565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6100c161021c565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61012f6004803603602081101561011957600080fd5b8101908080359060200190929190505050610241565b005b6000731453dbb8a29551ade11d89825ca812e05317eaeb73ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156101c457600080fd5b505afa1580156101d8573d6000803e3d6000fd5b505050506040513d60208110156101ee57600080fd5b8101908080519060200190929190505050905090565b731453dbb8a29551ade11d89825ca812e05317eaeb81565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461029a57600080fd5b6102fa6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682731453dbb8a29551ade11d89825ca812e05317eaeb73ffffffffffffffffffffffffffffffffffffffff166102fd9092919063ffffffff16565b50565b6103c9838473ffffffffffffffffffffffffffffffffffffffff1663a9059cbb905060e01b8484604051602401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506103ce565b505050565b6103ed8273ffffffffffffffffffffffffffffffffffffffff16610619565b61045f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5361666545524332303a2063616c6c20746f206e6f6e2d636f6e74726163740081525060200191505060405180910390fd5b600060608373ffffffffffffffffffffffffffffffffffffffff16836040518082805190602001908083835b602083106104ae578051825260208201915060208101905060208303925061048b565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114610510576040519150601f19603f3d011682016040523d82523d6000602084013e610515565b606091505b50915091508161058d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c656481525060200191505060405180910390fd5b600081511115610613578080602001905160208110156105ac57600080fd5b8101908080519060200190929190505050610612576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180610665602a913960400191505060405180910390fd5b5b50505050565b60008060007fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47060001b9050833f915080821415801561065b57506000801b8214155b9250505091905056fe5361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a265627a7a723158207925250b1aa0f84fbcc9fd6c5d52f204bacf5c9a34a5b088f736e1b06da6eaed64736f6c63430005110032
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101a95760003560e01c806370a08231116100f9578063a0712d6811610097578063c5f5843111610071578063c5f58431146107aa578063d5dd08af146107f4578063dd62ed3e1461083e578063f4993018146108b6576101a9565b8063a0712d68146106b0578063a457c2d7146106de578063a9059cbb14610744576101a9565b80638da5cb5b116100d35780638da5cb5b1461058f57806391bbdcc7146105d957806395d89b41146105e3578063a01fef7614610666576101a9565b806370a082311461050f57806370ed27a51461056757806377c7b8fc14610571576101a9565b8063313ce567116101665780633d875531116101405780633d8755311461045b5780633e918078146104a557806342966c68146104c35780636fad5037146104f1576101a9565b8063313ce567146103c7578063372500ab146103eb57806339509351146103f5576101a9565b806306fdde03146101ae578063095ea7b3146102315780631109c9251461029757806318160ddd1461030557806323b872dd146103235780632d6d93a6146103a9575b600080fd5b6101b66108e4565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156101f65780820151818401526020810190506101db565b50505050905090810190601f1680156102235780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61027d6004803603604081101561024757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610986565b604051808215151515815260200191505060405180910390f35b6102c3600480360360208110156102ad57600080fd5b81019080803590602001909291905050506109a4565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61030d6109d7565b6040518082815260200191505060405180910390f35b61038f6004803603606081101561033957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506109e1565b604051808215151515815260200191505060405180910390f35b6103b1610aba565b6040518082815260200191505060405180910390f35b6103cf610ac0565b604051808260ff1660ff16815260200191505060405180910390f35b6103f3610ad7565b005b6104416004803603604081101561040b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610cf8565b604051808215151515815260200191505060405180910390f35b610463610dab565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6104ad610dc3565b6040518082815260200191505060405180910390f35b6104ef600480360360208110156104d957600080fd5b8101908080359060200190929190505050610dc9565b005b6104f9610fbb565b6040518082815260200191505060405180910390f35b6105516004803603602081101561052557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610fc1565b6040518082815260200191505060405180910390f35b61056f611009565b005b6105796111f7565b6040518082815260200191505060405180910390f35b610597611234565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6105e161124c565b005b6105eb61159c565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561062b578082015181840152602081019050610610565b50505050905090810190601f1680156106585780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61066e61163e565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6106dc600480360360208110156106c657600080fd5b8101908080359060200190929190505050611656565b005b61072a600480360360408110156106f457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506117fb565b604051808215151515815260200191505060405180910390f35b6107906004803603604081101561075a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506118c8565b604051808215151515815260200191505060405180910390f35b6107b26118e6565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6107fc6118fe565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6108a06004803603604081101561085457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611916565b6040518082815260200191505060405180910390f35b6108e2600480360360208110156108cc57600080fd5b810190808035906020019092919050505061199d565b005b606060038054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561097c5780601f106109515761010080835404028352916020019161097c565b820191906000526020600020905b81548152906001019060200180831161095f57829003601f168201915b5050505050905090565b600061099a610993611de6565b8484611dee565b6001905092915050565b60076020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b60006109ee848484611fe5565b610aaf846109fa611de6565b610aaa856040518060600160405280602881526020016139ed60289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610a60611de6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461229b9092919063ffffffff16565b611dee565b600190509392505050565b60095481565b6000600560009054906101000a900460ff16905090565b6000731453dbb8a29551ade11d89825ca812e05317eaeb73ffffffffffffffffffffffffffffffffffffffff1663949813b8306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001915050602060405180830381600087803b158015610b6c57600080fd5b505af1158015610b80573d6000803e3d6000fd5b505050506040513d6020811015610b9657600080fd5b81019080805190602001909291905050501115610cf657731453dbb8a29551ade11d89825ca812e05317eaeb73ffffffffffffffffffffffffffffffffffffffff1663372500ab6040518163ffffffff1660e01b8152600401600060405180830381600087803b158015610c0957600080fd5b505af1158015610c1d573d6000803e3d6000fd5b50505050610cf5731453dbb8a29551ade11d89825ca812e05317eaeb73ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015610cb557600080fd5b505afa158015610cc9573d6000803e3d6000fd5b505050506040513d6020811015610cdf57600080fd5b810190808051906020019092919050505061235b565b5b565b6000610da1610d05611de6565b84610d9c8560016000610d16611de6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123e590919063ffffffff16565b611dee565b6001905092915050565b73171aabea00881d7f424a11d070dc98767f4f5ed681565b60085481565b600560019054906101000a900460ff16610e4b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b6000600560016101000a81548160ff021916908315150217905550610e6e611009565b610e76610ad7565b6000610ea6610e836109d7565b610e988460065461246d90919063ffffffff16565b6124f390919063ffffffff16565b9050610eb2338361253d565b6000610edc612710610ece60058561246d90919063ffffffff16565b6124f390919063ffffffff16565b9050610ee7826126f5565b610f3833610efe8385612ad690919063ffffffff16565b731453dbb8a29551ade11d89825ca812e05317eaeb73ffffffffffffffffffffffffffffffffffffffff16612b209092919063ffffffff16565b610f8b734bc821fef2ff947b57585a5fdbc73690db288a4982731453dbb8a29551ade11d89825ca812e05317eaeb73ffffffffffffffffffffffffffffffffffffffff16612b209092919063ffffffff16565b8160066000828254039250508190555050506001600560016101000a81548160ff02191690831515021790555050565b60065481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b670de0b6b3a7640000731453dbb8a29551ade11d89825ca812e05317eaeb73ffffffffffffffffffffffffffffffffffffffff1663cb57bcd06040518163ffffffff1660e01b815260040160206040518083038186803b15801561106c57600080fd5b505afa158015611080573d6000803e3d6000fd5b505050506040513d602081101561109657600080fd5b8101908080519060200190929190505050106111f557731453dbb8a29551ade11d89825ca812e05317eaeb73ffffffffffffffffffffffffffffffffffffffff166370ed27a56040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561110857600080fd5b505af115801561111c573d6000803e3d6000fd5b505050506111f4731453dbb8a29551ade11d89825ca812e05317eaeb73ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156111b457600080fd5b505afa1580156111c8573d6000803e3d6000fd5b505050506040513d60208110156111de57600080fd5b810190808051906020019092919050505061235b565b5b565b600061122f6112046109d7565b611221670de0b6b3a764000060065461246d90919063ffffffff16565b6124f390919063ffffffff16565b905090565b734bc821fef2ff947b57585a5fdbc73690db288a4981565b600073171aabea00881d7f424a11d070dc98767f4f5ed673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156112df57600080fd5b505afa1580156112f3573d6000803e3d6000fd5b505050506040513d602081101561130957600080fd5b8101908080519060200190929190505050905061135d33308373171aabea00881d7f424a11d070dc98767f4f5ed673ffffffffffffffffffffffffffffffffffffffff16612bf1909392919063ffffffff16565b6000731453dbb8a29551ade11d89825ca812e05317eaeb73ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156113f057600080fd5b505afa158015611404573d6000803e3d6000fd5b505050506040513d602081101561141a57600080fd5b8101908080519060200190929190505050905073171aabea00881d7f424a11d070dc98767f4f5ed673ffffffffffffffffffffffffffffffffffffffff166342966c68836040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b15801561149457600080fd5b505af11580156114a8573d6000803e3d6000fd5b505050506000731453dbb8a29551ade11d89825ca812e05317eaeb73ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561153f57600080fd5b505afa158015611553573d6000803e3d6000fd5b505050506040513d602081101561156957600080fd5b810190808051906020019092919050505090506115976115928383612ad690919063ffffffff16565b611656565b505050565b606060048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156116345780601f1061160957610100808354040283529160200191611634565b820191906000526020600020905b81548152906001019060200180831161161757829003601f168201915b5050505050905090565b731453dbb8a29551ade11d89825ca812e05317eaeb81565b61165e611009565b611666610ad7565b600060065490506116ae333084731453dbb8a29551ade11d89825ca812e05317eaeb73ffffffffffffffffffffffffffffffffffffffff16612bf1909392919063ffffffff16565b611782731453dbb8a29551ade11d89825ca812e05317eaeb73ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561174257600080fd5b505afa158015611756573d6000803e3d6000fd5b505050506040513d602081101561176c57600080fd5b810190808051906020019092919050505061235b565b6000600654905060006117936109d7565b14156117a8576117a33384612cf7565b6117f6565b60006117e8836117da6117b96109d7565b6117cc8787612ad690919063ffffffff16565b61246d90919063ffffffff16565b6124f390919063ffffffff16565b90506117f43382612cf7565b505b505050565b60006118be611808611de6565b846118b985604051806060016040528060258152602001613aa96025913960016000611832611de6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461229b9092919063ffffffff16565b611dee565b6001905092915050565b60006118dc6118d5611de6565b8484611fe5565b6001905092915050565b73171aabea00881d7f424a11d070dc98767f4f5ed681565b731453dbb8a29551ade11d89825ca812e05317eaeb81565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b734bc821fef2ff947b57585a5fdbc73690db288a4973ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480156119ec5750600081115b6119f557600080fd5b6119fd611009565b611a05610ad7565b600954811115611aaf57600060095490505b81811015611aa657604051611a2b9061320e565b604051809103906000f080158015611a47573d6000803e3d6000fd5b506007600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508080600101915050611a17565b50806009819055505b60008090505b600854811015611bf05760006007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663fa1207ce8273ffffffffffffffffffffffffffffffffffffffff16632e9601fb6040518163ffffffff1660e01b815260040160206040518083038186803b158015611b5957600080fd5b505afa158015611b6d573d6000803e3d6000fd5b505050506040513d6020811015611b8357600080fd5b81019080805190602001909291905050506040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b158015611bca57600080fd5b505af1158015611bde573d6000803e3d6000fd5b50505050508080600101915050611ab5565b506000611c08826006546124f390919063ffffffff16565b905060008090505b60018303811015611c9a57611c8d6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683731453dbb8a29551ade11d89825ca812e05317eaeb73ffffffffffffffffffffffffffffffffffffffff16612b209092919063ffffffff16565b8080600101915050611c10565b50611ddb6007600060018503815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16731453dbb8a29551ade11d89825ca812e05317eaeb73ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015611d6657600080fd5b505afa158015611d7a573d6000803e3d6000fd5b505050506040513d6020811015611d9057600080fd5b8101908080519060200190929190505050731453dbb8a29551ade11d89825ca812e05317eaeb73ffffffffffffffffffffffffffffffffffffffff16612b209092919063ffffffff16565b816008819055505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611e74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180613a5b6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611efa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806139846022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561206b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180613a366025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120f1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602381526020018061393f6023913960400191505060405180910390fd5b61215c816040518060600160405280602681526020016139a6602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461229b9092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506121ef816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123e590919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b6000838311158290612348576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561230d5780820151818401526020810190506122f2565b50505050905090810190601f16801561233a5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6123d260076000600160085403815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682731453dbb8a29551ade11d89825ca812e05317eaeb73ffffffffffffffffffffffffffffffffffffffff16612b209092919063ffffffff16565b8060066000828254019250508190555050565b600080828401905083811015612463576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b60008083141561248057600090506124ed565b600082840290508284828161249157fe5b04146124e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806139cc6021913960400191505060405180910390fd5b809150505b92915050565b600061253583836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612eb2565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125c3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180613a156021913960400191505060405180910390fd5b61262e81604051806060016040528060228152602001613962602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461229b9092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061268581600254612ad690919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b60076000600160085403815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16632e9601fb6040518163ffffffff1660e01b815260040160206040518083038186803b15801561277357600080fd5b505afa158015612787573d6000803e3d6000fd5b505050506040513d602081101561279d57600080fd5b8101908080519060200190929190505050811115612a1f5760008190505b6000811115612a1957600060076000600160085403815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff16632e9601fb6040518163ffffffff1660e01b815260040160206040518083038186803b15801561284757600080fd5b505afa15801561285b573d6000803e3d6000fd5b505050506040513d602081101561287157600080fd5b81019080805190602001909291905050508211801561289257506001600854115b156129a35760008173ffffffffffffffffffffffffffffffffffffffff16632e9601fb6040518163ffffffff1660e01b815260040160206040518083038186803b1580156128df57600080fd5b505afa1580156128f3573d6000803e3d6000fd5b505050506040513d602081101561290957600080fd5b8101908080519060200190929190505050905080830392508173ffffffffffffffffffffffffffffffffffffffff1663fa1207ce826040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b15801561297457600080fd5b505af1158015612988573d6000803e3d6000fd5b50505050600160086000828254039250508190555050612a13565b8073ffffffffffffffffffffffffffffffffffffffff1663fa1207ce836040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b1580156129f657600080fd5b505af1158015612a0a573d6000803e3d6000fd5b50505050600091505b506127bb565b50612ac3565b60076000600160085403815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fa1207ce826040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b158015612aaa57600080fd5b505af1158015612abe573d6000803e3d6000fd5b505050505b8060066000828254039250508190555050565b6000612b1883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061229b565b905092915050565b612bec838473ffffffffffffffffffffffffffffffffffffffff1663a9059cbb905060e01b8484604051602401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050612f78565b505050565b612cf1848573ffffffffffffffffffffffffffffffffffffffff166323b872dd905060e01b858585604051602401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050612f78565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d9a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b612daf816002546123e590919063ffffffff16565b600281905550612e06816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123e590919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b60008083118290612f5e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612f23578082015181840152602081019050612f08565b50505050905090810190601f168015612f505780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581612f6a57fe5b049050809150509392505050565b612f978273ffffffffffffffffffffffffffffffffffffffff166131c3565b613009576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5361666545524332303a2063616c6c20746f206e6f6e2d636f6e74726163740081525060200191505060405180910390fd5b600060608373ffffffffffffffffffffffffffffffffffffffff16836040518082805190602001908083835b602083106130585780518252602082019150602081019050602083039250613035565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d80600081146130ba576040519150601f19603f3d011682016040523d82523d6000602084013e6130bf565b606091505b509150915081613137576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c656481525060200191505060405180910390fd5b6000815111156131bd5780806020019051602081101561315657600080fd5b81019080805190602001909291905050506131bc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180613a7f602a913960400191505060405180910390fd5b5b50505050565b60008060007fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47060001b9050833f915080821415801561320557506000801b8214155b92505050919050565b6107238061321c8339019056fe608060405234801561001057600080fd5b50336000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506106c3806100606000396000f3fe608060405234801561001057600080fd5b506004361061004c5760003560e01c80632e9601fb14610051578063d5dd08af1461006f578063ee97f7f3146100b9578063fa1207ce14610103575b600080fd5b610059610131565b6040518082815260200191505060405180910390f35b610077610204565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6100c161021c565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61012f6004803603602081101561011957600080fd5b8101908080359060200190929190505050610241565b005b6000731453dbb8a29551ade11d89825ca812e05317eaeb73ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156101c457600080fd5b505afa1580156101d8573d6000803e3d6000fd5b505050506040513d60208110156101ee57600080fd5b8101908080519060200190929190505050905090565b731453dbb8a29551ade11d89825ca812e05317eaeb81565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461029a57600080fd5b6102fa6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682731453dbb8a29551ade11d89825ca812e05317eaeb73ffffffffffffffffffffffffffffffffffffffff166102fd9092919063ffffffff16565b50565b6103c9838473ffffffffffffffffffffffffffffffffffffffff1663a9059cbb905060e01b8484604051602401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506103ce565b505050565b6103ed8273ffffffffffffffffffffffffffffffffffffffff16610619565b61045f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5361666545524332303a2063616c6c20746f206e6f6e2d636f6e74726163740081525060200191505060405180910390fd5b600060608373ffffffffffffffffffffffffffffffffffffffff16836040518082805190602001908083835b602083106104ae578051825260208201915060208101905060208303925061048b565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114610510576040519150601f19603f3d011682016040523d82523d6000602084013e610515565b606091505b50915091508161058d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c656481525060200191505060405180910390fd5b600081511115610613578080602001905160208110156105ac57600080fd5b8101908080519060200190929190505050610612576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180610665602a913960400191505060405180910390fd5b5b50505050565b60008060007fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47060001b9050833f915080821415801561065b57506000801b8214155b9250505091905056fe5361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a265627a7a723158207925250b1aa0f84fbcc9fd6c5d52f204bacf5c9a34a5b088f736e1b06da6eaed64736f6c6343000511003245524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573735361666545524332303a204552433230206f7065726174696f6e20646964206e6f74207375636365656445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa265627a7a72315820465c81e00f8d5d45c81b8080e5c340a634206b72fb8817930946ef20238fb4f964736f6c63430005110032
Deployed Bytecode Sourcemap
29998:5829:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;29998:5829:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25592:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;25592:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12243:152;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;12243:152:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;30769:50;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;30769:50:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;11264:91;;;:::i;:::-;;;;;;;;;;;;;;;;;;;12867:304;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;12867:304:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;30858:28;;;:::i;:::-;;;;;;;;;;;;;;;;;;;26444:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;34645:204;;;:::i;:::-;;13580:210;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;13580:210:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;30410:97;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;30826:25;;;:::i;:::-;;;;;;;;;;;;;;;;;;;31948:604;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;31948:604:0;;;;;;;;;;;;;;;;;:::i;:::-;;30607:37;;;:::i;:::-;;;;;;;;;;;;;;;;;;;11418:110;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;11418:110:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;34441:192;;;:::i;:::-;;33093:142;;;:::i;:::-;;;;;;;;;;;;;;;;;;;30520:74;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;32564:517;;;:::i;:::-;;25794:87;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;25794:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30223:85;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;31182:710;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;31182:710:0;;;;;;;;;;;;;;;;;:::i;:::-;;14293:261;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;14293:261:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;11741:158;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;11741:158:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;30321:82;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;30138:78;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;11962:134;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;11962:134:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;34885:939;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;34885:939:0;;;;;;;;;;;;;;;;;:::i;:::-;;25592:83;25629:13;25662:5;25655:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25592:83;:::o;12243:152::-;12309:4;12326:39;12335:12;:10;:12::i;:::-;12349:7;12358:6;12326:8;:39::i;:::-;12383:4;12376:11;;12243:152;;;;:::o;30769:50::-;;;;;;;;;;;;;;;;;;;;;;:::o;11264:91::-;11308:7;11335:12;;11328:19;;11264:91;:::o;12867:304::-;12956:4;12973:36;12983:6;12991:9;13002:6;12973:9;:36::i;:::-;13020:121;13029:6;13037:12;:10;:12::i;:::-;13051:89;13089:6;13051:89;;;;;;;;;;;;;;;;;:11;:19;13063:6;13051:19;;;;;;;;;;;;;;;:33;13071:12;:10;:12::i;:::-;13051:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;13020:8;:121::i;:::-;13159:4;13152:11;;12867:304;;;;;:::o;30858:28::-;;;;:::o;26444:83::-;26485:5;26510:9;;;;;;;;;;;26503:16;;26444:83;:::o;34645:204::-;34731:1;30265:42;34691:22;;;34722:4;34691:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;34691:37:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;34691:37:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;34691:37:0;;;;;;;;;;;;;;;;:41;34687:155;;;30265:42;34749:18;;;:20;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;34749:20:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;34749:20:0;;;;34784:46;30173:42;34800:14;;;34823:4;34800:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;34800:29:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;34800:29:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;34800:29:0;;;;;;;;;;;;;;;;34784:15;:46::i;:::-;34687:155;34645:204::o;13580:210::-;13660:4;13677:83;13686:12;:10;:12::i;:::-;13700:7;13709:50;13748:10;13709:11;:25;13721:12;:10;:12::i;:::-;13709:25;;;;;;;;;;;;;;;:34;13735:7;13709:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;13677:8;:83::i;:::-;13778:4;13771:11;;13580:210;;;;:::o;30410:97::-;30464:42;30410:97;:::o;30826:25::-;;;;:::o;31948:604::-;28573:11;;;;;;;;;;;28565:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28712:5;28698:11;;:19;;;;;;;;;;;;;;;;;;32009:11;:9;:11::i;:::-;32031:14;:12;:14::i;:::-;32082:19;32104:49;32139:13;:11;:13::i;:::-;32104:30;32127:6;32104:18;;:22;;:30;;;;:::i;:::-;:34;;:49;;;;:::i;:::-;32082:71;;32164:25;32170:10;32182:6;32164:5;:25::i;:::-;32262:12;32277:29;32300:5;32277:18;32293:1;32277:11;:15;;:18;;;;:::i;:::-;:22;;:29;;;;:::i;:::-;32262:44;;32355:31;32374:11;32355:18;:31::i;:::-;32407:52;32425:10;32437:21;32453:4;32437:11;:15;;:21;;;;:::i;:::-;30173:42;32407:17;;;;:52;;;;;:::i;:::-;32470:30;30552:42;32495:4;30173:42;32470:17;;;;:30;;;;;:::i;:::-;32533:11;32511:18;;:33;;;;;;;;;;;28730:1;;28892:4;28878:11;;:18;;;;;;;;;;;;;;;;;;31948:604;:::o;30607:37::-;;;;:::o;11418:110::-;11475:7;11502:9;:18;11512:7;11502:18;;;;;;;;;;;;;;;;11495:25;;11418:110;;;:::o;34441:192::-;34510:8;30265:42;34484:20;;;:22;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;34484:22:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;34484:22:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;34484:22:0;;;;;;;;;;;;;;;;:34;34480:146;;30265:42;34536:15;;;:17;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;34536:17:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;34536:17:0;;;;34568:46;30173:42;34584:14;;;34607:4;34584:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;34584:29:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;34584:29:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;34584:29:0;;;;;;;;;;;;;;;;34568:15;:46::i;:::-;34480:146;34441:192::o;33093:142::-;33146:13;33180:47;33213:13;:11;:13::i;:::-;33180:28;33203:4;33180:18;;:22;;:28;;;;:::i;:::-;:32;;:47;;;;:::i;:::-;33172:55;;33093:142;:::o;30520:74::-;30552:42;30520:74;:::o;32564:517::-;32601:22;30360:42;32626:18;;;32645:10;32626:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;32626:30:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;32626:30:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;32626:30:0;;;;;;;;;;;;;;;;32601:55;;32667:68;32693:10;32713:4;32720:14;30360:42;32667:25;;;;:68;;;;;;:::i;:::-;32746:18;30173:42;32767:14;;;32790:4;32767:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;32767:29:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;32767:29:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;32767:29:0;;;;;;;;;;;;;;;;32746:50;;30464:42;32862:14;;;32877;32862:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;32862:30:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;32862:30:0;;;;32903:17;30173:42;32923:14;;;32946:4;32923:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;32923:29:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;32923:29:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;32923:29:0;;;;;;;;;;;;;;;;32903:49;;33042:31;33047:25;33061:10;33047:9;:13;;:25;;;;:::i;:::-;33042:4;:31::i;:::-;32564:517;;;:::o;25794:87::-;25833:13;25866:7;25859:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25794:87;:::o;30223:85::-;30265:42;30223:85;:::o;31182:710::-;31230:11;:9;:11::i;:::-;31252:14;:12;:14::i;:::-;31277:32;31312:18;;31277:53;;31376:56;31398:10;31418:4;31425:6;30173:42;31376:21;;;;:56;;;;;;:::i;:::-;31443:46;30173:42;31459:14;;;31482:4;31459:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;31459:29:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;31459:29:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;31459:29:0;;;;;;;;;;;;;;;;31443:15;:46::i;:::-;31506:31;31540:18;;31506:52;;31600:1;31583:13;:11;:13::i;:::-;:18;31579:306;;;31618:25;31624:10;31636:6;31618:5;:25::i;:::-;31579:306;;;31676:18;31697:132;31804:24;31697:88;31771:13;:11;:13::i;:::-;31698:53;31726:24;31698:23;:27;;:53;;;;:::i;:::-;31697:73;;:88;;;;:::i;:::-;:106;;:132;;;;:::i;:::-;31676:153;;31844:29;31850:10;31862;31844:5;:29::i;:::-;31579:306;;31182:710;;;:::o;14293:261::-;14378:4;14395:129;14404:12;:10;:12::i;:::-;14418:7;14427:96;14466:15;14427:96;;;;;;;;;;;;;;;;;:11;:25;14439:12;:10;:12::i;:::-;14427:25;;;;;;;;;;;;;;;:34;14453:7;14427:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;14395:8;:129::i;:::-;14542:4;14535:11;;14293:261;;;;:::o;11741:158::-;11810:4;11827:42;11837:12;:10;:12::i;:::-;11851:9;11862:6;11827:9;:42::i;:::-;11887:4;11880:11;;11741:158;;;;:::o;30321:82::-;30360:42;30321:82;:::o;30138:78::-;30173:42;30138:78;:::o;11962:134::-;12034:7;12061:11;:18;12073:5;12061:18;;;;;;;;;;;;;;;:27;12080:7;12061:27;;;;;;;;;;;;;;;;12054:34;;11962:134;;;;:::o;34885:939::-;30552:42;34951:19;;:10;:19;;;:38;;;;;34988:1;34974:11;:15;34951:38;34943:47;;;;;;35003:11;:9;:11::i;:::-;35025:14;:12;:14::i;:::-;35078:13;;35064:11;:27;35060:221;;;35113:6;35122:13;;35113:22;;35108:120;35141:11;35137:1;:15;35108:120;;;35190:22;;;;;:::i;:::-;;;;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;35190:22:0;35178:6;:9;35185:1;35178:9;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;35154:3;;;;;;;35108:120;;;;35258:11;35242:13;:27;;;;35060:221;35306:6;35315:1;35306:10;;35301:158;35322:10;;35318:1;:14;35301:158;;;35354:22;35379:6;:9;35386:1;35379:9;;;;;;;;;;;;;;;;;;;;;35354:34;;35403:5;:25;;;35429:5;:15;;;:17;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;35429:17:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;35429:17:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;35429:17:0;;;;;;;;;;;;;;;;35403:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;35403:44:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;35403:44:0;;;;35301:158;35334:3;;;;;;;35301:158;;;;35479:21;35503:35;35526:11;35503:18;;:22;;:35;;;;:::i;:::-;35479:59;;35564:6;35573:1;35564:10;;35559:120;35594:1;35580:11;:15;35576:1;:19;35559:120;;;35615:52;35641:6;:9;35648:1;35641:9;;;;;;;;;;;;;;;;;;;;;35653:13;30173:42;35615:17;;;;:52;;;;;:::i;:::-;35597:3;;;;;;;35559:120;;;;35699:82;35725:6;:23;35746:1;35732:11;:15;35725:23;;;;;;;;;;;;;;;;;;;;;30173:42;35751:14;;;35774:4;35751:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;35751:29:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;35751:29:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;35751:29:0;;;;;;;;;;;;;;;;30173:42;35699:17;;;;:82;;;;;:::i;:::-;35805:11;35792:10;:24;;;;34885:939;;:::o;965:98::-;1010:15;1045:10;1038:17;;965:98;:::o;17224:338::-;17335:1;17318:19;;:5;:19;;;;17310:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17416:1;17397:21;;:7;:21;;;;17389:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17500:6;17470:11;:18;17482:5;17470:18;;;;;;;;;;;;;;;:27;17489:7;17470:27;;;;;;;;;;;;;;;:36;;;;17538:7;17522:32;;17531:5;17522:32;;;17547:6;17522:32;;;;;;;;;;;;;;;;;;17224:338;;;:::o;15044:471::-;15160:1;15142:20;;:6;:20;;;;15134:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15244:1;15223:23;;:9;:23;;;;15215:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15319;15341:6;15319:71;;;;;;;;;;;;;;;;;:9;:17;15329:6;15319:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;15299:9;:17;15309:6;15299:17;;;;;;;;;;;;;;;:91;;;;15424:32;15449:6;15424:9;:20;15434:9;15424:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;15401:9;:20;15411:9;15401:20;;;;;;;;;;;;;;;:55;;;;15489:9;15472:35;;15481:6;15472:35;;;15500:6;15472:35;;;;;;;;;;;;;;;;;;15044:471;;;:::o;6025:192::-;6111:7;6144:1;6139;:6;;6147:12;6131:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;6131:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6171:9;6187:1;6183;:5;6171:17;;6208:1;6201:8;;;6025:192;;;;;:::o;33274:166::-;33335:58;33361:6;:22;33381:1;33368:10;;:14;33361:22;;;;;;;;;;;;;;;;;;;;;33386:6;30173:42;33335:17;;;;:58;;;;;:::i;:::-;33426:6;33404:18;;:28;;;;;;;;;;;33274:166;:::o;5096:181::-;5154:7;5174:9;5190:1;5186;:5;5174:17;;5215:1;5210;:6;;5202:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5268:1;5261:8;;;5096:181;;;;:::o;6468:471::-;6526:7;6776:1;6771;:6;6767:47;;;6801:1;6794:8;;;;6767:47;6826:9;6842:1;6838;:5;6826:17;;6871:1;6866;6862;:5;;;;;;:10;6854:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6930:1;6923:8;;;6468:471;;;;;:::o;7407:132::-;7465:7;7492:39;7496:1;7499;7492:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;7485:46;;7407:132;;;;:::o;16436:348::-;16531:1;16512:21;;:7;:21;;;;16504:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16605:68;16628:6;16605:68;;;;;;;;;;;;;;;;;:9;:18;16615:7;16605:18;;;;;;;;;;;;;;;;:22;;:68;;;;;:::i;:::-;16584:9;:18;16594:7;16584:18;;;;;;;;;;;;;;;:89;;;;16699:24;16716:6;16699:12;;:16;;:24;;;;:::i;:::-;16684:12;:39;;;;16765:1;16739:37;;16748:7;16739:37;;;16769:6;16739:37;;;;;;;;;;;;;;;;;;16436:348;;:::o;33452:954::-;33529:6;:22;33549:1;33536:10;;:14;33529:22;;;;;;;;;;;;;;;;;;;;;:32;;;:34;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;33529:34:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;33529:34:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;33529:34:0;;;;;;;;;;;;;;;;33520:6;:43;33516:844;;;33580:22;33605:6;33580:31;;33626:640;33649:1;33632:14;:18;33626:640;;;33671:22;33696:6;:22;33716:1;33703:10;;:14;33696:22;;;;;;;;;;;;;;;;;;;;;33671:47;;33776:5;:15;;;:17;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;33776:17:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;33776:17:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;33776:17:0;;;;;;;;;;;;;;;;33759:14;:34;:52;;;;;33810:1;33797:10;;:14;33759:52;33755:496;;;33901:22;33926:5;:15;;;:17;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;33926:17:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;33926:17:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;33926:17:0;;;;;;;;;;;;;;;;33901:42;;33984:14;33966:32;;;;34021:5;:25;;;34047:14;34021:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;34021:41:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;34021:41:0;;;;34099:1;34085:10;;:15;;;;;;;;;;;33755:496;;;;34149:5;:25;;;34175:14;34149:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;34149:41:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;34149:41:0;;;;34230:1;34213:18;;33755:496;33626:640;;;;33516:844;;;;34298:6;:22;34318:1;34305:10;;:14;34298:22;;;;;;;;;;;;;;;;;;;;;:42;;;34341:6;34298:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;34298:50:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;34298:50:0;;;;33516:844;34392:6;34370:18;;:28;;;;;;;;;;;33452:954;:::o;5552:136::-;5610:7;5637:43;5641:1;5644;5637:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;5630:50;;5552:136;;;;:::o;21720:176::-;21803:85;21822:5;21852;:14;;;:23;;;;21877:2;21881:5;21829:58;;;;;;;;;;;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;21829:58:0;;;;;;;38:4:-1;29:7;25:18;67:10;61:17;96:58;199:8;192:4;186;182:15;179:29;167:10;160:49;0:215;;;21829:58:0;21803:18;:85::i;:::-;21720:176;;;:::o;21904:204::-;22005:95;22024:5;22054;:18;;;:27;;;;22083:4;22089:2;22093:5;22031:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;22031:68:0;;;;;;;38:4:-1;29:7;25:18;67:10;61:17;96:58;199:8;192:4;186;182:15;179:29;167:10;160:49;0:215;;;22031:68:0;22005:18;:95::i;:::-;21904:204;;;;:::o;15796:308::-;15891:1;15872:21;;:7;:21;;;;15864:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15957:24;15974:6;15957:12;;:16;;:24;;;;:::i;:::-;15942:12;:39;;;;16013:30;16036:6;16013:9;:18;16023:7;16013:18;;;;;;;;;;;;;;;;:22;;:30;;;;:::i;:::-;15992:9;:18;16002:7;15992:18;;;;;;;;;;;;;;;:51;;;;16080:7;16059:37;;16076:1;16059:37;;;16089:6;16059:37;;;;;;;;;;;;;;;;;;15796:308;;:::o;8069:345::-;8155:7;8254:1;8250;:5;8257:12;8242:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;8242:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8281:9;8297:1;8293;:5;;;;;;8281:17;;8405:1;8398:8;;;8069:345;;;;;:::o;23759:1114::-;24363:27;24371:5;24363:25;;;:27::i;:::-;24355:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24500:12;24514:23;24549:5;24541:19;;24561:4;24541:25;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;182:3;176:10;171:3;164:23;98:2;93:3;89:12;82:19;;123:2;118:3;114:12;107:19;;148:2;143:3;139:12;132:19;;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;;;24541:25:0;;;;;;;;;;;;;;;;;;;;;;;;14:1:-1;21;16:31;;;;75:4;69:11;64:16;;144:4;140:9;133:4;115:16;111:27;107:43;104:1;100:51;94:4;87:65;169:16;166:1;159:27;225:16;222:1;215:4;212:1;208:12;193:49;7:242;;16:31;36:4;31:9;;7:242;;24499:67:0;;;;24585:7;24577:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24666:1;24646:10;:17;:21;24642:224;;;24788:10;24777:30;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;24777:30:0;;;;;;;;;;;;;;;;24769:85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24642:224;23759:1114;;;;:::o;18749:619::-;18809:4;19071:16;19098:19;19120:66;19098:88;;;;19289:7;19277:20;19265:32;;19329:11;19317:8;:23;;:42;;;;;19356:3;19344:15;;:8;:15;;19317:42;19309:51;;;;18749:619;;;:::o;29998:5829::-;;;;;;;;:::o
Swarm Source
bzzr://7925250b1aa0f84fbcc9fd6c5d52f204bacf5c9a34a5b088f736e1b06da6eaed
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.