Feature Tip: Add private address tag to any address under My Name Tag !
Overview
Max Total Supply
1,230.475319910451489309 xBASK
Holders
95 (0.00%)
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
5.718019694928245016 xBASKValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
XBASK
Compiler Version
v0.7.3+commit.9bfce1f6
Contract Source Code (Solidity Multiple files format)
// SPDX-License-Identifier: MIT pragma solidity ^0.7.3; import "./IERC20.sol"; import "./ERC20.sol"; import "./SafeMath.sol"; // BaskBar is the coolest bar in town. You come in with some Bask, and leave with more! The longer you stay, the more Bask you get. // // This contract handles swapping to and from xBask, BaskSwap's staking token. contract XBASK is ERC20("xBASK", "xBASK") { using SafeMath for uint256; IERC20 public bask = IERC20(0x44564d0bd94343f72E3C8a0D22308B7Fa71DB0Bb); // Define the Bask token contract constructor() {} // xBASK/BASK ratio function getRatio(uint256 _share) public view returns (uint256) { // Gets the amount of xBask in existence uint256 totalShares = totalSupply(); // Calculates the amount of Bask the xBask is worth uint256 what = _share.mul(bask.balanceOf(address(this))).div(totalShares); return what; } // Enter the bar. Pay some SUSHIs. Earn some shares. // Locks Bask and mints xBask function enter(uint256 _amount) public { // Gets the amount of Bask locked in the contract uint256 totalBask = bask.balanceOf(address(this)); // Gets the amount of xBask in existence uint256 totalShares = totalSupply(); // If no xBask exists, mint it 1:1 to the amount put in if (totalShares == 0 || totalBask == 0) { _mint(msg.sender, _amount); } // Calculate and mint the amount of xBask the Bask is worth. The ratio will change overtime, as xBask is burned/minted and Bask deposited + gained from fees / withdrawn. else { uint256 what = _amount.mul(totalShares).div(totalBask); _mint(msg.sender, what); } // Lock the Bask in the contract bask.transferFrom(msg.sender, address(this), _amount); } // Leave the bar. Claim back your SUSHIs. // Unlocks the staked + gained Bask and burns xBask function leave(uint256 _share) public { // Gets the amount of xBask in existence uint256 totalShares = totalSupply(); // Calculates the amount of Bask the xBask is worth uint256 what = _share.mul(bask.balanceOf(address(this))).div(totalShares); _burn(msg.sender, _share); bask.transfer(msg.sender, what); } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <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 GSN 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 payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; import "./Context.sol"; import "./IERC20.sol"; import "./SafeMath.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20 { using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ constructor (string memory name_, string memory symbol_) public { _name = name_; _symbol = symbol_; _decimals = 18; } /** * @dev Returns the name of the token. */ function name() public view virtual returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is * called. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual returns (uint8) { return _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ function _setupDecimals(uint8 decimals_) internal virtual { _decimals = decimals_; } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ 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); }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.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, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b > a) return (false, 0); return (true, a - b); } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, 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 (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a / b); } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a % b); } /** * @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) { require(b <= a, "SafeMath: subtraction overflow"); return a - b; } /** * @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) { 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, reverting 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) { require(b > 0, "SafeMath: division by zero"); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting 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) { require(b > 0, "SafeMath: modulo by zero"); return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); return a - b; } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryDiv}. * * 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, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * 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, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); return a % b; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bask","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"enter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_share","type":"uint256"}],"name":"getRatio","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_share","type":"uint256"}],"name":"leave","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405260058054610100600160a81b0319167444564d0bd94343f72e3c8a0d22308b7fa71db0bb0017905534801561003857600080fd5b50604080518082018252600580825264784241534b60d81b602080840182815285518087019096529285528401528151919291610077916003916100a0565b50805161008b9060049060208401906100a0565b50506005805460ff1916601217905550610133565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106100e157805160ff191683800117855561010e565b8280016001018555821561010e579182015b8281111561010e5782518255916020019190600101906100f3565b5061011a92915061011e565b5090565b5b8082111561011a576000815560010161011f565b61115a80620001436000396000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c806367dfd4c911610097578063a59f3e0c11610066578063a59f3e0c146102e7578063a9059cbb14610304578063dd62ed3e14610330578063e628aeff1461035e576100f5565b806367dfd4c91461026e57806370a082311461028d57806395d89b41146102b3578063a457c2d7146102bb576100f5565b806323b872dd116100d357806323b872dd146101d1578063313ce56714610207578063395093511461022557806346a62eaf14610251576100f5565b806306fdde03146100fa578063095ea7b31461017757806318160ddd146101b7575b600080fd5b610102610382565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561013c578181015183820152602001610124565b50505050905090810190601f1680156101695780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101a36004803603604081101561018d57600080fd5b506001600160a01b038135169060200135610418565b604080519115158252519081900360200190f35b6101bf610436565b60408051918252519081900360200190f35b6101a3600480360360608110156101e757600080fd5b506001600160a01b0381358116916020810135909116906040013561043c565b61020f6104c3565b6040805160ff9092168252519081900360200190f35b6101a36004803603604081101561023b57600080fd5b506001600160a01b0381351690602001356104cc565b6101bf6004803603602081101561026757600080fd5b503561051a565b61028b6004803603602081101561028457600080fd5b50356105d3565b005b6101bf600480360360208110156102a357600080fd5b50356001600160a01b0316610712565b61010261072d565b6101a3600480360360408110156102d157600080fd5b506001600160a01b03813516906020013561078e565b61028b600480360360208110156102fd57600080fd5b50356107f6565b6101a36004803603604081101561031a57600080fd5b506001600160a01b03813516906020013561091b565b6101bf6004803603604081101561034657600080fd5b506001600160a01b038135811691602001351661092f565b61036661095a565b604080516001600160a01b039092168252519081900360200190f35b60038054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561040e5780601f106103e35761010080835404028352916020019161040e565b820191906000526020600020905b8154815290600101906020018083116103f157829003601f168201915b5050505050905090565b600061042c61042561096e565b8484610972565b5060015b92915050565b60025490565b6000610449848484610a5e565b6104b98461045561096e565b6104b48560405180606001604052806028815260200161106e602891396001600160a01b038a1660009081526001602052604081209061049361096e565b6001600160a01b031681526020810191909152604001600020549190610bb9565b610972565b5060019392505050565b60055460ff1690565b600061042c6104d961096e565b846104b485600160006104ea61096e565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490610c50565b600080610525610436565b905060006105cb826105c5600560019054906101000a90046001600160a01b03166001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b15801561059257600080fd5b505afa1580156105a6573d6000803e3d6000fd5b505050506040513d60208110156105bc57600080fd5b50518790610cb1565b90610d0a565b949350505050565b60006105dd610436565b9050600061067d826105c5600560019054906101000a90046001600160a01b03166001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b15801561064a57600080fd5b505afa15801561065e573d6000803e3d6000fd5b505050506040513d602081101561067457600080fd5b50518690610cb1565b90506106893384610d71565b6005546040805163a9059cbb60e01b81523360048201526024810184905290516101009092046001600160a01b03169163a9059cbb916044808201926020929091908290030181600087803b1580156106e157600080fd5b505af11580156106f5573d6000803e3d6000fd5b505050506040513d602081101561070b57600080fd5b5050505050565b6001600160a01b031660009081526020819052604090205490565b60048054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561040e5780601f106103e35761010080835404028352916020019161040e565b600061042c61079b61096e565b846104b48560405180606001604052806025815260200161110060259139600160006107c561096e565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190610bb9565b600554604080516370a0823160e01b8152306004820152905160009261010090046001600160a01b0316916370a08231916024808301926020929190829003018186803b15801561084657600080fd5b505afa15801561085a573d6000803e3d6000fd5b505050506040513d602081101561087057600080fd5b50519050600061087e610436565b905080158061088b575081155b1561089f5761089a3384610e6d565b6108bd565b60006108af836105c58685610cb1565b90506108bb3382610e6d565b505b600554604080516323b872dd60e01b81523360048201523060248201526044810186905290516101009092046001600160a01b0316916323b872dd916064808201926020929091908290030181600087803b1580156106e157600080fd5b600061042c61092861096e565b8484610a5e565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60055461010090046001600160a01b031681565b3390565b6001600160a01b0383166109b75760405162461bcd60e51b81526004018080602001828103825260248152602001806110dc6024913960400191505060405180910390fd5b6001600160a01b0382166109fc5760405162461bcd60e51b81526004018080602001828103825260228152602001806110056022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610aa35760405162461bcd60e51b81526004018080602001828103825260258152602001806110b76025913960400191505060405180910390fd5b6001600160a01b038216610ae85760405162461bcd60e51b8152600401808060200182810382526023815260200180610fc06023913960400191505060405180910390fd5b610af3838383610f5d565b610b3081604051806060016040528060268152602001611027602691396001600160a01b0386166000908152602081905260409020549190610bb9565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610b5f9082610c50565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115610c485760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610c0d578181015183820152602001610bf5565b50505050905090810190601f168015610c3a5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610caa576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b600082610cc057506000610430565b82820282848281610ccd57fe5b0414610caa5760405162461bcd60e51b815260040180806020018281038252602181526020018061104d6021913960400191505060405180910390fd5b6000808211610d60576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b818381610d6957fe5b049392505050565b6001600160a01b038216610db65760405162461bcd60e51b81526004018080602001828103825260218152602001806110966021913960400191505060405180910390fd5b610dc282600083610f5d565b610dff81604051806060016040528060228152602001610fe3602291396001600160a01b0385166000908152602081905260409020549190610bb9565b6001600160a01b038316600090815260208190526040902055600254610e259082610f62565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6001600160a01b038216610ec8576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b610ed460008383610f5d565b600254610ee19082610c50565b6002556001600160a01b038216600090815260208190526040902054610f079082610c50565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b505050565b600082821115610fb9576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b5090039056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220160b52b837f8a10df3bc24ff25e69c28d6b0e28b7aa07865e9feaeba512228a564736f6c63430007030033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100f55760003560e01c806367dfd4c911610097578063a59f3e0c11610066578063a59f3e0c146102e7578063a9059cbb14610304578063dd62ed3e14610330578063e628aeff1461035e576100f5565b806367dfd4c91461026e57806370a082311461028d57806395d89b41146102b3578063a457c2d7146102bb576100f5565b806323b872dd116100d357806323b872dd146101d1578063313ce56714610207578063395093511461022557806346a62eaf14610251576100f5565b806306fdde03146100fa578063095ea7b31461017757806318160ddd146101b7575b600080fd5b610102610382565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561013c578181015183820152602001610124565b50505050905090810190601f1680156101695780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101a36004803603604081101561018d57600080fd5b506001600160a01b038135169060200135610418565b604080519115158252519081900360200190f35b6101bf610436565b60408051918252519081900360200190f35b6101a3600480360360608110156101e757600080fd5b506001600160a01b0381358116916020810135909116906040013561043c565b61020f6104c3565b6040805160ff9092168252519081900360200190f35b6101a36004803603604081101561023b57600080fd5b506001600160a01b0381351690602001356104cc565b6101bf6004803603602081101561026757600080fd5b503561051a565b61028b6004803603602081101561028457600080fd5b50356105d3565b005b6101bf600480360360208110156102a357600080fd5b50356001600160a01b0316610712565b61010261072d565b6101a3600480360360408110156102d157600080fd5b506001600160a01b03813516906020013561078e565b61028b600480360360208110156102fd57600080fd5b50356107f6565b6101a36004803603604081101561031a57600080fd5b506001600160a01b03813516906020013561091b565b6101bf6004803603604081101561034657600080fd5b506001600160a01b038135811691602001351661092f565b61036661095a565b604080516001600160a01b039092168252519081900360200190f35b60038054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561040e5780601f106103e35761010080835404028352916020019161040e565b820191906000526020600020905b8154815290600101906020018083116103f157829003601f168201915b5050505050905090565b600061042c61042561096e565b8484610972565b5060015b92915050565b60025490565b6000610449848484610a5e565b6104b98461045561096e565b6104b48560405180606001604052806028815260200161106e602891396001600160a01b038a1660009081526001602052604081209061049361096e565b6001600160a01b031681526020810191909152604001600020549190610bb9565b610972565b5060019392505050565b60055460ff1690565b600061042c6104d961096e565b846104b485600160006104ea61096e565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490610c50565b600080610525610436565b905060006105cb826105c5600560019054906101000a90046001600160a01b03166001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b15801561059257600080fd5b505afa1580156105a6573d6000803e3d6000fd5b505050506040513d60208110156105bc57600080fd5b50518790610cb1565b90610d0a565b949350505050565b60006105dd610436565b9050600061067d826105c5600560019054906101000a90046001600160a01b03166001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b15801561064a57600080fd5b505afa15801561065e573d6000803e3d6000fd5b505050506040513d602081101561067457600080fd5b50518690610cb1565b90506106893384610d71565b6005546040805163a9059cbb60e01b81523360048201526024810184905290516101009092046001600160a01b03169163a9059cbb916044808201926020929091908290030181600087803b1580156106e157600080fd5b505af11580156106f5573d6000803e3d6000fd5b505050506040513d602081101561070b57600080fd5b5050505050565b6001600160a01b031660009081526020819052604090205490565b60048054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561040e5780601f106103e35761010080835404028352916020019161040e565b600061042c61079b61096e565b846104b48560405180606001604052806025815260200161110060259139600160006107c561096e565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190610bb9565b600554604080516370a0823160e01b8152306004820152905160009261010090046001600160a01b0316916370a08231916024808301926020929190829003018186803b15801561084657600080fd5b505afa15801561085a573d6000803e3d6000fd5b505050506040513d602081101561087057600080fd5b50519050600061087e610436565b905080158061088b575081155b1561089f5761089a3384610e6d565b6108bd565b60006108af836105c58685610cb1565b90506108bb3382610e6d565b505b600554604080516323b872dd60e01b81523360048201523060248201526044810186905290516101009092046001600160a01b0316916323b872dd916064808201926020929091908290030181600087803b1580156106e157600080fd5b600061042c61092861096e565b8484610a5e565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60055461010090046001600160a01b031681565b3390565b6001600160a01b0383166109b75760405162461bcd60e51b81526004018080602001828103825260248152602001806110dc6024913960400191505060405180910390fd5b6001600160a01b0382166109fc5760405162461bcd60e51b81526004018080602001828103825260228152602001806110056022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610aa35760405162461bcd60e51b81526004018080602001828103825260258152602001806110b76025913960400191505060405180910390fd5b6001600160a01b038216610ae85760405162461bcd60e51b8152600401808060200182810382526023815260200180610fc06023913960400191505060405180910390fd5b610af3838383610f5d565b610b3081604051806060016040528060268152602001611027602691396001600160a01b0386166000908152602081905260409020549190610bb9565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610b5f9082610c50565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115610c485760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610c0d578181015183820152602001610bf5565b50505050905090810190601f168015610c3a5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610caa576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b600082610cc057506000610430565b82820282848281610ccd57fe5b0414610caa5760405162461bcd60e51b815260040180806020018281038252602181526020018061104d6021913960400191505060405180910390fd5b6000808211610d60576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b818381610d6957fe5b049392505050565b6001600160a01b038216610db65760405162461bcd60e51b81526004018080602001828103825260218152602001806110966021913960400191505060405180910390fd5b610dc282600083610f5d565b610dff81604051806060016040528060228152602001610fe3602291396001600160a01b0385166000908152602081905260409020549190610bb9565b6001600160a01b038316600090815260208190526040902055600254610e259082610f62565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6001600160a01b038216610ec8576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b610ed460008383610f5d565b600254610ee19082610c50565b6002556001600160a01b038216600090815260208190526040902054610f079082610c50565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b505050565b600082821115610fb9576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b5090039056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220160b52b837f8a10df3bc24ff25e69c28d6b0e28b7aa07865e9feaeba512228a564736f6c63430007030033
Deployed Bytecode Sourcemap
343:1970:4:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2149:89:1;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4225:166;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;4225:166:1;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;3216:106;;;:::i;:::-;;;;;;;;;;;;;;;;4858:317;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;4858:317:1;;;;;;;;;;;;;;;;;:::i;3067:89::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;5570:215;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;5570:215:1;;;;;;;;:::i;585:330:4:-;;;;;;;;;;;;;;;;-1:-1:-1;585:330:4;;:::i;1953:358::-;;;;;;;;;;;;;;;;-1:-1:-1;1953:358:4;;:::i;:::-;;3380:125:1;;;;;;;;;;;;;;;;-1:-1:-1;3380:125:1;-1:-1:-1;;;;;3380:125:1;;:::i;2351:93::-;;;:::i;6272:266::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;6272:266:1;;;;;;;;:::i;1012:833:4:-;;;;;;;;;;;;;;;;-1:-1:-1;1012:833:4;;:::i;3708:172:1:-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;3708:172:1;;;;;;;;:::i;3938:149::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;3938:149:1;;;;;;;;;;:::i;423:71:4:-;;;:::i;:::-;;;;-1:-1:-1;;;;;423:71:4;;;;;;;;;;;;;;2149:89:1;2226:5;2219:12;;;;;;;;-1:-1:-1;;2219:12:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2194:13;;2219:12;;2226:5;;2219:12;;2226:5;2219:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2149:89;:::o;4225:166::-;4308:4;4324:39;4333:12;:10;:12::i;:::-;4347:7;4356:6;4324:8;:39::i;:::-;-1:-1:-1;4380:4:1;4225:166;;;;;:::o;3216:106::-;3303:12;;3216:106;:::o;4858:317::-;4964:4;4980:36;4990:6;4998:9;5009:6;4980:9;:36::i;:::-;5026:121;5035:6;5043:12;:10;:12::i;:::-;5057:89;5095:6;5057:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;5057:19:1;;;;;;:11;:19;;;;;;5077:12;:10;:12::i;:::-;-1:-1:-1;;;;;5057:33:1;;;;;;;;;;;;-1:-1:-1;5057:33:1;;;:89;:37;:89::i;:::-;5026:8;:121::i;:::-;-1:-1:-1;5164:4:1;4858:317;;;;;:::o;3067:89::-;3140:9;;;;3067:89;:::o;5570:215::-;5658:4;5674:83;5683:12;:10;:12::i;:::-;5697:7;5706:50;5745:10;5706:11;:25;5718:12;:10;:12::i;:::-;-1:-1:-1;;;;;5706:25:1;;;;;;;;;;;;;;;;;-1:-1:-1;5706:25:1;;;:34;;;;;;;;;;;:38;:50::i;585:330:4:-;640:7;708:19;730:13;:11;:13::i;:::-;708:35;;813:12;828:58;874:11;828:41;839:4;;;;;;;;;-1:-1:-1;;;;;839:4:4;-1:-1:-1;;;;;839:14:4;;862:4;839:29;;;;;;;;;;;;;-1:-1:-1;;;;;839:29:4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;839:29:4;828:6;;:10;:41::i;:::-;:45;;:58::i;:::-;813:73;585:330;-1:-1:-1;;;;585:330:4:o;1953:358::-;2050:19;2072:13;:11;:13::i;:::-;2050:35;;2155:12;2170:58;2216:11;2170:41;2181:4;;;;;;;;;-1:-1:-1;;;;;2181:4:4;-1:-1:-1;;;;;2181:14:4;;2204:4;2181:29;;;;;;;;;;;;;-1:-1:-1;;;;;2181:29:4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2181:29:4;2170:6;;:10;:41::i;:58::-;2155:73;;2238:25;2244:10;2256:6;2238:5;:25::i;:::-;2273:4;;:31;;;-1:-1:-1;;;2273:31:4;;2287:10;2273:31;;;;;;;;;;;;:4;;;;-1:-1:-1;;;;;2273:4:4;;:13;;:31;;;;;;;;;;;;;;;-1:-1:-1;2273:4:4;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1953:358:4:o;3380:125:1:-;-1:-1:-1;;;;;3480:18:1;3454:7;3480:18;;;;;;;;;;;;3380:125::o;2351:93::-;2430:7;2423:14;;;;;;;;-1:-1:-1;;2423:14:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2398:13;;2423:14;;2430:7;;2423:14;;2430:7;2423:14;;;;;;;;;;;;;;;;;;;;;;;;6272:266;6365:4;6381:129;6390:12;:10;:12::i;:::-;6404:7;6413:96;6452:15;6413:96;;;;;;;;;;;;;;;;;:11;:25;6425:12;:10;:12::i;:::-;-1:-1:-1;;;;;6413:25:1;;;;;;;;;;;;;;;;;-1:-1:-1;6413:25:1;;;:34;;;;;;;;;;;:96;:38;:96::i;1012:833:4:-;1139:4;;:29;;;-1:-1:-1;;;1139:29:4;;1162:4;1139:29;;;;;;-1:-1:-1;;1139:4:4;;;-1:-1:-1;;;;;1139:4:4;;:14;;:29;;;;;;;;;;;;;;:4;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1139:29:4;;-1:-1:-1;1227:19:4;1249:13;:11;:13::i;:::-;1227:35;-1:-1:-1;1340:16:4;;;:34;;-1:-1:-1;1360:14:4;;1340:34;1336:399;;;1390:26;1396:10;1408:7;1390:5;:26::i;:::-;1336:399;;;1633:12;1648:39;1677:9;1648:24;:7;1660:11;1648;:24::i;:39::-;1633:54;;1701:23;1707:10;1719:4;1701:5;:23::i;:::-;1336:399;;1785:4;;:53;;;-1:-1:-1;;;1785:53:4;;1803:10;1785:53;;;;1823:4;1785:53;;;;;;;;;;;;:4;;;;-1:-1:-1;;;;;1785:4:4;;:17;;:53;;;;;;;;;;;;;;;-1:-1:-1;1785:4:4;:53;;;;;;;;;;3708:172:1;3794:4;3810:42;3820:12;:10;:12::i;:::-;3834:9;3845:6;3810:9;:42::i;3938:149::-;-1:-1:-1;;;;;4053:18:1;;;4027:7;4053:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3938:149::o;423:71:4:-;;;;;;-1:-1:-1;;;;;423:71:4;;:::o;598:104:0:-;685:10;598:104;:::o;9336:340:1:-;-1:-1:-1;;;;;9437:19:1;;9429:68;;;;-1:-1:-1;;;9429:68:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;9515:21:1;;9507:68;;;;-1:-1:-1;;;9507:68:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;9586:18:1;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;9637:32;;;;;;;;;;;;;;;;;9336:340;;;:::o;7012:530::-;-1:-1:-1;;;;;7117:20:1;;7109:70;;;;-1:-1:-1;;;7109:70:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;7197:23:1;;7189:71;;;;-1:-1:-1;;;7189:71:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7271:47;7292:6;7300:9;7311:6;7271:20;:47::i;:::-;7349:71;7371:6;7349:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;7349:17:1;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;7329:17:1;;;:9;:17;;;;;;;;;;;:91;;;;7453:20;;;;;;;:32;;7478:6;7453:24;:32::i;:::-;-1:-1:-1;;;;;7430:20:1;;;:9;:20;;;;;;;;;;;;:55;;;;7500:35;;;;;;;7430:20;;7500:35;;;;;;;;;;;;;7012:530;;;:::o;5432:163:3:-;5518:7;5553:12;5545:6;;;;5537:29;;;;-1:-1:-1;;;5537:29:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5583:5:3;;;5432:163::o;2690:175::-;2748:7;2779:5;;;2802:6;;;;2794:46;;;;;-1:-1:-1;;;2794:46:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;2857:1;2690:175;-1:-1:-1;;;2690:175:3:o;3538:215::-;3596:7;3619:6;3615:20;;-1:-1:-1;3634:1:3;3627:8;;3615:20;3657:5;;;3661:1;3657;:5;:1;3680:5;;;;;:10;3672:56;;;;-1:-1:-1;;;3672:56:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4217:150;4275:7;4306:1;4302;:5;4294:44;;;;;-1:-1:-1;;;4294:44:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;4359:1;4355;:5;;;;;;;4217:150;-1:-1:-1;;;4217:150:3:o;8503:410:1:-;-1:-1:-1;;;;;8586:21:1;;8578:67;;;;-1:-1:-1;;;8578:67:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8656:49;8677:7;8694:1;8698:6;8656:20;:49::i;:::-;8737:68;8760:6;8737:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;8737:18:1;;:9;:18;;;;;;;;;;;;:68;:22;:68::i;:::-;-1:-1:-1;;;;;8716:18:1;;:9;:18;;;;;;;;;;:89;8830:12;;:24;;8847:6;8830:16;:24::i;:::-;8815:12;:39;8869:37;;;;;;;;8895:1;;-1:-1:-1;;;;;8869:37:1;;;;;;;;;;;;8503:410;;:::o;7813:370::-;-1:-1:-1;;;;;7896:21:1;;7888:65;;;;;-1:-1:-1;;;7888:65:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;7964:49;7993:1;7997:7;8006:6;7964:20;:49::i;:::-;8039:12;;:24;;8056:6;8039:16;:24::i;:::-;8024:12;:39;-1:-1:-1;;;;;8094:18:1;;:9;:18;;;;;;;;;;;:30;;8117:6;8094:22;:30::i;:::-;-1:-1:-1;;;;;8073:18:1;;:9;:18;;;;;;;;;;;:51;;;;8139:37;;;;;;;8073:18;;:9;;8139:37;;;;;;;;;;7813:370;;:::o;10682:92::-;;;;:::o;3136:155:3:-;3194:7;3226:1;3221;:6;;3213:49;;;;;-1:-1:-1;;;3213:49:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3279:5:3;;;3136:155::o
Swarm Source
ipfs://160b52b837f8a10df3bc24ff25e69c28d6b0e28b7aa07865e9feaeba512228a5
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.