Source Code
Latest 25 from a total of 151 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Claim | 22030931 | 365 days ago | IN | 0 ETH | 0.00032968 | ||||
| Swap | 22030918 | 365 days ago | IN | 0 ETH | 0.00032975 | ||||
| Swap | 22030214 | 365 days ago | IN | 0 ETH | 0.00003404 | ||||
| Swap | 22030191 | 365 days ago | IN | 0 ETH | 0.00009541 | ||||
| Claim | 21666154 | 416 days ago | IN | 0 ETH | 0.00470492 | ||||
| Swap | 21666146 | 416 days ago | IN | 0 ETH | 0.00456405 | ||||
| Claim | 21621590 | 422 days ago | IN | 0 ETH | 0.00047926 | ||||
| Claim | 21604009 | 425 days ago | IN | 0 ETH | 0.00054814 | ||||
| Swap | 21603463 | 425 days ago | IN | 0 ETH | 0.00042816 | ||||
| Claim | 21579577 | 428 days ago | IN | 0 ETH | 0.00106746 | ||||
| Swap | 21579559 | 428 days ago | IN | 0 ETH | 0.00099635 | ||||
| Claim | 21544097 | 433 days ago | IN | 0 ETH | 0.00176429 | ||||
| Swap | 21544090 | 433 days ago | IN | 0 ETH | 0.00153946 | ||||
| Claim | 21307367 | 466 days ago | IN | 0 ETH | 0.00133226 | ||||
| Claim | 21215414 | 479 days ago | IN | 0 ETH | 0.00253184 | ||||
| Swap | 21215407 | 479 days ago | IN | 0 ETH | 0.00255564 | ||||
| Claim | 21112558 | 493 days ago | IN | 0 ETH | 0.00064697 | ||||
| Swap | 21112555 | 493 days ago | IN | 0 ETH | 0.00061412 | ||||
| Claim | 21101737 | 495 days ago | IN | 0 ETH | 0.00115511 | ||||
| Claim | 21078349 | 498 days ago | IN | 0 ETH | 0.00171625 | ||||
| Claim | 21072017 | 499 days ago | IN | 0 ETH | 0.00230294 | ||||
| Swap | 21071997 | 499 days ago | IN | 0 ETH | 0.00216912 | ||||
| Claim | 21059083 | 501 days ago | IN | 0 ETH | 0.00143607 | ||||
| Swap | 21059069 | 501 days ago | IN | 0 ETH | 0.00118636 | ||||
| Claim | 21039210 | 503 days ago | IN | 0 ETH | 0.00106527 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0x536F8D62...E3c5a29b1 The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
Swap
Compiler Version
v0.8.26+commit.8a97fa7a
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2024-07-16
*/
// SPDX-License-Identifier: UNLICENSED
// File: @openzeppelin/contracts/token/ERC20/IERC20.sol
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)
pragma solidity ^0.8.20;
/**
* @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 value of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the value of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool);
/**
* @dev Moves a `value` amount of tokens from `from` to `to` using the
* allowance mechanism. `value` 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 value) external returns (bool);
}
// File: @openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol
// OpenZeppelin Contracts (last updated v5.0.0) (proxy/utils/Initializable.sol)
pragma solidity ^0.8.20;
/**
* @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed
* behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an
* external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer
* function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.
*
* The initialization functions use a version number. Once a version number is used, it is consumed and cannot be
* reused. This mechanism prevents re-execution of each "step" but allows the creation of new initialization steps in
* case an upgrade adds a module that needs to be initialized.
*
* For example:
*
* [.hljs-theme-light.nopadding]
* ```solidity
* contract MyToken is ERC20Upgradeable {
* function initialize() initializer public {
* __ERC20_init("MyToken", "MTK");
* }
* }
*
* contract MyTokenV2 is MyToken, ERC20PermitUpgradeable {
* function initializeV2() reinitializer(2) public {
* __ERC20Permit_init("MyToken");
* }
* }
* ```
*
* TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as
* possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}.
*
* CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure
* that all initializers are idempotent. This is not verified automatically as constructors are by Solidity.
*
* [CAUTION]
* ====
* Avoid leaving a contract uninitialized.
*
* An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation
* contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke
* the {_disableInitializers} function in the constructor to automatically lock it when it is deployed:
*
* [.hljs-theme-light.nopadding]
* ```
* /// @custom:oz-upgrades-unsafe-allow constructor
* constructor() {
* _disableInitializers();
* }
* ```
* ====
*/
abstract contract Initializable {
/**
* @dev Storage of the initializable contract.
*
* It's implemented on a custom ERC-7201 namespace to reduce the risk of storage collisions
* when using with upgradeable contracts.
*
* @custom:storage-location erc7201:openzeppelin.storage.Initializable
*/
struct InitializableStorage {
/**
* @dev Indicates that the contract has been initialized.
*/
uint64 _initialized;
/**
* @dev Indicates that the contract is in the process of being initialized.
*/
bool _initializing;
}
// keccak256(abi.encode(uint256(keccak256("openzeppelin.storage.Initializable")) - 1)) & ~bytes32(uint256(0xff))
bytes32 private constant INITIALIZABLE_STORAGE = 0xf0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00;
/**
* @dev The contract is already initialized.
*/
error InvalidInitialization();
/**
* @dev The contract is not initializing.
*/
error NotInitializing();
/**
* @dev Triggered when the contract has been initialized or reinitialized.
*/
event Initialized(uint64 version);
/**
* @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope,
* `onlyInitializing` functions can be used to initialize parent contracts.
*
* Similar to `reinitializer(1)`, except that in the context of a constructor an `initializer` may be invoked any
* number of times. This behavior in the constructor can be useful during testing and is not expected to be used in
* production.
*
* Emits an {Initialized} event.
*/
modifier initializer() {
// solhint-disable-next-line var-name-mixedcase
InitializableStorage storage $ = _getInitializableStorage();
// Cache values to avoid duplicated sloads
bool isTopLevelCall = !$._initializing;
uint64 initialized = $._initialized;
// Allowed calls:
// - initialSetup: the contract is not in the initializing state and no previous version was
// initialized
// - construction: the contract is initialized at version 1 (no reininitialization) and the
// current contract is just being deployed
bool initialSetup = initialized == 0 && isTopLevelCall;
bool construction = initialized == 1 && address(this).code.length == 0;
if (!initialSetup && !construction) {
revert InvalidInitialization();
}
$._initialized = 1;
if (isTopLevelCall) {
$._initializing = true;
}
_;
if (isTopLevelCall) {
$._initializing = false;
emit Initialized(1);
}
}
/**
* @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the
* contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be
* used to initialize parent contracts.
*
* A reinitializer may be used after the original initialization step. This is essential to configure modules that
* are added through upgrades and that require initialization.
*
* When `version` is 1, this modifier is similar to `initializer`, except that functions marked with `reinitializer`
* cannot be nested. If one is invoked in the context of another, execution will revert.
*
* Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in
* a contract, executing them in the right order is up to the developer or operator.
*
* WARNING: Setting the version to 2**64 - 1 will prevent any future reinitialization.
*
* Emits an {Initialized} event.
*/
modifier reinitializer(uint64 version) {
// solhint-disable-next-line var-name-mixedcase
InitializableStorage storage $ = _getInitializableStorage();
if ($._initializing || $._initialized >= version) {
revert InvalidInitialization();
}
$._initialized = version;
$._initializing = true;
_;
$._initializing = false;
emit Initialized(version);
}
/**
* @dev Modifier to protect an initialization function so that it can only be invoked by functions with the
* {initializer} and {reinitializer} modifiers, directly or indirectly.
*/
modifier onlyInitializing() {
_checkInitializing();
_;
}
/**
* @dev Reverts if the contract is not in an initializing state. See {onlyInitializing}.
*/
function _checkInitializing() internal view virtual {
if (!_isInitializing()) {
revert NotInitializing();
}
}
/**
* @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call.
* Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized
* to any version. It is recommended to use this to lock implementation contracts that are designed to be called
* through proxies.
*
* Emits an {Initialized} event the first time it is successfully executed.
*/
function _disableInitializers() internal virtual {
// solhint-disable-next-line var-name-mixedcase
InitializableStorage storage $ = _getInitializableStorage();
if ($._initializing) {
revert InvalidInitialization();
}
if ($._initialized != type(uint64).max) {
$._initialized = type(uint64).max;
emit Initialized(type(uint64).max);
}
}
/**
* @dev Returns the highest version that has been initialized. See {reinitializer}.
*/
function _getInitializedVersion() internal view returns (uint64) {
return _getInitializableStorage()._initialized;
}
/**
* @dev Returns `true` if the contract is currently initializing. See {onlyInitializing}.
*/
function _isInitializing() internal view returns (bool) {
return _getInitializableStorage()._initializing;
}
/**
* @dev Returns a pointer to the storage namespace.
*/
// solhint-disable-next-line var-name-mixedcase
function _getInitializableStorage() private pure returns (InitializableStorage storage $) {
assembly {
$.slot := INITIALIZABLE_STORAGE
}
}
}
// File: swapStatic.sol
pragma solidity ^0.8.24;
contract Swap is Initializable {
struct Vesting {
address beneficiary;
uint256 cliffDuration;
uint totalAmount;
uint start;
uint duration;
uint lastClaimed;
uint totalClaimed;
address contractAddress;
}
error NotOwner();
error SwapFailed();
event TokensSwapped(
address indexed user,
address indexed oldToken,
address indexed newToken,
uint amount
);
IERC20 public oldToken;
IERC20 public newToken;
address public owner;
mapping(address => Vesting) public vestings;
uint256 public cliffDuration;
uint256 public duration;
modifier onlyOwner() {
if (msg.sender != owner) {
revert NotOwner();
}
_;
}
function initialize(
address _oldToken,
address _newToken,
address _owner,
uint _cliffDuration,
uint _duration
) external initializer {
oldToken = IERC20(_oldToken);
newToken = IERC20(_newToken);
owner = _owner;
cliffDuration = _cliffDuration; // No cliff duration
duration = _duration; // Duration from July 1 to September 29, 2024
}
function isClaimable() external view returns (bool) {
return vestings[msg.sender].start != 0;
}
function setOldToken(address _token) external onlyOwner {
oldToken = IERC20(_token);
}
function setNewToken(address _token) external onlyOwner {
newToken = IERC20(_token);
}
// add token address as a parameter
function withdrawToken(
uint amount,
address tokenAddress
) external onlyOwner {
require(
amount <= IERC20(tokenAddress).balanceOf(address(this)),
"Insufficient Balance"
);
bool success = IERC20(tokenAddress).transfer(msg.sender, amount);
require(success, "Transfer Failed");
}
function calculateAmount() public view returns (uint amount) {
Vesting memory vesting = vestings[msg.sender];
uint vestingStart = 1719888000; // July 1, 2024
uint vestingEnd = 1727568000; // September 29, 2024
require(block.timestamp >= vestingStart, "Vesting Period didn't start yet");
if (block.timestamp >= vestingEnd) {
amount = vesting.totalAmount - vesting.totalClaimed;
} else {
uint timeElapsed;
if (vesting.lastClaimed != 0) {
timeElapsed = block.timestamp - vesting.lastClaimed;
} else {
timeElapsed = block.timestamp - vesting.start;
}
amount = (timeElapsed * vesting.totalAmount) / (vesting.duration * 1 days);
}
}
// add claim amount function
function swap() external returns (bool _success) {
uint amount = oldToken.balanceOf(msg.sender);
// prevents swapping zero(0) amount
require(amount > 0, "Zero Amount");
Vesting memory _vesting = Vesting(
msg.sender,
cliffDuration,
amount,
1719888000, // July 1, 2024
duration,
0,
0,
address(newToken)
);
vestings[msg.sender] = _vesting;
_success = true;
if (_success) {
emit TokensSwapped(
msg.sender,
address(oldToken),
address(newToken),
amount
);
} else {
revert SwapFailed();
}
}
function claim() external {
Vesting memory vesting = vestings[msg.sender];
require(
vesting.beneficiary == msg.sender,
"Only beneficiary can claim"
);
uint amount = calculateAmount();
require(amount > 0, "Amount must be greater than zero");
require(
amount <= vesting.totalAmount - vesting.totalClaimed,
"Insufficient amount to be claimed"
);
// transfer from approved balance given by msg.sender
bool success = oldToken.transferFrom(msg.sender, address(this), amount);
require(success, "Swapping failed");
vesting.lastClaimed = block.timestamp;
vesting.totalClaimed += amount;
vestings[msg.sender] = vesting;
bool success2 = newToken.transferFrom(owner, msg.sender, amount);
require(success2, "Swapping failed");
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"name":"InvalidInitialization","type":"error"},{"inputs":[],"name":"NotInitializing","type":"error"},{"inputs":[],"name":"NotOwner","type":"error"},{"inputs":[],"name":"SwapFailed","type":"error"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint64","name":"version","type":"uint64"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"address","name":"oldToken","type":"address"},{"indexed":true,"internalType":"address","name":"newToken","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"TokensSwapped","type":"event"},{"inputs":[],"name":"calculateAmount","outputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cliffDuration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"duration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_oldToken","type":"address"},{"internalType":"address","name":"_newToken","type":"address"},{"internalType":"address","name":"_owner","type":"address"},{"internalType":"uint256","name":"_cliffDuration","type":"uint256"},{"internalType":"uint256","name":"_duration","type":"uint256"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isClaimable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"newToken","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"oldToken","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":[{"internalType":"address","name":"_token","type":"address"}],"name":"setNewToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"setOldToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swap","outputs":[{"internalType":"bool","name":"_success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"vestings","outputs":[{"internalType":"address","name":"beneficiary","type":"address"},{"internalType":"uint256","name":"cliffDuration","type":"uint256"},{"internalType":"uint256","name":"totalAmount","type":"uint256"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"duration","type":"uint256"},{"internalType":"uint256","name":"lastClaimed","type":"uint256"},{"internalType":"uint256","name":"totalClaimed","type":"uint256"},{"internalType":"address","name":"contractAddress","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"tokenAddress","type":"address"}],"name":"withdrawToken","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
0x6080604052348015600e575f80fd5b50611dcf8061001c5f395ff3fe608060405234801561000f575f80fd5b50600436106100e8575f3560e01c80638da5cb5b1161008a578063be4b177211610064578063be4b1772146101fe578063c42bd05a1461021a578063d85349f714610238578063daf4986314610256576100e8565b80638da5cb5b146101a6578063a6b63eb8146101c4578063b31c710a146101e0576100e8565b80635ed411e5116100c65780635ed411e51461013057806374478bb31461014c5780638119c0651461016a5780638595475e14610188576100e8565b80630fb5a6b4146100ec5780634e71d92d1461010a5780635b7a50f714610114575b5f80fd5b6100f461028d565b60405161010191906114d1565b60405180910390f35b610112610293565b005b61012e60048036038101906101299190611548565b6107ea565b005b61014a60048036038101906101459190611548565b6108b2565b005b61015461097b565b604051610161919061158d565b60405180910390f35b6101726109c5565b60405161017f919061158d565b60405180910390f35b610190610d3d565b60405161019d91906114d1565b60405180910390f35b6101ae610f51565b6040516101bb91906115b5565b60405180910390f35b6101de60048036038101906101d991906115f8565b610f76565b005b6101e86111bf565b6040516101f591906116ca565b60405180910390f35b610218600480360381019061021391906116e3565b6111e2565b005b6102226113e5565b60405161022f91906116ca565b60405180910390f35b61024061140a565b60405161024d91906114d1565b60405180910390f35b610270600480360381019061026b9190611548565b611410565b604051610284989796959493929190611721565b60405180910390f35b60055481565b5f60035f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20604051806101000160405290815f82015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001600182015481526020016002820154815260200160038201548152602001600482015481526020016005820154815260200160068201548152602001600782015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152505090503373ffffffffffffffffffffffffffffffffffffffff16815f015173ffffffffffffffffffffffffffffffffffffffff1614610435576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161042c906117f7565b60405180910390fd5b5f61043e610d3d565b90505f8111610482576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104799061185f565b60405180910390fd5b8160c00151826040015161049691906118aa565b8111156104d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104cf9061194d565b60405180910390fd5b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd3330856040518463ffffffff1660e01b81526004016105369392919061196b565b6020604051808303815f875af1158015610552573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061057691906119ca565b9050806105b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105af90611a3f565b60405180910390fd5b428360a0018181525050818360c0018181516105d49190611a5d565b915081815250508260035f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f820151815f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506020820151816001015560408201518160020155606082015181600301556080820151816004015560a0820151816005015560c0820151816006015560e0820151816007015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055509050505f60015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd60025f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1633866040518463ffffffff1660e01b81526004016107629392919061196b565b6020604051808303815f875af115801561077e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107a291906119ca565b9050806107e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107db90611a3f565b60405180910390fd5b50505050565b60025f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610870576040517f30cd747100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60025f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610938576040517f30cd747100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f8060035f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20600301541415905090565b5f805f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401610a1f91906115b5565b602060405180830381865afa158015610a3a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a5e9190611aa4565b90505f8111610aa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9990611b19565b60405180910390fd5b5f6040518061010001604052803373ffffffffffffffffffffffffffffffffffffffff16815260200160045481526020018381526020016366836880815260200160055481526020015f81526020015f815260200160015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681525090508060035f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f820151815f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506020820151816001015560408201518160020155606082015181600301556080820151816004015560a0820151816005015560c0820151816006015560e0820151816007015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550905050600192508215610d065760015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8d305eb0dd4191c0e7e56004355dbcb1312a9d8c9b2f8ec942a31c9c3e443e9d85604051610cf991906114d1565b60405180910390a4610d38565b6040517f81ceff3000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505090565b5f8060035f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20604051806101000160405290815f82015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001600182015481526020016002820154815260200160038201548152602001600482015481526020016005820154815260200160068201548152602001600782015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152505090505f636683688090505f6366f89880905081421015610ec2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb990611b81565b60405180910390fd5b804210610ee4578260c001518360400151610edd91906118aa565b9350610f4b565b5f808460a0015114610f07578360a0015142610f0091906118aa565b9050610f1a565b836060015142610f1791906118aa565b90505b620151808460800151610f2d9190611b9f565b846040015182610f3d9190611b9f565b610f479190611c0d565b9450505b50505090565b60025f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f610f7f611492565b90505f815f0160089054906101000a900460ff161590505f825f015f9054906101000a900467ffffffffffffffff1690505f808267ffffffffffffffff16148015610fc75750825b90505f60018367ffffffffffffffff16148015610ffa57505f3073ffffffffffffffffffffffffffffffffffffffff163b145b905081158015611008575080155b1561103f576040517ff92ee8a900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001855f015f6101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550831561108c576001855f0160086101000a81548160ff0219169083151502179055505b895f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508860015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508760025f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550866004819055508560058190555083156111b3575f855f0160086101000a81548160ff0219169083151502179055507fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d260016040516111aa9190611c89565b60405180910390a15b50505050505050505050565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60025f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611268576040517f30cd747100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016112a191906115b5565b602060405180830381865afa1580156112bc573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112e09190611aa4565b821115611322576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131990611cec565b60405180910390fd5b5f8173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33856040518363ffffffff1660e01b815260040161135e929190611d0a565b6020604051808303815f875af115801561137a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061139e91906119ca565b9050806113e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d790611d7b565b60405180910390fd5b505050565b60015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60045481565b6003602052805f5260405f205f91509050805f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690806001015490806002015490806003015490806004015490806005015490806006015490806007015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905088565b5f7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00905090565b5f819050919050565b6114cb816114b9565b82525050565b5f6020820190506114e45f8301846114c2565b92915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611517826114ee565b9050919050565b6115278161150d565b8114611531575f80fd5b50565b5f813590506115428161151e565b92915050565b5f6020828403121561155d5761155c6114ea565b5b5f61156a84828501611534565b91505092915050565b5f8115159050919050565b61158781611573565b82525050565b5f6020820190506115a05f83018461157e565b92915050565b6115af8161150d565b82525050565b5f6020820190506115c85f8301846115a6565b92915050565b6115d7816114b9565b81146115e1575f80fd5b50565b5f813590506115f2816115ce565b92915050565b5f805f805f60a08688031215611611576116106114ea565b5b5f61161e88828901611534565b955050602061162f88828901611534565b945050604061164088828901611534565b9350506060611651888289016115e4565b9250506080611662888289016115e4565b9150509295509295909350565b5f819050919050565b5f61169261168d611688846114ee565b61166f565b6114ee565b9050919050565b5f6116a382611678565b9050919050565b5f6116b482611699565b9050919050565b6116c4816116aa565b82525050565b5f6020820190506116dd5f8301846116bb565b92915050565b5f80604083850312156116f9576116f86114ea565b5b5f611706858286016115e4565b925050602061171785828601611534565b9150509250929050565b5f610100820190506117355f83018b6115a6565b611742602083018a6114c2565b61174f60408301896114c2565b61175c60608301886114c2565b61176960808301876114c2565b61177660a08301866114c2565b61178360c08301856114c2565b61179060e08301846115a6565b9998505050505050505050565b5f82825260208201905092915050565b7f4f6e6c792062656e65666963696172792063616e20636c61696d0000000000005f82015250565b5f6117e1601a8361179d565b91506117ec826117ad565b602082019050919050565b5f6020820190508181035f83015261180e816117d5565b9050919050565b7f416d6f756e74206d7573742062652067726561746572207468616e207a65726f5f82015250565b5f61184960208361179d565b915061185482611815565b602082019050919050565b5f6020820190508181035f8301526118768161183d565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6118b4826114b9565b91506118bf836114b9565b92508282039050818111156118d7576118d661187d565b5b92915050565b7f496e73756666696369656e7420616d6f756e7420746f20626520636c61696d655f8201527f6400000000000000000000000000000000000000000000000000000000000000602082015250565b5f61193760218361179d565b9150611942826118dd565b604082019050919050565b5f6020820190508181035f8301526119648161192b565b9050919050565b5f60608201905061197e5f8301866115a6565b61198b60208301856115a6565b61199860408301846114c2565b949350505050565b6119a981611573565b81146119b3575f80fd5b50565b5f815190506119c4816119a0565b92915050565b5f602082840312156119df576119de6114ea565b5b5f6119ec848285016119b6565b91505092915050565b7f5377617070696e67206661696c656400000000000000000000000000000000005f82015250565b5f611a29600f8361179d565b9150611a34826119f5565b602082019050919050565b5f6020820190508181035f830152611a5681611a1d565b9050919050565b5f611a67826114b9565b9150611a72836114b9565b9250828201905080821115611a8a57611a8961187d565b5b92915050565b5f81519050611a9e816115ce565b92915050565b5f60208284031215611ab957611ab86114ea565b5b5f611ac684828501611a90565b91505092915050565b7f5a65726f20416d6f756e740000000000000000000000000000000000000000005f82015250565b5f611b03600b8361179d565b9150611b0e82611acf565b602082019050919050565b5f6020820190508181035f830152611b3081611af7565b9050919050565b7f56657374696e6720506572696f64206469646e277420737461727420796574005f82015250565b5f611b6b601f8361179d565b9150611b7682611b37565b602082019050919050565b5f6020820190508181035f830152611b9881611b5f565b9050919050565b5f611ba9826114b9565b9150611bb4836114b9565b9250828202611bc2816114b9565b91508282048414831517611bd957611bd861187d565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f611c17826114b9565b9150611c22836114b9565b925082611c3257611c31611be0565b5b828204905092915050565b5f819050919050565b5f67ffffffffffffffff82169050919050565b5f611c73611c6e611c6984611c3d565b61166f565b611c46565b9050919050565b611c8381611c59565b82525050565b5f602082019050611c9c5f830184611c7a565b92915050565b7f496e73756666696369656e742042616c616e63650000000000000000000000005f82015250565b5f611cd660148361179d565b9150611ce182611ca2565b602082019050919050565b5f6020820190508181035f830152611d0381611cca565b9050919050565b5f604082019050611d1d5f8301856115a6565b611d2a60208301846114c2565b9392505050565b7f5472616e73666572204661696c656400000000000000000000000000000000005f82015250565b5f611d65600f8361179d565b9150611d7082611d31565b602082019050919050565b5f6020820190508181035f830152611d9281611d59565b905091905056fea2646970667358221220d2bac8b5d70f9e9aa2814e59ab398c1dc27099235308a7d2623d6fb0b1f5ebf364736f6c634300081a0033
Deployed Bytecode
0x608060405234801561000f575f80fd5b50600436106100e8575f3560e01c80638da5cb5b1161008a578063be4b177211610064578063be4b1772146101fe578063c42bd05a1461021a578063d85349f714610238578063daf4986314610256576100e8565b80638da5cb5b146101a6578063a6b63eb8146101c4578063b31c710a146101e0576100e8565b80635ed411e5116100c65780635ed411e51461013057806374478bb31461014c5780638119c0651461016a5780638595475e14610188576100e8565b80630fb5a6b4146100ec5780634e71d92d1461010a5780635b7a50f714610114575b5f80fd5b6100f461028d565b60405161010191906114d1565b60405180910390f35b610112610293565b005b61012e60048036038101906101299190611548565b6107ea565b005b61014a60048036038101906101459190611548565b6108b2565b005b61015461097b565b604051610161919061158d565b60405180910390f35b6101726109c5565b60405161017f919061158d565b60405180910390f35b610190610d3d565b60405161019d91906114d1565b60405180910390f35b6101ae610f51565b6040516101bb91906115b5565b60405180910390f35b6101de60048036038101906101d991906115f8565b610f76565b005b6101e86111bf565b6040516101f591906116ca565b60405180910390f35b610218600480360381019061021391906116e3565b6111e2565b005b6102226113e5565b60405161022f91906116ca565b60405180910390f35b61024061140a565b60405161024d91906114d1565b60405180910390f35b610270600480360381019061026b9190611548565b611410565b604051610284989796959493929190611721565b60405180910390f35b60055481565b5f60035f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20604051806101000160405290815f82015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001600182015481526020016002820154815260200160038201548152602001600482015481526020016005820154815260200160068201548152602001600782015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152505090503373ffffffffffffffffffffffffffffffffffffffff16815f015173ffffffffffffffffffffffffffffffffffffffff1614610435576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161042c906117f7565b60405180910390fd5b5f61043e610d3d565b90505f8111610482576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104799061185f565b60405180910390fd5b8160c00151826040015161049691906118aa565b8111156104d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104cf9061194d565b60405180910390fd5b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd3330856040518463ffffffff1660e01b81526004016105369392919061196b565b6020604051808303815f875af1158015610552573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061057691906119ca565b9050806105b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105af90611a3f565b60405180910390fd5b428360a0018181525050818360c0018181516105d49190611a5d565b915081815250508260035f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f820151815f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506020820151816001015560408201518160020155606082015181600301556080820151816004015560a0820151816005015560c0820151816006015560e0820151816007015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055509050505f60015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd60025f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1633866040518463ffffffff1660e01b81526004016107629392919061196b565b6020604051808303815f875af115801561077e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107a291906119ca565b9050806107e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107db90611a3f565b60405180910390fd5b50505050565b60025f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610870576040517f30cd747100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60025f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610938576040517f30cd747100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f8060035f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20600301541415905090565b5f805f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401610a1f91906115b5565b602060405180830381865afa158015610a3a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a5e9190611aa4565b90505f8111610aa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9990611b19565b60405180910390fd5b5f6040518061010001604052803373ffffffffffffffffffffffffffffffffffffffff16815260200160045481526020018381526020016366836880815260200160055481526020015f81526020015f815260200160015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681525090508060035f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f820151815f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506020820151816001015560408201518160020155606082015181600301556080820151816004015560a0820151816005015560c0820151816006015560e0820151816007015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550905050600192508215610d065760015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8d305eb0dd4191c0e7e56004355dbcb1312a9d8c9b2f8ec942a31c9c3e443e9d85604051610cf991906114d1565b60405180910390a4610d38565b6040517f81ceff3000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505090565b5f8060035f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20604051806101000160405290815f82015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001600182015481526020016002820154815260200160038201548152602001600482015481526020016005820154815260200160068201548152602001600782015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152505090505f636683688090505f6366f89880905081421015610ec2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb990611b81565b60405180910390fd5b804210610ee4578260c001518360400151610edd91906118aa565b9350610f4b565b5f808460a0015114610f07578360a0015142610f0091906118aa565b9050610f1a565b836060015142610f1791906118aa565b90505b620151808460800151610f2d9190611b9f565b846040015182610f3d9190611b9f565b610f479190611c0d565b9450505b50505090565b60025f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f610f7f611492565b90505f815f0160089054906101000a900460ff161590505f825f015f9054906101000a900467ffffffffffffffff1690505f808267ffffffffffffffff16148015610fc75750825b90505f60018367ffffffffffffffff16148015610ffa57505f3073ffffffffffffffffffffffffffffffffffffffff163b145b905081158015611008575080155b1561103f576040517ff92ee8a900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001855f015f6101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550831561108c576001855f0160086101000a81548160ff0219169083151502179055505b895f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508860015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508760025f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550866004819055508560058190555083156111b3575f855f0160086101000a81548160ff0219169083151502179055507fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d260016040516111aa9190611c89565b60405180910390a15b50505050505050505050565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60025f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611268576040517f30cd747100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016112a191906115b5565b602060405180830381865afa1580156112bc573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112e09190611aa4565b821115611322576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131990611cec565b60405180910390fd5b5f8173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33856040518363ffffffff1660e01b815260040161135e929190611d0a565b6020604051808303815f875af115801561137a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061139e91906119ca565b9050806113e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d790611d7b565b60405180910390fd5b505050565b60015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60045481565b6003602052805f5260405f205f91509050805f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690806001015490806002015490806003015490806004015490806005015490806006015490806007015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905088565b5f7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00905090565b5f819050919050565b6114cb816114b9565b82525050565b5f6020820190506114e45f8301846114c2565b92915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611517826114ee565b9050919050565b6115278161150d565b8114611531575f80fd5b50565b5f813590506115428161151e565b92915050565b5f6020828403121561155d5761155c6114ea565b5b5f61156a84828501611534565b91505092915050565b5f8115159050919050565b61158781611573565b82525050565b5f6020820190506115a05f83018461157e565b92915050565b6115af8161150d565b82525050565b5f6020820190506115c85f8301846115a6565b92915050565b6115d7816114b9565b81146115e1575f80fd5b50565b5f813590506115f2816115ce565b92915050565b5f805f805f60a08688031215611611576116106114ea565b5b5f61161e88828901611534565b955050602061162f88828901611534565b945050604061164088828901611534565b9350506060611651888289016115e4565b9250506080611662888289016115e4565b9150509295509295909350565b5f819050919050565b5f61169261168d611688846114ee565b61166f565b6114ee565b9050919050565b5f6116a382611678565b9050919050565b5f6116b482611699565b9050919050565b6116c4816116aa565b82525050565b5f6020820190506116dd5f8301846116bb565b92915050565b5f80604083850312156116f9576116f86114ea565b5b5f611706858286016115e4565b925050602061171785828601611534565b9150509250929050565b5f610100820190506117355f83018b6115a6565b611742602083018a6114c2565b61174f60408301896114c2565b61175c60608301886114c2565b61176960808301876114c2565b61177660a08301866114c2565b61178360c08301856114c2565b61179060e08301846115a6565b9998505050505050505050565b5f82825260208201905092915050565b7f4f6e6c792062656e65666963696172792063616e20636c61696d0000000000005f82015250565b5f6117e1601a8361179d565b91506117ec826117ad565b602082019050919050565b5f6020820190508181035f83015261180e816117d5565b9050919050565b7f416d6f756e74206d7573742062652067726561746572207468616e207a65726f5f82015250565b5f61184960208361179d565b915061185482611815565b602082019050919050565b5f6020820190508181035f8301526118768161183d565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6118b4826114b9565b91506118bf836114b9565b92508282039050818111156118d7576118d661187d565b5b92915050565b7f496e73756666696369656e7420616d6f756e7420746f20626520636c61696d655f8201527f6400000000000000000000000000000000000000000000000000000000000000602082015250565b5f61193760218361179d565b9150611942826118dd565b604082019050919050565b5f6020820190508181035f8301526119648161192b565b9050919050565b5f60608201905061197e5f8301866115a6565b61198b60208301856115a6565b61199860408301846114c2565b949350505050565b6119a981611573565b81146119b3575f80fd5b50565b5f815190506119c4816119a0565b92915050565b5f602082840312156119df576119de6114ea565b5b5f6119ec848285016119b6565b91505092915050565b7f5377617070696e67206661696c656400000000000000000000000000000000005f82015250565b5f611a29600f8361179d565b9150611a34826119f5565b602082019050919050565b5f6020820190508181035f830152611a5681611a1d565b9050919050565b5f611a67826114b9565b9150611a72836114b9565b9250828201905080821115611a8a57611a8961187d565b5b92915050565b5f81519050611a9e816115ce565b92915050565b5f60208284031215611ab957611ab86114ea565b5b5f611ac684828501611a90565b91505092915050565b7f5a65726f20416d6f756e740000000000000000000000000000000000000000005f82015250565b5f611b03600b8361179d565b9150611b0e82611acf565b602082019050919050565b5f6020820190508181035f830152611b3081611af7565b9050919050565b7f56657374696e6720506572696f64206469646e277420737461727420796574005f82015250565b5f611b6b601f8361179d565b9150611b7682611b37565b602082019050919050565b5f6020820190508181035f830152611b9881611b5f565b9050919050565b5f611ba9826114b9565b9150611bb4836114b9565b9250828202611bc2816114b9565b91508282048414831517611bd957611bd861187d565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f611c17826114b9565b9150611c22836114b9565b925082611c3257611c31611be0565b5b828204905092915050565b5f819050919050565b5f67ffffffffffffffff82169050919050565b5f611c73611c6e611c6984611c3d565b61166f565b611c46565b9050919050565b611c8381611c59565b82525050565b5f602082019050611c9c5f830184611c7a565b92915050565b7f496e73756666696369656e742042616c616e63650000000000000000000000005f82015250565b5f611cd660148361179d565b9150611ce182611ca2565b602082019050919050565b5f6020820190508181035f830152611d0381611cca565b9050919050565b5f604082019050611d1d5f8301856115a6565b611d2a60208301846114c2565b9392505050565b7f5472616e73666572204661696c656400000000000000000000000000000000005f82015250565b5f611d65600f8361179d565b9150611d7082611d31565b602082019050919050565b5f6020820190508181035f830152611d9281611d59565b905091905056fea2646970667358221220d2bac8b5d70f9e9aa2814e59ab398c1dc27099235308a7d2623d6fb0b1f5ebf364736f6c634300081a0033
Deployed Bytecode Sourcemap
12176:4596:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12850:23;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15860:909;;;:::i;:::-;;13569:100;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13677;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13452:109;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15055:797;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14201:812;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12736:20;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13010:434;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12676:22;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13826:367;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12705:22;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12815:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12765:43;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;;;;;;;;12850:23;;;;:::o;15860:909::-;15897:22;15922:8;:20;15931:10;15922:20;;;;;;;;;;;;;;;15897:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15998:10;15975:33;;:7;:19;;;:33;;;15953:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;16073:11;16087:17;:15;:17::i;:::-;16073:31;;16134:1;16125:6;:10;16117:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;16237:7;:20;;;16215:7;:19;;;:42;;;;:::i;:::-;16205:6;:52;;16183:135;;;;;;;;;;;;:::i;:::-;;;;;;;;;16392:12;16407:8;;;;;;;;;;;:21;;;16429:10;16449:4;16456:6;16407:56;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;16392:71;;16482:7;16474:35;;;;;;;;;;;;:::i;:::-;;;;;;;;;16542:15;16520:7;:19;;:37;;;;;16592:6;16568:7;:20;;:30;;;;;;;:::i;:::-;;;;;;;;16632:7;16609:8;:20;16618:10;16609:20;;;;;;;;;;;;;;;:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16650:13;16666:8;;;;;;;;;;;:21;;;16688:5;;;;;;;;;;;16695:10;16707:6;16666:48;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;16650:64;;16733:8;16725:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;15886:883;;;;15860:909::o;13569:100::-;12932:5;;;;;;;;;;;12918:19;;:10;:19;;;12914:69;;12961:10;;;;;;;;;;;;;;12914:69;13654:6:::1;13636:8;::::0;:25:::1;;;;;;;;;;;;;;;;;;13569:100:::0;:::o;13677:::-;12932:5;;;;;;;;;;;12918:19;;:10;:19;;;12914:69;;12961:10;;;;;;;;;;;;;;12914:69;13762:6:::1;13744:8;;:25;;;;;;;;;;;;;;;;;;13677:100:::0;:::o;13452:109::-;13498:4;13552:1;13522:8;:20;13531:10;13522:20;;;;;;;;;;;;;;;:26;;;:31;;13515:38;;13452:109;:::o;15055:797::-;15089:13;15115:11;15129:8;;;;;;;;;;:18;;;15148:10;15129:30;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;15115:44;;15234:1;15225:6;:10;15217:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;15264:23;15290:220;;;;;;;;15312:10;15290:220;;;;;;15337:13;;15290:220;;;;15365:6;15290:220;;;;15386:10;15290:220;;;;15427:8;;15290:220;;;;15450:1;15290:220;;;;15466:1;15290:220;;;;15490:8;;;;;;;;;;;15290:220;;;;;15264:246;;15544:8;15521;:20;15530:10;15521:20;;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15576:4;15565:15;;15597:8;15593:252;;;15732:8;;;;;;;;;;;15627:154;;15696:8;;;;;;;;;;15627:154;;15659:10;15627:154;;;15760:6;15627:154;;;;;;:::i;:::-;;;;;;;;15593:252;;;15821:12;;;;;;;;;;;;;;15593:252;15104:748;;15055:797;:::o;14201:812::-;14249:11;14273:22;14298:8;:20;14307:10;14298:20;;;;;;;;;;;;;;;14273:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14331:17;14351:10;14331:30;;14388:15;14406:10;14388:28;;14478:12;14459:15;:31;;14451:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;14562:10;14543:15;:29;14539:467;;14620:7;:20;;;14598:7;:19;;;:42;;;;:::i;:::-;14589:51;;14539:467;;;14673:16;14731:1;14708:7;:19;;;:24;14704:202;;14785:7;:19;;;14767:15;:37;;;;:::i;:::-;14753:51;;14704:202;;;14877:7;:13;;;14859:15;:31;;;;:::i;:::-;14845:45;;14704:202;14987:6;14968:7;:16;;;:25;;;;:::i;:::-;14944:7;:19;;;14930:11;:33;;;;:::i;:::-;14929:65;;;;:::i;:::-;14920:74;;14658:348;14539:467;14262:751;;;14201:812;:::o;12736:20::-;;;;;;;;;;;;;:::o;13010:434::-;7238:30;7271:26;:24;:26::i;:::-;7238:59;;7362:19;7385:1;:15;;;;;;;;;;;;7384:16;7362:38;;7411:18;7432:1;:14;;;;;;;;;;;;7411:35;;7797:17;7832:1;7817:11;:16;;;:34;;;;;7837:14;7817:34;7797:54;;7862:17;7897:1;7882:11;:16;;;:50;;;;;7931:1;7910:4;7902:25;;;:30;7882:50;7862:70;;7950:12;7949:13;:30;;;;;7967:12;7966:13;7949:30;7945:93;;;8003:23;;;;;;;;;;;;;;7945:93;8065:1;8048;:14;;;:18;;;;;;;;;;;;;;;;;;8081:14;8077:69;;;8130:4;8112:1;:15;;;:22;;;;;;;;;;;;;;;;;;8077:69;13223:9:::1;13205:8;::::0;:28:::1;;;;;;;;;;;;;;;;;;13262:9;13244:8;;:28;;;;;;;;;;;;;;;;;;13291:6;13283:5;;:14;;;;;;;;;;;;;;;;;;13324;13308:13;:30;;;;13381:9;13370:8;:20;;;;8172:14:::0;8168:104;;;8221:5;8203:1;:15;;;:23;;;;;;;;;;;;;;;;;;8246:14;8258:1;8246:14;;;;;;:::i;:::-;;;;;;;;8168:104;7170:1109;;;;;13010:434;;;;;:::o;12676:22::-;;;;;;;;;;;;:::o;13826:367::-;12932:5;;;;;;;;;;;12918:19;;:10;:19;;;12914:69;;12961:10;;;;;;;;;;;;;;12914:69;13978:12:::1;13971:30;;;14010:4;13971:45;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;13961:6;:55;;13939:125;;;;;;;;;;;;:::i;:::-;;;;;;;;;14075:12;14097;14090:29;;;14120:10;14132:6;14090:49;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;14075:64;;14158:7;14150:35;;;;;;;;;;;;:::i;:::-;;;;;;;;;13928:265;13826:367:::0;;:::o;12705:22::-;;;;;;;;;;;;;:::o;12815:28::-;;;;:::o;12765:43::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;11934:174::-;11992:30;12069:21;12059:31;;11934:174;:::o;7:77:1:-;44:7;73:5;62:16;;7:77;;;:::o;90:118::-;177:24;195:5;177:24;:::i;:::-;172:3;165:37;90:118;;:::o;214:222::-;307:4;345:2;334:9;330:18;322:26;;358:71;426:1;415:9;411:17;402:6;358:71;:::i;:::-;214:222;;;;:::o;523:117::-;632:1;629;622:12;769:126;806:7;846:42;839:5;835:54;824:65;;769:126;;;:::o;901:96::-;938:7;967:24;985:5;967:24;:::i;:::-;956:35;;901:96;;;:::o;1003:122::-;1076:24;1094:5;1076:24;:::i;:::-;1069:5;1066:35;1056:63;;1115:1;1112;1105:12;1056:63;1003:122;:::o;1131:139::-;1177:5;1215:6;1202:20;1193:29;;1231:33;1258:5;1231:33;:::i;:::-;1131:139;;;;:::o;1276:329::-;1335:6;1384:2;1372:9;1363:7;1359:23;1355:32;1352:119;;;1390:79;;:::i;:::-;1352:119;1510:1;1535:53;1580:7;1571:6;1560:9;1556:22;1535:53;:::i;:::-;1525:63;;1481:117;1276:329;;;;:::o;1611:90::-;1645:7;1688:5;1681:13;1674:21;1663:32;;1611:90;;;:::o;1707:109::-;1788:21;1803:5;1788:21;:::i;:::-;1783:3;1776:34;1707:109;;:::o;1822:210::-;1909:4;1947:2;1936:9;1932:18;1924:26;;1960:65;2022:1;2011:9;2007:17;1998:6;1960:65;:::i;:::-;1822:210;;;;:::o;2038:118::-;2125:24;2143:5;2125:24;:::i;:::-;2120:3;2113:37;2038:118;;:::o;2162:222::-;2255:4;2293:2;2282:9;2278:18;2270:26;;2306:71;2374:1;2363:9;2359:17;2350:6;2306:71;:::i;:::-;2162:222;;;;:::o;2390:122::-;2463:24;2481:5;2463:24;:::i;:::-;2456:5;2453:35;2443:63;;2502:1;2499;2492:12;2443:63;2390:122;:::o;2518:139::-;2564:5;2602:6;2589:20;2580:29;;2618:33;2645:5;2618:33;:::i;:::-;2518:139;;;;:::o;2663:911::-;2758:6;2766;2774;2782;2790;2839:3;2827:9;2818:7;2814:23;2810:33;2807:120;;;2846:79;;:::i;:::-;2807:120;2966:1;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2937:117;3093:2;3119:53;3164:7;3155:6;3144:9;3140:22;3119:53;:::i;:::-;3109:63;;3064:118;3221:2;3247:53;3292:7;3283:6;3272:9;3268:22;3247:53;:::i;:::-;3237:63;;3192:118;3349:2;3375:53;3420:7;3411:6;3400:9;3396:22;3375:53;:::i;:::-;3365:63;;3320:118;3477:3;3504:53;3549:7;3540:6;3529:9;3525:22;3504:53;:::i;:::-;3494:63;;3448:119;2663:911;;;;;;;;:::o;3580:60::-;3608:3;3629:5;3622:12;;3580:60;;;:::o;3646:142::-;3696:9;3729:53;3747:34;3756:24;3774:5;3756:24;:::i;:::-;3747:34;:::i;:::-;3729:53;:::i;:::-;3716:66;;3646:142;;;:::o;3794:126::-;3844:9;3877:37;3908:5;3877:37;:::i;:::-;3864:50;;3794:126;;;:::o;3926:139::-;3989:9;4022:37;4053:5;4022:37;:::i;:::-;4009:50;;3926:139;;;:::o;4071:157::-;4171:50;4215:5;4171:50;:::i;:::-;4166:3;4159:63;4071:157;;:::o;4234:248::-;4340:4;4378:2;4367:9;4363:18;4355:26;;4391:84;4472:1;4461:9;4457:17;4448:6;4391:84;:::i;:::-;4234:248;;;;:::o;4488:474::-;4556:6;4564;4613:2;4601:9;4592:7;4588:23;4584:32;4581:119;;;4619:79;;:::i;:::-;4581:119;4739:1;4764:53;4809:7;4800:6;4789:9;4785:22;4764:53;:::i;:::-;4754:63;;4710:117;4866:2;4892:53;4937:7;4928:6;4917:9;4913:22;4892:53;:::i;:::-;4882:63;;4837:118;4488:474;;;;;:::o;4968:997::-;5257:4;5295:3;5284:9;5280:19;5272:27;;5309:71;5377:1;5366:9;5362:17;5353:6;5309:71;:::i;:::-;5390:72;5458:2;5447:9;5443:18;5434:6;5390:72;:::i;:::-;5472;5540:2;5529:9;5525:18;5516:6;5472:72;:::i;:::-;5554;5622:2;5611:9;5607:18;5598:6;5554:72;:::i;:::-;5636:73;5704:3;5693:9;5689:19;5680:6;5636:73;:::i;:::-;5719;5787:3;5776:9;5772:19;5763:6;5719:73;:::i;:::-;5802;5870:3;5859:9;5855:19;5846:6;5802:73;:::i;:::-;5885;5953:3;5942:9;5938:19;5929:6;5885:73;:::i;:::-;4968:997;;;;;;;;;;;:::o;5971:169::-;6055:11;6089:6;6084:3;6077:19;6129:4;6124:3;6120:14;6105:29;;5971:169;;;;:::o;6146:176::-;6286:28;6282:1;6274:6;6270:14;6263:52;6146:176;:::o;6328:366::-;6470:3;6491:67;6555:2;6550:3;6491:67;:::i;:::-;6484:74;;6567:93;6656:3;6567:93;:::i;:::-;6685:2;6680:3;6676:12;6669:19;;6328:366;;;:::o;6700:419::-;6866:4;6904:2;6893:9;6889:18;6881:26;;6953:9;6947:4;6943:20;6939:1;6928:9;6924:17;6917:47;6981:131;7107:4;6981:131;:::i;:::-;6973:139;;6700:419;;;:::o;7125:182::-;7265:34;7261:1;7253:6;7249:14;7242:58;7125:182;:::o;7313:366::-;7455:3;7476:67;7540:2;7535:3;7476:67;:::i;:::-;7469:74;;7552:93;7641:3;7552:93;:::i;:::-;7670:2;7665:3;7661:12;7654:19;;7313:366;;;:::o;7685:419::-;7851:4;7889:2;7878:9;7874:18;7866:26;;7938:9;7932:4;7928:20;7924:1;7913:9;7909:17;7902:47;7966:131;8092:4;7966:131;:::i;:::-;7958:139;;7685:419;;;:::o;8110:180::-;8158:77;8155:1;8148:88;8255:4;8252:1;8245:15;8279:4;8276:1;8269:15;8296:194;8336:4;8356:20;8374:1;8356:20;:::i;:::-;8351:25;;8390:20;8408:1;8390:20;:::i;:::-;8385:25;;8434:1;8431;8427:9;8419:17;;8458:1;8452:4;8449:11;8446:37;;;8463:18;;:::i;:::-;8446:37;8296:194;;;;:::o;8496:220::-;8636:34;8632:1;8624:6;8620:14;8613:58;8705:3;8700:2;8692:6;8688:15;8681:28;8496:220;:::o;8722:366::-;8864:3;8885:67;8949:2;8944:3;8885:67;:::i;:::-;8878:74;;8961:93;9050:3;8961:93;:::i;:::-;9079:2;9074:3;9070:12;9063:19;;8722:366;;;:::o;9094:419::-;9260:4;9298:2;9287:9;9283:18;9275:26;;9347:9;9341:4;9337:20;9333:1;9322:9;9318:17;9311:47;9375:131;9501:4;9375:131;:::i;:::-;9367:139;;9094:419;;;:::o;9519:442::-;9668:4;9706:2;9695:9;9691:18;9683:26;;9719:71;9787:1;9776:9;9772:17;9763:6;9719:71;:::i;:::-;9800:72;9868:2;9857:9;9853:18;9844:6;9800:72;:::i;:::-;9882;9950:2;9939:9;9935:18;9926:6;9882:72;:::i;:::-;9519:442;;;;;;:::o;9967:116::-;10037:21;10052:5;10037:21;:::i;:::-;10030:5;10027:32;10017:60;;10073:1;10070;10063:12;10017:60;9967:116;:::o;10089:137::-;10143:5;10174:6;10168:13;10159:22;;10190:30;10214:5;10190:30;:::i;:::-;10089:137;;;;:::o;10232:345::-;10299:6;10348:2;10336:9;10327:7;10323:23;10319:32;10316:119;;;10354:79;;:::i;:::-;10316:119;10474:1;10499:61;10552:7;10543:6;10532:9;10528:22;10499:61;:::i;:::-;10489:71;;10445:125;10232:345;;;;:::o;10583:165::-;10723:17;10719:1;10711:6;10707:14;10700:41;10583:165;:::o;10754:366::-;10896:3;10917:67;10981:2;10976:3;10917:67;:::i;:::-;10910:74;;10993:93;11082:3;10993:93;:::i;:::-;11111:2;11106:3;11102:12;11095:19;;10754:366;;;:::o;11126:419::-;11292:4;11330:2;11319:9;11315:18;11307:26;;11379:9;11373:4;11369:20;11365:1;11354:9;11350:17;11343:47;11407:131;11533:4;11407:131;:::i;:::-;11399:139;;11126:419;;;:::o;11551:191::-;11591:3;11610:20;11628:1;11610:20;:::i;:::-;11605:25;;11644:20;11662:1;11644:20;:::i;:::-;11639:25;;11687:1;11684;11680:9;11673:16;;11708:3;11705:1;11702:10;11699:36;;;11715:18;;:::i;:::-;11699:36;11551:191;;;;:::o;11748:143::-;11805:5;11836:6;11830:13;11821:22;;11852:33;11879:5;11852:33;:::i;:::-;11748:143;;;;:::o;11897:351::-;11967:6;12016:2;12004:9;11995:7;11991:23;11987:32;11984:119;;;12022:79;;:::i;:::-;11984:119;12142:1;12167:64;12223:7;12214:6;12203:9;12199:22;12167:64;:::i;:::-;12157:74;;12113:128;11897:351;;;;:::o;12254:161::-;12394:13;12390:1;12382:6;12378:14;12371:37;12254:161;:::o;12421:366::-;12563:3;12584:67;12648:2;12643:3;12584:67;:::i;:::-;12577:74;;12660:93;12749:3;12660:93;:::i;:::-;12778:2;12773:3;12769:12;12762:19;;12421:366;;;:::o;12793:419::-;12959:4;12997:2;12986:9;12982:18;12974:26;;13046:9;13040:4;13036:20;13032:1;13021:9;13017:17;13010:47;13074:131;13200:4;13074:131;:::i;:::-;13066:139;;12793:419;;;:::o;13218:181::-;13358:33;13354:1;13346:6;13342:14;13335:57;13218:181;:::o;13405:366::-;13547:3;13568:67;13632:2;13627:3;13568:67;:::i;:::-;13561:74;;13644:93;13733:3;13644:93;:::i;:::-;13762:2;13757:3;13753:12;13746:19;;13405:366;;;:::o;13777:419::-;13943:4;13981:2;13970:9;13966:18;13958:26;;14030:9;14024:4;14020:20;14016:1;14005:9;14001:17;13994:47;14058:131;14184:4;14058:131;:::i;:::-;14050:139;;13777:419;;;:::o;14202:410::-;14242:7;14265:20;14283:1;14265:20;:::i;:::-;14260:25;;14299:20;14317:1;14299:20;:::i;:::-;14294:25;;14354:1;14351;14347:9;14376:30;14394:11;14376:30;:::i;:::-;14365:41;;14555:1;14546:7;14542:15;14539:1;14536:22;14516:1;14509:9;14489:83;14466:139;;14585:18;;:::i;:::-;14466:139;14250:362;14202:410;;;;:::o;14618:180::-;14666:77;14663:1;14656:88;14763:4;14760:1;14753:15;14787:4;14784:1;14777:15;14804:185;14844:1;14861:20;14879:1;14861:20;:::i;:::-;14856:25;;14895:20;14913:1;14895:20;:::i;:::-;14890:25;;14934:1;14924:35;;14939:18;;:::i;:::-;14924:35;14981:1;14978;14974:9;14969:14;;14804:185;;;;:::o;14995:85::-;15040:7;15069:5;15058:16;;14995:85;;;:::o;15086:101::-;15122:7;15162:18;15155:5;15151:30;15140:41;;15086:101;;;:::o;15193:156::-;15250:9;15283:60;15300:42;15309:32;15335:5;15309:32;:::i;:::-;15300:42;:::i;:::-;15283:60;:::i;:::-;15270:73;;15193:156;;;:::o;15355:145::-;15449:44;15487:5;15449:44;:::i;:::-;15444:3;15437:57;15355:145;;:::o;15506:236::-;15606:4;15644:2;15633:9;15629:18;15621:26;;15657:78;15732:1;15721:9;15717:17;15708:6;15657:78;:::i;:::-;15506:236;;;;:::o;15748:170::-;15888:22;15884:1;15876:6;15872:14;15865:46;15748:170;:::o;15924:366::-;16066:3;16087:67;16151:2;16146:3;16087:67;:::i;:::-;16080:74;;16163:93;16252:3;16163:93;:::i;:::-;16281:2;16276:3;16272:12;16265:19;;15924:366;;;:::o;16296:419::-;16462:4;16500:2;16489:9;16485:18;16477:26;;16549:9;16543:4;16539:20;16535:1;16524:9;16520:17;16513:47;16577:131;16703:4;16577:131;:::i;:::-;16569:139;;16296:419;;;:::o;16721:332::-;16842:4;16880:2;16869:9;16865:18;16857:26;;16893:71;16961:1;16950:9;16946:17;16937:6;16893:71;:::i;:::-;16974:72;17042:2;17031:9;17027:18;17018:6;16974:72;:::i;:::-;16721:332;;;;;:::o;17059:165::-;17199:17;17195:1;17187:6;17183:14;17176:41;17059:165;:::o;17230:366::-;17372:3;17393:67;17457:2;17452:3;17393:67;:::i;:::-;17386:74;;17469:93;17558:3;17469:93;:::i;:::-;17587:2;17582:3;17578:12;17571:19;;17230:366;;;:::o;17602:419::-;17768:4;17806:2;17795:9;17791:18;17783:26;;17855:9;17849:4;17845:20;17841:1;17830:9;17826:17;17819:47;17883:131;18009:4;17883:131;:::i;:::-;17875:139;;17602:419;;;:::o
Swarm Source
ipfs://d2bac8b5d70f9e9aa2814e59ab398c1dc27099235308a7d2623d6fb0b1f5ebf3
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.