Contract Overview
My Name Tag:
Not Available, login to update
[ Download CSV Export ]
Contract Source Code Verified (Exact Match)
Contract Name:
FireBotPromoter
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at polygonscan.com on 2022-12-01 */ // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @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 * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } // File: @openzeppelin/contracts/token/ERC20/extensions/draft-IERC20Permit.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. * * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't * need to send a transaction, and thus is not required to hold Ether at all. */ interface IERC20Permit { /** * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens, * given ``owner``'s signed approval. * * IMPORTANT: The same issues {IERC20-approve} has related to transaction * ordering also apply here. * * Emits an {Approval} event. * * Requirements: * * - `spender` cannot be the zero address. * - `deadline` must be a timestamp in the future. * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` * over the EIP712-formatted function arguments. * - the signature must use ``owner``'s current nonce (see {nonces}). * * For more information on the signature format, see the * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP * section]. */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; /** * @dev Returns the current nonce for `owner`. This value must be * included whenever a signature is generated for {permit}. * * Every successful call to {permit} increases ``owner``'s nonce by one. This * prevents a signature from being used multiple times. */ function nonces(address owner) external view returns (uint256); /** * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view returns (bytes32); } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev 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 `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, 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 `from` to `to` 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 from, address to, uint256 amount ) external returns (bool); } // File: @openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.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 IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; function safeTransfer( IERC20 token, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom( IERC20 token, address from, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove( IERC20 token, address spender, uint256 value ) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' 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) + value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance( IERC20 token, address spender, uint256 value ) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); uint256 newAllowance = oldAllowance - value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } } function safePermit( IERC20Permit token, address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) internal { uint256 nonceBefore = token.nonces(owner); token.permit(owner, spender, value, deadline, v, r, s); uint256 nonceAfter = token.nonces(owner); require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed"); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @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 meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: contracts/FireBotPromoter.sol pragma solidity ^0.8.17; interface ISushiRouter { function getAmountsOut(uint256 amountIn, address[] memory path) external view returns (uint256[] memory amounts); function swapExactTokensForTokens(uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline) external returns (uint256[] memory amounts); } interface IFIREFBX is IERC20 { function deposit(uint256 amountFBX) external returns (uint256 amountFireFBX); } contract FireBotPromoter is Ownable { using SafeERC20 for IERC20; IERC20 public constant FBX = IERC20(0xD125443F38A69d776177c2B9c041f462936F8218); IERC20 public constant WETH = IERC20(0x7ceB23fD6bC0adD59E62ac25578270cFf1b9f619); IFIREFBX public constant FIREFBX = IFIREFBX(0x960d43BE128585Ca45365CD74a7773B9d814dfBE); ISushiRouter public constant SUSHI_ROUTER = ISushiRouter(0x1b02dA8Cb0d097eB8D57A175b88c7D8b47997506); address[] PATH_WETH = [address(WETH), address(FBX)]; address public constant DAO_MULTISIG = 0x6EeC36B374377CDd03d94761d6C21EfCC7e6F377; struct UserInfo { uint256 lastRecorded; uint256 pendingRewardsForLocking; uint256 pendingRewardsForBringing; uint256 lockedFireFBX; uint256 broughtFireFBX; uint256 lockingRewardsClaimed; uint256 bringingRewardsClaimed; address promoter; address claimer; } mapping(address => UserInfo) public userInfos; uint256 public dailyRewards = 1 * 1e18; uint256 public promoterShare = 50; uint256 public totalRewardsPaid = 0; event DailyRewardsChanged(uint256 newRewards); event ContractStopped(); event Lock(address indexed account, address indexed promoter, uint256 amount); event Unlock(address indexed account, uint256 amount); function setDailyRewards(uint256 newDailyRewards) public onlyOwner { dailyRewards = newDailyRewards; emit DailyRewardsChanged(newDailyRewards); } function stopContract() public onlyOwner { FBX.safeTransfer(DAO_MULTISIG, FBX.balanceOf(address(this))); emit ContractStopped(); } function claimableRewards(address account) public view returns (uint256 rewardsForLocking, uint256 rewardsForBringing) { if (FIREFBX.balanceOf(address(this)) == 0 || FBX.balanceOf(address(this)) == 0) { return (0, 0); } uint256 elapsedTime = block.timestamp - userInfos[account].lastRecorded; uint256 maxPeriod = 15 * 24 * 3600; if (elapsedTime > maxPeriod) { elapsedTime = maxPeriod; } rewardsForLocking = userInfos[account].pendingRewardsForLocking + (dailyRewards * elapsedTime / 24 / 3600) * ((100 - promoterShare) * userInfos[account].lockedFireFBX) / (100 * FIREFBX.balanceOf(address(this))); rewardsForBringing = userInfos[account].pendingRewardsForBringing + (dailyRewards * elapsedTime / 24 / 3600) * (promoterShare * userInfos[account].broughtFireFBX) / (100 * FIREFBX.balanceOf(address(this))); } function recordRewards(address account) public returns (uint256 rewardsForLocking, uint256 rewardsForBringing) { (rewardsForLocking, rewardsForBringing) = claimableRewards(account); userInfos[account].lastRecorded = block.timestamp; userInfos[account].pendingRewardsForLocking = rewardsForLocking; userInfos[account].pendingRewardsForBringing = rewardsForBringing; } function approveClaimOnBehalf(address claimer) public { userInfos[msg.sender].claimer = claimer; } function claimRewards(address account) public returns (uint256 rewardsForLocking, uint256 rewardsForBringing) { require(account == msg.sender || userInfos[account].claimer == msg.sender, "You are not approved to claim."); (rewardsForLocking, rewardsForBringing) = claimableRewards(account); uint256 rewards = rewardsForLocking + rewardsForBringing; require(rewards > 0, "No rewards to claim."); uint256 contractBalance = FBX.balanceOf(address(this)); require(contractBalance >= rewards, "Not enough FBX in the contract."); userInfos[account].lastRecorded = block.timestamp; userInfos[account].pendingRewardsForLocking = 0; userInfos[account].pendingRewardsForBringing = 0; userInfos[account].lockingRewardsClaimed += rewardsForLocking; userInfos[account].bringingRewardsClaimed += rewardsForBringing; totalRewardsPaid += rewards; FBX.transfer(account, rewards); } function unlock(uint256 toWithdraw) public { require(toWithdraw > 0, "Amount to withdraw should be greater than 0."); require(userInfos[msg.sender].lockedFireFBX > 0, "No locked fireFBX"); claimRewards(msg.sender); recordRewards(userInfos[msg.sender].promoter); if (userInfos[msg.sender].lockedFireFBX < toWithdraw) { toWithdraw = userInfos[msg.sender].lockedFireFBX; } userInfos[msg.sender].lockedFireFBX -= toWithdraw; userInfos[userInfos[msg.sender].promoter].broughtFireFBX -= toWithdraw; FIREFBX.transfer(msg.sender, toWithdraw); emit Unlock(msg.sender, toWithdraw); } function buyAndLock(uint256 amountIn, uint256 slippage, address promoter) public returns (uint256 amountFireFBX) { require(FBX.balanceOf(address(this)) > 0, "Contract currently stopped."); require(promoter != msg.sender, "No self-referrals."); require(amountIn > 0, "Amount should be greater than 0."); if (userInfos[msg.sender].promoter == 0x0000000000000000000000000000000000000000) { userInfos[msg.sender].promoter = promoter; } recordRewards(msg.sender); recordRewards(userInfos[msg.sender].promoter); uint256 amountOutMin = (1000 - slippage) * SUSHI_ROUTER.getAmountsOut(amountIn, PATH_WETH)[1] / 1000; WETH.transferFrom(msg.sender, address(this), amountIn); WETH.approve(address(SUSHI_ROUTER), amountIn); uint256 amountOut = SUSHI_ROUTER.swapExactTokensForTokens(amountIn, amountOutMin, PATH_WETH, address(this), block.timestamp + 60)[1]; FBX.approve(address(FIREFBX), amountOut); amountFireFBX = FIREFBX.deposit(amountOut); userInfos[msg.sender].lockedFireFBX += amountFireFBX; userInfos[userInfos[msg.sender].promoter].broughtFireFBX += amountFireFBX; emit Lock(msg.sender, userInfos[msg.sender].promoter, amountFireFBX); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"anonymous":false,"inputs":[],"name":"ContractStopped","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newRewards","type":"uint256"}],"name":"DailyRewardsChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"promoter","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Lock","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Unlock","type":"event"},{"inputs":[],"name":"DAO_MULTISIG","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FBX","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FIREFBX","outputs":[{"internalType":"contract IFIREFBX","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SUSHI_ROUTER","outputs":[{"internalType":"contract ISushiRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WETH","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"claimer","type":"address"}],"name":"approveClaimOnBehalf","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountIn","type":"uint256"},{"internalType":"uint256","name":"slippage","type":"uint256"},{"internalType":"address","name":"promoter","type":"address"}],"name":"buyAndLock","outputs":[{"internalType":"uint256","name":"amountFireFBX","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"claimRewards","outputs":[{"internalType":"uint256","name":"rewardsForLocking","type":"uint256"},{"internalType":"uint256","name":"rewardsForBringing","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"claimableRewards","outputs":[{"internalType":"uint256","name":"rewardsForLocking","type":"uint256"},{"internalType":"uint256","name":"rewardsForBringing","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dailyRewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"promoterShare","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"recordRewards","outputs":[{"internalType":"uint256","name":"rewardsForLocking","type":"uint256"},{"internalType":"uint256","name":"rewardsForBringing","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newDailyRewards","type":"uint256"}],"name":"setDailyRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stopContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalRewardsPaid","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"toWithdraw","type":"uint256"}],"name":"unlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"userInfos","outputs":[{"internalType":"uint256","name":"lastRecorded","type":"uint256"},{"internalType":"uint256","name":"pendingRewardsForLocking","type":"uint256"},{"internalType":"uint256","name":"pendingRewardsForBringing","type":"uint256"},{"internalType":"uint256","name":"lockedFireFBX","type":"uint256"},{"internalType":"uint256","name":"broughtFireFBX","type":"uint256"},{"internalType":"uint256","name":"lockingRewardsClaimed","type":"uint256"},{"internalType":"uint256","name":"bringingRewardsClaimed","type":"uint256"},{"internalType":"address","name":"promoter","type":"address"},{"internalType":"address","name":"claimer","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040526040518060400160405280737ceb23fd6bc0add59e62ac25578270cff1b9f61973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200173d125443f38a69d776177c2b9c041f462936f821873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152506001906002620000ab929190620001c2565b50670de0b6b3a764000060035560326004556000600555348015620000cf57600080fd5b50620000f0620000e4620000f660201b60201c565b620000fe60201b60201c565b62000270565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280548282559060005260206000209081019282156200023e579160200282015b828111156200023d5782518260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555091602001919060010190620001e3565b5b5090506200024d919062000251565b5090565b5b808211156200026c57600081600090555060010162000252565b5090565b61331780620002806000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c806374958e35116100ad578063beba222b11610071578063beba222b14610304578063c8bfef7714610322578063dc01f60d14610340578063ef5cfb8c14610371578063f2fde38b146103a25761012c565b806374958e3514610249578063803ce1ed146102675780638da5cb5b14610297578063aa98d66c146102b5578063ad5c4648146102e65761012c565b8063447989dc116100f4578063447989dc146101cb5780634adef718146101e95780636198e339146102055780636837a83a14610221578063715018a61461023f5761012c565b80630750fa45146101315780630c24f4fa1461014f57806312253a6c1461016d5780634180e5b51461017757806343b0215f14610193575b600080fd5b6101396103be565b60405161014691906122ff565b60405180910390f35b6101576103d6565b6040516101649190612379565b60405180910390f35b6101756103ee565b005b610191600480360381019061018c91906123d4565b610504565b005b6101ad60048036038101906101a891906123d4565b610588565b6040516101c29998979695949392919061241a565b60405180910390f35b6101d3610616565b6040516101e091906124c8565b60405180910390f35b61020360048036038101906101fe919061250f565b61062e565b005b61021f600480360381019061021a919061250f565b610677565b005b610229610a3f565b604051610236919061253c565b60405180910390f35b610247610a45565b005b610251610a59565b60405161025e919061253c565b60405180910390f35b610281600480360381019061027c9190612557565b610a5f565b60405161028e919061253c565b60405180910390f35b61029f61136d565b6040516102ac91906122ff565b60405180910390f35b6102cf60048036038101906102ca91906123d4565b611396565b6040516102dd9291906125aa565b60405180910390f35b6102ee611484565b6040516102fb91906125f4565b60405180910390f35b61030c61149c565b60405161031991906125f4565b60405180910390f35b61032a6114b4565b604051610337919061253c565b60405180910390f35b61035a600480360381019061035591906123d4565b6114ba565b6040516103689291906125aa565b60405180910390f35b61038b600480360381019061038691906123d4565b611959565b6040516103999291906125aa565b60405180910390f35b6103bc60048036038101906103b791906123d4565b611dd7565b005b736eec36b374377cdd03d94761d6c21efcc7e6f37781565b731b02da8cb0d097eb8d57a175b88c7d8b4799750681565b6103f6611e5a565b6104d6736eec36b374377cdd03d94761d6c21efcc7e6f37773d125443f38a69d776177c2b9c041f462936f821873ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161045b91906122ff565b602060405180830381865afa158015610478573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061049c9190612624565b73d125443f38a69d776177c2b9c041f462936f821873ffffffffffffffffffffffffffffffffffffffff16611ed89092919063ffffffff16565b7f250440b3a391643a31b199e7f53e8907c6d3d1c36009a05c104797ce3cac1c8160405160405180910390a1565b80600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060080160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60026020528060005260406000206000915090508060000154908060010154908060020154908060030154908060040154908060050154908060060154908060070160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060080160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905089565b73960d43be128585ca45365cd74a7773b9d814dfbe81565b610636611e5a565b806003819055507f2e5d788daa621e1c14000069c9b8fa5311f1eb386b10e6281e0e3e0181dd75c18160405161066c919061253c565b60405180910390a150565b600081116106ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106b1906126d4565b60405180910390fd5b6000600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600301541161073f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161073690612740565b60405180910390fd5b61074833611959565b50506107b5600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060070160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611396565b505080600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060030154101561084757600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206003015490505b80600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206003016000828254610899919061278f565b925050819055508060026000600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060070160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206004016000828254610954919061278f565b9250508190555073960d43be128585ca45365cd74a7773b9d814dfbe73ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b81526004016109aa9291906127c3565b6020604051808303816000875af11580156109c9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109ed9190612824565b503373ffffffffffffffffffffffffffffffffffffffff167f6381d9813cabeb57471b5a7e05078e64845ccdb563146a6911d536f24ce960f182604051610a34919061253c565b60405180910390a250565b60045481565b610a4d611e5a565b610a576000611f5e565b565b60055481565b60008073d125443f38a69d776177c2b9c041f462936f821873ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610aaf91906122ff565b602060405180830381865afa158015610acc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610af09190612624565b11610b30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b279061289d565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9590612909565b60405180910390fd5b60008411610be1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd890612975565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060070160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610cf95781600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060070160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b610d0233611396565b5050610d6f600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060070160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611396565b505060006103e8731b02da8cb0d097eb8d57a175b88c7d8b4799750673ffffffffffffffffffffffffffffffffffffffff1663d06ca61f8760016040518363ffffffff1660e01b8152600401610dc6929190612ab9565b600060405180830381865afa158015610de3573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190610e0c9190612c42565b600181518110610e1f57610e1e612c8b565b5b6020026020010151856103e8610e35919061278f565b610e3f9190612cba565b610e499190612d2b565b9050737ceb23fd6bc0add59e62ac25578270cff1b9f61973ffffffffffffffffffffffffffffffffffffffff166323b872dd3330886040518463ffffffff1660e01b8152600401610e9c93929190612d5c565b6020604051808303816000875af1158015610ebb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610edf9190612824565b50737ceb23fd6bc0add59e62ac25578270cff1b9f61973ffffffffffffffffffffffffffffffffffffffff1663095ea7b3731b02da8cb0d097eb8d57a175b88c7d8b47997506876040518363ffffffff1660e01b8152600401610f439291906127c3565b6020604051808303816000875af1158015610f62573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f869190612824565b506000731b02da8cb0d097eb8d57a175b88c7d8b4799750673ffffffffffffffffffffffffffffffffffffffff166338ed17398784600130603c42610fcb9190612d93565b6040518663ffffffff1660e01b8152600401610feb959493929190612dc7565b6000604051808303816000875af115801561100a573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f820116820180604052508101906110339190612c42565b60018151811061104657611045612c8b565b5b6020026020010151905073d125443f38a69d776177c2b9c041f462936f821873ffffffffffffffffffffffffffffffffffffffff1663095ea7b373960d43be128585ca45365cd74a7773b9d814dfbe836040518363ffffffff1660e01b81526004016110b39291906127c3565b6020604051808303816000875af11580156110d2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110f69190612824565b5073960d43be128585ca45365cd74a7773b9d814dfbe73ffffffffffffffffffffffffffffffffffffffff1663b6b55f25826040518263ffffffff1660e01b8152600401611144919061253c565b6020604051808303816000875af1158015611163573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111879190612624565b925082600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060030160008282546111db9190612d93565b925050819055508260026000600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060070160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060040160008282546112969190612d93565b92505081905550600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060070160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fec36c0364d931187a76cf66d7eee08fad0ec2e8b7458a8d8b26b36769d4d13f38560405161135c919061253c565b60405180910390a350509392505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000806113a2836114ba565b809250819350505042600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000018190555081600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001018190555080600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060020181905550915091565b737ceb23fd6bc0add59e62ac25578270cff1b9f61981565b73d125443f38a69d776177c2b9c041f462936f821881565b60035481565b600080600073960d43be128585ca45365cd74a7773b9d814dfbe73ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161150c91906122ff565b602060405180830381865afa158015611529573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061154d9190612624565b14806115e65750600073d125443f38a69d776177c2b9c041f462936f821873ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016115a391906122ff565b602060405180830381865afa1580156115c0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115e49190612624565b145b156115f75760008091509150611954565b6000600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000015442611647919061278f565b905060006213c68090508082111561165d578091505b73960d43be128585ca45365cd74a7773b9d814dfbe73ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016116aa91906122ff565b602060405180830381865afa1580156116c7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116eb9190612624565b60646116f79190612cba565b600260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600301546004546064611749919061278f565b6117539190612cba565b610e106018856003546117669190612cba565b6117709190612d2b565b61177a9190612d2b565b6117849190612cba565b61178e9190612d2b565b600260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101546117db9190612d93565b935073960d43be128585ca45365cd74a7773b9d814dfbe73ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161182a91906122ff565b602060405180830381865afa158015611847573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061186b9190612624565b60646118779190612cba565b600260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600401546004546118c79190612cba565b610e106018856003546118da9190612cba565b6118e49190612d2b565b6118ee9190612d2b565b6118f89190612cba565b6119029190612d2b565b600260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206002015461194f9190612d93565b925050505b915091565b6000803373ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480611a2357503373ffffffffffffffffffffffffffffffffffffffff16600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060080160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611a62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5990612e6d565b60405180910390fd5b611a6b836114ba565b809250819350505060008183611a819190612d93565b905060008111611ac6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abd90612ed9565b60405180910390fd5b600073d125443f38a69d776177c2b9c041f462936f821873ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401611b1591906122ff565b602060405180830381865afa158015611b32573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b569190612624565b905081811015611b9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9290612f45565b60405180910390fd5b42600260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001819055506000600260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101819055506000600260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206002018190555083600260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206005016000828254611cc49190612d93565b9250508190555082600260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206006016000828254611d1d9190612d93565b925050819055508160056000828254611d369190612d93565b9250508190555073d125443f38a69d776177c2b9c041f462936f821873ffffffffffffffffffffffffffffffffffffffff1663a9059cbb86846040518363ffffffff1660e01b8152600401611d8c9291906127c3565b6020604051808303816000875af1158015611dab573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611dcf9190612824565b505050915091565b611ddf611e5a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611e4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4590612fd7565b60405180910390fd5b611e5781611f5e565b50565b611e62612022565b73ffffffffffffffffffffffffffffffffffffffff16611e8061136d565b73ffffffffffffffffffffffffffffffffffffffff1614611ed6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ecd90613043565b60405180910390fd5b565b611f598363a9059cbb60e01b8484604051602401611ef79291906127c3565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff838183161783525050505061202a565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b600061208c826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166120f19092919063ffffffff16565b90506000815111156120ec57808060200190518101906120ac9190612824565b6120eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e2906130d5565b60405180910390fd5b5b505050565b60606121008484600085612109565b90509392505050565b60608247101561214e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214590613167565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff16858760405161217791906131f8565b60006040518083038185875af1925050503d80600081146121b4576040519150601f19603f3d011682016040523d82523d6000602084013e6121b9565b606091505b50915091506121ca878383876121d6565b92505050949350505050565b60608315612238576000835103612230576121f08561224b565b61222f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122269061325b565b60405180910390fd5b5b829050612243565b612242838361226e565b5b949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000825111156122815781518083602001fd5b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b591906132bf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006122e9826122be565b9050919050565b6122f9816122de565b82525050565b600060208201905061231460008301846122f0565b92915050565b6000819050919050565b600061233f61233a612335846122be565b61231a565b6122be565b9050919050565b600061235182612324565b9050919050565b600061236382612346565b9050919050565b61237381612358565b82525050565b600060208201905061238e600083018461236a565b92915050565b6000604051905090565b600080fd5b600080fd5b6123b1816122de565b81146123bc57600080fd5b50565b6000813590506123ce816123a8565b92915050565b6000602082840312156123ea576123e961239e565b5b60006123f8848285016123bf565b91505092915050565b6000819050919050565b61241481612401565b82525050565b600061012082019050612430600083018c61240b565b61243d602083018b61240b565b61244a604083018a61240b565b612457606083018961240b565b612464608083018861240b565b61247160a083018761240b565b61247e60c083018661240b565b61248b60e08301856122f0565b6124996101008301846122f0565b9a9950505050505050505050565b60006124b282612346565b9050919050565b6124c2816124a7565b82525050565b60006020820190506124dd60008301846124b9565b92915050565b6124ec81612401565b81146124f757600080fd5b50565b600081359050612509816124e3565b92915050565b6000602082840312156125255761252461239e565b5b6000612533848285016124fa565b91505092915050565b6000602082019050612551600083018461240b565b92915050565b6000806000606084860312156125705761256f61239e565b5b600061257e868287016124fa565b935050602061258f868287016124fa565b92505060406125a0868287016123bf565b9150509250925092565b60006040820190506125bf600083018561240b565b6125cc602083018461240b565b9392505050565b60006125de82612346565b9050919050565b6125ee816125d3565b82525050565b600060208201905061260960008301846125e5565b92915050565b60008151905061261e816124e3565b92915050565b60006020828403121561263a5761263961239e565b5b60006126488482850161260f565b91505092915050565b600082825260208201905092915050565b7f416d6f756e7420746f2077697468647261772073686f756c642062652067726560008201527f61746572207468616e20302e0000000000000000000000000000000000000000602082015250565b60006126be602c83612651565b91506126c982612662565b604082019050919050565b600060208201905081810360008301526126ed816126b1565b9050919050565b7f4e6f206c6f636b65642066697265464258000000000000000000000000000000600082015250565b600061272a601183612651565b9150612735826126f4565b602082019050919050565b600060208201905081810360008301526127598161271d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061279a82612401565b91506127a583612401565b92508282039050818111156127bd576127bc612760565b5b92915050565b60006040820190506127d860008301856122f0565b6127e5602083018461240b565b9392505050565b60008115159050919050565b612801816127ec565b811461280c57600080fd5b50565b60008151905061281e816127f8565b92915050565b60006020828403121561283a5761283961239e565b5b60006128488482850161280f565b91505092915050565b7f436f6e74726163742063757272656e746c792073746f707065642e0000000000600082015250565b6000612887601b83612651565b915061289282612851565b602082019050919050565b600060208201905081810360008301526128b68161287a565b9050919050565b7f4e6f2073656c662d726566657272616c732e0000000000000000000000000000600082015250565b60006128f3601283612651565b91506128fe826128bd565b602082019050919050565b60006020820190508181036000830152612922816128e6565b9050919050565b7f416d6f756e742073686f756c642062652067726561746572207468616e20302e600082015250565b600061295f602083612651565b915061296a82612929565b602082019050919050565b6000602082019050818103600083015261298e81612952565b9050919050565b600081549050919050565b600082825260208201905092915050565b60008190508160005260206000209050919050565b6129cf816122de565b82525050565b60006129e183836129c6565b60208301905092915050565b60008160001c9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612a2d612a28836129ed565b6129fa565b9050919050565b6000612a408254612a1a565b9050919050565b6000600182019050919050565b6000612a5f82612995565b612a6981856129a0565b9350612a74836129b1565b8060005b83811015612aac57612a8982612a34565b612a9388826129d5565b9750612a9e83612a47565b925050600181019050612a78565b5085935050505092915050565b6000604082019050612ace600083018561240b565b8181036020830152612ae08184612a54565b90509392505050565b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612b3782612aee565b810181811067ffffffffffffffff82111715612b5657612b55612aff565b5b80604052505050565b6000612b69612394565b9050612b758282612b2e565b919050565b600067ffffffffffffffff821115612b9557612b94612aff565b5b602082029050602081019050919050565b600080fd5b6000612bbe612bb984612b7a565b612b5f565b90508083825260208201905060208402830185811115612be157612be0612ba6565b5b835b81811015612c0a5780612bf6888261260f565b845260208401935050602081019050612be3565b5050509392505050565b600082601f830112612c2957612c28612ae9565b5b8151612c39848260208601612bab565b91505092915050565b600060208284031215612c5857612c5761239e565b5b600082015167ffffffffffffffff811115612c7657612c756123a3565b5b612c8284828501612c14565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000612cc582612401565b9150612cd083612401565b9250828202612cde81612401565b91508282048414831517612cf557612cf4612760565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612d3682612401565b9150612d4183612401565b925082612d5157612d50612cfc565b5b828204905092915050565b6000606082019050612d7160008301866122f0565b612d7e60208301856122f0565b612d8b604083018461240b565b949350505050565b6000612d9e82612401565b9150612da983612401565b9250828201905080821115612dc157612dc0612760565b5b92915050565b600060a082019050612ddc600083018861240b565b612de9602083018761240b565b8181036040830152612dfb8186612a54565b9050612e0a60608301856122f0565b612e17608083018461240b565b9695505050505050565b7f596f7520617265206e6f7420617070726f76656420746f20636c61696d2e0000600082015250565b6000612e57601e83612651565b9150612e6282612e21565b602082019050919050565b60006020820190508181036000830152612e8681612e4a565b9050919050565b7f4e6f207265776172647320746f20636c61696d2e000000000000000000000000600082015250565b6000612ec3601483612651565b9150612ece82612e8d565b602082019050919050565b60006020820190508181036000830152612ef281612eb6565b9050919050565b7f4e6f7420656e6f7567682046425820696e2074686520636f6e74726163742e00600082015250565b6000612f2f601f83612651565b9150612f3a82612ef9565b602082019050919050565b60006020820190508181036000830152612f5e81612f22565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612fc1602683612651565b9150612fcc82612f65565b604082019050919050565b60006020820190508181036000830152612ff081612fb4565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061302d602083612651565b915061303882612ff7565b602082019050919050565b6000602082019050818103600083015261305c81613020565b9050919050565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b60006130bf602a83612651565b91506130ca82613063565b604082019050919050565b600060208201905081810360008301526130ee816130b2565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b6000613151602683612651565b915061315c826130f5565b604082019050919050565b6000602082019050818103600083015261318081613144565b9050919050565b600081519050919050565b600081905092915050565b60005b838110156131bb5780820151818401526020810190506131a0565b60008484015250505050565b60006131d282613187565b6131dc8185613192565b93506131ec81856020860161319d565b80840191505092915050565b600061320482846131c7565b915081905092915050565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b6000613245601d83612651565b91506132508261320f565b602082019050919050565b6000602082019050818103600083015261327481613238565b9050919050565b600081519050919050565b60006132918261327b565b61329b8185612651565b93506132ab81856020860161319d565b6132b481612aee565b840191505092915050565b600060208201905081810360008301526132d98184613286565b90509291505056fea264697066735822122052b70944bc5119c2e5aa49bc2e49dc5c055e563c5851bee81a8f1ddf6ca7e21c64736f6c63430008110033
Deployed ByteCode Sourcemap
23294:6163:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23806:81;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23639:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24834:153;;;:::i;:::-;;26328:112;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24243:45;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;23545:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24658:168;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27459:681;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24346:33;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21952:103;;;:::i;:::-;;24386:35;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28148:1306;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21304:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25913:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;23458:80;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23372:79;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24301:38;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24995:910;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;26452:999;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;22210:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23806:81;23845:42;23806:81;:::o;23639:100::-;23696:42;23639:100;:::o;24834:153::-;21190:13;:11;:13::i;:::-;24886:60:::1;23845:42;23408;24917:13;;;24939:4;24917:28;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;23408:42;24886:16;;;;:60;;;;;:::i;:::-;24962:17;;;;;;;;;;24834:153::o:0;26328:112::-;26425:7;26393:9;:21;26403:10;26393:21;;;;;;;;;;;;;;;:29;;;:39;;;;;;;;;;;;;;;;;;26328:112;:::o;24243:45::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;23545:87::-;23589:42;23545:87;:::o;24658:168::-;21190:13;:11;:13::i;:::-;24751:15:::1;24736:12;:30;;;;24782:36;24802:15;24782:36;;;;;;:::i;:::-;;;;;;;;24658:168:::0;:::o;27459:681::-;27534:1;27521:10;:14;27513:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;27641:1;27603:9;:21;27613:10;27603:21;;;;;;;;;;;;;;;:35;;;:39;27595:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;27675:24;27688:10;27675:12;:24::i;:::-;;;27710:45;27724:9;:21;27734:10;27724:21;;;;;;;;;;;;;;;:30;;;;;;;;;;;;27710:13;:45::i;:::-;;;27808:10;27770:9;:21;27780:10;27770:21;;;;;;;;;;;;;;;:35;;;:48;27766:129;;;27848:9;:21;27858:10;27848:21;;;;;;;;;;;;;;;:35;;;27835:48;;27766:129;27944:10;27905:9;:21;27915:10;27905:21;;;;;;;;;;;;;;;:35;;;:49;;;;;;;:::i;:::-;;;;;;;;28025:10;27965:9;:41;27975:9;:21;27985:10;27975:21;;;;;;;;;;;;;;;:30;;;;;;;;;;;;27965:41;;;;;;;;;;;;;;;:56;;;:70;;;;;;;:::i;:::-;;;;;;;;23589:42;28046:16;;;28063:10;28075;28046:40;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;28109:10;28102:30;;;28121:10;28102:30;;;;;;:::i;:::-;;;;;;;;27459:681;:::o;24346:33::-;;;;:::o;21952:103::-;21190:13;:11;:13::i;:::-;22017:30:::1;22044:1;22017:18;:30::i;:::-;21952:103::o:0;24386:35::-;;;;:::o;28148:1306::-;28238:21;28311:1;23408:42;28280:13;;;28302:4;28280:28;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:32;28272:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;28375:10;28363:22;;:8;:22;;;28355:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;28438:1;28427:8;:12;28419:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;28527:42;28493:76;;:9;:21;28503:10;28493:21;;;;;;;;;;;;;;;:30;;;;;;;;;;;;:76;;;28489:150;;28619:8;28586:9;:21;28596:10;28586:21;;;;;;;;;;;;;;;:30;;;:41;;;;;;;;;;;;;;;;;;28489:150;28649:25;28663:10;28649:13;:25::i;:::-;;;28685:45;28699:9;:21;28709:10;28699:21;;;;;;;;;;;;;;;:30;;;;;;;;;;;;28685:13;:45::i;:::-;;;28743:20;28839:4;23696:42;28786:26;;;28813:8;28823:9;28786:47;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;28834:1;28786:50;;;;;;;;:::i;:::-;;;;;;;;28774:8;28767:4;:15;;;;:::i;:::-;28766:70;;;;:::i;:::-;:77;;;;:::i;:::-;28743:100;;23495:42;28854:17;;;28872:10;28892:4;28899:8;28854:54;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;23495:42;28919:12;;;23696:42;28955:8;28919:45;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;28975:17;23696:42;28995:37;;;29033:8;29043:12;29057:9;29076:4;29101:2;29083:15;:20;;;;:::i;:::-;28995:109;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;29105:1;28995:112;;;;;;;;:::i;:::-;;;;;;;;28975:132;;23408:42;29128:11;;;23589:42;29158:9;29128:40;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;23589:42;29195:15;;;29211:9;29195:26;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;29179:42;;29273:13;29234:9;:21;29244:10;29234:21;;;;;;;;;;;;;;;:35;;;:52;;;;;;;:::i;:::-;;;;;;;;29357:13;29297:9;:41;29307:9;:21;29317:10;29307:21;;;;;;;;;;;;;;;:30;;;;;;;;;;;;29297:41;;;;;;;;;;;;;;;:56;;;:73;;;;;;;:::i;:::-;;;;;;;;29403:9;:21;29413:10;29403:21;;;;;;;;;;;;;;;:30;;;;;;;;;;;;29386:63;;29391:10;29386:63;;;29435:13;29386:63;;;;;;:::i;:::-;;;;;;;;28261:1193;;28148:1306;;;;;:::o;21304:87::-;21350:7;21377:6;;;;;;;;;;;21370:13;;21304:87;:::o;25913:407::-;25969:25;25996:26;26077:25;26094:7;26077:16;:25::i;:::-;26035:67;;;;;;;;26147:15;26113:9;:18;26123:7;26113:18;;;;;;;;;;;;;;;:31;;:49;;;;26219:17;26173:9;:18;26183:7;26173:18;;;;;;;;;;;;;;;:43;;:63;;;;26294:18;26247:9;:18;26257:7;26247:18;;;;;;;;;;;;;;;:44;;:65;;;;25913:407;;;:::o;23458:80::-;23495:42;23458:80;:::o;23372:79::-;23408:42;23372:79;:::o;24301:38::-;;;;:::o;24995:910::-;25059:25;25086:26;25165:1;23589:42;25129:17;;;25155:4;25129:32;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:37;:74;;;;25202:1;23408:42;25170:13;;;25192:4;25170:28;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:33;25129:74;25125:120;;;25228:1;25231;25220:13;;;;;;25125:120;25255:19;25295:9;:18;25305:7;25295:18;;;;;;;;;;;;;;;:31;;;25277:15;:49;;;;:::i;:::-;25255:71;;25337:17;25357:14;25337:34;;25400:9;25386:11;:23;25382:79;;;25440:9;25426:23;;25382:79;23589:42;25648:17;;;25674:4;25648:32;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;25642:3;:38;;;;:::i;:::-;25605:9;:18;25615:7;25605:18;;;;;;;;;;;;;;;:32;;;25588:13;;25582:3;:19;;;;:::i;:::-;25581:56;;;;:::i;:::-;25572:4;25567:2;25553:11;25538:12;;:26;;;;:::i;:::-;:31;;;;:::i;:::-;:38;;;;:::i;:::-;25537:101;;;;:::i;:::-;:144;;;;:::i;:::-;25491:9;:18;25501:7;25491:18;;;;;;;;;;;;;;;:43;;;:190;;;;:::i;:::-;25471:210;;23589:42;25864:17;;;25890:4;25864:32;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;25858:3;:38;;;;:::i;:::-;25820:9;:18;25830:7;25820:18;;;;;;;;;;;;;;;:33;;;25804:13;;:49;;;;:::i;:::-;25795:4;25790:2;25776:11;25761:12;;:26;;;;:::i;:::-;:31;;;;:::i;:::-;:38;;;;:::i;:::-;25760:94;;;;:::i;:::-;:137;;;;:::i;:::-;25713:9;:18;25723:7;25713:18;;;;;;;;;;;;;;;:44;;;:184;;;;:::i;:::-;25692:205;;25114:791;;24995:910;;;;:::o;26452:999::-;26507:25;26534:26;26592:10;26581:21;;:7;:21;;;:65;;;;26636:10;26606:40;;:9;:18;26616:7;26606:18;;;;;;;;;;;;;;;:26;;;;;;;;;;;;:40;;;26581:65;26573:108;;;;;;;;;;;;:::i;:::-;;;;;;;;;26734:25;26751:7;26734:16;:25::i;:::-;26692:67;;;;;;;;26770:15;26808:18;26788:17;:38;;;;:::i;:::-;26770:56;;26855:1;26845:7;:11;26837:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;26894:23;23408:42;26920:13;;;26942:4;26920:28;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;26894:54;;26986:7;26967:15;:26;;26959:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;27076:15;27042:9;:18;27052:7;27042:18;;;;;;;;;;;;;;;:31;;:49;;;;27148:1;27102:9;:18;27112:7;27102:18;;;;;;;;;;;;;;;:43;;:47;;;;27207:1;27160:9;:18;27170:7;27160:18;;;;;;;;;;;;;;;:44;;:48;;;;27273:17;27229:9;:18;27239:7;27229:18;;;;;;;;;;;;;;;:40;;;:61;;;;;;;:::i;:::-;;;;;;;;27346:18;27301:9;:18;27311:7;27301:18;;;;;;;;;;;;;;;:41;;;:63;;;;;;;:::i;:::-;;;;;;;;27395:7;27375:16;;:27;;;;;;;:::i;:::-;;;;;;;;23408:42;27413:12;;;27426:7;27435;27413:30;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;26562:889;;26452:999;;;:::o;22210:201::-;21190:13;:11;:13::i;:::-;22319:1:::1;22299:22;;:8;:22;;::::0;22291:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;22375:28;22394:8;22375:18;:28::i;:::-;22210:201:::0;:::o;21469:132::-;21544:12;:10;:12::i;:::-;21533:23;;:7;:5;:7::i;:::-;:23;;;21525:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21469:132::o;15386:211::-;15503:86;15523:5;15553:23;;;15578:2;15582:5;15530:58;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15503:19;:86::i;:::-;15386:211;;;:::o;22571:191::-;22645:16;22664:6;;;;;;;;;;;22645:25;;22690:8;22681:6;;:17;;;;;;;;;;;;;;;;;;22745:8;22714:40;;22735:8;22714:40;;;;;;;;;;;;22634:128;22571:191;:::o;19855:98::-;19908:7;19935:10;19928:17;;19855:98;:::o;18453:716::-;18877:23;18903:69;18931:4;18903:69;;;;;;;;;;;;;;;;;18911:5;18903:27;;;;:69;;;;;:::i;:::-;18877:95;;19007:1;18987:10;:17;:21;18983:179;;;19084:10;19073:30;;;;;;;;;;;;:::i;:::-;19065:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;18983:179;18523:646;18453:716;;:::o;3990:229::-;4127:12;4159:52;4181:6;4189:4;4195:1;4198:12;4159:21;:52::i;:::-;4152:59;;3990:229;;;;;:::o;5110:455::-;5280:12;5338:5;5313:21;:30;;5305:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;5398:12;5412:23;5439:6;:11;;5458:5;5465:4;5439:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5397:73;;;;5488:69;5515:6;5523:7;5532:10;5544:12;5488:26;:69::i;:::-;5481:76;;;;5110:455;;;;;;:::o;7683:644::-;7868:12;7897:7;7893:427;;;7946:1;7925:10;:17;:22;7921:290;;8143:18;8154:6;8143:10;:18::i;:::-;8135:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;7921:290;8232:10;8225:17;;;;7893:427;8275:33;8283:10;8295:12;8275:7;:33::i;:::-;7683:644;;;;;;;:::o;1233:326::-;1293:4;1550:1;1528:7;:19;;;:23;1521:30;;1233:326;;;:::o;8869:552::-;9050:1;9030:10;:17;:21;9026:388;;;9262:10;9256:17;9319:15;9306:10;9302:2;9298:19;9291:44;9026:388;9389:12;9382:20;;;;;;;;;;;:::i;:::-;;;;;;;;7:126:1;44:7;84:42;77:5;73:54;62:65;;7:126;;;:::o;139:96::-;176:7;205:24;223:5;205:24;:::i;:::-;194:35;;139:96;;;:::o;241:118::-;328:24;346:5;328:24;:::i;:::-;323:3;316:37;241:118;;:::o;365:222::-;458:4;496:2;485:9;481:18;473:26;;509:71;577:1;566:9;562:17;553:6;509:71;:::i;:::-;365:222;;;;:::o;593:60::-;621:3;642:5;635:12;;593:60;;;:::o;659:142::-;709:9;742:53;760:34;769:24;787:5;769:24;:::i;:::-;760:34;:::i;:::-;742:53;:::i;:::-;729:66;;659:142;;;:::o;807:126::-;857:9;890:37;921:5;890:37;:::i;:::-;877:50;;807:126;;;:::o;939:146::-;1009:9;1042:37;1073:5;1042:37;:::i;:::-;1029:50;;939:146;;;:::o;1091:171::-;1198:57;1249:5;1198:57;:::i;:::-;1193:3;1186:70;1091:171;;:::o;1268:262::-;1381:4;1419:2;1408:9;1404:18;1396:26;;1432:91;1520:1;1509:9;1505:17;1496:6;1432:91;:::i;:::-;1268:262;;;;:::o;1536:75::-;1569:6;1602:2;1596:9;1586:19;;1536:75;:::o;1617:117::-;1726:1;1723;1716:12;1740:117;1849:1;1846;1839:12;1863:122;1936:24;1954:5;1936:24;:::i;:::-;1929:5;1926:35;1916:63;;1975:1;1972;1965:12;1916:63;1863:122;:::o;1991:139::-;2037:5;2075:6;2062:20;2053:29;;2091:33;2118:5;2091:33;:::i;:::-;1991:139;;;;:::o;2136:329::-;2195:6;2244:2;2232:9;2223:7;2219:23;2215:32;2212:119;;;2250:79;;:::i;:::-;2212:119;2370:1;2395:53;2440:7;2431:6;2420:9;2416:22;2395:53;:::i;:::-;2385:63;;2341:117;2136:329;;;;:::o;2471:77::-;2508:7;2537:5;2526:16;;2471:77;;;:::o;2554:118::-;2641:24;2659:5;2641:24;:::i;:::-;2636:3;2629:37;2554:118;;:::o;2678:1108::-;2995:4;3033:3;3022:9;3018:19;3010:27;;3047:71;3115:1;3104:9;3100:17;3091:6;3047:71;:::i;:::-;3128:72;3196:2;3185:9;3181:18;3172:6;3128:72;:::i;:::-;3210;3278:2;3267:9;3263:18;3254:6;3210:72;:::i;:::-;3292;3360:2;3349:9;3345:18;3336:6;3292:72;:::i;:::-;3374:73;3442:3;3431:9;3427:19;3418:6;3374:73;:::i;:::-;3457;3525:3;3514:9;3510:19;3501:6;3457:73;:::i;:::-;3540;3608:3;3597:9;3593:19;3584:6;3540:73;:::i;:::-;3623;3691:3;3680:9;3676:19;3667:6;3623:73;:::i;:::-;3706;3774:3;3763:9;3759:19;3750:6;3706:73;:::i;:::-;2678:1108;;;;;;;;;;;;:::o;3792:142::-;3858:9;3891:37;3922:5;3891:37;:::i;:::-;3878:50;;3792:142;;;:::o;3940:163::-;4043:53;4090:5;4043:53;:::i;:::-;4038:3;4031:66;3940:163;;:::o;4109:254::-;4218:4;4256:2;4245:9;4241:18;4233:26;;4269:87;4353:1;4342:9;4338:17;4329:6;4269:87;:::i;:::-;4109:254;;;;:::o;4369:122::-;4442:24;4460:5;4442:24;:::i;:::-;4435:5;4432:35;4422:63;;4481:1;4478;4471:12;4422:63;4369:122;:::o;4497:139::-;4543:5;4581:6;4568:20;4559:29;;4597:33;4624:5;4597:33;:::i;:::-;4497:139;;;;:::o;4642:329::-;4701:6;4750:2;4738:9;4729:7;4725:23;4721:32;4718:119;;;4756:79;;:::i;:::-;4718:119;4876:1;4901:53;4946:7;4937:6;4926:9;4922:22;4901:53;:::i;:::-;4891:63;;4847:117;4642:329;;;;:::o;4977:222::-;5070:4;5108:2;5097:9;5093:18;5085:26;;5121:71;5189:1;5178:9;5174:17;5165:6;5121:71;:::i;:::-;4977:222;;;;:::o;5205:619::-;5282:6;5290;5298;5347:2;5335:9;5326:7;5322:23;5318:32;5315:119;;;5353:79;;:::i;:::-;5315:119;5473:1;5498:53;5543:7;5534:6;5523:9;5519:22;5498:53;:::i;:::-;5488:63;;5444:117;5600:2;5626:53;5671:7;5662:6;5651:9;5647:22;5626:53;:::i;:::-;5616:63;;5571:118;5728:2;5754:53;5799:7;5790:6;5779:9;5775:22;5754:53;:::i;:::-;5744:63;;5699:118;5205:619;;;;;:::o;5830:332::-;5951:4;5989:2;5978:9;5974:18;5966:26;;6002:71;6070:1;6059:9;6055:17;6046:6;6002:71;:::i;:::-;6083:72;6151:2;6140:9;6136:18;6127:6;6083:72;:::i;:::-;5830:332;;;;;:::o;6168:140::-;6232:9;6265:37;6296:5;6265:37;:::i;:::-;6252:50;;6168:140;;;:::o;6314:159::-;6415:51;6460:5;6415:51;:::i;:::-;6410:3;6403:64;6314:159;;:::o;6479:250::-;6586:4;6624:2;6613:9;6609:18;6601:26;;6637:85;6719:1;6708:9;6704:17;6695:6;6637:85;:::i;:::-;6479:250;;;;:::o;6735:143::-;6792:5;6823:6;6817:13;6808:22;;6839:33;6866:5;6839:33;:::i;:::-;6735:143;;;;:::o;6884:351::-;6954:6;7003:2;6991:9;6982:7;6978:23;6974:32;6971:119;;;7009:79;;:::i;:::-;6971:119;7129:1;7154:64;7210:7;7201:6;7190:9;7186:22;7154:64;:::i;:::-;7144:74;;7100:128;6884:351;;;;:::o;7241:169::-;7325:11;7359:6;7354:3;7347:19;7399:4;7394:3;7390:14;7375:29;;7241:169;;;;:::o;7416:231::-;7556:34;7552:1;7544:6;7540:14;7533:58;7625:14;7620:2;7612:6;7608:15;7601:39;7416:231;:::o;7653:366::-;7795:3;7816:67;7880:2;7875:3;7816:67;:::i;:::-;7809:74;;7892:93;7981:3;7892:93;:::i;:::-;8010:2;8005:3;8001:12;7994:19;;7653:366;;;:::o;8025:419::-;8191:4;8229:2;8218:9;8214:18;8206:26;;8278:9;8272:4;8268:20;8264:1;8253:9;8249:17;8242:47;8306:131;8432:4;8306:131;:::i;:::-;8298:139;;8025:419;;;:::o;8450:167::-;8590:19;8586:1;8578:6;8574:14;8567:43;8450:167;:::o;8623:366::-;8765:3;8786:67;8850:2;8845:3;8786:67;:::i;:::-;8779:74;;8862:93;8951:3;8862:93;:::i;:::-;8980:2;8975:3;8971:12;8964:19;;8623:366;;;:::o;8995:419::-;9161:4;9199:2;9188:9;9184:18;9176:26;;9248:9;9242:4;9238:20;9234:1;9223:9;9219:17;9212:47;9276:131;9402:4;9276:131;:::i;:::-;9268:139;;8995:419;;;:::o;9420:180::-;9468:77;9465:1;9458:88;9565:4;9562:1;9555:15;9589:4;9586:1;9579:15;9606:194;9646:4;9666:20;9684:1;9666:20;:::i;:::-;9661:25;;9700:20;9718:1;9700:20;:::i;:::-;9695:25;;9744:1;9741;9737:9;9729:17;;9768:1;9762:4;9759:11;9756:37;;;9773:18;;:::i;:::-;9756:37;9606:194;;;;:::o;9806:332::-;9927:4;9965:2;9954:9;9950:18;9942:26;;9978:71;10046:1;10035:9;10031:17;10022:6;9978:71;:::i;:::-;10059:72;10127:2;10116:9;10112:18;10103:6;10059:72;:::i;:::-;9806:332;;;;;:::o;10144:90::-;10178:7;10221:5;10214:13;10207:21;10196:32;;10144:90;;;:::o;10240:116::-;10310:21;10325:5;10310:21;:::i;:::-;10303:5;10300:32;10290:60;;10346:1;10343;10336:12;10290:60;10240:116;:::o;10362:137::-;10416:5;10447:6;10441:13;10432:22;;10463:30;10487:5;10463:30;:::i;:::-;10362:137;;;;:::o;10505:345::-;10572:6;10621:2;10609:9;10600:7;10596:23;10592:32;10589:119;;;10627:79;;:::i;:::-;10589:119;10747:1;10772:61;10825:7;10816:6;10805:9;10801:22;10772:61;:::i;:::-;10762:71;;10718:125;10505:345;;;;:::o;10856:177::-;10996:29;10992:1;10984:6;10980:14;10973:53;10856:177;:::o;11039:366::-;11181:3;11202:67;11266:2;11261:3;11202:67;:::i;:::-;11195:74;;11278:93;11367:3;11278:93;:::i;:::-;11396:2;11391:3;11387:12;11380:19;;11039:366;;;:::o;11411:419::-;11577:4;11615:2;11604:9;11600:18;11592:26;;11664:9;11658:4;11654:20;11650:1;11639:9;11635:17;11628:47;11692:131;11818:4;11692:131;:::i;:::-;11684:139;;11411:419;;;:::o;11836:168::-;11976:20;11972:1;11964:6;11960:14;11953:44;11836:168;:::o;12010:366::-;12152:3;12173:67;12237:2;12232:3;12173:67;:::i;:::-;12166:74;;12249:93;12338:3;12249:93;:::i;:::-;12367:2;12362:3;12358:12;12351:19;;12010:366;;;:::o;12382:419::-;12548:4;12586:2;12575:9;12571:18;12563:26;;12635:9;12629:4;12625:20;12621:1;12610:9;12606:17;12599:47;12663:131;12789:4;12663:131;:::i;:::-;12655:139;;12382:419;;;:::o;12807:182::-;12947:34;12943:1;12935:6;12931:14;12924:58;12807:182;:::o;12995:366::-;13137:3;13158:67;13222:2;13217:3;13158:67;:::i;:::-;13151:74;;13234:93;13323:3;13234:93;:::i;:::-;13352:2;13347:3;13343:12;13336:19;;12995:366;;;:::o;13367:419::-;13533:4;13571:2;13560:9;13556:18;13548:26;;13620:9;13614:4;13610:20;13606:1;13595:9;13591:17;13584:47;13648:131;13774:4;13648:131;:::i;:::-;13640:139;;13367:419;;;:::o;13792:111::-;13856:6;13890:5;13884:12;13874:22;;13792:111;;;:::o;13909:184::-;14008:11;14042:6;14037:3;14030:19;14082:4;14077:3;14073:14;14058:29;;13909:184;;;;:::o;14099:156::-;14163:4;14186:3;14178:11;;14209:3;14206:1;14199:14;14243:4;14240:1;14230:18;14222:26;;14099:156;;;:::o;14261:108::-;14338:24;14356:5;14338:24;:::i;:::-;14333:3;14326:37;14261:108;;:::o;14375:179::-;14444:10;14465:46;14507:3;14499:6;14465:46;:::i;:::-;14543:4;14538:3;14534:14;14520:28;;14375:179;;;;:::o;14560:102::-;14602:8;14649:5;14646:1;14642:13;14621:34;;14560:102;;;:::o;14668:139::-;14718:7;14758:42;14751:5;14747:54;14736:65;;14668:139;;;:::o;14813:166::-;14882:5;14907:66;14938:34;14961:10;14938:34;:::i;:::-;14907:66;:::i;:::-;14898:75;;14813:166;;;:::o;14985:144::-;15040:5;15065:57;15116:4;15110:11;15065:57;:::i;:::-;15056:66;;14985:144;;;:::o;15135:110::-;15202:4;15234;15229:3;15225:14;15217:22;;15135:110;;;:::o;15281:751::-;15397:3;15426:51;15471:5;15426:51;:::i;:::-;15493:86;15572:6;15567:3;15493:86;:::i;:::-;15486:93;;15603:53;15650:5;15603:53;:::i;:::-;15679:7;15710:1;15695:312;15720:6;15717:1;15714:13;15695:312;;;15790:44;15827:6;15790:44;:::i;:::-;15854:63;15913:3;15898:13;15854:63;:::i;:::-;15847:70;;15940:57;15990:6;15940:57;:::i;:::-;15930:67;;15755:252;15742:1;15739;15735:9;15730:14;;15695:312;;;15699:14;16023:3;16016:10;;15402:630;;;15281:751;;;;:::o;16038:477::-;16206:4;16244:2;16233:9;16229:18;16221:26;;16257:71;16325:1;16314:9;16310:17;16301:6;16257:71;:::i;:::-;16375:9;16369:4;16365:20;16360:2;16349:9;16345:18;16338:48;16403:105;16503:4;16494:6;16403:105;:::i;:::-;16395:113;;16038:477;;;;;:::o;16521:117::-;16630:1;16627;16620:12;16644:102;16685:6;16736:2;16732:7;16727:2;16720:5;16716:14;16712:28;16702:38;;16644:102;;;:::o;16752:180::-;16800:77;16797:1;16790:88;16897:4;16894:1;16887:15;16921:4;16918:1;16911:15;16938:281;17021:27;17043:4;17021:27;:::i;:::-;17013:6;17009:40;17151:6;17139:10;17136:22;17115:18;17103:10;17100:34;17097:62;17094:88;;;17162:18;;:::i;:::-;17094:88;17202:10;17198:2;17191:22;16981:238;16938:281;;:::o;17225:129::-;17259:6;17286:20;;:::i;:::-;17276:30;;17315:33;17343:4;17335:6;17315:33;:::i;:::-;17225:129;;;:::o;17360:311::-;17437:4;17527:18;17519:6;17516:30;17513:56;;;17549:18;;:::i;:::-;17513:56;17599:4;17591:6;17587:17;17579:25;;17659:4;17653;17649:15;17641:23;;17360:311;;;:::o;17677:117::-;17786:1;17783;17776:12;17817:732;17924:5;17949:81;17965:64;18022:6;17965:64;:::i;:::-;17949:81;:::i;:::-;17940:90;;18050:5;18079:6;18072:5;18065:21;18113:4;18106:5;18102:16;18095:23;;18166:4;18158:6;18154:17;18146:6;18142:30;18195:3;18187:6;18184:15;18181:122;;;18214:79;;:::i;:::-;18181:122;18329:6;18312:231;18346:6;18341:3;18338:15;18312:231;;;18421:3;18450:48;18494:3;18482:10;18450:48;:::i;:::-;18445:3;18438:61;18528:4;18523:3;18519:14;18512:21;;18388:155;18372:4;18367:3;18363:14;18356:21;;18312:231;;;18316:21;17930:619;;17817:732;;;;;:::o;18572:385::-;18654:5;18703:3;18696:4;18688:6;18684:17;18680:27;18670:122;;18711:79;;:::i;:::-;18670:122;18821:6;18815:13;18846:105;18947:3;18939:6;18932:4;18924:6;18920:17;18846:105;:::i;:::-;18837:114;;18660:297;18572:385;;;;:::o;18963:554::-;19058:6;19107:2;19095:9;19086:7;19082:23;19078:32;19075:119;;;19113:79;;:::i;:::-;19075:119;19254:1;19243:9;19239:17;19233:24;19284:18;19276:6;19273:30;19270:117;;;19306:79;;:::i;:::-;19270:117;19411:89;19492:7;19483:6;19472:9;19468:22;19411:89;:::i;:::-;19401:99;;19204:306;18963:554;;;;:::o;19523:180::-;19571:77;19568:1;19561:88;19668:4;19665:1;19658:15;19692:4;19689:1;19682:15;19709:410;19749:7;19772:20;19790:1;19772:20;:::i;:::-;19767:25;;19806:20;19824:1;19806:20;:::i;:::-;19801:25;;19861:1;19858;19854:9;19883:30;19901:11;19883:30;:::i;:::-;19872:41;;20062:1;20053:7;20049:15;20046:1;20043:22;20023:1;20016:9;19996:83;19973:139;;20092:18;;:::i;:::-;19973:139;19757:362;19709:410;;;;:::o;20125:180::-;20173:77;20170:1;20163:88;20270:4;20267:1;20260:15;20294:4;20291:1;20284:15;20311:185;20351:1;20368:20;20386:1;20368:20;:::i;:::-;20363:25;;20402:20;20420:1;20402:20;:::i;:::-;20397:25;;20441:1;20431:35;;20446:18;;:::i;:::-;20431:35;20488:1;20485;20481:9;20476:14;;20311:185;;;;:::o;20502:442::-;20651:4;20689:2;20678:9;20674:18;20666:26;;20702:71;20770:1;20759:9;20755:17;20746:6;20702:71;:::i;:::-;20783:72;20851:2;20840:9;20836:18;20827:6;20783:72;:::i;:::-;20865;20933:2;20922:9;20918:18;20909:6;20865:72;:::i;:::-;20502:442;;;;;;:::o;20950:191::-;20990:3;21009:20;21027:1;21009:20;:::i;:::-;21004:25;;21043:20;21061:1;21043:20;:::i;:::-;21038:25;;21086:1;21083;21079:9;21072:16;;21107:3;21104:1;21101:10;21098:36;;;21114:18;;:::i;:::-;21098:36;20950:191;;;;:::o;21147:809::-;21399:4;21437:3;21426:9;21422:19;21414:27;;21451:71;21519:1;21508:9;21504:17;21495:6;21451:71;:::i;:::-;21532:72;21600:2;21589:9;21585:18;21576:6;21532:72;:::i;:::-;21651:9;21645:4;21641:20;21636:2;21625:9;21621:18;21614:48;21679:105;21779:4;21770:6;21679:105;:::i;:::-;21671:113;;21794:72;21862:2;21851:9;21847:18;21838:6;21794:72;:::i;:::-;21876:73;21944:3;21933:9;21929:19;21920:6;21876:73;:::i;:::-;21147:809;;;;;;;;:::o;21962:180::-;22102:32;22098:1;22090:6;22086:14;22079:56;21962:180;:::o;22148:366::-;22290:3;22311:67;22375:2;22370:3;22311:67;:::i;:::-;22304:74;;22387:93;22476:3;22387:93;:::i;:::-;22505:2;22500:3;22496:12;22489:19;;22148:366;;;:::o;22520:419::-;22686:4;22724:2;22713:9;22709:18;22701:26;;22773:9;22767:4;22763:20;22759:1;22748:9;22744:17;22737:47;22801:131;22927:4;22801:131;:::i;:::-;22793:139;;22520:419;;;:::o;22945:170::-;23085:22;23081:1;23073:6;23069:14;23062:46;22945:170;:::o;23121:366::-;23263:3;23284:67;23348:2;23343:3;23284:67;:::i;:::-;23277:74;;23360:93;23449:3;23360:93;:::i;:::-;23478:2;23473:3;23469:12;23462:19;;23121:366;;;:::o;23493:419::-;23659:4;23697:2;23686:9;23682:18;23674:26;;23746:9;23740:4;23736:20;23732:1;23721:9;23717:17;23710:47;23774:131;23900:4;23774:131;:::i;:::-;23766:139;;23493:419;;;:::o;23918:181::-;24058:33;24054:1;24046:6;24042:14;24035:57;23918:181;:::o;24105:366::-;24247:3;24268:67;24332:2;24327:3;24268:67;:::i;:::-;24261:74;;24344:93;24433:3;24344:93;:::i;:::-;24462:2;24457:3;24453:12;24446:19;;24105:366;;;:::o;24477:419::-;24643:4;24681:2;24670:9;24666:18;24658:26;;24730:9;24724:4;24720:20;24716:1;24705:9;24701:17;24694:47;24758:131;24884:4;24758:131;:::i;:::-;24750:139;;24477:419;;;:::o;24902:225::-;25042:34;25038:1;25030:6;25026:14;25019:58;25111:8;25106:2;25098:6;25094:15;25087:33;24902:225;:::o;25133:366::-;25275:3;25296:67;25360:2;25355:3;25296:67;:::i;:::-;25289:74;;25372:93;25461:3;25372:93;:::i;:::-;25490:2;25485:3;25481:12;25474:19;;25133:366;;;:::o;25505:419::-;25671:4;25709:2;25698:9;25694:18;25686:26;;25758:9;25752:4;25748:20;25744:1;25733:9;25729:17;25722:47;25786:131;25912:4;25786:131;:::i;:::-;25778:139;;25505:419;;;:::o;25930:182::-;26070:34;26066:1;26058:6;26054:14;26047:58;25930:182;:::o;26118:366::-;26260:3;26281:67;26345:2;26340:3;26281:67;:::i;:::-;26274:74;;26357:93;26446:3;26357:93;:::i;:::-;26475:2;26470:3;26466:12;26459:19;;26118:366;;;:::o;26490:419::-;26656:4;26694:2;26683:9;26679:18;26671:26;;26743:9;26737:4;26733:20;26729:1;26718:9;26714:17;26707:47;26771:131;26897:4;26771:131;:::i;:::-;26763:139;;26490:419;;;:::o;26915:229::-;27055:34;27051:1;27043:6;27039:14;27032:58;27124:12;27119:2;27111:6;27107:15;27100:37;26915:229;:::o;27150:366::-;27292:3;27313:67;27377:2;27372:3;27313:67;:::i;:::-;27306:74;;27389:93;27478:3;27389:93;:::i;:::-;27507:2;27502:3;27498:12;27491:19;;27150:366;;;:::o;27522:419::-;27688:4;27726:2;27715:9;27711:18;27703:26;;27775:9;27769:4;27765:20;27761:1;27750:9;27746:17;27739:47;27803:131;27929:4;27803:131;:::i;:::-;27795:139;;27522:419;;;:::o;27947:225::-;28087:34;28083:1;28075:6;28071:14;28064:58;28156:8;28151:2;28143:6;28139:15;28132:33;27947:225;:::o;28178:366::-;28320:3;28341:67;28405:2;28400:3;28341:67;:::i;:::-;28334:74;;28417:93;28506:3;28417:93;:::i;:::-;28535:2;28530:3;28526:12;28519:19;;28178:366;;;:::o;28550:419::-;28716:4;28754:2;28743:9;28739:18;28731:26;;28803:9;28797:4;28793:20;28789:1;28778:9;28774:17;28767:47;28831:131;28957:4;28831:131;:::i;:::-;28823:139;;28550:419;;;:::o;28975:98::-;29026:6;29060:5;29054:12;29044:22;;28975:98;;;:::o;29079:147::-;29180:11;29217:3;29202:18;;29079:147;;;;:::o;29232:246::-;29313:1;29323:113;29337:6;29334:1;29331:13;29323:113;;;29422:1;29417:3;29413:11;29407:18;29403:1;29398:3;29394:11;29387:39;29359:2;29356:1;29352:10;29347:15;;29323:113;;;29470:1;29461:6;29456:3;29452:16;29445:27;29294:184;29232:246;;;:::o;29484:386::-;29588:3;29616:38;29648:5;29616:38;:::i;:::-;29670:88;29751:6;29746:3;29670:88;:::i;:::-;29663:95;;29767:65;29825:6;29820:3;29813:4;29806:5;29802:16;29767:65;:::i;:::-;29857:6;29852:3;29848:16;29841:23;;29592:278;29484:386;;;;:::o;29876:271::-;30006:3;30028:93;30117:3;30108:6;30028:93;:::i;:::-;30021:100;;30138:3;30131:10;;29876:271;;;;:::o;30153:179::-;30293:31;30289:1;30281:6;30277:14;30270:55;30153:179;:::o;30338:366::-;30480:3;30501:67;30565:2;30560:3;30501:67;:::i;:::-;30494:74;;30577:93;30666:3;30577:93;:::i;:::-;30695:2;30690:3;30686:12;30679:19;;30338:366;;;:::o;30710:419::-;30876:4;30914:2;30903:9;30899:18;30891:26;;30963:9;30957:4;30953:20;30949:1;30938:9;30934:17;30927:47;30991:131;31117:4;30991:131;:::i;:::-;30983:139;;30710:419;;;:::o;31135:99::-;31187:6;31221:5;31215:12;31205:22;;31135:99;;;:::o;31240:377::-;31328:3;31356:39;31389:5;31356:39;:::i;:::-;31411:71;31475:6;31470:3;31411:71;:::i;:::-;31404:78;;31491:65;31549:6;31544:3;31537:4;31530:5;31526:16;31491:65;:::i;:::-;31581:29;31603:6;31581:29;:::i;:::-;31576:3;31572:39;31565:46;;31332:285;31240:377;;;;:::o;31623:313::-;31736:4;31774:2;31763:9;31759:18;31751:26;;31823:9;31817:4;31813:20;31809:1;31798:9;31794:17;31787:47;31851:78;31924:4;31915:6;31851:78;:::i;:::-;31843:86;;31623:313;;;;:::o
Swarm Source
ipfs://52b70944bc5119c2e5aa49bc2e49dc5c055e563c5851bee81a8f1ddf6ca7e21c
Age | Block | Fee Address | BC Fee Address | Voting Power | Jailed | Incoming |
---|
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.