Source Code
More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 102 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Transfer | 17506331 | 1010 days ago | IN | 0 ETH | 0.00107297 | ||||
| Transfer | 16245717 | 1187 days ago | IN | 0 ETH | 0.00098107 | ||||
| Transfer | 16033877 | 1217 days ago | IN | 0 ETH | 0.00125312 | ||||
| Transfer | 15652776 | 1270 days ago | IN | 0 ETH | 0.00040489 | ||||
| Transfer | 15601159 | 1277 days ago | IN | 0 ETH | 0.00043291 | ||||
| Transfer | 15497389 | 1293 days ago | IN | 0 ETH | 0.00153909 | ||||
| Transfer | 15471560 | 1297 days ago | IN | 0 ETH | 0.00063155 | ||||
| Transfer | 15468611 | 1297 days ago | IN | 0 ETH | 0.00030136 | ||||
| Transfer | 15465671 | 1298 days ago | IN | 0 ETH | 0.0003948 | ||||
| Transfer | 15464225 | 1298 days ago | IN | 0 ETH | 0.00057384 | ||||
| Transfer | 15464182 | 1298 days ago | IN | 0 ETH | 0.00067363 | ||||
| Transfer | 15464160 | 1298 days ago | IN | 0 ETH | 0.00057394 | ||||
| Transfer | 15457508 | 1299 days ago | IN | 0 ETH | 0.00072662 | ||||
| Transfer | 15457126 | 1299 days ago | IN | 0 ETH | 0.00057169 | ||||
| Transfer | 15457110 | 1299 days ago | IN | 0 ETH | 0.000874 | ||||
| Transfer | 15456874 | 1299 days ago | IN | 0 ETH | 0.00070892 | ||||
| Transfer | 15456853 | 1299 days ago | IN | 0 ETH | 0.00074424 | ||||
| Transfer | 15456473 | 1299 days ago | IN | 0 ETH | 0.00099042 | ||||
| Transfer | 15445268 | 1301 days ago | IN | 0 ETH | 0.0010648 | ||||
| Transfer | 15445192 | 1301 days ago | IN | 0 ETH | 0.00095482 | ||||
| Transfer | 15445018 | 1301 days ago | IN | 0 ETH | 0.00102603 | ||||
| Transfer | 15444400 | 1301 days ago | IN | 0 ETH | 0.00116245 | ||||
| Transfer | 15444386 | 1301 days ago | IN | 0 ETH | 0.00103182 | ||||
| Transfer | 15440932 | 1302 days ago | IN | 0 ETH | 0.00283413 | ||||
| Transfer | 15440698 | 1302 days ago | IN | 0 ETH | 0.00138354 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
HADAToken
Compiler Version
v0.5.5+commit.47a71e8f
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2021-06-29
*/
/***
* MIT License
* ===========
*
* Copyright (c) 2021 HADA
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
*/
// File: @openzeppelin/contracts/math/SafeMath.sol
pragma solidity ^0.5.0;
/**
* @dev Wrappers over Solidity's arithmetic operations with added overflow
* checks.
*
* Arithmetic operations in Solidity wrap on overflow. This can easily result
* in bugs, because programmers usually assume that an overflow raises an
* error, which is the standard behavior in high level programming languages.
* `SafeMath` restores this intuition by reverting the transaction when an
* operation overflows.
*
* Using this library instead of the unchecked operations eliminates an entire
* class of bugs, so it's recommended to use it always.
*/
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
* - Addition cannot overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
uint256 c = a + b;
require(c >= a, "SafeMath: addition overflow");
return c;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return sub(a, b, "SafeMath: subtraction overflow");
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
* - Subtraction cannot overflow.
*
* _Available since v2.4.0._
*/
function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b <= a, errorMessage);
uint256 c = a - b;
return c;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
* - Multiplication cannot overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) {
return 0;
}
uint256 c = a * b;
require(c / a == b, "SafeMath: multiplication overflow");
return c;
}
/**
* @dev Returns the integer division of two unsigned integers. Reverts on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return div(a, b, "SafeMath: division by zero");
}
/**
* @dev Returns the integer division of two unsigned integers. Reverts with custom message on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
* - The divisor cannot be zero.
*
* _Available since v2.4.0._
*/
function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
// Solidity only automatically asserts when dividing by 0
require(b > 0, errorMessage);
uint256 c = a / b;
// assert(a == b * c + a % b); // There is no case in which this doesn't hold
return c;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* Reverts when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
return mod(a, b, "SafeMath: modulo by zero");
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* Reverts with custom message when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
* - The divisor cannot be zero.
*
* _Available since v2.4.0._
*/
function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b != 0, errorMessage);
return a % b;
}
}
// File: @openzeppelin/contracts/token/ERC20/IERC20.sol
pragma solidity ^0.5.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP. Does not include
* the optional functions; to access them see {ERC20Detailed}.
*/
interface IERC20 {
/**
* @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 `recipient`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address recipient, 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 `sender` to `recipient` 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 sender, address recipient, uint256 amount) external returns (bool);
/**
* @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);
}
// File: @openzeppelin/contracts/token/ERC20/ERC20Detailed.sol
pragma solidity ^0.5.0;
/**
* @dev Optional functions from the ERC20 standard.
*/
contract ERC20Detailed is IERC20 {
string private _name;
string private _symbol;
uint8 private _decimals;
/**
* @dev Sets the values for `name`, `symbol`, and `decimals`. All three of
* these values are immutable: they can only be set once during
* construction.
*/
constructor (string memory name, string memory symbol, uint8 decimals) public {
_name = name;
_symbol = symbol;
_decimals = decimals;
}
/**
* @dev Returns the name of the token.
*/
function name() public view returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view returns (string memory) {
return _symbol;
}
/**
* @dev Returns the number of decimals used to get its user representation.
* For example, if `decimals` equals `2`, a balance of `505` tokens should
* be displayed to a user as `5,05` (`505 / 10 ** 2`).
*
* Tokens usually opt for a value of 8, imitating the relationship between
* Ether and Wei.
*
* NOTE: This information is only used for _display_ purposes: it in
* no way affects any of the arithmetic of the contract, including
* {IERC20-balanceOf} and {IERC20-transfer}.
*/
function decimals() public view returns (uint8) {
return _decimals;
}
}
// File: contracts/library/Governance.sol
pragma solidity ^0.5.5;
contract Governance {
address public governance;
constructor() public {
governance = tx.origin;
}
event GovernanceTransferred(address indexed previousOwner, address indexed newOwner);
modifier onlyGovernance {
require(msg.sender == governance, "not governance");
_;
}
function setGovernance(address _governance) public onlyGovernance
{
require(_governance != address(0), "new governance the zero address");
emit GovernanceTransferred(governance, _governance);
governance = _governance;
}
}
// File: contracts/token/HADAToken.sol
pragma solidity ^0.5.5;
/// @title HADAToken Contract
contract HADAToken is Governance, ERC20Detailed{
using SafeMath for uint256;
//events
event eveSetRate(uint256 burn_rate);
event Transfer(address indexed from, address indexed to, uint256 value);
event Approval(address indexed owner, address indexed spender, uint256 value);
//token base data
uint256 internal _totalSupply;
mapping(address => uint256) public _balances;
mapping (address => mapping (address => uint256)) public _allowances;
/// Constant token specific fields
uint256 public _maxSupply = 0;
///
bool public _openTransfer = false;
// hardcode limit rate
uint256 public constant _maxGovernValueRate = 2000;//2000/10000
uint256 public constant _minGovernValueRate = 10; //10/10000
uint256 public constant _rateBase = 10000;
// additional variables for use if transaction fees ever became necessary
uint256 public _burnRate = 50;
uint256 public _totalBurnToken = 0;
//todo burn pool!
address public _burnPool = 0x6666666666666666666666666666666666666666;
/**
* @dev set the token transfer switch
*/
function enableOpenTransfer() public onlyGovernance
{
_openTransfer = true;
}
/**
* CONSTRUCTOR
*
* @dev Initialize the Token
*/
constructor () public ERC20Detailed("HADA Coin", "HADA", 8) {
_maxSupply = 100000000000 * (10**8);
_totalSupply = _maxSupply;
_balances[0xa419546E9ECb2F3D22f4501d18ea651E4DFAa1CC] = _totalSupply;
emit Transfer(address(0), 0xa419546E9ECb2F3D22f4501d18ea651E4DFAa1CC, _maxSupply);
}
/**
* @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender.
* @param spender The address which will spend the funds.
* @param amount The amount of tokens to be spent.
*/
function approve(address spender, uint256 amount) public
returns (bool)
{
require(msg.sender != address(0), "ERC20: approve from the zero address");
require(spender != address(0), "ERC20: approve to the zero address");
_allowances[msg.sender][spender] = amount;
emit Approval(msg.sender, spender, amount);
return true;
}
/**
* @dev Function to check the amount of tokens than an owner _allowed to a spender.
* @param owner address The address which owns the funds.
* @param spender address The address which will spend the funds.
* @return A uint256 specifying the amount of tokens still available for the spender.
*/
function allowance(address owner, address spender) public view
returns (uint256)
{
return _allowances[owner][spender];
}
/**
* @dev Gets the balance of the specified address.
* @param owner The address to query the the balance of.
* @return An uint256 representing the amount owned by the passed address.
*/
function balanceOf(address owner) public view
returns (uint256)
{
return _balances[owner];
}
/**
* @dev return the token total supply
*/
function totalSupply() public view
returns (uint256)
{
return _totalSupply;
}
function() external payable {
revert();
}
/**
* @dev for govern value
*/
function setRate(uint256 burn_rate) public
onlyGovernance
{
require(_maxGovernValueRate >= burn_rate && burn_rate >= _minGovernValueRate,"invalid burn rate");
_burnRate = burn_rate;
emit eveSetRate(burn_rate);
}
function transfer(address to, uint256 value) public
returns (bool)
{
return _transfer(msg.sender,to,value);
}
/**
* @dev Transfer tokens from one address to another
* @param from address The address which you want to send tokens from
* @param to address The address which you want to transfer to
* @param value uint256 the amount of tokens to be transferred
*/
function transferFrom(address from, address to, uint256 value) public
returns (bool)
{
uint256 allow = _allowances[from][msg.sender];
_allowances[from][msg.sender] = allow.sub(value);
return _transfer(from,to,value);
}
/**
* @dev Transfer tokens with fee
* @param from address The address which you want to send tokens from
* @param to address The address which you want to transfer to
* @param value uint256s the amount of tokens to be transferred
*/
function _transfer(address from, address to, uint256 value) internal
returns (bool)
{
// :)
require(_openTransfer || from == governance, "transfer closed");
require(from != address(0), "ERC20: transfer from the zero address");
require(to != address(0), "ERC20: transfer to the zero address");
uint256 sendAmount = value;
uint256 burnFee = (value.mul(_burnRate)).div(_rateBase);
if (burnFee > 0) {
//to burn
_balances[_burnPool] = _balances[_burnPool].add(burnFee);
_totalSupply = _totalSupply.sub(burnFee);
sendAmount = sendAmount.sub(burnFee);
_totalBurnToken = _totalBurnToken.add(burnFee);
emit Transfer(from, _burnPool, burnFee);
}
_balances[from] = _balances[from].sub(value);
_balances[to] = _balances[to].add(sendAmount);
emit Transfer(from, to, sendAmount);
return true;
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"address"}],"name":"_allowances","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"amount","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"enableOpenTransfer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"_maxSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"from","type":"address"},{"name":"to","type":"address"},{"name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"_burnPool","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"_totalBurnToken","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"burn_rate","type":"uint256"}],"name":"setRate","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"governance","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"_balances","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"_rateBase","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"_burnRate","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"_minGovernValueRate","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"to","type":"address"},{"name":"value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_governance","type":"address"}],"name":"setGovernance","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"_openTransfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"owner","type":"address"},{"name":"spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"_maxGovernValueRate","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":false,"name":"burn_rate","type":"uint256"}],"name":"eveSetRate","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"GovernanceTransferred","type":"event"}]Contract Creation Code
6080604052600060078190556008805460ff191690556032600955600a55600b80546001600160a01b0319167366666666666666666666666666666666666666661790553480156200005057600080fd5b50604080518082018252600981527f4841444120436f696e000000000000000000000000000000000000000000000060208083019182528351808501909452600484527f484144410000000000000000000000000000000000000000000000000000000090840152600080546001600160a01b031916321790558151919291600891620000e19160019190620001a2565b508151620000f7906002906020850190620001a2565b506003805460ff191660ff929092169190911790555050678ac7230489e800006007819055600481905573a419546e9ecb2f3d22f4501d18ea651e4dfaa1cc6000818152600560209081527fd0ae10cb8a81a282ee608cacb79b56847c3d74d77abb50b1bb3fc68c590150768490556040805194855251929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a362000247565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620001e557805160ff191683800117855562000215565b8280016001018555821562000215579182015b8281111562000215578251825591602001919060010190620001f8565b506200022392915062000227565b5090565b6200024491905b808211156200022357600081556001016200022e565b90565b6110bf80620002576000396000f3fe6080604052600436106101405760003560e01c80635aa6e675116100b657806395d89b411161006f57806395d89b4114610442578063a9059cbb14610457578063ab033ea914610490578063bde8e9fa146104c3578063dd62ed3e146104d8578063e312848f1461051357610140565b80635aa6e675146103885780636ebcf6071461039d57806370a08231146103d0578063775e13771461040357806379138df1146104185780638afefd881461042d57610140565b806322f4596f1161010857806322f4596f1461029557806323b872dd146102aa57806328d2bc91146102ed5780632d201af01461031e578063313ce5671461033357806334fcf4371461035e57610140565b8063024c2ddd1461014557806306fdde0314610192578063095ea7b31461021c57806318160ddd146102695780631ae6ddec1461027e575b600080fd5b34801561015157600080fd5b506101806004803603604081101561016857600080fd5b506001600160a01b0381358116916020013516610528565b60408051918252519081900360200190f35b34801561019e57600080fd5b506101a7610545565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101e15781810151838201526020016101c9565b50505050905090810190601f16801561020e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561022857600080fd5b506102556004803603604081101561023f57600080fd5b506001600160a01b0381351690602001356105da565b604080519115158252519081900360200190f35b34801561027557600080fd5b506101806106cf565b34801561028a57600080fd5b506102936106d5565b005b3480156102a157600080fd5b5061018061073a565b3480156102b657600080fd5b50610255600480360360608110156102cd57600080fd5b506001600160a01b03813581169160208101359091169060400135610740565b3480156102f957600080fd5b506103026107ac565b604080516001600160a01b039092168252519081900360200190f35b34801561032a57600080fd5b506101806107bb565b34801561033f57600080fd5b506103486107c1565b6040805160ff9092168252519081900360200190f35b34801561036a57600080fd5b506102936004803603602081101561038157600080fd5b50356107ca565b34801561039457600080fd5b506103026108c4565b3480156103a957600080fd5b50610180600480360360208110156103c057600080fd5b50356001600160a01b03166108d3565b3480156103dc57600080fd5b50610180600480360360208110156103f357600080fd5b50356001600160a01b03166108e5565b34801561040f57600080fd5b50610180610900565b34801561042457600080fd5b50610180610906565b34801561043957600080fd5b5061018061090c565b34801561044e57600080fd5b506101a7610911565b34801561046357600080fd5b506102556004803603604081101561047a57600080fd5b506001600160a01b03813516906020013561096f565b34801561049c57600080fd5b50610293600480360360208110156104b357600080fd5b50356001600160a01b0316610983565b3480156104cf57600080fd5b50610255610a94565b3480156104e457600080fd5b50610180600480360360408110156104fb57600080fd5b506001600160a01b0381358116916020013516610a9d565b34801561051f57600080fd5b50610180610ac8565b600660209081526000928352604080842090915290825290205481565b60018054604080516020601f600260001961010087891615020190951694909404938401819004810282018101909252828152606093909290918301828280156105d05780601f106105a5576101008083540402835291602001916105d0565b820191906000526020600020905b8154815290600101906020018083116105b357829003601f168201915b5050505050905090565b600033151561061d57604051600160e51b62461bcd0281526004018080602001828103825260248152602001806110706024913960400191505060405180910390fd5b6001600160a01b038316151561066757604051600160e51b62461bcd0281526004018080602001828103825260228152602001806110086022913960400191505060405180910390fd5b3360008181526006602090815260408083206001600160a01b03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060015b92915050565b60045490565b6000546001600160a01b0316331461072b5760408051600160e51b62461bcd02815260206004820152600e6024820152600160901b6d6e6f7420676f7665726e616e636502604482015290519081900360640190fd5b6008805460ff19166001179055565b60075481565b6001600160a01b0383166000908152600660209081526040808320338452909152812054610774818463ffffffff610ace16565b6001600160a01b03861660009081526006602090815260408083203384529091529020556107a3858585610b10565b95945050505050565b600b546001600160a01b031681565b600a5481565b60035460ff1690565b6000546001600160a01b031633146108205760408051600160e51b62461bcd02815260206004820152600e6024820152600160901b6d6e6f7420676f7665726e616e636502604482015290519081900360640190fd5b806107d0101580156108335750600a8110155b15156108895760408051600160e51b62461bcd02815260206004820152601160248201527f696e76616c6964206275726e2072617465000000000000000000000000000000604482015290519081900360640190fd5b60098190556040805182815290517fcd352108d086e3d25400516922efd013b12c0c7eec6988c750d661ee929af9559181900360200190a150565b6000546001600160a01b031681565b60056020526000908152604090205481565b6001600160a01b031660009081526005602052604090205490565b61271081565b60095481565b600a81565b60028054604080516020601f60001961010060018716150201909416859004938401819004810282018101909252828152606093909290918301828280156105d05780601f106105a5576101008083540402835291602001916105d0565b600061097c338484610b10565b9392505050565b6000546001600160a01b031633146109d95760408051600160e51b62461bcd02815260206004820152600e6024820152600160901b6d6e6f7420676f7665726e616e636502604482015290519081900360640190fd5b6001600160a01b0381161515610a395760408051600160e51b62461bcd02815260206004820152601f60248201527f6e657720676f7665726e616e636520746865207a65726f206164647265737300604482015290519081900360640190fd5b600080546040516001600160a01b03808516939216917f5f56bee8cffbe9a78652a74a60705edede02af10b0bbb888ca44b79a0d42ce8091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b60085460ff1681565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205490565b6107d081565b600061097c83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610dde565b60085460009060ff1680610b3157506000546001600160a01b038581169116145b1515610b875760408051600160e51b62461bcd02815260206004820152600f60248201527f7472616e7366657220636c6f7365640000000000000000000000000000000000604482015290519081900360640190fd5b6001600160a01b0384161515610bd157604051600160e51b62461bcd02815260040180806020018281038252602581526020018061104b6025913960400191505060405180910390fd5b6001600160a01b0383161515610c1b57604051600160e51b62461bcd028152600401808060200182810382526023815260200180610fe56023913960400191505060405180910390fd5b60008290506000610c49612710610c3d60095487610e7890919063ffffffff16565b9063ffffffff610ed816565b90508015610d1d57600b546001600160a01b0316600090815260056020526040902054610c7c908263ffffffff610f1a16565b600b546001600160a01b0316600090815260056020526040902055600454610caa908263ffffffff610ace16565b600455610cbd828263ffffffff610ace16565b600a54909250610cd3908263ffffffff610f1a16565b600a55600b546040805183815290516001600160a01b03928316928916917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef919081900360200190a35b6001600160a01b038616600090815260056020526040902054610d46908563ffffffff610ace16565b6001600160a01b038088166000908152600560205260408082209390935590871681522054610d7b908363ffffffff610f1a16565b6001600160a01b0380871660008181526005602090815260409182902094909455805186815290519193928a16927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a350600195945050505050565b60008184841115610e7057604051600160e51b62461bcd0281526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610e35578181015183820152602001610e1d565b50505050905090810190601f168015610e625780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000821515610e89575060006106c9565b828202828482811515610e9857fe5b041461097c57604051600160e51b62461bcd02815260040180806020018281038252602181526020018061102a6021913960400191505060405180910390fd5b600061097c83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250610f77565b60008282018381101561097c5760408051600160e51b62461bcd02815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600081831515610fcc57604051600160e51b62461bcd02815260040180806020018281038252838181518152602001915080519060200190808383600083811015610e35578181015183820152602001610e1d565b5060008385811515610fda57fe5b049594505050505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373a165627a7a7230582028d6f9afb5d0426fbb86b041ab2d6bdded4e9809e5ad8c699cb504a4b76141f40029
Deployed Bytecode
0x6080604052600436106101405760003560e01c80635aa6e675116100b657806395d89b411161006f57806395d89b4114610442578063a9059cbb14610457578063ab033ea914610490578063bde8e9fa146104c3578063dd62ed3e146104d8578063e312848f1461051357610140565b80635aa6e675146103885780636ebcf6071461039d57806370a08231146103d0578063775e13771461040357806379138df1146104185780638afefd881461042d57610140565b806322f4596f1161010857806322f4596f1461029557806323b872dd146102aa57806328d2bc91146102ed5780632d201af01461031e578063313ce5671461033357806334fcf4371461035e57610140565b8063024c2ddd1461014557806306fdde0314610192578063095ea7b31461021c57806318160ddd146102695780631ae6ddec1461027e575b600080fd5b34801561015157600080fd5b506101806004803603604081101561016857600080fd5b506001600160a01b0381358116916020013516610528565b60408051918252519081900360200190f35b34801561019e57600080fd5b506101a7610545565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101e15781810151838201526020016101c9565b50505050905090810190601f16801561020e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561022857600080fd5b506102556004803603604081101561023f57600080fd5b506001600160a01b0381351690602001356105da565b604080519115158252519081900360200190f35b34801561027557600080fd5b506101806106cf565b34801561028a57600080fd5b506102936106d5565b005b3480156102a157600080fd5b5061018061073a565b3480156102b657600080fd5b50610255600480360360608110156102cd57600080fd5b506001600160a01b03813581169160208101359091169060400135610740565b3480156102f957600080fd5b506103026107ac565b604080516001600160a01b039092168252519081900360200190f35b34801561032a57600080fd5b506101806107bb565b34801561033f57600080fd5b506103486107c1565b6040805160ff9092168252519081900360200190f35b34801561036a57600080fd5b506102936004803603602081101561038157600080fd5b50356107ca565b34801561039457600080fd5b506103026108c4565b3480156103a957600080fd5b50610180600480360360208110156103c057600080fd5b50356001600160a01b03166108d3565b3480156103dc57600080fd5b50610180600480360360208110156103f357600080fd5b50356001600160a01b03166108e5565b34801561040f57600080fd5b50610180610900565b34801561042457600080fd5b50610180610906565b34801561043957600080fd5b5061018061090c565b34801561044e57600080fd5b506101a7610911565b34801561046357600080fd5b506102556004803603604081101561047a57600080fd5b506001600160a01b03813516906020013561096f565b34801561049c57600080fd5b50610293600480360360208110156104b357600080fd5b50356001600160a01b0316610983565b3480156104cf57600080fd5b50610255610a94565b3480156104e457600080fd5b50610180600480360360408110156104fb57600080fd5b506001600160a01b0381358116916020013516610a9d565b34801561051f57600080fd5b50610180610ac8565b600660209081526000928352604080842090915290825290205481565b60018054604080516020601f600260001961010087891615020190951694909404938401819004810282018101909252828152606093909290918301828280156105d05780601f106105a5576101008083540402835291602001916105d0565b820191906000526020600020905b8154815290600101906020018083116105b357829003601f168201915b5050505050905090565b600033151561061d57604051600160e51b62461bcd0281526004018080602001828103825260248152602001806110706024913960400191505060405180910390fd5b6001600160a01b038316151561066757604051600160e51b62461bcd0281526004018080602001828103825260228152602001806110086022913960400191505060405180910390fd5b3360008181526006602090815260408083206001600160a01b03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060015b92915050565b60045490565b6000546001600160a01b0316331461072b5760408051600160e51b62461bcd02815260206004820152600e6024820152600160901b6d6e6f7420676f7665726e616e636502604482015290519081900360640190fd5b6008805460ff19166001179055565b60075481565b6001600160a01b0383166000908152600660209081526040808320338452909152812054610774818463ffffffff610ace16565b6001600160a01b03861660009081526006602090815260408083203384529091529020556107a3858585610b10565b95945050505050565b600b546001600160a01b031681565b600a5481565b60035460ff1690565b6000546001600160a01b031633146108205760408051600160e51b62461bcd02815260206004820152600e6024820152600160901b6d6e6f7420676f7665726e616e636502604482015290519081900360640190fd5b806107d0101580156108335750600a8110155b15156108895760408051600160e51b62461bcd02815260206004820152601160248201527f696e76616c6964206275726e2072617465000000000000000000000000000000604482015290519081900360640190fd5b60098190556040805182815290517fcd352108d086e3d25400516922efd013b12c0c7eec6988c750d661ee929af9559181900360200190a150565b6000546001600160a01b031681565b60056020526000908152604090205481565b6001600160a01b031660009081526005602052604090205490565b61271081565b60095481565b600a81565b60028054604080516020601f60001961010060018716150201909416859004938401819004810282018101909252828152606093909290918301828280156105d05780601f106105a5576101008083540402835291602001916105d0565b600061097c338484610b10565b9392505050565b6000546001600160a01b031633146109d95760408051600160e51b62461bcd02815260206004820152600e6024820152600160901b6d6e6f7420676f7665726e616e636502604482015290519081900360640190fd5b6001600160a01b0381161515610a395760408051600160e51b62461bcd02815260206004820152601f60248201527f6e657720676f7665726e616e636520746865207a65726f206164647265737300604482015290519081900360640190fd5b600080546040516001600160a01b03808516939216917f5f56bee8cffbe9a78652a74a60705edede02af10b0bbb888ca44b79a0d42ce8091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b60085460ff1681565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205490565b6107d081565b600061097c83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610dde565b60085460009060ff1680610b3157506000546001600160a01b038581169116145b1515610b875760408051600160e51b62461bcd02815260206004820152600f60248201527f7472616e7366657220636c6f7365640000000000000000000000000000000000604482015290519081900360640190fd5b6001600160a01b0384161515610bd157604051600160e51b62461bcd02815260040180806020018281038252602581526020018061104b6025913960400191505060405180910390fd5b6001600160a01b0383161515610c1b57604051600160e51b62461bcd028152600401808060200182810382526023815260200180610fe56023913960400191505060405180910390fd5b60008290506000610c49612710610c3d60095487610e7890919063ffffffff16565b9063ffffffff610ed816565b90508015610d1d57600b546001600160a01b0316600090815260056020526040902054610c7c908263ffffffff610f1a16565b600b546001600160a01b0316600090815260056020526040902055600454610caa908263ffffffff610ace16565b600455610cbd828263ffffffff610ace16565b600a54909250610cd3908263ffffffff610f1a16565b600a55600b546040805183815290516001600160a01b03928316928916917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef919081900360200190a35b6001600160a01b038616600090815260056020526040902054610d46908563ffffffff610ace16565b6001600160a01b038088166000908152600560205260408082209390935590871681522054610d7b908363ffffffff610f1a16565b6001600160a01b0380871660008181526005602090815260409182902094909455805186815290519193928a16927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a350600195945050505050565b60008184841115610e7057604051600160e51b62461bcd0281526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610e35578181015183820152602001610e1d565b50505050905090810190601f168015610e625780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000821515610e89575060006106c9565b828202828482811515610e9857fe5b041461097c57604051600160e51b62461bcd02815260040180806020018281038252602181526020018061102a6021913960400191505060405180910390fd5b600061097c83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250610f77565b60008282018381101561097c5760408051600160e51b62461bcd02815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600081831515610fcc57604051600160e51b62461bcd02815260040180806020018281038252838181518152602001915080519060200190808383600083811015610e35578181015183820152602001610e1d565b5060008385811515610fda57fe5b049594505050505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373a165627a7a7230582028d6f9afb5d0426fbb86b041ab2d6bdded4e9809e5ad8c699cb504a4b76141f40029
Deployed Bytecode Sourcemap
11960:5667:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15316:8;;;12381:68;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12381:68:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;12381:68:0;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;10234:83;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10234:83:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;10234:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13893:386;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13893:386:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;13893:386:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;15166:103;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15166:103:0;;;:::i;13131:98::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13131:98:0;;;:::i;:::-;;12498:30;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12498:30:0;;;:::i;16079:272::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;16079:272:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;16079:272:0;;;;;;;;;;;;;;;;;:::i;12994:69::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12994:69:0;;;:::i;:::-;;;;-1:-1:-1;;;;;12994:69:0;;;;;;;;;;;;;;12928:34;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12928:34:0;;;:::i;11085:83::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11085:83:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;15386:263;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15386:263:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;15386:263:0;;:::i;11276:25::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11276:25:0;;;:::i;12330:44::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12330:44:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;12330:44:0;-1:-1:-1;;;;;12330:44:0;;:::i;14980:119::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;14980:119:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;14980:119:0;-1:-1:-1;;;;;14980:119:0;;:::i;12752:41::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12752:41:0;;;:::i;12882:30::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12882:30:0;;;:::i;12685:48::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12685:48:0;;;:::i;10436:87::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10436:87:0;;;:::i;15656:134::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15656:134:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;15656:134:0;;;;;;;;:::i;11587:258::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11587:258:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;11587:258:0;-1:-1:-1;;;;;11587:258:0;;:::i;12546:33::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12546:33:0;;;:::i;14614:146::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;14614:146:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;14614:146:0;;;;;;;;;;:::i;12616:50::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12616:50:0;;;:::i;12381:68::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;10234:83::-;10304:5;10297:12;;;;;;;;-1:-1:-1;;10297:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10271:13;;10297:12;;10304:5;;10297:12;;10304:5;10297:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10234:83;:::o;13893:386::-;13965:4;13996:10;:24;;13988:73;;;;-1:-1:-1;;;;;13988:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14080:21:0;;;;14072:68;;;;-1:-1:-1;;;;;14072:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14165:10;14153:23;;;;:11;:23;;;;;;;;-1:-1:-1;;;;;14153:32:0;;;;;;;;;;;;:41;;;14210:37;;;;;;;14153:32;;14165:10;14210:37;;;;;;;;;;;-1:-1:-1;14267:4:0;13893:386;;;;;:::o;15166:103::-;15249:12;;15166:103;:::o;13131:98::-;11530:10;;-1:-1:-1;;;;;11530:10:0;11516;:24;11508:51;;;;;-1:-1:-1;;;;;11508:51:0;;;;;;;;;;;;-1:-1:-1;;;;;11508:51:0;;;;;;;;;;;;;;;13201:13;:20;;-1:-1:-1;;13201:20:0;13217:4;13201:20;;;13131:98::o;12498:30::-;;;;:::o;16079:272::-;-1:-1:-1;;;;;16203:17:0;;16164:4;16203:17;;;:11;:17;;;;;;;;16221:10;16203:29;;;;;;;;16275:16;16203:29;16285:5;16275:16;:9;:16;:::i;:::-;-1:-1:-1;;;;;16243:17:0;;;;;;:11;:17;;;;;;;;16261:10;16243:29;;;;;;;:48;16319:24;16255:4;16334:2;16337:5;16319:9;:24::i;:::-;16312:31;16079:272;-1:-1:-1;;;;;16079:272:0:o;12994:69::-;;;-1:-1:-1;;;;;12994:69:0;;:::o;12928:34::-;;;;:::o;11085:83::-;11151:9;;;;11085:83;:::o;15386:263::-;11530:10;;-1:-1:-1;;;;;11530:10:0;11516;:24;11508:51;;;;;-1:-1:-1;;;;;11508:51:0;;;;;;;;;;;;-1:-1:-1;;;;;11508:51:0;;;;;;;;;;;;;;;15502:9;12662:4;15479:32;;:68;;;;;12731:2;15515:9;:32;;15479:68;15471:97;;;;;;;-1:-1:-1;;;;;15471:97:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;15581:9;:21;;;15620;;;;;;;;;;;;;;;;;15386:263;:::o;11276:25::-;;;-1:-1:-1;;;;;11276:25:0;;:::o;12330:44::-;;;;;;;;;;;;;:::o;14980:119::-;-1:-1:-1;;;;;15075:16:0;15042:7;15075:16;;;:9;:16;;;;;;;14980:119::o;12752:41::-;12788:5;12752:41;:::o;12882:30::-;;;;:::o;12685:48::-;12731:2;12685:48;:::o;10436:87::-;10508:7;10501:14;;;;;;;-1:-1:-1;;10501:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10475:13;;10501:14;;10508:7;;10501:14;;10508:7;10501:14;;;;;;;;;;;;;;;;;;;;;;;;15656:134;15722:4;15752:30;15762:10;15773:2;15776:5;15752:9;:30::i;:::-;15745:37;15656:134;-1:-1:-1;;;15656:134:0:o;11587:258::-;11530:10;;-1:-1:-1;;;;;11530:10:0;11516;:24;11508:51;;;;;-1:-1:-1;;;;;11508:51:0;;;;;;;;;;;;-1:-1:-1;;;;;11508:51:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;11679:25:0;;;;11671:69;;;;;-1:-1:-1;;;;;11671:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;11778:10;;;11756:46;;-1:-1:-1;;;;;11756:46:0;;;;11778:10;;;11756:46;;;11813:10;:24;;-1:-1:-1;;;;;;11813:24:0;-1:-1:-1;;;;;11813:24:0;;;;;;;;;;11587:258::o;12546:33::-;;;;;;:::o;14614:146::-;-1:-1:-1;;;;;14725:18:0;;;14692:7;14725:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;14614:146::o;12616:50::-;12662:4;12616:50;:::o;2501:136::-;2559:7;2586:43;2590:1;2593;2586:43;;;;;;;;;;;;;;;;;:3;:43::i;16627:997::-;16757:13;;16711:4;;16757:13;;;:35;;-1:-1:-1;16782:10:0;;-1:-1:-1;;;;;16774:18:0;;;16782:10;;16774:18;16757:35;16749:63;;;;;;;-1:-1:-1;;;;;16749:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16833:18:0;;;;16825:68;;;;-1:-1:-1;;;;;16825:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16912:16:0;;;;16904:64;;;;-1:-1:-1;;;;;16904:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16981:18;17002:5;16981:26;;17018:15;17036:37;12788:5;17037:20;17047:9;;17037:5;:9;;:20;;;;:::i;:::-;17036:26;:37;:26;:37;:::i;:::-;17018:55;-1:-1:-1;17088:11:0;;17084:348;;17172:9;;-1:-1:-1;;;;;17172:9:0;17162:20;;;;:9;:20;;;;;;:33;;17187:7;17162:33;:24;:33;:::i;:::-;17149:9;;-1:-1:-1;;;;;17149:9:0;17139:20;;;;:9;:20;;;;;:56;17225:12;;:25;;17242:7;17225:25;:16;:25;:::i;:::-;17210:12;:40;17278:23;:10;17293:7;17278:23;:14;:23;:::i;:::-;17336:15;;17265:36;;-1:-1:-1;17336:28:0;;17356:7;17336:28;:19;:28;:::i;:::-;17318:15;:46;17401:9;;17386:34;;;;;;;;-1:-1:-1;;;;;17401:9:0;;;;17386:34;;;;;;;;;;;;;17084:348;-1:-1:-1;;;;;17462:15:0;;;;;;:9;:15;;;;;;:26;;17482:5;17462:26;:19;:26;:::i;:::-;-1:-1:-1;;;;;17444:15:0;;;;;;;:9;:15;;;;;;:44;;;;17515:13;;;;;;;:29;;17533:10;17515:29;:17;:29;:::i;:::-;-1:-1:-1;;;;;17499:13:0;;;;;;;:9;:13;;;;;;;;;:45;;;;17562:30;;;;;;;17499:13;;17562:30;;;;;;;;;;;;;-1:-1:-1;17612:4:0;;16627:997;-1:-1:-1;;;;;16627:997:0:o;2974:192::-;3060:7;3096:12;3088:6;;;;3080:29;;;;-1:-1:-1;;;;;3080:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;3080:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;3132:5:0;;;2974:192::o;3417:471::-;3475:7;3720:6;;3716:47;;;-1:-1:-1;3750:1:0;3743:8;;3716:47;3787:5;;;3791:1;3787;:5;3811;;;;;;;;:10;3803:56;;;;-1:-1:-1;;;;;3803:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4356:132;4414:7;4441:39;4445:1;4448;4441:39;;;;;;;;;;;;;;;;;:3;:39::i;2045:181::-;2103:7;2135:5;;;2159:6;;;;2151:46;;;;;-1:-1:-1;;;;;2151:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;5018:345;5104:7;5206:12;5199:5;;;5191:28;;;;-1:-1:-1;;;;;5191:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;5191:28:0;;5230:9;5246:1;5242;:5;;;;;;;;;5018:345;-1:-1:-1;;;;;5018:345:0:o
Swarm Source
bzzr://28d6f9afb5d0426fbb86b041ab2d6bdded4e9809e5ad8c699cb504a4b76141f4
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.