Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
RateUpdate
Compiler Version
v0.8.3+commit.8d00100c
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.3;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
interface CarbonCoinToken {
function updateExchangeRate (uint rate) external;
}
contract RateUpdate is ERC20 {
address public owner;
address public admin;
CarbonCoinToken public gcxToken;
uint fee;
constructor(address gcxProxyAddress) ERC20("Green Carbon Contract", "GCXCont") {
gcxToken = CarbonCoinToken(gcxProxyAddress);
owner = 0xE3D8f9063A4527ae2c4d33157fc145bAD63cdE53;
admin = 0x3a8929C8b516939Fe3E958bB1E34Cdea391321C8;
fee = 0.01 ether;
}
function updateRate (uint rate) external payable {
require(rate > 0);
require(msg.sender == admin);
require(msg.value == fee, 'Insufficient to cover fees');
payable(owner).transfer(fee);
gcxToken.updateExchangeRate(rate);
}
function updateOwner (address newOwner) external {
require(msg.sender == owner);
owner = newOwner;
}
function updateContract (address contractAddress) external {
require(msg.sender == owner);
gcxToken = CarbonCoinToken(contractAddress);
}
function updateFee (uint newFee) external {
require(msg.sender == owner);
require(newFee >= 0 );
fee = newFee;
}
function getOwner() public view returns (address) {
return owner;
}
function getContract() public view returns (address) {
return address(gcxToken);
}
function getFee() public view returns (uint) {
return fee;
}
function updateAdmin (address newAdmin) external {
require(msg.sender == owner);
admin = newAdmin;
}
function getAdmin() public view returns (address) {
return admin;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/ERC20.sol)
pragma solidity ^0.8.0;
import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";
/**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
* For a generic mechanism see {ERC20PresetMinterPauser}.
*
* TIP: For a detailed writeup see our guide
* https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
* to implement supply mechanisms].
*
* We have followed general OpenZeppelin Contracts guidelines: functions revert
* instead returning `false` on failure. This behavior is nonetheless
* conventional and does not conflict with the expectations of ERC20
* applications.
*
* Additionally, an {Approval} event is emitted on calls to {transferFrom}.
* This allows applications to reconstruct the allowance for all accounts just
* by listening to said events. Other implementations of the EIP may not emit
* these events, as it isn't required by the specification.
*
* Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
* functions have been added to mitigate the well-known issues around setting
* allowances. See {IERC20-approve}.
*/
contract ERC20 is Context, IERC20, IERC20Metadata {
mapping(address => uint256) private _balances;
mapping(address => mapping(address => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
/**
* @dev Sets the values for {name} and {symbol}.
*
* The default value of {decimals} is 18. To select a different value for
* {decimals} you should overload it.
*
* All two of these values are immutable: they can only be set once during
* construction.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev Returns the name of the token.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev Returns the number of decimals used to get its user representation.
* For example, if `decimals` equals `2`, a balance of `505` tokens should
* be displayed to a user as `5.05` (`505 / 10 ** 2`).
*
* Tokens usually opt for a value of 18, imitating the relationship between
* Ether and Wei. This is the value {ERC20} uses, unless this function is
* overridden;
*
* NOTE: This information is only used for _display_ purposes: it in
* no way affects any of the arithmetic of the contract, including
* {IERC20-balanceOf} and {IERC20-transfer}.
*/
function decimals() public view virtual override returns (uint8) {
return 18;
}
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view virtual override returns (uint256) {
return _totalSupply;
}
/**
* @dev See {IERC20-balanceOf}.
*/
function balanceOf(address account) public view virtual override returns (uint256) {
return _balances[account];
}
/**
* @dev See {IERC20-transfer}.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - the caller must have a balance of at least `amount`.
*/
function transfer(address to, uint256 amount) public virtual override returns (bool) {
address owner = _msgSender();
_transfer(owner, to, amount);
return true;
}
/**
* @dev See {IERC20-allowance}.
*/
function allowance(address owner, address spender) public view virtual override returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {IERC20-approve}.
*
* NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
* `transferFrom`. This is semantically equivalent to an infinite approval.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 amount) public virtual override returns (bool) {
address owner = _msgSender();
_approve(owner, spender, amount);
return true;
}
/**
* @dev See {IERC20-transferFrom}.
*
* Emits an {Approval} event indicating the updated allowance. This is not
* required by the EIP. See the note at the beginning of {ERC20}.
*
* NOTE: Does not update the allowance if the current allowance
* is the maximum `uint256`.
*
* Requirements:
*
* - `from` and `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
* - the caller must have allowance for ``from``'s tokens of at least
* `amount`.
*/
function transferFrom(
address from,
address to,
uint256 amount
) public virtual override returns (bool) {
address spender = _msgSender();
_spendAllowance(from, spender, amount);
_transfer(from, to, amount);
return true;
}
/**
* @dev Atomically increases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
address owner = _msgSender();
_approve(owner, spender, allowance(owner, spender) + addedValue);
return true;
}
/**
* @dev Atomically decreases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `spender` must have allowance for the caller of at least
* `subtractedValue`.
*/
function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
address owner = _msgSender();
uint256 currentAllowance = allowance(owner, spender);
require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
unchecked {
_approve(owner, spender, currentAllowance - subtractedValue);
}
return true;
}
/**
* @dev Moves `amount` of tokens from `from` to `to`.
*
* This internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
*/
function _transfer(
address from,
address to,
uint256 amount
) internal virtual {
require(from != address(0), "ERC20: transfer from the zero address");
require(to != address(0), "ERC20: transfer to the zero address");
_beforeTokenTransfer(from, to, amount);
uint256 fromBalance = _balances[from];
require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
unchecked {
_balances[from] = fromBalance - amount;
}
_balances[to] += amount;
emit Transfer(from, to, amount);
_afterTokenTransfer(from, to, amount);
}
/** @dev Creates `amount` tokens and assigns them to `account`, increasing
* the total supply.
*
* Emits a {Transfer} event with `from` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
*/
function _mint(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: mint to the zero address");
_beforeTokenTransfer(address(0), account, amount);
_totalSupply += amount;
_balances[account] += amount;
emit Transfer(address(0), account, amount);
_afterTokenTransfer(address(0), account, amount);
}
/**
* @dev Destroys `amount` tokens from `account`, reducing the
* total supply.
*
* Emits a {Transfer} event with `to` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
* - `account` must have at least `amount` tokens.
*/
function _burn(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: burn from the zero address");
_beforeTokenTransfer(account, address(0), amount);
uint256 accountBalance = _balances[account];
require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
unchecked {
_balances[account] = accountBalance - amount;
}
_totalSupply -= amount;
emit Transfer(account, address(0), amount);
_afterTokenTransfer(account, address(0), amount);
}
/**
* @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
*
* This internal function is equivalent to `approve`, and can be used to
* e.g. set automatic allowances for certain subsystems, etc.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `owner` cannot be the zero address.
* - `spender` cannot be the zero address.
*/
function _approve(
address owner,
address spender,
uint256 amount
) internal virtual {
require(owner != address(0), "ERC20: approve from the zero address");
require(spender != address(0), "ERC20: approve to the zero address");
_allowances[owner][spender] = amount;
emit Approval(owner, spender, amount);
}
/**
* @dev Updates `owner` s allowance for `spender` based on spent `amount`.
*
* Does not update the allowance amount in case of infinite allowance.
* Revert if not enough allowance is available.
*
* Might emit an {Approval} event.
*/
function _spendAllowance(
address owner,
address spender,
uint256 amount
) internal virtual {
uint256 currentAllowance = allowance(owner, spender);
if (currentAllowance != type(uint256).max) {
require(currentAllowance >= amount, "ERC20: insufficient allowance");
unchecked {
_approve(owner, spender, currentAllowance - amount);
}
}
}
/**
* @dev Hook that is called before any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* will be transferred to `to`.
* - when `from` is zero, `amount` tokens will be minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 amount
) internal virtual {}
/**
* @dev Hook that is called after any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* has been transferred to `to`.
* - when `from` is zero, `amount` tokens have been minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens have been burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _afterTokenTransfer(
address from,
address to,
uint256 amount
) internal virtual {}
}// 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 (token/ERC20/extensions/IERC20Metadata.sol)
pragma solidity ^0.8.0;
import "../IERC20.sol";
/**
* @dev Interface for the optional metadata functions from the ERC20 standard.
*
* _Available since v4.1._
*/
interface IERC20Metadata is IERC20 {
/**
* @dev Returns the name of the token.
*/
function name() external view returns (string memory);
/**
* @dev Returns the symbol of the token.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the decimals places of the token.
*/
function decimals() external view returns (uint8);
}// 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"
]
}
},
"metadata": {
"useLiteralContent": true
},
"libraries": {}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"gcxProxyAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"admin","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"gcxToken","outputs":[{"internalType":"contract CarbonCoinToken","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getAdmin","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAdmin","type":"address"}],"name":"updateAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"contractAddress","type":"address"}],"name":"updateContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newFee","type":"uint256"}],"name":"updateFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"updateOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"rate","type":"uint256"}],"name":"updateRate","outputs":[],"stateMutability":"payable","type":"function"}]Contract Creation Code
60806040523480156200001157600080fd5b5060405162001eec38038062001eec83398181016040528101906200003791906200029e565b6040518060400160405280601581526020017f477265656e20436172626f6e20436f6e747261637400000000000000000000008152506040518060400160405280600781526020017f474358436f6e74000000000000000000000000000000000000000000000000008152508160039080519060200190620000bb929190620001d7565b508060049080519060200190620000d4929190620001d7565b50505080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073e3d8f9063a4527ae2c4d33157fc145bad63cde53600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550733a8929c8b516939fe3e958bb1e34cdea391321c8600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550662386f26fc10000600881905550506200037d565b828054620001e590620002fe565b90600052602060002090601f01602090048101928262000209576000855562000255565b82601f106200022457805160ff191683800117855562000255565b8280016001018555821562000255579182015b828111156200025457825182559160200191906001019062000237565b5b50905062000264919062000268565b5090565b5b808211156200028357600081600090555060010162000269565b5090565b600081519050620002988162000363565b92915050565b600060208284031215620002b157600080fd5b6000620002c18482850162000287565b91505092915050565b6000620002d782620002de565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600060028204905060018216806200031757607f821691505b602082108114156200032e576200032d62000334565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6200036e81620002ca565b81146200037a57600080fd5b50565b611b5f806200038d6000396000f3fe6080604052600436106101405760003560e01c80638da5cb5b116100b6578063a9059cbb1161006f578063a9059cbb14610467578063ced72f87146104a4578063dd62ed3e146104cf578063e2f273bd1461050c578063e3db17b814610535578063f851a4401461055e57610140565b80638da5cb5b146103555780639012c4a814610380578063958f85bd146103a957806395d89b41146103d4578063a12e384e146103ff578063a457c2d71461042a57610140565b80633950935111610108578063395093511461024057806369ea17711461027d5780636e9960c31461029957806370a08231146102c4578063880cdc3114610301578063893d20e81461032a57610140565b806306fdde0314610145578063095ea7b31461017057806318160ddd146101ad57806323b872dd146101d8578063313ce56714610215575b600080fd5b34801561015157600080fd5b5061015a610589565b60405161016791906115b8565b60405180910390f35b34801561017c57600080fd5b5061019760048036038101906101929190611366565b61061b565b6040516101a49190611582565b60405180910390f35b3480156101b957600080fd5b506101c261063e565b6040516101cf91906116da565b60405180910390f35b3480156101e457600080fd5b506101ff60048036038101906101fa9190611317565b610648565b60405161020c9190611582565b60405180910390f35b34801561022157600080fd5b5061022a610677565b60405161023791906116f5565b60405180910390f35b34801561024c57600080fd5b5061026760048036038101906102629190611366565b610680565b6040516102749190611582565b60405180910390f35b610297600480360381019061029291906113a2565b6106b7565b005b3480156102a557600080fd5b506102ae61085d565b6040516102bb9190611567565b60405180910390f35b3480156102d057600080fd5b506102eb60048036038101906102e691906112b2565b610887565b6040516102f891906116da565b60405180910390f35b34801561030d57600080fd5b50610328600480360381019061032391906112b2565b6108cf565b005b34801561033657600080fd5b5061033f61096d565b60405161034c9190611567565b60405180910390f35b34801561036157600080fd5b5061036a610997565b6040516103779190611567565b60405180910390f35b34801561038c57600080fd5b506103a760048036038101906103a291906113a2565b6109bd565b005b3480156103b557600080fd5b506103be610a2f565b6040516103cb9190611567565b60405180910390f35b3480156103e057600080fd5b506103e9610a59565b6040516103f691906115b8565b60405180910390f35b34801561040b57600080fd5b50610414610aeb565b604051610421919061159d565b60405180910390f35b34801561043657600080fd5b50610451600480360381019061044c9190611366565b610b11565b60405161045e9190611582565b60405180910390f35b34801561047357600080fd5b5061048e60048036038101906104899190611366565b610b88565b60405161049b9190611582565b60405180910390f35b3480156104b057600080fd5b506104b9610bab565b6040516104c691906116da565b60405180910390f35b3480156104db57600080fd5b506104f660048036038101906104f191906112db565b610bb5565b60405161050391906116da565b60405180910390f35b34801561051857600080fd5b50610533600480360381019061052e91906112b2565b610c3c565b005b34801561054157600080fd5b5061055c600480360381019061055791906112b2565b610cda565b005b34801561056a57600080fd5b50610573610d78565b6040516105809190611567565b60405180910390f35b6060600380546105989061182e565b80601f01602080910402602001604051908101604052809291908181526020018280546105c49061182e565b80156106115780601f106105e657610100808354040283529160200191610611565b820191906000526020600020905b8154815290600101906020018083116105f457829003601f168201915b5050505050905090565b600080610626610d9e565b9050610633818585610da6565b600191505092915050565b6000600254905090565b600080610653610d9e565b9050610660858285610f71565b61066b858585610ffd565b60019150509392505050565b60006012905090565b60008061068b610d9e565b90506106ac81858561069d8589610bb5565b6106a7919061172c565b610da6565b600191505092915050565b600081116106c457600080fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461071e57600080fd5b6008543414610762576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107599061169a565b60405180910390fd5b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6008549081150290604051600060405180830381858888f193505050501580156107cc573d6000803e3d6000fd5b50600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663b9e205ae826040518263ffffffff1660e01b815260040161082891906116da565b600060405180830381600087803b15801561084257600080fd5b505af1158015610856573d6000803e3d6000fd5b5050505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461092957600080fd5b80600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610a1757600080fd5b6000811015610a2557600080fd5b8060088190555050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610a689061182e565b80601f0160208091040260200160405190810160405280929190818152602001828054610a949061182e565b8015610ae15780601f10610ab657610100808354040283529160200191610ae1565b820191906000526020600020905b815481529060010190602001808311610ac457829003601f168201915b5050505050905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080610b1c610d9e565b90506000610b2a8286610bb5565b905083811015610b6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b66906116ba565b60405180910390fd5b610b7c8286868403610da6565b60019250505092915050565b600080610b93610d9e565b9050610ba0818585610ffd565b600191505092915050565b6000600854905090565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610c9657600080fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610d3457600080fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0d9061167a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7d906115fa565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f6491906116da565b60405180910390a3505050565b6000610f7d8484610bb5565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610ff75781811015610fe9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe09061161a565b60405180910390fd5b610ff68484848403610da6565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561106d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110649061165a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d4906115da565b60405180910390fd5b6110e883838361127e565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561116e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111659061163a565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611201919061172c565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161126591906116da565b60405180910390a3611278848484611283565b50505050565b505050565b505050565b60008135905061129781611afb565b92915050565b6000813590506112ac81611b12565b92915050565b6000602082840312156112c457600080fd5b60006112d284828501611288565b91505092915050565b600080604083850312156112ee57600080fd5b60006112fc85828601611288565b925050602061130d85828601611288565b9150509250929050565b60008060006060848603121561132c57600080fd5b600061133a86828701611288565b935050602061134b86828701611288565b925050604061135c8682870161129d565b9150509250925092565b6000806040838503121561137957600080fd5b600061138785828601611288565b92505060206113988582860161129d565b9150509250929050565b6000602082840312156113b457600080fd5b60006113c28482850161129d565b91505092915050565b6113d481611782565b82525050565b6113e381611794565b82525050565b6113f2816117d7565b82525050565b600061140382611710565b61140d818561171b565b935061141d8185602086016117fb565b611426816118be565b840191505092915050565b600061143e60238361171b565b9150611449826118cf565b604082019050919050565b600061146160228361171b565b915061146c8261191e565b604082019050919050565b6000611484601d8361171b565b915061148f8261196d565b602082019050919050565b60006114a760268361171b565b91506114b282611996565b604082019050919050565b60006114ca60258361171b565b91506114d5826119e5565b604082019050919050565b60006114ed60248361171b565b91506114f882611a34565b604082019050919050565b6000611510601a8361171b565b915061151b82611a83565b602082019050919050565b600061153360258361171b565b915061153e82611aac565b604082019050919050565b611552816117c0565b82525050565b611561816117ca565b82525050565b600060208201905061157c60008301846113cb565b92915050565b600060208201905061159760008301846113da565b92915050565b60006020820190506115b260008301846113e9565b92915050565b600060208201905081810360008301526115d281846113f8565b905092915050565b600060208201905081810360008301526115f381611431565b9050919050565b6000602082019050818103600083015261161381611454565b9050919050565b6000602082019050818103600083015261163381611477565b9050919050565b600060208201905081810360008301526116538161149a565b9050919050565b60006020820190508181036000830152611673816114bd565b9050919050565b60006020820190508181036000830152611693816114e0565b9050919050565b600060208201905081810360008301526116b381611503565b9050919050565b600060208201905081810360008301526116d381611526565b9050919050565b60006020820190506116ef6000830184611549565b92915050565b600060208201905061170a6000830184611558565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611737826117c0565b9150611742836117c0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561177757611776611860565b5b828201905092915050565b600061178d826117a0565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60006117e2826117e9565b9050919050565b60006117f4826117a0565b9050919050565b60005b838110156118195780820151818401526020810190506117fe565b83811115611828576000848401525b50505050565b6000600282049050600182168061184657607f821691505b6020821081141561185a5761185961188f565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f496e73756666696369656e7420746f20636f7665722066656573000000000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b611b0481611782565b8114611b0f57600080fd5b50565b611b1b816117c0565b8114611b2657600080fd5b5056fea26469706673582212202805a24f8a281a50f63d779a254eee4e46db5d4d921080724b8d415e037694db64736f6c634300080300330000000000000000000000001e0facc2e7aee4e79b4cce2e32ca18021678be29
Deployed Bytecode
0x6080604052600436106101405760003560e01c80638da5cb5b116100b6578063a9059cbb1161006f578063a9059cbb14610467578063ced72f87146104a4578063dd62ed3e146104cf578063e2f273bd1461050c578063e3db17b814610535578063f851a4401461055e57610140565b80638da5cb5b146103555780639012c4a814610380578063958f85bd146103a957806395d89b41146103d4578063a12e384e146103ff578063a457c2d71461042a57610140565b80633950935111610108578063395093511461024057806369ea17711461027d5780636e9960c31461029957806370a08231146102c4578063880cdc3114610301578063893d20e81461032a57610140565b806306fdde0314610145578063095ea7b31461017057806318160ddd146101ad57806323b872dd146101d8578063313ce56714610215575b600080fd5b34801561015157600080fd5b5061015a610589565b60405161016791906115b8565b60405180910390f35b34801561017c57600080fd5b5061019760048036038101906101929190611366565b61061b565b6040516101a49190611582565b60405180910390f35b3480156101b957600080fd5b506101c261063e565b6040516101cf91906116da565b60405180910390f35b3480156101e457600080fd5b506101ff60048036038101906101fa9190611317565b610648565b60405161020c9190611582565b60405180910390f35b34801561022157600080fd5b5061022a610677565b60405161023791906116f5565b60405180910390f35b34801561024c57600080fd5b5061026760048036038101906102629190611366565b610680565b6040516102749190611582565b60405180910390f35b610297600480360381019061029291906113a2565b6106b7565b005b3480156102a557600080fd5b506102ae61085d565b6040516102bb9190611567565b60405180910390f35b3480156102d057600080fd5b506102eb60048036038101906102e691906112b2565b610887565b6040516102f891906116da565b60405180910390f35b34801561030d57600080fd5b50610328600480360381019061032391906112b2565b6108cf565b005b34801561033657600080fd5b5061033f61096d565b60405161034c9190611567565b60405180910390f35b34801561036157600080fd5b5061036a610997565b6040516103779190611567565b60405180910390f35b34801561038c57600080fd5b506103a760048036038101906103a291906113a2565b6109bd565b005b3480156103b557600080fd5b506103be610a2f565b6040516103cb9190611567565b60405180910390f35b3480156103e057600080fd5b506103e9610a59565b6040516103f691906115b8565b60405180910390f35b34801561040b57600080fd5b50610414610aeb565b604051610421919061159d565b60405180910390f35b34801561043657600080fd5b50610451600480360381019061044c9190611366565b610b11565b60405161045e9190611582565b60405180910390f35b34801561047357600080fd5b5061048e60048036038101906104899190611366565b610b88565b60405161049b9190611582565b60405180910390f35b3480156104b057600080fd5b506104b9610bab565b6040516104c691906116da565b60405180910390f35b3480156104db57600080fd5b506104f660048036038101906104f191906112db565b610bb5565b60405161050391906116da565b60405180910390f35b34801561051857600080fd5b50610533600480360381019061052e91906112b2565b610c3c565b005b34801561054157600080fd5b5061055c600480360381019061055791906112b2565b610cda565b005b34801561056a57600080fd5b50610573610d78565b6040516105809190611567565b60405180910390f35b6060600380546105989061182e565b80601f01602080910402602001604051908101604052809291908181526020018280546105c49061182e565b80156106115780601f106105e657610100808354040283529160200191610611565b820191906000526020600020905b8154815290600101906020018083116105f457829003601f168201915b5050505050905090565b600080610626610d9e565b9050610633818585610da6565b600191505092915050565b6000600254905090565b600080610653610d9e565b9050610660858285610f71565b61066b858585610ffd565b60019150509392505050565b60006012905090565b60008061068b610d9e565b90506106ac81858561069d8589610bb5565b6106a7919061172c565b610da6565b600191505092915050565b600081116106c457600080fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461071e57600080fd5b6008543414610762576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107599061169a565b60405180910390fd5b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6008549081150290604051600060405180830381858888f193505050501580156107cc573d6000803e3d6000fd5b50600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663b9e205ae826040518263ffffffff1660e01b815260040161082891906116da565b600060405180830381600087803b15801561084257600080fd5b505af1158015610856573d6000803e3d6000fd5b5050505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461092957600080fd5b80600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610a1757600080fd5b6000811015610a2557600080fd5b8060088190555050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610a689061182e565b80601f0160208091040260200160405190810160405280929190818152602001828054610a949061182e565b8015610ae15780601f10610ab657610100808354040283529160200191610ae1565b820191906000526020600020905b815481529060010190602001808311610ac457829003601f168201915b5050505050905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080610b1c610d9e565b90506000610b2a8286610bb5565b905083811015610b6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b66906116ba565b60405180910390fd5b610b7c8286868403610da6565b60019250505092915050565b600080610b93610d9e565b9050610ba0818585610ffd565b600191505092915050565b6000600854905090565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610c9657600080fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610d3457600080fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0d9061167a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7d906115fa565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f6491906116da565b60405180910390a3505050565b6000610f7d8484610bb5565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610ff75781811015610fe9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe09061161a565b60405180910390fd5b610ff68484848403610da6565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561106d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110649061165a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d4906115da565b60405180910390fd5b6110e883838361127e565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561116e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111659061163a565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611201919061172c565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161126591906116da565b60405180910390a3611278848484611283565b50505050565b505050565b505050565b60008135905061129781611afb565b92915050565b6000813590506112ac81611b12565b92915050565b6000602082840312156112c457600080fd5b60006112d284828501611288565b91505092915050565b600080604083850312156112ee57600080fd5b60006112fc85828601611288565b925050602061130d85828601611288565b9150509250929050565b60008060006060848603121561132c57600080fd5b600061133a86828701611288565b935050602061134b86828701611288565b925050604061135c8682870161129d565b9150509250925092565b6000806040838503121561137957600080fd5b600061138785828601611288565b92505060206113988582860161129d565b9150509250929050565b6000602082840312156113b457600080fd5b60006113c28482850161129d565b91505092915050565b6113d481611782565b82525050565b6113e381611794565b82525050565b6113f2816117d7565b82525050565b600061140382611710565b61140d818561171b565b935061141d8185602086016117fb565b611426816118be565b840191505092915050565b600061143e60238361171b565b9150611449826118cf565b604082019050919050565b600061146160228361171b565b915061146c8261191e565b604082019050919050565b6000611484601d8361171b565b915061148f8261196d565b602082019050919050565b60006114a760268361171b565b91506114b282611996565b604082019050919050565b60006114ca60258361171b565b91506114d5826119e5565b604082019050919050565b60006114ed60248361171b565b91506114f882611a34565b604082019050919050565b6000611510601a8361171b565b915061151b82611a83565b602082019050919050565b600061153360258361171b565b915061153e82611aac565b604082019050919050565b611552816117c0565b82525050565b611561816117ca565b82525050565b600060208201905061157c60008301846113cb565b92915050565b600060208201905061159760008301846113da565b92915050565b60006020820190506115b260008301846113e9565b92915050565b600060208201905081810360008301526115d281846113f8565b905092915050565b600060208201905081810360008301526115f381611431565b9050919050565b6000602082019050818103600083015261161381611454565b9050919050565b6000602082019050818103600083015261163381611477565b9050919050565b600060208201905081810360008301526116538161149a565b9050919050565b60006020820190508181036000830152611673816114bd565b9050919050565b60006020820190508181036000830152611693816114e0565b9050919050565b600060208201905081810360008301526116b381611503565b9050919050565b600060208201905081810360008301526116d381611526565b9050919050565b60006020820190506116ef6000830184611549565b92915050565b600060208201905061170a6000830184611558565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611737826117c0565b9150611742836117c0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561177757611776611860565b5b828201905092915050565b600061178d826117a0565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60006117e2826117e9565b9050919050565b60006117f4826117a0565b9050919050565b60005b838110156118195780820151818401526020810190506117fe565b83811115611828576000848401525b50505050565b6000600282049050600182168061184657607f821691505b6020821081141561185a5761185961188f565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f496e73756666696369656e7420746f20636f7665722066656573000000000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b611b0481611782565b8114611b0f57600080fd5b50565b611b1b816117c0565b8114611b2657600080fd5b5056fea26469706673582212202805a24f8a281a50f63d779a254eee4e46db5d4d921080724b8d415e037694db64736f6c63430008030033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000001e0facc2e7aee4e79b4cce2e32ca18021678be29
-----Decoded View---------------
Arg [0] : gcxProxyAddress (address): 0x1E0FACc2e7AeE4e79B4cCe2e32Ca18021678be29
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000001e0facc2e7aee4e79b4cce2e32ca18021678be29
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 ]
[ 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.