Source Code
Latest 25 from a total of 94 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Unstake | 17647684 | 980 days ago | IN | 0 ETH | 0.00326455 | ||||
| Unstake | 17404450 | 1015 days ago | IN | 0 ETH | 0.00483733 | ||||
| Unstake | 17384936 | 1017 days ago | IN | 0 ETH | 0.00918537 | ||||
| Jump | 17383827 | 1018 days ago | IN | 0 ETH | 0.00294835 | ||||
| Unstake | 17377597 | 1018 days ago | IN | 0 ETH | 0.0033654 | ||||
| Unstake | 17376487 | 1019 days ago | IN | 0 ETH | 0.00239137 | ||||
| Unstake | 17375486 | 1019 days ago | IN | 0 ETH | 0.00330442 | ||||
| Unstake | 17375311 | 1019 days ago | IN | 0 ETH | 0.00307286 | ||||
| Unstake | 17375309 | 1019 days ago | IN | 0 ETH | 0.00718905 | ||||
| Jump | 17374197 | 1019 days ago | IN | 0 ETH | 0.00244763 | ||||
| Unstake | 17370214 | 1019 days ago | IN | 0 ETH | 0.00531073 | ||||
| Jump | 17368558 | 1020 days ago | IN | 0 ETH | 0.0012421 | ||||
| Unstake | 17367920 | 1020 days ago | IN | 0 ETH | 0.00739311 | ||||
| Unstake | 17360838 | 1021 days ago | IN | 0 ETH | 0.00245772 | ||||
| Stake | 17360645 | 1021 days ago | IN | 0 ETH | 0.00264571 | ||||
| Unstake | 17360633 | 1021 days ago | IN | 0 ETH | 0.00266774 | ||||
| Unstake | 17360601 | 1021 days ago | IN | 0 ETH | 0.00262449 | ||||
| Unstake | 17360566 | 1021 days ago | IN | 0 ETH | 0.00586354 | ||||
| Unstake | 17360559 | 1021 days ago | IN | 0 ETH | 0.00446029 | ||||
| Stake | 17353978 | 1022 days ago | IN | 0 ETH | 0.00240146 | ||||
| Stake | 17353784 | 1022 days ago | IN | 0 ETH | 0.00251881 | ||||
| Unstake | 17352762 | 1022 days ago | IN | 0 ETH | 0.00223695 | ||||
| Unstake | 17352742 | 1022 days ago | IN | 0 ETH | 0.00279635 | ||||
| Stake | 17352727 | 1022 days ago | IN | 0 ETH | 0.00248973 | ||||
| Unstake | 17352383 | 1022 days ago | IN | 0 ETH | 0.00258748 |
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 0x0725660e...9238E9657 The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
Staking
Compiler Version
v0.8.18+commit.87f61d96
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.0;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
interface IBank is IERC20 {
function mint(uint) external returns (uint);
function burn(uint) external returns (uint);
function circulatingSupply() external view returns (uint);
}
interface IFavor {
function start() external;
function resetContributions() external;
function getFavors() external view returns (uint, uint);
}
interface IPoolLP {
function start() external;
}
interface IRandom {
function getRandomNb(uint) external view returns (uint);
}
contract Staking is Ownable {
struct Epoch {
uint8 winner;
uint amount;
}
IERC20 public immutable TOKEN;
IBank public immutable BANK1;
IBank public immutable BANK2;
IFavor public immutable FAVOR;
IPoolLP public immutable POOL_LP;
IRandom public immutable RANDOM;
uint public roundStartTime;
uint public UNLOCKED_DURATION = 8 hours;
uint public EPOCH_DURATION = 1 days;
uint public PAYOUT = 1000;
uint public MAX_WIN_RATE = 7500;
uint public MIN_WIN_RATE = 2500;
uint public FEE = 100;
uint private constant DENOMINATOR = 10000;
uint public epochNb;
Epoch[] public epoch;
address public receiver;
constructor(
IERC20 token,
IBank bank1,
IBank bank2,
IFavor favor,
IPoolLP poolLP,
IRandom random,
address receiver_
)
{
TOKEN = token;
BANK1 = bank1;
BANK2 = bank2;
FAVOR = favor;
POOL_LP = poolLP;
RANDOM = random;
receiver = receiver_;
}
function start() external onlyOwner {
require(roundStartTime == 0, "Already initialized");
roundStartTime = block.timestamp;
FAVOR.start();
POOL_LP.start();
}
function stake(bool bank, uint amountIn) external {
_update();
(uint amount, uint fee) = _computeAmountAndFee(amountIn);
TOKEN.transferFrom(msg.sender, address(this), amount);
if (fee > 0) TOKEN.transferFrom(msg.sender, receiver, fee);
if (!bank) BANK1.transfer(msg.sender, amount);
else BANK2.transfer(msg.sender, amount);
}
function unstake(bool bank, uint amountIn) external {
_update();
if (!bank) BANK1.transferFrom(msg.sender, address(this), amountIn);
else BANK2.transferFrom(msg.sender, address(this), amountIn);
(uint amount, uint fee) = _computeAmountAndFee(amountIn);
TOKEN.transfer(msg.sender, amount);
if (fee > 0) TOKEN.transfer(receiver, fee);
}
function jump(bool bank) external {
if (!bank) {
uint amountIn = BANK1.balanceOf(msg.sender);
(uint amount, uint fee) = _computeAmountAndFee(amountIn);
BANK1.transferFrom(msg.sender, address(this), amountIn);
BANK2.transfer(msg.sender, amount);
if (fee > 0) TOKEN.transfer(receiver, fee);
} else {
uint amountIn = BANK2.balanceOf(msg.sender);
(uint amount, uint fee) = _computeAmountAndFee(amountIn);
BANK2.transferFrom(msg.sender, address(this), amountIn);
BANK1.transfer(msg.sender, amount);
if (fee > 0) TOKEN.transfer(receiver, fee);
}
}
function setReceiver(address newReceiver) external onlyOwner {
receiver = newReceiver;
}
function updateStorage(uint[] calldata array) external onlyOwner {
UNLOCKED_DURATION = array[0];
EPOCH_DURATION = array[1];
PAYOUT = array[2];
MAX_WIN_RATE = array[3];
MIN_WIN_RATE = array[4];
FEE = array[5];
}
function epochLength() public view returns (uint) {
return epoch.length;
}
function getEpochs(uint cursor, uint size) external view returns (Epoch[] memory out) {
uint maxLength = epochLength();
uint length = size > maxLength - cursor ? maxLength - cursor : size;
out = new Epoch[](length);
for (uint i; i < length; i++) out[i] = epoch[cursor + i];
}
function getWinRates() public view returns (uint winRate1, uint winRate2) {
uint staked1 = BANK1.circulatingSupply();
uint staked2 = BANK2.circulatingSupply();
if (staked1 == 0 && staked2 == 0) return (0, 0);
winRate1 = staked1 * DENOMINATOR / (staked1 + staked2);
winRate2 = DENOMINATOR - winRate1;
}
function getWinRatesWithFavors() public view returns (uint winRate1, uint winRate2) {
(winRate1,) = getWinRates();
if (winRate1 == 0 || winRate1 == DENOMINATOR) return (0, 0);
(uint favor1, uint favor2) = FAVOR.getFavors();
if (favor1 > 0) {
winRate1 += favor1;
} else if (favor2 > 0) {
if (favor2 > winRate1) winRate1 = MIN_WIN_RATE;
else winRate1 -= favor2;
}
if (winRate1 > MAX_WIN_RATE) winRate1 = MAX_WIN_RATE;
if (winRate1 < MIN_WIN_RATE) winRate1 = MIN_WIN_RATE;
winRate2 = DENOMINATOR - winRate1;
}
function _update() internal {
uint roundStartTimeCached = roundStartTime;
require(roundStartTimeCached != 0, "Didn't start yet");
if (block.timestamp > roundStartTimeCached + EPOCH_DURATION) {
roundStartTime = block.timestamp;
_endEpoch();
} else if (block.timestamp > roundStartTimeCached + UNLOCKED_DURATION) {
revert("Tokens are locked");
}
}
function _endEpoch() internal {
(uint winRate1,) = getWinRatesWithFavors();
if (winRate1 == 0) return;
FAVOR.resetContributions();
uint randomNumber = RANDOM.getRandomNb(DENOMINATOR);
if (randomNumber < winRate1) {
uint payout = BANK2.circulatingSupply() * PAYOUT / DENOMINATOR;
BANK1.mint(payout);
BANK2.burn(payout);
epoch.push(Epoch(1,payout));
} else {
uint payout = BANK1.circulatingSupply() * PAYOUT / DENOMINATOR;
BANK2.mint(payout);
BANK1.burn(payout);
epoch.push(Epoch(2,payout));
}
epochNb += 1;
}
function _computeAmountAndFee(uint amount) internal view returns (uint, uint) {
uint fee = amount * FEE / DENOMINATOR;
amount -= fee;
return (amount, fee);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_transferOwnership(_msgSender());
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
_checkOwner();
_;
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if the sender is not the owner.
*/
function _checkOwner() internal view virtual {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address to, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `from` to `to` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 amount
) external returns (bool);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}{
"optimizer": {
"enabled": false,
"runs": 200
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"libraries": {}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"contract IBank","name":"bank1","type":"address"},{"internalType":"contract IBank","name":"bank2","type":"address"},{"internalType":"contract IFavor","name":"favor","type":"address"},{"internalType":"contract IPoolLP","name":"poolLP","type":"address"},{"internalType":"contract IRandom","name":"random","type":"address"},{"internalType":"address","name":"receiver_","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"inputs":[],"name":"BANK1","outputs":[{"internalType":"contract IBank","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"BANK2","outputs":[{"internalType":"contract IBank","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"EPOCH_DURATION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FAVOR","outputs":[{"internalType":"contract IFavor","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_WIN_RATE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MIN_WIN_RATE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAYOUT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"POOL_LP","outputs":[{"internalType":"contract IPoolLP","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RANDOM","outputs":[{"internalType":"contract IRandom","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOKEN","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"UNLOCKED_DURATION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"epoch","outputs":[{"internalType":"uint8","name":"winner","type":"uint8"},{"internalType":"uint256","name":"amount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"epochLength","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"epochNb","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"cursor","type":"uint256"},{"internalType":"uint256","name":"size","type":"uint256"}],"name":"getEpochs","outputs":[{"components":[{"internalType":"uint8","name":"winner","type":"uint8"},{"internalType":"uint256","name":"amount","type":"uint256"}],"internalType":"struct Staking.Epoch[]","name":"out","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getWinRates","outputs":[{"internalType":"uint256","name":"winRate1","type":"uint256"},{"internalType":"uint256","name":"winRate2","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getWinRatesWithFavors","outputs":[{"internalType":"uint256","name":"winRate1","type":"uint256"},{"internalType":"uint256","name":"winRate2","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"bank","type":"bool"}],"name":"jump","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"receiver","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"roundStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newReceiver","type":"address"}],"name":"setReceiver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"bank","type":"bool"},{"internalType":"uint256","name":"amountIn","type":"uint256"}],"name":"stake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"start","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"bank","type":"bool"},{"internalType":"uint256","name":"amountIn","type":"uint256"}],"name":"unstake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"array","type":"uint256[]"}],"name":"updateStorage","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
0x610140604052617080600255620151806003556103e8600455611d4c6005556109c460065560646007553480156200003657600080fd5b50604051620033563803806200335683398181016040528101906200005c919062000493565b6200007c620000706200020460201b60201c565b6200020c60201b60201c565b8673ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508573ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250508473ffffffffffffffffffffffffffffffffffffffff1660c08173ffffffffffffffffffffffffffffffffffffffff16815250508373ffffffffffffffffffffffffffffffffffffffff1660e08173ffffffffffffffffffffffffffffffffffffffff16815250508273ffffffffffffffffffffffffffffffffffffffff166101008173ffffffffffffffffffffffffffffffffffffffff16815250508173ffffffffffffffffffffffffffffffffffffffff166101208173ffffffffffffffffffffffffffffffffffffffff168152505080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050505050505062000546565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200030282620002d5565b9050919050565b60006200031682620002f5565b9050919050565b620003288162000309565b81146200033457600080fd5b50565b60008151905062000348816200031d565b92915050565b60006200035b82620002f5565b9050919050565b6200036d816200034e565b81146200037957600080fd5b50565b6000815190506200038d8162000362565b92915050565b6000620003a082620002f5565b9050919050565b620003b28162000393565b8114620003be57600080fd5b50565b600081519050620003d281620003a7565b92915050565b6000620003e582620002f5565b9050919050565b620003f781620003d8565b81146200040357600080fd5b50565b6000815190506200041781620003ec565b92915050565b60006200042a82620002f5565b9050919050565b6200043c816200041d565b81146200044857600080fd5b50565b6000815190506200045c8162000431565b92915050565b6200046d81620002f5565b81146200047957600080fd5b50565b6000815190506200048d8162000462565b92915050565b600080600080600080600060e0888a031215620004b557620004b4620002d0565b5b6000620004c58a828b0162000337565b9750506020620004d88a828b016200037c565b9650506040620004eb8a828b016200037c565b9550506060620004fe8a828b01620003c1565b9450506080620005118a828b0162000406565b93505060a0620005248a828b016200044b565b92505060c0620005378a828b016200047c565b91505092959891949750929550565b60805160a05160c05160e0516101005161012051612cf562000661600039600081816118ea0152611bf00152600081816110f401526111ec015260008181610af10152818161116c015281816112a20152611b6e015260008181610683015281816107f7015281816108a301528181610d92015281816113b3015281816114900152818161175001528181611c9e01528181611de00152611fa1015260008181610536015281816105e20152818161094401528181610ab501528181610cee015281816113ea015281816116bd01528181611d4301528181611efc015261203e01526000818161072b015281816109ec01528181610b7b01528181610c2501528181610e980152818161154201526115ea0152612cf56000f3fe608060405234801561001057600080fd5b50600436106101cf5760003560e01c806390003ddb11610104578063c267d6af116100a2578063ec57d03f11610071578063ec57d03f146104b6578063f2fde38b146104d5578063f7260d3e146104f1578063f964d1091461050f576101cf565b8063c267d6af14610440578063c57981b51461045e578063cf4596361461047c578063dd4f8f7414610498576101cf565b8063b398a12f116100de578063b398a12f146103dd578063b819a123146103f9578063be9a655514610417578063c10d7b4914610421576101cf565b806390003ddb1461037157806396fd111a1461038f578063a70b9f0c146103bf576101cf565b80635487c57711610171578063715018a61161014b578063715018a61461030f578063718da7ee1461031957806382bfefc8146103355780638da5cb5b14610353576101cf565b80635487c577146102a457806357d775f8146102d557806357f7bf2d146102f3576101cf565b80632d72d114116101ad5780632d72d1141461022c57806332da3d101461024a57806343258d201461026857806353d3491b14610286576101cf565b80630cad1466146101d457806318020a5a146101f0578063223a78051461020e575b600080fd5b6101ee60048036038101906101e991906121d2565b61052d565b005b6101f8610ab3565b604051610205919061227e565b60405180910390f35b610216610ad7565b60405161022391906122b2565b60405180910390f35b610234610add565b60405161024191906122b2565b60405180910390f35b610252610ae3565b60405161025f91906122b2565b60405180910390f35b610270610ae9565b60405161027d91906122b2565b60405180910390f35b61028e610aef565b60405161029b91906122ee565b60405180910390f35b6102be60048036038101906102b99190612335565b610b13565b6040516102cc92919061237e565b60405180910390f35b6102dd610b54565b6040516102ea91906122b2565b60405180910390f35b61030d600480360381019061030891906123a7565b610b61565b005b610317610e36565b005b610333600480360381019061032e9190612425565b610e4a565b005b61033d610e96565b60405161034a9190612473565b60405180910390f35b61035b610eba565b604051610368919061249d565b60405180910390f35b610379610ee3565b60405161038691906122b2565b60405180910390f35b6103a960048036038101906103a491906124b8565b610ee9565b6040516103b691906125f4565b60405180910390f35b6103c761101a565b6040516103d491906122b2565b60405180910390f35b6103f760048036038101906103f2919061267b565b611020565b005b6104016110f2565b60405161040e91906126e9565b60405180910390f35b61041f611116565b005b61042961126c565b604051610437929190612704565b60405180910390f35b6104486113b1565b604051610455919061227e565b60405180910390f35b6104666113d5565b60405161047391906122b2565b60405180910390f35b610496600480360381019061049191906123a7565b6113db565b005b6104a06116b0565b6040516104ad91906122b2565b60405180910390f35b6104be6116b6565b6040516104cc929190612704565b60405180910390f35b6104ef60048036038101906104ea9190612425565b61183f565b005b6104f96118c2565b604051610506919061249d565b60405180910390f35b6105176118e8565b604051610524919061274e565b60405180910390f35b806107f35760007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b815260040161058d919061249d565b602060405180830381865afa1580156105aa573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105ce919061277e565b90506000806105dc8361190c565b915091507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166323b872dd3330866040518463ffffffff1660e01b815260040161063d939291906127ab565b6020604051808303816000875af115801561065c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061068091906127f7565b507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33846040518363ffffffff1660e01b81526004016106dc929190612824565b6020604051808303816000875af11580156106fb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061071f91906127f7565b5060008111156107eb577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b81526004016107a6929190612824565b6020604051808303816000875af11580156107c5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107e991906127f7565b505b505050610ab0565b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b815260040161084e919061249d565b602060405180830381865afa15801561086b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061088f919061277e565b905060008061089d8361190c565b915091507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166323b872dd3330866040518463ffffffff1660e01b81526004016108fe939291906127ab565b6020604051808303816000875af115801561091d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061094191906127f7565b507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33846040518363ffffffff1660e01b815260040161099d929190612824565b6020604051808303816000875af11580156109bc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109e091906127f7565b506000811115610aac577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b8152600401610a67929190612824565b6020604051808303816000875af1158015610a86573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610aaa91906127f7565b505b5050505b50565b7f000000000000000000000000000000000000000000000000000000000000000081565b60025481565b60055481565b60045481565b60085481565b7f000000000000000000000000000000000000000000000000000000000000000081565b60098181548110610b2357600080fd5b90600052602060002090600202016000915090508060000160009054906101000a900460ff16908060010154905082565b6000600980549050905090565b610b69611948565b600080610b758361190c565b915091507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166323b872dd3330856040518463ffffffff1660e01b8152600401610bd6939291906127ab565b6020604051808303816000875af1158015610bf5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c1991906127f7565b506000811115610ce7577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166323b872dd33600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846040518463ffffffff1660e01b8152600401610ca2939291906127ab565b6020604051808303816000875af1158015610cc1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ce591906127f7565b505b83610d90577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33846040518363ffffffff1660e01b8152600401610d47929190612824565b6020604051808303816000875af1158015610d66573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d8a91906127f7565b50610e30565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33846040518363ffffffff1660e01b8152600401610deb929190612824565b6020604051808303816000875af1158015610e0a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e2e91906127f7565b505b50505050565b610e3e611a0f565b610e486000611a8d565b565b610e52611a0f565b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b7f000000000000000000000000000000000000000000000000000000000000000081565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60065481565b60606000610ef5610b54565b905060008482610f05919061287c565b8411610f115783610f1e565b8482610f1d919061287c565b5b90508067ffffffffffffffff811115610f3a57610f396128b0565b5b604051908082528060200260200182016040528015610f7357816020015b610f60612173565b815260200190600190039081610f585790505b50925060005b818110156110115760098187610f8f91906128df565b81548110610fa057610f9f612913565b5b90600052602060002090600202016040518060400160405290816000820160009054906101000a900460ff1660ff1660ff168152602001600182015481525050848281518110610ff357610ff2612913565b5b6020026020010181905250808061100990612942565b915050610f79565b50505092915050565b60035481565b611028611a0f565b8181600081811061103c5761103b612913565b5b905060200201356002819055508181600181811061105d5761105c612913565b5b905060200201356003819055508181600281811061107e5761107d612913565b5b905060200201356004819055508181600381811061109f5761109e612913565b5b90506020020135600581905550818160048181106110c0576110bf612913565b5b90506020020135600681905550818160058181106110e1576110e0612913565b5b905060200201356007819055505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b61111e611a0f565b600060015414611163576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115a906129e7565b60405180910390fd5b426001819055507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663be9a65556040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156111d257600080fd5b505af11580156111e6573d6000803e3d6000fd5b505050507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663be9a65556040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561125257600080fd5b505af1158015611266573d6000803e3d6000fd5b50505050565b6000806112776116b6565b5080925050600082148061128c575061271082145b1561129d57600080915091506113ad565b6000807f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663388f1fa06040518163ffffffff1660e01b81526004016040805180830381865afa15801561130a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061132e9190612a07565b91509150600082111561134e57818461134791906128df565b935061137a565b60008111156113795783811115611369576006549350611378565b8084611375919061287c565b93505b5b5b60055484111561138a5760055493505b60065484101561139a5760065493505b836127106113a8919061287c565b925050505b9091565b7f000000000000000000000000000000000000000000000000000000000000000081565b60075481565b6113e3611948565b8161148e577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166323b872dd3330846040518463ffffffff1660e01b8152600401611445939291906127ab565b6020604051808303816000875af1158015611464573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061148891906127f7565b50611530565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166323b872dd3330846040518463ffffffff1660e01b81526004016114eb939291906127ab565b6020604051808303816000875af115801561150a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061152e91906127f7565b505b60008061153c8361190c565b915091507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33846040518363ffffffff1660e01b815260040161159b929190612824565b6020604051808303816000875af11580156115ba573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115de91906127f7565b5060008111156116aa577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b8152600401611665929190612824565b6020604051808303816000875af1158015611684573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116a891906127f7565b505b50505050565b60015481565b60008060007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16639358928b6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611726573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061174a919061277e565b905060007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16639358928b6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156117b9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117dd919061277e565b90506000821480156117ef5750600081145b156118025760008093509350505061183b565b808261180e91906128df565b6127108361181c9190612a47565b6118269190612ab8565b935083612710611836919061287c565b925050505b9091565b611847611a0f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036118b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ad90612b5b565b60405180910390fd5b6118bf81611a8d565b50565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000806000612710600754856119229190612a47565b61192c9190612ab8565b9050808461193a919061287c565b935083819250925050915091565b6000600154905060008103611992576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198990612bc7565b60405180910390fd5b600354816119a091906128df565b4211156119bb57426001819055506119b6611b51565b611a0c565b600254816119c991906128df565b421115611a0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0290612c33565b60405180910390fd5b5b50565b611a1761216b565b73ffffffffffffffffffffffffffffffffffffffff16611a35610eba565b73ffffffffffffffffffffffffffffffffffffffff1614611a8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8290612c9f565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000611b5b61126c565b50905060008103611b6c5750612169565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663e3a0a3906040518163ffffffff1660e01b8152600401600060405180830381600087803b158015611bd457600080fd5b505af1158015611be8573d6000803e3d6000fd5b5050505060007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16631cbca1fb6127106040518263ffffffff1660e01b8152600401611c4991906122b2565b602060405180830381865afa158015611c66573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c8a919061277e565b905081811015611ef25760006127106004547f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16639358928b6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611d07573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d2b919061277e565b611d359190612a47565b611d3f9190612ab8565b90507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663a0712d68826040518263ffffffff1660e01b8152600401611d9a91906122b2565b6020604051808303816000875af1158015611db9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ddd919061277e565b507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166342966c68826040518263ffffffff1660e01b8152600401611e3791906122b2565b6020604051808303816000875af1158015611e56573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e7a919061277e565b5060096040518060400160405280600160ff16815260200183815250908060018154018082558091505060019003906000526020600020906002020160009091909190915060008201518160000160006101000a81548160ff021916908360ff1602179055506020820151816001015550505061214c565b60006127106004547f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16639358928b6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611f65573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f89919061277e565b611f939190612a47565b611f9d9190612ab8565b90507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663a0712d68826040518263ffffffff1660e01b8152600401611ff891906122b2565b6020604051808303816000875af1158015612017573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061203b919061277e565b507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166342966c68826040518263ffffffff1660e01b815260040161209591906122b2565b6020604051808303816000875af11580156120b4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120d8919061277e565b5060096040518060400160405280600260ff16815260200183815250908060018154018082558091505060019003906000526020600020906002020160009091909190915060008201518160000160006101000a81548160ff021916908360ff160217905550602082015181600101555050505b60016008600082825461215f91906128df565b9250508190555050505b565b600033905090565b6040518060400160405280600060ff168152602001600081525090565b600080fd5b600080fd5b60008115159050919050565b6121af8161219a565b81146121ba57600080fd5b50565b6000813590506121cc816121a6565b92915050565b6000602082840312156121e8576121e7612190565b5b60006121f6848285016121bd565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600061224461223f61223a846121ff565b61221f565b6121ff565b9050919050565b600061225682612229565b9050919050565b60006122688261224b565b9050919050565b6122788161225d565b82525050565b6000602082019050612293600083018461226f565b92915050565b6000819050919050565b6122ac81612299565b82525050565b60006020820190506122c760008301846122a3565b92915050565b60006122d88261224b565b9050919050565b6122e8816122cd565b82525050565b600060208201905061230360008301846122df565b92915050565b61231281612299565b811461231d57600080fd5b50565b60008135905061232f81612309565b92915050565b60006020828403121561234b5761234a612190565b5b600061235984828501612320565b91505092915050565b600060ff82169050919050565b61237881612362565b82525050565b6000604082019050612393600083018561236f565b6123a060208301846122a3565b9392505050565b600080604083850312156123be576123bd612190565b5b60006123cc858286016121bd565b92505060206123dd85828601612320565b9150509250929050565b60006123f2826121ff565b9050919050565b612402816123e7565b811461240d57600080fd5b50565b60008135905061241f816123f9565b92915050565b60006020828403121561243b5761243a612190565b5b600061244984828501612410565b91505092915050565b600061245d8261224b565b9050919050565b61246d81612452565b82525050565b60006020820190506124886000830184612464565b92915050565b612497816123e7565b82525050565b60006020820190506124b2600083018461248e565b92915050565b600080604083850312156124cf576124ce612190565b5b60006124dd85828601612320565b92505060206124ee85828601612320565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61252d81612362565b82525050565b61253c81612299565b82525050565b6040820160008201516125586000850182612524565b50602082015161256b6020850182612533565b50505050565b600061257d8383612542565b60408301905092915050565b6000602082019050919050565b60006125a1826124f8565b6125ab8185612503565b93506125b683612514565b8060005b838110156125e75781516125ce8882612571565b97506125d983612589565b9250506001810190506125ba565b5085935050505092915050565b6000602082019050818103600083015261260e8184612596565b905092915050565b600080fd5b600080fd5b600080fd5b60008083601f84011261263b5761263a612616565b5b8235905067ffffffffffffffff8111156126585761265761261b565b5b60208301915083602082028301111561267457612673612620565b5b9250929050565b6000806020838503121561269257612691612190565b5b600083013567ffffffffffffffff8111156126b0576126af612195565b5b6126bc85828601612625565b92509250509250929050565b60006126d38261224b565b9050919050565b6126e3816126c8565b82525050565b60006020820190506126fe60008301846126da565b92915050565b600060408201905061271960008301856122a3565b61272660208301846122a3565b9392505050565b60006127388261224b565b9050919050565b6127488161272d565b82525050565b6000602082019050612763600083018461273f565b92915050565b60008151905061277881612309565b92915050565b60006020828403121561279457612793612190565b5b60006127a284828501612769565b91505092915050565b60006060820190506127c0600083018661248e565b6127cd602083018561248e565b6127da60408301846122a3565b949350505050565b6000815190506127f1816121a6565b92915050565b60006020828403121561280d5761280c612190565b5b600061281b848285016127e2565b91505092915050565b6000604082019050612839600083018561248e565b61284660208301846122a3565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061288782612299565b915061289283612299565b92508282039050818111156128aa576128a961284d565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60006128ea82612299565b91506128f583612299565b925082820190508082111561290d5761290c61284d565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061294d82612299565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361297f5761297e61284d565b5b600182019050919050565b600082825260208201905092915050565b7f416c726561647920696e697469616c697a656400000000000000000000000000600082015250565b60006129d160138361298a565b91506129dc8261299b565b602082019050919050565b60006020820190508181036000830152612a00816129c4565b9050919050565b60008060408385031215612a1e57612a1d612190565b5b6000612a2c85828601612769565b9250506020612a3d85828601612769565b9150509250929050565b6000612a5282612299565b9150612a5d83612299565b9250828202612a6b81612299565b91508282048414831517612a8257612a8161284d565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612ac382612299565b9150612ace83612299565b925082612ade57612add612a89565b5b828204905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612b4560268361298a565b9150612b5082612ae9565b604082019050919050565b60006020820190508181036000830152612b7481612b38565b9050919050565b7f4469646e27742073746172742079657400000000000000000000000000000000600082015250565b6000612bb160108361298a565b9150612bbc82612b7b565b602082019050919050565b60006020820190508181036000830152612be081612ba4565b9050919050565b7f546f6b656e7320617265206c6f636b6564000000000000000000000000000000600082015250565b6000612c1d60118361298a565b9150612c2882612be7565b602082019050919050565b60006020820190508181036000830152612c4c81612c10565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612c8960208361298a565b9150612c9482612c53565b602082019050919050565b60006020820190508181036000830152612cb881612c7c565b905091905056fea2646970667358221220149ebb53df115bc4622892fee72e49fe69846224fab31812049d1d2b11cff52864736f6c63430008120033000000000000000000000000df121180af07cb906d970799627a430d2440c36d00000000000000000000000061a7f3a6d86eea6bbe38d6a1923eaf44f0194d9300000000000000000000000094ffdc676ca3f9745899a58d1add4ea20ec9d8f2000000000000000000000000e17aeae3e3f1eeb1c6b07f2872084daec7834965000000000000000000000000fc065fba39f054e04561001789a079837ddc4bc7000000000000000000000000320bb3e1af91c93666b80161d3536ed022a93c3a00000000000000000000000072c0af71deb0b1b6adb3e45b1fc6fa3f9e297031
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101cf5760003560e01c806390003ddb11610104578063c267d6af116100a2578063ec57d03f11610071578063ec57d03f146104b6578063f2fde38b146104d5578063f7260d3e146104f1578063f964d1091461050f576101cf565b8063c267d6af14610440578063c57981b51461045e578063cf4596361461047c578063dd4f8f7414610498576101cf565b8063b398a12f116100de578063b398a12f146103dd578063b819a123146103f9578063be9a655514610417578063c10d7b4914610421576101cf565b806390003ddb1461037157806396fd111a1461038f578063a70b9f0c146103bf576101cf565b80635487c57711610171578063715018a61161014b578063715018a61461030f578063718da7ee1461031957806382bfefc8146103355780638da5cb5b14610353576101cf565b80635487c577146102a457806357d775f8146102d557806357f7bf2d146102f3576101cf565b80632d72d114116101ad5780632d72d1141461022c57806332da3d101461024a57806343258d201461026857806353d3491b14610286576101cf565b80630cad1466146101d457806318020a5a146101f0578063223a78051461020e575b600080fd5b6101ee60048036038101906101e991906121d2565b61052d565b005b6101f8610ab3565b604051610205919061227e565b60405180910390f35b610216610ad7565b60405161022391906122b2565b60405180910390f35b610234610add565b60405161024191906122b2565b60405180910390f35b610252610ae3565b60405161025f91906122b2565b60405180910390f35b610270610ae9565b60405161027d91906122b2565b60405180910390f35b61028e610aef565b60405161029b91906122ee565b60405180910390f35b6102be60048036038101906102b99190612335565b610b13565b6040516102cc92919061237e565b60405180910390f35b6102dd610b54565b6040516102ea91906122b2565b60405180910390f35b61030d600480360381019061030891906123a7565b610b61565b005b610317610e36565b005b610333600480360381019061032e9190612425565b610e4a565b005b61033d610e96565b60405161034a9190612473565b60405180910390f35b61035b610eba565b604051610368919061249d565b60405180910390f35b610379610ee3565b60405161038691906122b2565b60405180910390f35b6103a960048036038101906103a491906124b8565b610ee9565b6040516103b691906125f4565b60405180910390f35b6103c761101a565b6040516103d491906122b2565b60405180910390f35b6103f760048036038101906103f2919061267b565b611020565b005b6104016110f2565b60405161040e91906126e9565b60405180910390f35b61041f611116565b005b61042961126c565b604051610437929190612704565b60405180910390f35b6104486113b1565b604051610455919061227e565b60405180910390f35b6104666113d5565b60405161047391906122b2565b60405180910390f35b610496600480360381019061049191906123a7565b6113db565b005b6104a06116b0565b6040516104ad91906122b2565b60405180910390f35b6104be6116b6565b6040516104cc929190612704565b60405180910390f35b6104ef60048036038101906104ea9190612425565b61183f565b005b6104f96118c2565b604051610506919061249d565b60405180910390f35b6105176118e8565b604051610524919061274e565b60405180910390f35b806107f35760007f00000000000000000000000061a7f3a6d86eea6bbe38d6a1923eaf44f0194d9373ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b815260040161058d919061249d565b602060405180830381865afa1580156105aa573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105ce919061277e565b90506000806105dc8361190c565b915091507f00000000000000000000000061a7f3a6d86eea6bbe38d6a1923eaf44f0194d9373ffffffffffffffffffffffffffffffffffffffff166323b872dd3330866040518463ffffffff1660e01b815260040161063d939291906127ab565b6020604051808303816000875af115801561065c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061068091906127f7565b507f00000000000000000000000094ffdc676ca3f9745899a58d1add4ea20ec9d8f273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33846040518363ffffffff1660e01b81526004016106dc929190612824565b6020604051808303816000875af11580156106fb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061071f91906127f7565b5060008111156107eb577f000000000000000000000000df121180af07cb906d970799627a430d2440c36d73ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b81526004016107a6929190612824565b6020604051808303816000875af11580156107c5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107e991906127f7565b505b505050610ab0565b60007f00000000000000000000000094ffdc676ca3f9745899a58d1add4ea20ec9d8f273ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b815260040161084e919061249d565b602060405180830381865afa15801561086b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061088f919061277e565b905060008061089d8361190c565b915091507f00000000000000000000000094ffdc676ca3f9745899a58d1add4ea20ec9d8f273ffffffffffffffffffffffffffffffffffffffff166323b872dd3330866040518463ffffffff1660e01b81526004016108fe939291906127ab565b6020604051808303816000875af115801561091d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061094191906127f7565b507f00000000000000000000000061a7f3a6d86eea6bbe38d6a1923eaf44f0194d9373ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33846040518363ffffffff1660e01b815260040161099d929190612824565b6020604051808303816000875af11580156109bc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109e091906127f7565b506000811115610aac577f000000000000000000000000df121180af07cb906d970799627a430d2440c36d73ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b8152600401610a67929190612824565b6020604051808303816000875af1158015610a86573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610aaa91906127f7565b505b5050505b50565b7f00000000000000000000000061a7f3a6d86eea6bbe38d6a1923eaf44f0194d9381565b60025481565b60055481565b60045481565b60085481565b7f000000000000000000000000e17aeae3e3f1eeb1c6b07f2872084daec783496581565b60098181548110610b2357600080fd5b90600052602060002090600202016000915090508060000160009054906101000a900460ff16908060010154905082565b6000600980549050905090565b610b69611948565b600080610b758361190c565b915091507f000000000000000000000000df121180af07cb906d970799627a430d2440c36d73ffffffffffffffffffffffffffffffffffffffff166323b872dd3330856040518463ffffffff1660e01b8152600401610bd6939291906127ab565b6020604051808303816000875af1158015610bf5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c1991906127f7565b506000811115610ce7577f000000000000000000000000df121180af07cb906d970799627a430d2440c36d73ffffffffffffffffffffffffffffffffffffffff166323b872dd33600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846040518463ffffffff1660e01b8152600401610ca2939291906127ab565b6020604051808303816000875af1158015610cc1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ce591906127f7565b505b83610d90577f00000000000000000000000061a7f3a6d86eea6bbe38d6a1923eaf44f0194d9373ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33846040518363ffffffff1660e01b8152600401610d47929190612824565b6020604051808303816000875af1158015610d66573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d8a91906127f7565b50610e30565b7f00000000000000000000000094ffdc676ca3f9745899a58d1add4ea20ec9d8f273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33846040518363ffffffff1660e01b8152600401610deb929190612824565b6020604051808303816000875af1158015610e0a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e2e91906127f7565b505b50505050565b610e3e611a0f565b610e486000611a8d565b565b610e52611a0f565b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b7f000000000000000000000000df121180af07cb906d970799627a430d2440c36d81565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60065481565b60606000610ef5610b54565b905060008482610f05919061287c565b8411610f115783610f1e565b8482610f1d919061287c565b5b90508067ffffffffffffffff811115610f3a57610f396128b0565b5b604051908082528060200260200182016040528015610f7357816020015b610f60612173565b815260200190600190039081610f585790505b50925060005b818110156110115760098187610f8f91906128df565b81548110610fa057610f9f612913565b5b90600052602060002090600202016040518060400160405290816000820160009054906101000a900460ff1660ff1660ff168152602001600182015481525050848281518110610ff357610ff2612913565b5b6020026020010181905250808061100990612942565b915050610f79565b50505092915050565b60035481565b611028611a0f565b8181600081811061103c5761103b612913565b5b905060200201356002819055508181600181811061105d5761105c612913565b5b905060200201356003819055508181600281811061107e5761107d612913565b5b905060200201356004819055508181600381811061109f5761109e612913565b5b90506020020135600581905550818160048181106110c0576110bf612913565b5b90506020020135600681905550818160058181106110e1576110e0612913565b5b905060200201356007819055505050565b7f000000000000000000000000fc065fba39f054e04561001789a079837ddc4bc781565b61111e611a0f565b600060015414611163576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115a906129e7565b60405180910390fd5b426001819055507f000000000000000000000000e17aeae3e3f1eeb1c6b07f2872084daec783496573ffffffffffffffffffffffffffffffffffffffff1663be9a65556040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156111d257600080fd5b505af11580156111e6573d6000803e3d6000fd5b505050507f000000000000000000000000fc065fba39f054e04561001789a079837ddc4bc773ffffffffffffffffffffffffffffffffffffffff1663be9a65556040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561125257600080fd5b505af1158015611266573d6000803e3d6000fd5b50505050565b6000806112776116b6565b5080925050600082148061128c575061271082145b1561129d57600080915091506113ad565b6000807f000000000000000000000000e17aeae3e3f1eeb1c6b07f2872084daec783496573ffffffffffffffffffffffffffffffffffffffff1663388f1fa06040518163ffffffff1660e01b81526004016040805180830381865afa15801561130a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061132e9190612a07565b91509150600082111561134e57818461134791906128df565b935061137a565b60008111156113795783811115611369576006549350611378565b8084611375919061287c565b93505b5b5b60055484111561138a5760055493505b60065484101561139a5760065493505b836127106113a8919061287c565b925050505b9091565b7f00000000000000000000000094ffdc676ca3f9745899a58d1add4ea20ec9d8f281565b60075481565b6113e3611948565b8161148e577f00000000000000000000000061a7f3a6d86eea6bbe38d6a1923eaf44f0194d9373ffffffffffffffffffffffffffffffffffffffff166323b872dd3330846040518463ffffffff1660e01b8152600401611445939291906127ab565b6020604051808303816000875af1158015611464573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061148891906127f7565b50611530565b7f00000000000000000000000094ffdc676ca3f9745899a58d1add4ea20ec9d8f273ffffffffffffffffffffffffffffffffffffffff166323b872dd3330846040518463ffffffff1660e01b81526004016114eb939291906127ab565b6020604051808303816000875af115801561150a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061152e91906127f7565b505b60008061153c8361190c565b915091507f000000000000000000000000df121180af07cb906d970799627a430d2440c36d73ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33846040518363ffffffff1660e01b815260040161159b929190612824565b6020604051808303816000875af11580156115ba573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115de91906127f7565b5060008111156116aa577f000000000000000000000000df121180af07cb906d970799627a430d2440c36d73ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b8152600401611665929190612824565b6020604051808303816000875af1158015611684573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116a891906127f7565b505b50505050565b60015481565b60008060007f00000000000000000000000061a7f3a6d86eea6bbe38d6a1923eaf44f0194d9373ffffffffffffffffffffffffffffffffffffffff16639358928b6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611726573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061174a919061277e565b905060007f00000000000000000000000094ffdc676ca3f9745899a58d1add4ea20ec9d8f273ffffffffffffffffffffffffffffffffffffffff16639358928b6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156117b9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117dd919061277e565b90506000821480156117ef5750600081145b156118025760008093509350505061183b565b808261180e91906128df565b6127108361181c9190612a47565b6118269190612ab8565b935083612710611836919061287c565b925050505b9091565b611847611a0f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036118b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ad90612b5b565b60405180910390fd5b6118bf81611a8d565b50565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b7f000000000000000000000000320bb3e1af91c93666b80161d3536ed022a93c3a81565b6000806000612710600754856119229190612a47565b61192c9190612ab8565b9050808461193a919061287c565b935083819250925050915091565b6000600154905060008103611992576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198990612bc7565b60405180910390fd5b600354816119a091906128df565b4211156119bb57426001819055506119b6611b51565b611a0c565b600254816119c991906128df565b421115611a0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0290612c33565b60405180910390fd5b5b50565b611a1761216b565b73ffffffffffffffffffffffffffffffffffffffff16611a35610eba565b73ffffffffffffffffffffffffffffffffffffffff1614611a8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8290612c9f565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000611b5b61126c565b50905060008103611b6c5750612169565b7f000000000000000000000000e17aeae3e3f1eeb1c6b07f2872084daec783496573ffffffffffffffffffffffffffffffffffffffff1663e3a0a3906040518163ffffffff1660e01b8152600401600060405180830381600087803b158015611bd457600080fd5b505af1158015611be8573d6000803e3d6000fd5b5050505060007f000000000000000000000000320bb3e1af91c93666b80161d3536ed022a93c3a73ffffffffffffffffffffffffffffffffffffffff16631cbca1fb6127106040518263ffffffff1660e01b8152600401611c4991906122b2565b602060405180830381865afa158015611c66573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c8a919061277e565b905081811015611ef25760006127106004547f00000000000000000000000094ffdc676ca3f9745899a58d1add4ea20ec9d8f273ffffffffffffffffffffffffffffffffffffffff16639358928b6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611d07573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d2b919061277e565b611d359190612a47565b611d3f9190612ab8565b90507f00000000000000000000000061a7f3a6d86eea6bbe38d6a1923eaf44f0194d9373ffffffffffffffffffffffffffffffffffffffff1663a0712d68826040518263ffffffff1660e01b8152600401611d9a91906122b2565b6020604051808303816000875af1158015611db9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ddd919061277e565b507f00000000000000000000000094ffdc676ca3f9745899a58d1add4ea20ec9d8f273ffffffffffffffffffffffffffffffffffffffff166342966c68826040518263ffffffff1660e01b8152600401611e3791906122b2565b6020604051808303816000875af1158015611e56573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e7a919061277e565b5060096040518060400160405280600160ff16815260200183815250908060018154018082558091505060019003906000526020600020906002020160009091909190915060008201518160000160006101000a81548160ff021916908360ff1602179055506020820151816001015550505061214c565b60006127106004547f00000000000000000000000061a7f3a6d86eea6bbe38d6a1923eaf44f0194d9373ffffffffffffffffffffffffffffffffffffffff16639358928b6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611f65573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f89919061277e565b611f939190612a47565b611f9d9190612ab8565b90507f00000000000000000000000094ffdc676ca3f9745899a58d1add4ea20ec9d8f273ffffffffffffffffffffffffffffffffffffffff1663a0712d68826040518263ffffffff1660e01b8152600401611ff891906122b2565b6020604051808303816000875af1158015612017573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061203b919061277e565b507f00000000000000000000000061a7f3a6d86eea6bbe38d6a1923eaf44f0194d9373ffffffffffffffffffffffffffffffffffffffff166342966c68826040518263ffffffff1660e01b815260040161209591906122b2565b6020604051808303816000875af11580156120b4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120d8919061277e565b5060096040518060400160405280600260ff16815260200183815250908060018154018082558091505060019003906000526020600020906002020160009091909190915060008201518160000160006101000a81548160ff021916908360ff160217905550602082015181600101555050505b60016008600082825461215f91906128df565b9250508190555050505b565b600033905090565b6040518060400160405280600060ff168152602001600081525090565b600080fd5b600080fd5b60008115159050919050565b6121af8161219a565b81146121ba57600080fd5b50565b6000813590506121cc816121a6565b92915050565b6000602082840312156121e8576121e7612190565b5b60006121f6848285016121bd565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600061224461223f61223a846121ff565b61221f565b6121ff565b9050919050565b600061225682612229565b9050919050565b60006122688261224b565b9050919050565b6122788161225d565b82525050565b6000602082019050612293600083018461226f565b92915050565b6000819050919050565b6122ac81612299565b82525050565b60006020820190506122c760008301846122a3565b92915050565b60006122d88261224b565b9050919050565b6122e8816122cd565b82525050565b600060208201905061230360008301846122df565b92915050565b61231281612299565b811461231d57600080fd5b50565b60008135905061232f81612309565b92915050565b60006020828403121561234b5761234a612190565b5b600061235984828501612320565b91505092915050565b600060ff82169050919050565b61237881612362565b82525050565b6000604082019050612393600083018561236f565b6123a060208301846122a3565b9392505050565b600080604083850312156123be576123bd612190565b5b60006123cc858286016121bd565b92505060206123dd85828601612320565b9150509250929050565b60006123f2826121ff565b9050919050565b612402816123e7565b811461240d57600080fd5b50565b60008135905061241f816123f9565b92915050565b60006020828403121561243b5761243a612190565b5b600061244984828501612410565b91505092915050565b600061245d8261224b565b9050919050565b61246d81612452565b82525050565b60006020820190506124886000830184612464565b92915050565b612497816123e7565b82525050565b60006020820190506124b2600083018461248e565b92915050565b600080604083850312156124cf576124ce612190565b5b60006124dd85828601612320565b92505060206124ee85828601612320565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61252d81612362565b82525050565b61253c81612299565b82525050565b6040820160008201516125586000850182612524565b50602082015161256b6020850182612533565b50505050565b600061257d8383612542565b60408301905092915050565b6000602082019050919050565b60006125a1826124f8565b6125ab8185612503565b93506125b683612514565b8060005b838110156125e75781516125ce8882612571565b97506125d983612589565b9250506001810190506125ba565b5085935050505092915050565b6000602082019050818103600083015261260e8184612596565b905092915050565b600080fd5b600080fd5b600080fd5b60008083601f84011261263b5761263a612616565b5b8235905067ffffffffffffffff8111156126585761265761261b565b5b60208301915083602082028301111561267457612673612620565b5b9250929050565b6000806020838503121561269257612691612190565b5b600083013567ffffffffffffffff8111156126b0576126af612195565b5b6126bc85828601612625565b92509250509250929050565b60006126d38261224b565b9050919050565b6126e3816126c8565b82525050565b60006020820190506126fe60008301846126da565b92915050565b600060408201905061271960008301856122a3565b61272660208301846122a3565b9392505050565b60006127388261224b565b9050919050565b6127488161272d565b82525050565b6000602082019050612763600083018461273f565b92915050565b60008151905061277881612309565b92915050565b60006020828403121561279457612793612190565b5b60006127a284828501612769565b91505092915050565b60006060820190506127c0600083018661248e565b6127cd602083018561248e565b6127da60408301846122a3565b949350505050565b6000815190506127f1816121a6565b92915050565b60006020828403121561280d5761280c612190565b5b600061281b848285016127e2565b91505092915050565b6000604082019050612839600083018561248e565b61284660208301846122a3565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061288782612299565b915061289283612299565b92508282039050818111156128aa576128a961284d565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60006128ea82612299565b91506128f583612299565b925082820190508082111561290d5761290c61284d565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061294d82612299565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361297f5761297e61284d565b5b600182019050919050565b600082825260208201905092915050565b7f416c726561647920696e697469616c697a656400000000000000000000000000600082015250565b60006129d160138361298a565b91506129dc8261299b565b602082019050919050565b60006020820190508181036000830152612a00816129c4565b9050919050565b60008060408385031215612a1e57612a1d612190565b5b6000612a2c85828601612769565b9250506020612a3d85828601612769565b9150509250929050565b6000612a5282612299565b9150612a5d83612299565b9250828202612a6b81612299565b91508282048414831517612a8257612a8161284d565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612ac382612299565b9150612ace83612299565b925082612ade57612add612a89565b5b828204905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612b4560268361298a565b9150612b5082612ae9565b604082019050919050565b60006020820190508181036000830152612b7481612b38565b9050919050565b7f4469646e27742073746172742079657400000000000000000000000000000000600082015250565b6000612bb160108361298a565b9150612bbc82612b7b565b602082019050919050565b60006020820190508181036000830152612be081612ba4565b9050919050565b7f546f6b656e7320617265206c6f636b6564000000000000000000000000000000600082015250565b6000612c1d60118361298a565b9150612c2882612be7565b602082019050919050565b60006020820190508181036000830152612c4c81612c10565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612c8960208361298a565b9150612c9482612c53565b602082019050919050565b60006020820190508181036000830152612cb881612c7c565b905091905056fea2646970667358221220149ebb53df115bc4622892fee72e49fe69846224fab31812049d1d2b11cff52864736f6c63430008120033
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.