Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
30,000 HODL
Holders
273
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
HodlV1
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-10-25 */ // File: @openzeppelin/contracts/token/ERC20/IERC20.sol pragma solidity ^0.6.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); } // File: @openzeppelin/contracts/math/SafeMath.sol pragma solidity ^0.6.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. */ 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. */ 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. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } // File: @openzeppelin/contracts/utils/Address.sol pragma solidity ^0.6.2; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // According to EIP-1052, 0x0 is the value returned for not-yet created accounts // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned // for accounts without code, i.e. `keccak256('')` bytes32 codehash; bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470; // solhint-disable-next-line no-inline-assembly assembly { codehash := extcodehash(account) } return (codehash != accountHash && codehash != 0x0); } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } } // File: @openzeppelin/contracts/GSN/Context.sol pragma solidity ^0.6.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. */ contract Context { // Empty internal constructor, to prevent people from mistakenly deploying // an instance of this contract, which should be used via inheritance. constructor () internal { } 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; } } // File: @openzeppelin/contracts/access/Ownable.sol pragma solidity ^0.6.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } // File: @uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol pragma solidity >=0.5.0; interface IUniswapV2Pair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint value) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; event Mint(address indexed sender, uint amount0, uint amount1); event Burn(address indexed sender, uint amount0, uint amount1, address indexed to); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } // File: contracts/HodlV1.sol // SPDX-License-Identifier: MIT pragma solidity ^0.6.0; contract HodlV1 is IERC20, Ownable { using SafeMath for uint256; using Address for address; event StartGame(); event EndGame(); event ChangeStrongHandPercentile(uint256 oldPercentile, uint256 newPercentile); event ChangeCoolDownTime(uint256 oldCoolDownTime, uint256 newCoolDownTime); mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; string private _name; string private _symbol; uint8 private immutable _decimals; uint256 private _totalSupply; uint256 public _burnedSupply; uint256 public _strongHandPercentile; uint256 public _lastUpdated; uint256 public _coolDownTime; bool public _gameStarted; constructor() public { _name = "HODL"; _symbol = "HODL"; _decimals = 18; _totalSupply = 30000e18; // 30000 * 1e18 _balances[msg.sender] = _totalSupply; _gameStarted = false; _strongHandPercentile = 30; _coolDownTime = 1 days; } function name() public view returns (string memory) { return _name; } function symbol() public view returns (string memory) { return _symbol; } function decimals() public view returns (uint8) { return _decimals; } function totalSupply() public override view returns (uint256) { return _totalSupply; } function balanceOf(address account) public override view returns (uint256) { return (_balances[account].mul(_totalSupply)).div(_totalSupply.sub(_burnedSupply)); // return (_balances[account] * _totalSupply) / (_totalSupply - _burnedSupply); } function transfer(address recipient, uint256 amount) public override returns (bool) { _transfer(msg.sender, recipient, amount); return true; } function allowance(address owner, address spender) public override view returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) public override returns (bool) { _approve(msg.sender, spender, amount); return true; } function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) { _transfer(sender, recipient, amount); _approve( sender, msg.sender, _allowances[sender][msg.sender].sub( amount, "ERC20: transfer amount exceeds allowance" ) ); return true; } function increaseAllowance(address spender, uint256 addedValue) public returns (bool) { _approve( msg.sender, spender, _allowances[msg.sender][spender].add(addedValue) ); return true; } function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) { _approve( msg.sender, spender, _allowances[msg.sender][spender].sub( subtractedValue, "ERC20: decreased allowance below zero" ) ); return true; } function _transfer(address sender, address recipient, uint256 amountt) internal { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); uint256 amount = uint256(amountt.mul(_totalSupply.sub(_burnedSupply)).div(_totalSupply)); //uint256 amount = uint256((amountt * (_totalSupply - _burnedSupply)) / _totalSupply); uint256 burn_amount; _gameStarted ? burn_amount = amount.div(100) : burn_amount = 0; _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount.sub(burn_amount)); _burn(burn_amount); emit Transfer(sender, recipient, amount); } function _burn(uint256 amount) internal { _burnedSupply = _burnedSupply.add(amount); } function _approve(address owner, address spender, uint256 amount) internal { 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); } modifier onlyStrongHands() { require(msg.sender == owner() || balanceOf(msg.sender) > _totalSupply.mul(_strongHandPercentile).div(100), "Caller does not have strong hands"); _; } modifier cooledDown() { require(now > (_lastUpdated+_coolDownTime)); _; } function setStrongHandPercentile(uint256 percentile) public onlyOwner { require(percentile <= 55 && percentile >= 5, "Owner cannot rig the game"); uint256 old = _strongHandPercentile; _strongHandPercentile = percentile; emit ChangeStrongHandPercentile(old, percentile); } function setCoolDownTime(uint256 coolDownTime) public onlyOwner { uint256 old = _coolDownTime; _coolDownTime = coolDownTime; emit ChangeCoolDownTime(old, coolDownTime); } function startGame() external onlyStrongHands cooledDown { require(!_gameStarted, "The game has already started"); _gameStarted = true; _lastUpdated = now; emit StartGame(); } function endGame() external onlyStrongHands cooledDown { require(_gameStarted, "The game has already ended"); _gameStarted = false; _lastUpdated = now; emit EndGame(); } }
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":false,"internalType":"uint256","name":"oldCoolDownTime","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newCoolDownTime","type":"uint256"}],"name":"ChangeCoolDownTime","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"oldPercentile","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newPercentile","type":"uint256"}],"name":"ChangeStrongHandPercentile","type":"event"},{"anonymous":false,"inputs":[],"name":"EndGame","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[],"name":"StartGame","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_burnedSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_coolDownTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_gameStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_lastUpdated","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_strongHandPercentile","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"endGame","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"coolDownTime","type":"uint256"}],"name":"setCoolDownTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"percentile","type":"uint256"}],"name":"setStrongHandPercentile","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startGame","outputs":[],"stateMutability":"nonpayable","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"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60a06040523480156200001157600080fd5b50600062000024620001fa60201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506040518060400160405280600481526020017f484f444c00000000000000000000000000000000000000000000000000000000815250600390805190602001906200010f92919062000202565b506040518060400160405280600481526020017f484f444c00000000000000000000000000000000000000000000000000000000815250600490805190602001906200015d92919062000202565b50601260ff1660808160ff1660f81b8152505069065a4da25d3016c00000600581905550600554600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600a60006101000a81548160ff021916908315150217905550601e60078190555062015180600981905550620002a8565b600033905090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200024557805160ff191683800117855562000276565b8280016001018555821562000276579182015b828111156200027557825182559160200191906001019062000258565b5b50905062000285919062000289565b5090565b5b80821115620002a45760008160009055506001016200028a565b5090565b60805160f81c612009620002c66000398061089d52506120096000f3fe608060405234801561001057600080fd5b506004361061014d5760003560e01c806370a08231116100c3578063a457c2d71161007c578063a457c2d714610549578063a9059cbb146105ad578063d65ab5f214610611578063da4970781461061b578063dd62ed3e14610649578063f2fde38b146106c15761014d565b806370a08231146103f4578063715018a61461044c5780638da5cb5b1461045657806395d89b411461048a578063a0ebda141461050d578063a3e593161461052b5761014d565b8063313ce56711610115578063313ce567146102f9578063395093511461031a578063435c08781461037e5780635c0ebd621461039e5780636cbc2ded146103bc5780636e16de11146103c65761014d565b806306fdde0314610152578063095ea7b3146101d5578063123dda3f1461023957806318160ddd1461025757806323b872dd14610275575b600080fd5b61015a610705565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561019a57808201518184015260208101905061017f565b50505050905090810190601f1680156101c75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610221600480360360408110156101eb57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506107a7565b60405180821515815260200191505060405180910390f35b6102416107be565b6040518082815260200191505060405180910390f35b61025f6107c4565b6040518082815260200191505060405180910390f35b6102e16004803603606081101561028b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506107ce565b60405180821515815260200191505060405180910390f35b610301610899565b604051808260ff16815260200191505060405180910390f35b6103666004803603604081101561033057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506108c1565b60405180821515815260200191505060405180910390f35b610386610966565b60405180821515815260200191505060405180910390f35b6103a6610979565b6040518082815260200191505060405180910390f35b6103c461097f565b005b6103f2600480360360208110156103dc57600080fd5b8101908080359060200190929190505050610b29565b005b6104366004803603602081101561040a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610c42565b6040518082815260200191505060405180910390f35b610454610cc7565b005b61045e610e4d565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610492610e76565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156104d25780820151818401526020810190506104b7565b50505050905090810190601f1680156104ff5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610515610f18565b6040518082815260200191505060405180910390f35b610533610f1e565b6040518082815260200191505060405180910390f35b6105956004803603604081101561055f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f24565b60405180821515815260200191505060405180910390f35b6105f9600480360360408110156105c357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610fe3565b60405180821515815260200191505060405180910390f35b610619610ffa565b005b6106476004803603602081101561063157600080fd5b81019080803590602001909291905050506111a5565b005b6106ab6004803603604081101561065f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611342565b6040518082815260200191505060405180910390f35b610703600480360360208110156106d757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506113c9565b005b606060038054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561079d5780601f106107725761010080835404028352916020019161079d565b820191906000526020600020905b81548152906001019060200180831161078057829003601f168201915b5050505050905090565b60006107b43384846115d4565b6001905092915050565b60095481565b6000600554905090565b60006107db8484846117cb565b61088e843361088985604051806060016040528060288152602001611f1d60289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b1c9092919063ffffffff16565b6115d4565b600190509392505050565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b600061095c338461095785600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611bdc90919063ffffffff16565b6115d4565b6001905092915050565b600a60009054906101000a900460ff1681565b60085481565b610987610e4d565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806109f057506109e560646109d7600754600554611c6490919063ffffffff16565b611cea90919063ffffffff16565b6109ee33610c42565b115b610a45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180611f456021913960400191505060405180910390fd5b600954600854014211610a5757600080fd5b600a60009054906101000a900460ff16610ad9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f5468652067616d652068617320616c726561647920656e64656400000000000081525060200191505060405180910390fd5b6000600a60006101000a81548160ff021916908315150217905550426008819055507fdf251e918374d0b1a93974742141f6e074931c8fe55fc1ff8ed29a6e9b3144ab60405160405180910390a1565b610b31611d34565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610bf1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60006009549050816009819055507f405a359d23358606a2c7e225056d2b52440a7f373104ffff1430e5e36d6c330d8183604051808381526020018281526020019250505060405180910390a15050565b6000610cc0610c5e600654600554611d3c90919063ffffffff16565b610cb2600554600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c6490919063ffffffff16565b611cea90919063ffffffff16565b9050919050565b610ccf611d34565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610d8f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610f0e5780601f10610ee357610100808354040283529160200191610f0e565b820191906000526020600020905b815481529060010190602001808311610ef157829003601f168201915b5050505050905090565b60075481565b60065481565b6000610fd93384610fd485604051806060016040528060258152602001611faf60259139600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b1c9092919063ffffffff16565b6115d4565b6001905092915050565b6000610ff03384846117cb565b6001905092915050565b611002610e4d565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148061106b57506110606064611052600754600554611c6490919063ffffffff16565b611cea90919063ffffffff16565b61106933610c42565b115b6110c0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180611f456021913960400191505060405180910390fd5b6009546008540142116110d257600080fd5b600a60009054906101000a900460ff1615611155576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f5468652067616d652068617320616c726561647920737461727465640000000081525060200191505060405180910390fd5b6001600a60006101000a81548160ff021916908315150217905550426008819055507fa3dfc36410836473d29e0ff423ff6085677a40cae4f79b4b5057cf361a8f2aa360405160405180910390a1565b6111ad611d34565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461126d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6037811115801561127f575060058110155b6112f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f4f776e65722063616e6e6f7420726967207468652067616d650000000000000081525060200191505060405180910390fd5b60006007549050816007819055507f3136e98cc9c6b12fc9878a057ec1e85f09d3d461b10f90fa563d62a6275522058183604051808381526020018281526020019250505060405180910390a15050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6113d1611d34565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611491576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611517576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180611e8e6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561165a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180611f8b6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116e0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180611eb46022913960400191505060405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611851576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180611f666025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118d7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180611e6b6023913960400191505060405180910390fd5b60006119166005546119086118f9600654600554611d3c90919063ffffffff16565b85611c6490919063ffffffff16565b611cea90919063ffffffff16565b90506000600a60009054906101000a900460ff16611938576000905080611950565b61194c606483611cea90919063ffffffff16565b9050805b506119bd82604051806060016040528060268152602001611ed660269139600160008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b1c9092919063ffffffff16565b600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611a64611a168284611d3c90919063ffffffff16565b600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611bdc90919063ffffffff16565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611ab081611d86565b8373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050565b6000838311158290611bc9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611b8e578082015181840152602081019050611b73565b50505050905090810190601f168015611bbb5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600080828401905083811015611c5a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600080831415611c775760009050611ce4565b6000828402905082848281611c8857fe5b0414611cdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180611efc6021913960400191505060405180910390fd5b809150505b92915050565b6000611d2c83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611da4565b905092915050565b600033905090565b6000611d7e83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611b1c565b905092915050565b611d9b81600654611bdc90919063ffffffff16565b60068190555050565b60008083118290611e50576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611e15578082015181840152602081019050611dfa565b50505050905090810190601f168015611e425780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581611e5c57fe5b04905080915050939250505056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636543616c6c657220646f6573206e6f742068617665207374726f6e672068616e647345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220d3658001baf63f8dca024f2b3503c4b5ffe46f21804446f8eb6cf67a94d7a09b64736f6c634300060c0033
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061014d5760003560e01c806370a08231116100c3578063a457c2d71161007c578063a457c2d714610549578063a9059cbb146105ad578063d65ab5f214610611578063da4970781461061b578063dd62ed3e14610649578063f2fde38b146106c15761014d565b806370a08231146103f4578063715018a61461044c5780638da5cb5b1461045657806395d89b411461048a578063a0ebda141461050d578063a3e593161461052b5761014d565b8063313ce56711610115578063313ce567146102f9578063395093511461031a578063435c08781461037e5780635c0ebd621461039e5780636cbc2ded146103bc5780636e16de11146103c65761014d565b806306fdde0314610152578063095ea7b3146101d5578063123dda3f1461023957806318160ddd1461025757806323b872dd14610275575b600080fd5b61015a610705565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561019a57808201518184015260208101905061017f565b50505050905090810190601f1680156101c75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610221600480360360408110156101eb57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506107a7565b60405180821515815260200191505060405180910390f35b6102416107be565b6040518082815260200191505060405180910390f35b61025f6107c4565b6040518082815260200191505060405180910390f35b6102e16004803603606081101561028b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506107ce565b60405180821515815260200191505060405180910390f35b610301610899565b604051808260ff16815260200191505060405180910390f35b6103666004803603604081101561033057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506108c1565b60405180821515815260200191505060405180910390f35b610386610966565b60405180821515815260200191505060405180910390f35b6103a6610979565b6040518082815260200191505060405180910390f35b6103c461097f565b005b6103f2600480360360208110156103dc57600080fd5b8101908080359060200190929190505050610b29565b005b6104366004803603602081101561040a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610c42565b6040518082815260200191505060405180910390f35b610454610cc7565b005b61045e610e4d565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610492610e76565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156104d25780820151818401526020810190506104b7565b50505050905090810190601f1680156104ff5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610515610f18565b6040518082815260200191505060405180910390f35b610533610f1e565b6040518082815260200191505060405180910390f35b6105956004803603604081101561055f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f24565b60405180821515815260200191505060405180910390f35b6105f9600480360360408110156105c357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610fe3565b60405180821515815260200191505060405180910390f35b610619610ffa565b005b6106476004803603602081101561063157600080fd5b81019080803590602001909291905050506111a5565b005b6106ab6004803603604081101561065f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611342565b6040518082815260200191505060405180910390f35b610703600480360360208110156106d757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506113c9565b005b606060038054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561079d5780601f106107725761010080835404028352916020019161079d565b820191906000526020600020905b81548152906001019060200180831161078057829003601f168201915b5050505050905090565b60006107b43384846115d4565b6001905092915050565b60095481565b6000600554905090565b60006107db8484846117cb565b61088e843361088985604051806060016040528060288152602001611f1d60289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b1c9092919063ffffffff16565b6115d4565b600190509392505050565b60007f0000000000000000000000000000000000000000000000000000000000000012905090565b600061095c338461095785600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611bdc90919063ffffffff16565b6115d4565b6001905092915050565b600a60009054906101000a900460ff1681565b60085481565b610987610e4d565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806109f057506109e560646109d7600754600554611c6490919063ffffffff16565b611cea90919063ffffffff16565b6109ee33610c42565b115b610a45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180611f456021913960400191505060405180910390fd5b600954600854014211610a5757600080fd5b600a60009054906101000a900460ff16610ad9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f5468652067616d652068617320616c726561647920656e64656400000000000081525060200191505060405180910390fd5b6000600a60006101000a81548160ff021916908315150217905550426008819055507fdf251e918374d0b1a93974742141f6e074931c8fe55fc1ff8ed29a6e9b3144ab60405160405180910390a1565b610b31611d34565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610bf1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60006009549050816009819055507f405a359d23358606a2c7e225056d2b52440a7f373104ffff1430e5e36d6c330d8183604051808381526020018281526020019250505060405180910390a15050565b6000610cc0610c5e600654600554611d3c90919063ffffffff16565b610cb2600554600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c6490919063ffffffff16565b611cea90919063ffffffff16565b9050919050565b610ccf611d34565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610d8f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610f0e5780601f10610ee357610100808354040283529160200191610f0e565b820191906000526020600020905b815481529060010190602001808311610ef157829003601f168201915b5050505050905090565b60075481565b60065481565b6000610fd93384610fd485604051806060016040528060258152602001611faf60259139600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b1c9092919063ffffffff16565b6115d4565b6001905092915050565b6000610ff03384846117cb565b6001905092915050565b611002610e4d565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148061106b57506110606064611052600754600554611c6490919063ffffffff16565b611cea90919063ffffffff16565b61106933610c42565b115b6110c0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180611f456021913960400191505060405180910390fd5b6009546008540142116110d257600080fd5b600a60009054906101000a900460ff1615611155576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f5468652067616d652068617320616c726561647920737461727465640000000081525060200191505060405180910390fd5b6001600a60006101000a81548160ff021916908315150217905550426008819055507fa3dfc36410836473d29e0ff423ff6085677a40cae4f79b4b5057cf361a8f2aa360405160405180910390a1565b6111ad611d34565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461126d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6037811115801561127f575060058110155b6112f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f4f776e65722063616e6e6f7420726967207468652067616d650000000000000081525060200191505060405180910390fd5b60006007549050816007819055507f3136e98cc9c6b12fc9878a057ec1e85f09d3d461b10f90fa563d62a6275522058183604051808381526020018281526020019250505060405180910390a15050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6113d1611d34565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611491576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611517576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180611e8e6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561165a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180611f8b6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116e0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180611eb46022913960400191505060405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611851576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180611f666025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118d7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180611e6b6023913960400191505060405180910390fd5b60006119166005546119086118f9600654600554611d3c90919063ffffffff16565b85611c6490919063ffffffff16565b611cea90919063ffffffff16565b90506000600a60009054906101000a900460ff16611938576000905080611950565b61194c606483611cea90919063ffffffff16565b9050805b506119bd82604051806060016040528060268152602001611ed660269139600160008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b1c9092919063ffffffff16565b600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611a64611a168284611d3c90919063ffffffff16565b600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611bdc90919063ffffffff16565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611ab081611d86565b8373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050565b6000838311158290611bc9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611b8e578082015181840152602081019050611b73565b50505050905090810190601f168015611bbb5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600080828401905083811015611c5a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600080831415611c775760009050611ce4565b6000828402905082848281611c8857fe5b0414611cdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180611efc6021913960400191505060405180910390fd5b809150505b92915050565b6000611d2c83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611da4565b905092915050565b600033905090565b6000611d7e83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611b1c565b905092915050565b611d9b81600654611bdc90919063ffffffff16565b60068190555050565b60008083118290611e50576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611e15578082015181840152602081019050611dfa565b50505050905090810190601f168015611e425780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581611e5c57fe5b04905080915050939250505056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636543616c6c657220646f6573206e6f742068617665207374726f6e672068616e647345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220d3658001baf63f8dca024f2b3503c4b5ffe46f21804446f8eb6cf67a94d7a09b64736f6c634300060c0033
Deployed Bytecode Sourcemap
16997:5829:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18071:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19053:159;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;17691:28;;;:::i;:::-;;;;;;;;;;;;;;;;;;;18348:100;;;:::i;:::-;;;;;;;;;;;;;;;;;;;19220:408;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;18257:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;19636:256;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;17726:24;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;17657:27;;;:::i;:::-;;;;;;;;;;;;;;;;;;;22613:210;;;:::i;:::-;;22179:202;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;18456:265;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;13793:148;;;:::i;:::-;;13151:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;18162:87;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17614:36;;;:::i;:::-;;;;;;;;;;;;;;;;;;;17579:28;;;:::i;:::-;;;;;;;;;;;;;;;;;;;19900:356;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;18729:165;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;22389:216;;;:::i;:::-;;21859:312;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;18902:143;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;14096:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;18071:83;18108:13;18141:5;18134:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18071:83;:::o;19053:159::-;19128:4;19145:37;19154:10;19166:7;19175:6;19145:8;:37::i;:::-;19200:4;19193:11;;19053:159;;;;:::o;17691:28::-;;;;:::o;18348:100::-;18401:7;18428:12;;18421:19;;18348:100;:::o;19220:408::-;19318:4;19335:36;19345:6;19353:9;19364:6;19335:9;:36::i;:::-;19382:216;19405:6;19426:10;19451:136;19505:6;19451:136;;;;;;;;;;;;;;;;;:11;:19;19463:6;19451:19;;;;;;;;;;;;;;;:31;19471:10;19451:31;;;;;;;;;;;;;;;;:35;;:136;;;;;:::i;:::-;19382:8;:216::i;:::-;19616:4;19609:11;;19220:408;;;;;:::o;18257:83::-;18298:5;18323:9;18316:16;;18257:83;:::o;19636:256::-;19716:4;19733:129;19756:10;19781:7;19803:48;19840:10;19803:11;:23;19815:10;19803:23;;;;;;;;;;;;;;;:32;19827:7;19803:32;;;;;;;;;;;;;;;;:36;;:48;;;;:::i;:::-;19733:8;:129::i;:::-;19880:4;19873:11;;19636:256;;;;:::o;17726:24::-;;;;;;;;;;;;;:::o;17657:27::-;;;;:::o;22613:210::-;21606:7;:5;:7::i;:::-;21592:21;;:10;:21;;;:97;;;;21641:48;21685:3;21641:39;21658:21;;21641:12;;:16;;:39;;;;:::i;:::-;:43;;:48;;;;:::i;:::-;21617:21;21627:10;21617:9;:21::i;:::-;:72;21592:97;21584:143;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21816:13:::1;;21803:12;;:26;21796:3;:34;21788:43;;;::::0;::::1;;22687:12:::2;;;;;;;;;;;22679:51;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;22756:5;22741:12;;:20;;;;;;;;;;;;;;;;;;22787:3;22772:12;:18;;;;22806:9;;;;;;;;;;22613:210::o:0;22179:202::-;13373:12;:10;:12::i;:::-;13363:22;;:6;;;;;;;;;;:22;;;13355:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22254:11:::1;22268:13;;22254:27;;22308:12;22292:13;:28;;;;22336:37;22355:3;22360:12;22336:37;;;;;;;;;;;;;;;;;;;;;;;;13433:1;22179:202:::0;:::o;18456:265::-;18522:7;18549:75;18592:31;18609:13;;18592:12;;:16;;:31;;;;:::i;:::-;18550:36;18573:12;;18550:9;:18;18560:7;18550:18;;;;;;;;;;;;;;;;:22;;:36;;;;:::i;:::-;18549:42;;:75;;;;:::i;:::-;18542:82;;18456:265;;;:::o;13793:148::-;13373:12;:10;:12::i;:::-;13363:22;;:6;;;;;;;;;;:22;;;13355:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13900:1:::1;13863:40;;13884:6;::::0;::::1;;;;;;;;13863:40;;;;;;;;;;;;13931:1;13914:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;13793:148::o:0;13151:79::-;13189:7;13216:6;;;;;;;;;;;13209:13;;13151:79;:::o;18162:87::-;18201:13;18234:7;18227:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18162:87;:::o;17614:36::-;;;;:::o;17579:28::-;;;;:::o;19900:356::-;19985:4;20002:224;20025:10;20050:7;20072:143;20127:15;20072:143;;;;;;;;;;;;;;;;;:11;:23;20084:10;20072:23;;;;;;;;;;;;;;;:32;20096:7;20072:32;;;;;;;;;;;;;;;;:36;;:143;;;;;:::i;:::-;20002:8;:224::i;:::-;20244:4;20237:11;;19900:356;;;;:::o;18729:165::-;18807:4;18824:40;18834:10;18846:9;18857:6;18824:9;:40::i;:::-;18882:4;18875:11;;18729:165;;;;:::o;22389:216::-;21606:7;:5;:7::i;:::-;21592:21;;:10;:21;;;:97;;;;21641:48;21685:3;21641:39;21658:21;;21641:12;;:16;;:39;;;;:::i;:::-;:43;;:48;;;;:::i;:::-;21617:21;21627:10;21617:9;:21::i;:::-;:72;21592:97;21584:143;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21816:13:::1;;21803:12;;:26;21796:3;:34;21788:43;;;::::0;::::1;;22466:12:::2;;;;;;;;;;;22465:13;22457:54;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;22537:4;22522:12;;:19;;;;;;;;;;;;;;;;;;22567:3;22552:12;:18;;;;22586:11;;;;;;;;;;22389:216::o:0;21859:312::-;13373:12;:10;:12::i;:::-;13363:22;;:6;;;;;;;;;;:22;;;13355:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21962:2:::1;21948:10;:16;;:35;;;;;21982:1;21968:10;:15;;21948:35;21940:73;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;22024:11;22038:21;;22024:35;;22094:10;22070:21;:34;;;;22120:43;22147:3;22152:10;22120:43;;;;;;;;;;;;;;;;;;;;;;;;13433:1;21859:312:::0;:::o;18902:143::-;18983:7;19010:11;:18;19022:5;19010:18;;;;;;;;;;;;;;;:27;19029:7;19010:27;;;;;;;;;;;;;;;;19003:34;;18902:143;;;;:::o;14096:244::-;13373:12;:10;:12::i;:::-;13363:22;;:6;;;;;;;;;;:22;;;13355:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14205:1:::1;14185:22;;:8;:22;;;;14177:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14295:8;14266:38;;14287:6;::::0;::::1;;;;;;;;14266:38;;;;;;;;;;;;14324:8;14315:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;14096:244:::0;:::o;21200:338::-;21311:1;21294:19;;:5;:19;;;;21286:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21392:1;21373:21;;:7;:21;;;;21365:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21476:6;21446:11;:18;21458:5;21446:18;;;;;;;;;;;;;;;:27;21465:7;21446:27;;;;;;;;;;;;;;;:36;;;;21514:7;21498:32;;21507:5;21498:32;;;21523:6;21498:32;;;;;;;;;;;;;;;;;;21200:338;;;:::o;20264:820::-;20381:1;20363:20;;:6;:20;;;;20355:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20465:1;20444:23;;:9;:23;;;;20436:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20520:14;20545:62;20594:12;;20545:44;20557:31;20574:13;;20557:12;;:16;;:31;;;;:::i;:::-;20545:7;:11;;:44;;;;:::i;:::-;:48;;:62;;;;:::i;:::-;20520:88;;20715:19;20745:12;;;;;;;;;;;:62;;20806:1;20792:15;;;20745:62;;;20774:15;20785:3;20774:6;:10;;:15;;;;:::i;:::-;20760:29;;;20745:62;;20840:71;20862:6;20840:71;;;;;;;;;;;;;;;;;:9;:17;20850:6;20840:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;20820:9;:17;20830:6;20820:17;;;;;;;;;;;;;;;:91;;;;20945:49;20970:23;20981:11;20970:6;:10;;:23;;;;:::i;:::-;20945:9;:20;20955:9;20945:20;;;;;;;;;;;;;;;;:24;;:49;;;;:::i;:::-;20922:9;:20;20932:9;20922:20;;;;;;;;;;;;;;;:72;;;;21007:18;21013:11;21007:5;:18::i;:::-;21058:9;21041:35;;21050:6;21041:35;;;21069:6;21041:35;;;;;;;;;;;;;;;;;;20264:820;;;;;:::o;4599:192::-;4685:7;4718:1;4713;:6;;4721:12;4705:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4745:9;4761:1;4757;:5;4745:17;;4782:1;4775:8;;;4599:192;;;;;:::o;3712:181::-;3770:7;3790:9;3806:1;3802;:5;3790:17;;3831:1;3826;:6;;3818:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3884:1;3877:8;;;3712:181;;;;:::o;5042:471::-;5100:7;5350:1;5345;:6;5341:47;;;5375:1;5368:8;;;;5341:47;5400:9;5416:1;5412;:5;5400:17;;5445:1;5440;5436;:5;;;;;;:10;5428:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5504:1;5497:8;;;5042:471;;;;;:::o;5981:132::-;6039:7;6066:39;6070:1;6073;6066:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;6059:46;;5981:132;;;;:::o;11707:106::-;11760:15;11795:10;11788:17;;11707:106;:::o;4168:136::-;4226:7;4253:43;4257:1;4260;4253:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;4246:50;;4168:136;;;;:::o;21092:100::-;21159:25;21177:6;21159:13;;:17;;:25;;;;:::i;:::-;21143:13;:41;;;;21092:100;:::o;6601:345::-;6687:7;6786:1;6782;:5;6789:12;6774:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6813:9;6829:1;6825;:5;;;;;;6813:17;;6937:1;6930:8;;;6601:345;;;;;:::o
Swarm Source
ipfs://d3658001baf63f8dca024f2b3503c4b5ffe46f21804446f8eb6cf67a94d7a09b
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.