Feature Tip: Add private address tag to any address under My Name Tag !
Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
xGooMinter
Compiler Version
v0.8.17+commit.8df45f5f
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT
pragma solidity 0.8.17;
import { Ownable } from "@openzeppelin/contracts/access/Ownable.sol";
import { IERC20, SafeERC20 } from "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
interface IHolderContract {
function totalGoo() external view returns (uint256);
function depositGoo(uint256) external;
function withdrawGoo(uint256, address) external;
function addFee(uint256) external;
}
interface IxGoo is IERC20 {
function mint(address who, uint256 amount) external;
function burn(uint256 amount) external;
function burnFrom(address from, uint256 amount) external;
}
contract xGooMinter is Ownable {
using SafeERC20 for IERC20;
event Minted(address indexed from, uint256 indexed gooAmount, uint256 indexed feeAmount);
event Redeemed(address indexed from, uint256 indexed gooAmount, uint256 indexed feeAmount);
IxGoo public immutable xGoo;
IERC20 public immutable goo;
IHolderContract public HolderContract;
uint256 wrapFee = 100;
uint256 unWrapFee = 300;
mapping (address => bool) public Updater;
constructor (address _xGoo, address _goo, address _HolderContract) {
xGoo = IxGoo(_xGoo);
goo = IERC20(_goo);
HolderContract = IHolderContract(_HolderContract);
}
function setHolderContract(address _HolderContract) external onlyOwner {
require(_HolderContract!= address(0), "Invalid reactor address");
HolderContract = IHolderContract(_HolderContract);
}
function xGooWrapFee() public view returns (uint256) {
return wrapFee;
}
function xGooUnwrapFee() public view returns (uint256) {
return unWrapFee;
}
function changeWrapFee(uint256 newFee) external onlyOwner {
require(newFee < 5000, "too big");
wrapFee = newFee;
}
function changeunWrapFee(uint256 newFee) external onlyOwner {
require(newFee < 10000, "too big");
unWrapFee = newFee;
}
function wrap(uint256 gooAmount) external {
goo.transferFrom(msg.sender, address(HolderContract), gooAmount);
uint256 fee = gooAmount * (10000-xGooWrapFee())/10000;
uint256 xGooAmount = gooAmount-fee;
if (HolderContract.totalGoo() > 0) {
xGooAmount = (gooAmount-fee) * xGoo.totalSupply() / HolderContract.totalGoo();
}
HolderContract.depositGoo(gooAmount);
HolderContract.addFee(fee);
xGoo.mint(msg.sender, xGooAmount);
}
function unwrap(uint256 xGooAmount) external {
uint256 noFeeAmount = xGooAmount * (10000-xGooUnwrapFee())/10000;
uint256 gooAmount = noFeeAmount * HolderContract.totalGoo()/ xGoo.totalSupply();
HolderContract.addFee((xGooAmount - noFeeAmount) * HolderContract.totalGoo()/ xGoo.totalSupply());
xGoo.burnFrom(msg.sender, xGooAmount);
HolderContract.withdrawGoo(gooAmount, msg.sender);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/utils/SafeERC20.sol)
pragma solidity ^0.8.0;
import "../IERC20.sol";
import "../extensions/draft-IERC20Permit.sol";
import "../../../utils/Address.sol";
/**
* @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");
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @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);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.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 functionCall(target, data, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value
) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
require(isContract(target), "Address: call to non-contract");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResult(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) {
require(isContract(target), "Address: static call to non-contract");
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResult(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) {
require(isContract(target), "Address: delegate call to non-contract");
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason 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 {
// 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);
}
}
}
}// SPDX-License-Identifier: MIT
// 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);
}// SPDX-License-Identifier: MIT
// 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);
}// SPDX-License-Identifier: MIT
// 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;
}
}{
"optimizer": {
"enabled": false,
"runs": 200
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_xGoo","type":"address"},{"internalType":"address","name":"_goo","type":"address"},{"internalType":"address","name":"_HolderContract","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"uint256","name":"gooAmount","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"feeAmount","type":"uint256"}],"name":"Minted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"uint256","name":"gooAmount","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"feeAmount","type":"uint256"}],"name":"Redeemed","type":"event"},{"inputs":[],"name":"HolderContract","outputs":[{"internalType":"contract IHolderContract","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"Updater","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newFee","type":"uint256"}],"name":"changeWrapFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newFee","type":"uint256"}],"name":"changeunWrapFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"goo","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_HolderContract","type":"address"}],"name":"setHolderContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"xGooAmount","type":"uint256"}],"name":"unwrap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"gooAmount","type":"uint256"}],"name":"wrap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"xGoo","outputs":[{"internalType":"contract IxGoo","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"xGooUnwrapFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"xGooWrapFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]Contract Creation Code
60c0604052606460025561012c6003553480156200001c57600080fd5b50604051620019263803806200192683398181016040528101906200004291906200024a565b62000062620000566200011460201b60201c565b6200011c60201b60201c565b8273ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508173ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff168152505080600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505050620002a6565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200021282620001e5565b9050919050565b620002248162000205565b81146200023057600080fd5b50565b600081519050620002448162000219565b92915050565b600080600060608486031215620002665762000265620001e0565b5b6000620002768682870162000233565b9350506020620002898682870162000233565b92505060406200029c8682870162000233565b9150509250925092565b60805160a051611630620002f66000396000818161034201526109240152600081816103c6015281816104da0152818161064f015281816107dd01528181610b520152610d1e01526116306000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c80637a2911261161008c578063de0e9a3e11610066578063de0e9a3e14610213578063e0b26dbd1461022f578063ea598cb01461024d578063f2fde38b14610269576100ea565b80637a291126146101bb5780638da5cb5b146101d75780639f9633d2146101f5576100ea565b80633d56538b116100c85780633d56538b1461014757806350c6f4ff146101635780635b79478e14610181578063715018a6146101b1576100ea565b8063035d45ef146100ef578063274cdd5c1461010b578063384e121614610129575b600080fd5b61010960048036038101906101049190610fde565b610285565b005b610113610340565b604051610120919061106a565b60405180910390f35b610131610364565b60405161013e919061109e565b60405180910390f35b610161600480360381019061015c91906110e5565b61036e565b005b61016b6103c4565b6040516101789190611133565b60405180910390f35b61019b60048036038101906101969190610fde565b6103e8565b6040516101a89190611169565b60405180910390f35b6101b9610408565b005b6101d560048036038101906101d091906110e5565b61041c565b005b6101df610472565b6040516101ec9190611193565b60405180910390f35b6101fd61049b565b60405161020a919061109e565b60405180910390f35b61022d600480360381019061022891906110e5565b6104a5565b005b6102376108fc565b60405161024491906111cf565b60405180910390f35b610267600480360381019061026291906110e5565b610922565b005b610283600480360381019061027e9190610fde565b610dae565b005b61028d610e31565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036102fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016102f390611247565b60405180910390fd5b80600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600354905090565b610376610e31565b61271081106103ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103b1906112b3565b60405180910390fd5b8060038190555050565b7f000000000000000000000000000000000000000000000000000000000000000081565b60046020528060005260406000206000915054906101000a900460ff1681565b610410610e31565b61041a6000610eaf565b565b610424610e31565b6113888110610468576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161045f906112b3565b60405180910390fd5b8060028190555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600254905090565b60006127106104b2610364565b6127106104bf9190611302565b836104ca9190611336565b6104d491906113a7565b905060007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610543573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061056791906113ed565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663b594ef266040518163ffffffff1660e01b8152600401602060405180830381865afa1580156105d4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105f891906113ed565b836106039190611336565b61060d91906113a7565b9050600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166321307bac7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156106b8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106dc91906113ed565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663b594ef266040518163ffffffff1660e01b8152600401602060405180830381865afa158015610749573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061076d91906113ed565b85876107799190611302565b6107839190611336565b61078d91906113a7565b6040518263ffffffff1660e01b81526004016107a9919061109e565b600060405180830381600087803b1580156107c357600080fd5b505af11580156107d7573d6000803e3d6000fd5b505050507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166379cc679033856040518363ffffffff1660e01b815260040161083692919061141a565b600060405180830381600087803b15801561085057600080fd5b505af1158015610864573d6000803e3d6000fd5b50505050600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663bd33283282336040518363ffffffff1660e01b81526004016108c5929190611443565b600060405180830381600087803b1580156108df57600080fd5b505af11580156108f3573d6000803e3d6000fd5b50505050505050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166323b872dd33600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846040518463ffffffff1660e01b81526004016109a19392919061146c565b6020604051808303816000875af11580156109c0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109e491906114cf565b5060006127106109f261049b565b6127106109ff9190611302565b83610a0a9190611336565b610a1491906113a7565b905060008183610a249190611302565b90506000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663b594ef266040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a95573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ab991906113ed565b1115610c0257600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663b594ef266040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b2c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b5091906113ed565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610bbb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bdf91906113ed565b8385610beb9190611302565b610bf59190611336565b610bff91906113a7565b90505b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663cf08b80e846040518263ffffffff1660e01b8152600401610c5d919061109e565b600060405180830381600087803b158015610c7757600080fd5b505af1158015610c8b573d6000803e3d6000fd5b50505050600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166321307bac836040518263ffffffff1660e01b8152600401610cea919061109e565b600060405180830381600087803b158015610d0457600080fd5b505af1158015610d18573d6000803e3d6000fd5b505050507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166340c10f1933836040518363ffffffff1660e01b8152600401610d7792919061141a565b600060405180830381600087803b158015610d9157600080fd5b505af1158015610da5573d6000803e3d6000fd5b50505050505050565b610db6610e31565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1c9061156e565b60405180910390fd5b610e2e81610eaf565b50565b610e39610f73565b73ffffffffffffffffffffffffffffffffffffffff16610e57610472565b73ffffffffffffffffffffffffffffffffffffffff1614610ead576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea4906115da565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610fab82610f80565b9050919050565b610fbb81610fa0565b8114610fc657600080fd5b50565b600081359050610fd881610fb2565b92915050565b600060208284031215610ff457610ff3610f7b565b5b600061100284828501610fc9565b91505092915050565b6000819050919050565b600061103061102b61102684610f80565b61100b565b610f80565b9050919050565b600061104282611015565b9050919050565b600061105482611037565b9050919050565b61106481611049565b82525050565b600060208201905061107f600083018461105b565b92915050565b6000819050919050565b61109881611085565b82525050565b60006020820190506110b3600083018461108f565b92915050565b6110c281611085565b81146110cd57600080fd5b50565b6000813590506110df816110b9565b92915050565b6000602082840312156110fb576110fa610f7b565b5b6000611109848285016110d0565b91505092915050565b600061111d82611037565b9050919050565b61112d81611112565b82525050565b60006020820190506111486000830184611124565b92915050565b60008115159050919050565b6111638161114e565b82525050565b600060208201905061117e600083018461115a565b92915050565b61118d81610fa0565b82525050565b60006020820190506111a86000830184611184565b92915050565b60006111b982611037565b9050919050565b6111c9816111ae565b82525050565b60006020820190506111e460008301846111c0565b92915050565b600082825260208201905092915050565b7f496e76616c69642072656163746f722061646472657373000000000000000000600082015250565b60006112316017836111ea565b915061123c826111fb565b602082019050919050565b6000602082019050818103600083015261126081611224565b9050919050565b7f746f6f2062696700000000000000000000000000000000000000000000000000600082015250565b600061129d6007836111ea565b91506112a882611267565b602082019050919050565b600060208201905081810360008301526112cc81611290565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061130d82611085565b915061131883611085565b92508282039050818111156113305761132f6112d3565b5b92915050565b600061134182611085565b915061134c83611085565b925082820261135a81611085565b91508282048414831517611371576113706112d3565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006113b282611085565b91506113bd83611085565b9250826113cd576113cc611378565b5b828204905092915050565b6000815190506113e7816110b9565b92915050565b60006020828403121561140357611402610f7b565b5b6000611411848285016113d8565b91505092915050565b600060408201905061142f6000830185611184565b61143c602083018461108f565b9392505050565b6000604082019050611458600083018561108f565b6114656020830184611184565b9392505050565b60006060820190506114816000830186611184565b61148e6020830185611184565b61149b604083018461108f565b949350505050565b6114ac8161114e565b81146114b757600080fd5b50565b6000815190506114c9816114a3565b92915050565b6000602082840312156114e5576114e4610f7b565b5b60006114f3848285016114ba565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006115586026836111ea565b9150611563826114fc565b604082019050919050565b600060208201905081810360008301526115878161154b565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006115c46020836111ea565b91506115cf8261158e565b602082019050919050565b600060208201905081810360008301526115f3816115b7565b905091905056fea2646970667358221220cbbae4f998c237bb7be8ea920d26b227bc11166e4a9d1b8fb15adff24d63021664736f6c63430008110033000000000000000000000000947cf2623d7c080c89280f0eab275c841dd02797000000000000000000000000600000000a36f3cd48407e35eb7c5c910dc1f7a8000000000000000000000000ecb16f3878dd4a74cd216d04e0b21f350a89d6c0
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100ea5760003560e01c80637a2911261161008c578063de0e9a3e11610066578063de0e9a3e14610213578063e0b26dbd1461022f578063ea598cb01461024d578063f2fde38b14610269576100ea565b80637a291126146101bb5780638da5cb5b146101d75780639f9633d2146101f5576100ea565b80633d56538b116100c85780633d56538b1461014757806350c6f4ff146101635780635b79478e14610181578063715018a6146101b1576100ea565b8063035d45ef146100ef578063274cdd5c1461010b578063384e121614610129575b600080fd5b61010960048036038101906101049190610fde565b610285565b005b610113610340565b604051610120919061106a565b60405180910390f35b610131610364565b60405161013e919061109e565b60405180910390f35b610161600480360381019061015c91906110e5565b61036e565b005b61016b6103c4565b6040516101789190611133565b60405180910390f35b61019b60048036038101906101969190610fde565b6103e8565b6040516101a89190611169565b60405180910390f35b6101b9610408565b005b6101d560048036038101906101d091906110e5565b61041c565b005b6101df610472565b6040516101ec9190611193565b60405180910390f35b6101fd61049b565b60405161020a919061109e565b60405180910390f35b61022d600480360381019061022891906110e5565b6104a5565b005b6102376108fc565b60405161024491906111cf565b60405180910390f35b610267600480360381019061026291906110e5565b610922565b005b610283600480360381019061027e9190610fde565b610dae565b005b61028d610e31565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036102fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016102f390611247565b60405180910390fd5b80600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b7f000000000000000000000000600000000a36f3cd48407e35eb7c5c910dc1f7a881565b6000600354905090565b610376610e31565b61271081106103ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103b1906112b3565b60405180910390fd5b8060038190555050565b7f000000000000000000000000947cf2623d7c080c89280f0eab275c841dd0279781565b60046020528060005260406000206000915054906101000a900460ff1681565b610410610e31565b61041a6000610eaf565b565b610424610e31565b6113888110610468576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161045f906112b3565b60405180910390fd5b8060028190555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600254905090565b60006127106104b2610364565b6127106104bf9190611302565b836104ca9190611336565b6104d491906113a7565b905060007f000000000000000000000000947cf2623d7c080c89280f0eab275c841dd0279773ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610543573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061056791906113ed565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663b594ef266040518163ffffffff1660e01b8152600401602060405180830381865afa1580156105d4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105f891906113ed565b836106039190611336565b61060d91906113a7565b9050600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166321307bac7f000000000000000000000000947cf2623d7c080c89280f0eab275c841dd0279773ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156106b8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106dc91906113ed565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663b594ef266040518163ffffffff1660e01b8152600401602060405180830381865afa158015610749573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061076d91906113ed565b85876107799190611302565b6107839190611336565b61078d91906113a7565b6040518263ffffffff1660e01b81526004016107a9919061109e565b600060405180830381600087803b1580156107c357600080fd5b505af11580156107d7573d6000803e3d6000fd5b505050507f000000000000000000000000947cf2623d7c080c89280f0eab275c841dd0279773ffffffffffffffffffffffffffffffffffffffff166379cc679033856040518363ffffffff1660e01b815260040161083692919061141a565b600060405180830381600087803b15801561085057600080fd5b505af1158015610864573d6000803e3d6000fd5b50505050600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663bd33283282336040518363ffffffff1660e01b81526004016108c5929190611443565b600060405180830381600087803b1580156108df57600080fd5b505af11580156108f3573d6000803e3d6000fd5b50505050505050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b7f000000000000000000000000600000000a36f3cd48407e35eb7c5c910dc1f7a873ffffffffffffffffffffffffffffffffffffffff166323b872dd33600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846040518463ffffffff1660e01b81526004016109a19392919061146c565b6020604051808303816000875af11580156109c0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109e491906114cf565b5060006127106109f261049b565b6127106109ff9190611302565b83610a0a9190611336565b610a1491906113a7565b905060008183610a249190611302565b90506000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663b594ef266040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a95573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ab991906113ed565b1115610c0257600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663b594ef266040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b2c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b5091906113ed565b7f000000000000000000000000947cf2623d7c080c89280f0eab275c841dd0279773ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610bbb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bdf91906113ed565b8385610beb9190611302565b610bf59190611336565b610bff91906113a7565b90505b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663cf08b80e846040518263ffffffff1660e01b8152600401610c5d919061109e565b600060405180830381600087803b158015610c7757600080fd5b505af1158015610c8b573d6000803e3d6000fd5b50505050600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166321307bac836040518263ffffffff1660e01b8152600401610cea919061109e565b600060405180830381600087803b158015610d0457600080fd5b505af1158015610d18573d6000803e3d6000fd5b505050507f000000000000000000000000947cf2623d7c080c89280f0eab275c841dd0279773ffffffffffffffffffffffffffffffffffffffff166340c10f1933836040518363ffffffff1660e01b8152600401610d7792919061141a565b600060405180830381600087803b158015610d9157600080fd5b505af1158015610da5573d6000803e3d6000fd5b50505050505050565b610db6610e31565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1c9061156e565b60405180910390fd5b610e2e81610eaf565b50565b610e39610f73565b73ffffffffffffffffffffffffffffffffffffffff16610e57610472565b73ffffffffffffffffffffffffffffffffffffffff1614610ead576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea4906115da565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610fab82610f80565b9050919050565b610fbb81610fa0565b8114610fc657600080fd5b50565b600081359050610fd881610fb2565b92915050565b600060208284031215610ff457610ff3610f7b565b5b600061100284828501610fc9565b91505092915050565b6000819050919050565b600061103061102b61102684610f80565b61100b565b610f80565b9050919050565b600061104282611015565b9050919050565b600061105482611037565b9050919050565b61106481611049565b82525050565b600060208201905061107f600083018461105b565b92915050565b6000819050919050565b61109881611085565b82525050565b60006020820190506110b3600083018461108f565b92915050565b6110c281611085565b81146110cd57600080fd5b50565b6000813590506110df816110b9565b92915050565b6000602082840312156110fb576110fa610f7b565b5b6000611109848285016110d0565b91505092915050565b600061111d82611037565b9050919050565b61112d81611112565b82525050565b60006020820190506111486000830184611124565b92915050565b60008115159050919050565b6111638161114e565b82525050565b600060208201905061117e600083018461115a565b92915050565b61118d81610fa0565b82525050565b60006020820190506111a86000830184611184565b92915050565b60006111b982611037565b9050919050565b6111c9816111ae565b82525050565b60006020820190506111e460008301846111c0565b92915050565b600082825260208201905092915050565b7f496e76616c69642072656163746f722061646472657373000000000000000000600082015250565b60006112316017836111ea565b915061123c826111fb565b602082019050919050565b6000602082019050818103600083015261126081611224565b9050919050565b7f746f6f2062696700000000000000000000000000000000000000000000000000600082015250565b600061129d6007836111ea565b91506112a882611267565b602082019050919050565b600060208201905081810360008301526112cc81611290565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061130d82611085565b915061131883611085565b92508282039050818111156113305761132f6112d3565b5b92915050565b600061134182611085565b915061134c83611085565b925082820261135a81611085565b91508282048414831517611371576113706112d3565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006113b282611085565b91506113bd83611085565b9250826113cd576113cc611378565b5b828204905092915050565b6000815190506113e7816110b9565b92915050565b60006020828403121561140357611402610f7b565b5b6000611411848285016113d8565b91505092915050565b600060408201905061142f6000830185611184565b61143c602083018461108f565b9392505050565b6000604082019050611458600083018561108f565b6114656020830184611184565b9392505050565b60006060820190506114816000830186611184565b61148e6020830185611184565b61149b604083018461108f565b949350505050565b6114ac8161114e565b81146114b757600080fd5b50565b6000815190506114c9816114a3565b92915050565b6000602082840312156114e5576114e4610f7b565b5b60006114f3848285016114ba565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006115586026836111ea565b9150611563826114fc565b604082019050919050565b600060208201905081810360008301526115878161154b565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006115c46020836111ea565b91506115cf8261158e565b602082019050919050565b600060208201905081810360008301526115f3816115b7565b905091905056fea2646970667358221220cbbae4f998c237bb7be8ea920d26b227bc11166e4a9d1b8fb15adff24d63021664736f6c63430008110033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000947cf2623d7c080c89280f0eab275c841dd02797000000000000000000000000600000000a36f3cd48407e35eb7c5c910dc1f7a8000000000000000000000000ecb16f3878dd4a74cd216d04e0b21f350a89d6c0
-----Decoded View---------------
Arg [0] : _xGoo (address): 0x947CF2623D7C080c89280f0EaB275c841Dd02797
Arg [1] : _goo (address): 0x600000000a36F3cD48407e35eB7C5c910dc1f7a8
Arg [2] : _HolderContract (address): 0xECb16f3878dd4A74CD216D04e0B21f350a89d6c0
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 000000000000000000000000947cf2623d7c080c89280f0eab275c841dd02797
Arg [1] : 000000000000000000000000600000000a36f3cd48407e35eb7c5c910dc1f7a8
Arg [2] : 000000000000000000000000ecb16f3878dd4a74cd216d04e0b21f350a89d6c0
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ 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.