Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
1,000,000,000,000,000 Selinu
Holders
97
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Balance
234,998,096,636.630738879 SelinuValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
SpaceElonInu
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-04-30 */ //Website: https://eloninu.space/ //Telegram: https://t.me/spaceeloninu //Twitter: https://twitter.com/spaceeloninu //Instagram: https://www.instagram.com/spaceeloninu/ //Medium: https://spaceeloninu.medium.com/memecoins-assets-or-liabilities-the-case-of-selinu-ea67c68860e8 //Reddit: https://www.reddit.com/r/SpaceElonInu/ // Space Elon Inu is a mascot of successful and lucky entrepreneurs, people that everyone dreams of becoming. //Our goal is to help our holders achieve their financial goals and create a stable and fast-growing project //with a strong community focused on rewarding investments into the meme economy. //About: //Space Elon Inu is a lovely shiba called Elon who was dreaming about getting to the Moon (and one day even Mars!) //In order to get to such distant lands, Elon needs to HODL onto his chair in the spaceship while torpedoing his way to the dreamlands! //This is going to be possible thanks to our deflationary tokenomics. While 2% of every transaction is going to be burned //(to ensure the constant deflation of the token, making it even more valuable with every second), another 2% will be redistributed to the holders. //We are ensuring the safety of your investments by locking the liquidity on Unicrypt. //SPDX-License-Identifier: Unlicensed pragma solidity ^0.6.12; 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; } } 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); } 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) { 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; } } 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 0xb27d1f1a8e72942ada60d900b95caa2cf13d26224a079c187689b675ed61bee5 is returned // for accounts without code, i.e. `keccak256('')` bytes32 codehash; bytes32 accountHash = 0xb27d1f1a8e72942ada60d900b95caa2cf13d26224a079c187689b675ed61bee5; // 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"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return _functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) { require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: weiValue }(data); if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } 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; } } contract SpaceElonInu is Context, IERC20, Ownable { using SafeMath for uint256; using Address for address; mapping (address => uint256) private _rOwned; mapping (address => uint256) private _tOwned; mapping (address => mapping (address => uint256)) private _allowances; mapping (address => bool) private _isExcluded; address[] private _excluded; uint256 private constant MAX = ~uint256(0); uint256 private constant _tTotal = 1000000000000000 * 10**9; uint256 private _rTotal = (MAX - (MAX % _tTotal)); uint256 private _tFeeTotal; string private _name = 'Space Elon Inu'; string private _symbol = 'Selinu'; uint8 private _decimals = 9; uint256 public _maxTxAmount = 25000000000000 * 10**9; constructor () public { _rOwned[_msgSender()] = _rTotal; emit Transfer(address(0), _msgSender(), _tTotal); } 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 view override returns (uint256) { return _tTotal; } function balanceOf(address account) public view override returns (uint256) { if (_isExcluded[account]) return _tOwned[account]; return tokenFromReflection(_rOwned[account]); } function transfer(address recipient, uint256 amount) public override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function allowance(address owner, address spender) public view override returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) public override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } 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; } function isExcluded(address account) public view returns (bool) { return _isExcluded[account]; } function totalFees() public view returns (uint256) { return _tFeeTotal; } function reflect(uint256 tAmount) public { address sender = _msgSender(); require(!_isExcluded[sender], "Excluded addresses cannot call this function"); (uint256 rAmount,,,,) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rTotal = _rTotal.sub(rAmount); _tFeeTotal = _tFeeTotal.add(tAmount); } function reflectionFromToken(uint256 tAmount, bool deductTransferFee) public view returns(uint256) { require(tAmount <= _tTotal, "Amount must be less than supply"); if (!deductTransferFee) { (uint256 rAmount,,,,) = _getValues(tAmount); return rAmount; } else { (,uint256 rTransferAmount,,,) = _getValues(tAmount); return rTransferAmount; } } function tokenFromReflection(uint256 rAmount) public view returns(uint256) { require(rAmount <= _rTotal, "Amount must be less than total reflections"); uint256 currentRate = _getRate(); return rAmount.div(currentRate); } function _approve(address owner, address spender, uint256 amount) private { 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); } function _transfer(address sender, address recipient, uint256 amount) private { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); require(amount > 0, "Transfer amount must be greater than zero"); if(sender != owner() && recipient != owner()) require(amount <= _maxTxAmount, "Transfer amount exceeds the maxTxAmount."); if (_isExcluded[sender] && !_isExcluded[recipient]) { _transferFromExcluded(sender, recipient, amount); } else if (!_isExcluded[sender] && _isExcluded[recipient]) { _transferToExcluded(sender, recipient, amount); } else if (!_isExcluded[sender] && !_isExcluded[recipient]) { _transferStandard(sender, recipient, amount); } else if (_isExcluded[sender] && _isExcluded[recipient]) { _transferBothExcluded(sender, recipient, amount); } else { _transferStandard(sender, recipient, amount); } } function _transferStandard(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _transferToExcluded(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _transferFromExcluded(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee) = _getValues(tAmount); _tOwned[sender] = _tOwned[sender].sub(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee) = _getValues(tAmount); _tOwned[sender] = _tOwned[sender].sub(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _reflectFee(uint256 rFee, uint256 tFee) private { _rTotal = _rTotal.sub(rFee); _tFeeTotal = _tFeeTotal.add(tFee); } function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256) { (uint256 tTransferAmount, uint256 tFee) = _getTValues(tAmount); uint256 currentRate = _getRate(); (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, currentRate); return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee); } function _getTValues(uint256 tAmount) private pure returns (uint256, uint256) { uint256 tFee = tAmount.div(100).mul(4); uint256 tTransferAmount = tAmount.sub(tFee); return (tTransferAmount, tFee); } function _getRValues(uint256 tAmount, uint256 tFee, uint256 currentRate) private pure returns (uint256, uint256, uint256) { uint256 rAmount = tAmount.mul(currentRate); uint256 rFee = tFee.mul(currentRate); uint256 rTransferAmount = rAmount.sub(rFee); return (rAmount, rTransferAmount, rFee); } function _getRate() private view returns(uint256) { (uint256 rSupply, uint256 tSupply) = _getCurrentSupply(); return rSupply.div(tSupply); } function _getCurrentSupply() private view returns(uint256, uint256) { uint256 rSupply = _rTotal; uint256 tSupply = _tTotal; for (uint256 i = 0; i < _excluded.length; i++) { if (_rOwned[_excluded[i]] > rSupply || _tOwned[_excluded[i]] > tSupply) return (_rTotal, _tTotal); rSupply = rSupply.sub(_rOwned[_excluded[i]]); tSupply = tSupply.sub(_tOwned[_excluded[i]]); } if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal); return (rSupply, tSupply); } }
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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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":"_maxTxAmount","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":[{"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":"address","name":"account","type":"address"}],"name":"isExcluded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"reflect","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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
608060405269d3c21bcecceda1000000600019816200001a57fe5b06600019036006556040518060400160405280600e81526020017f537061636520456c6f6e20496e75000000000000000000000000000000000000815250600890805190602001906200006f92919062000288565b506040518060400160405280600681526020017f53656c696e75000000000000000000000000000000000000000000000000000081525060099080519060200190620000bd92919062000288565b506009600a60006101000a81548160ff021916908360ff16021790555069054b40b1f852bda00000600b55348015620000f557600080fd5b506000620001086200028060201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35060065460016000620001bd6200028060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506200020b6200028060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef69d3c21bcecceda10000006040518082815260200191505060405180910390a36200032e565b600033905090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620002cb57805160ff1916838001178555620002fc565b82800160010185558215620002fc579182015b82811115620002fb578251825591602001919060010190620002de565b5b5090506200030b91906200030f565b5090565b5b808211156200032a57600081600090555060010162000310565b5090565b612d55806200033e6000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c806370a08231116100ad578063a457c2d711610071578063a457c2d714610552578063a9059cbb146105b6578063cba0e9961461061a578063dd62ed3e14610674578063f2fde38b146106ec5761012c565b806370a082311461041b578063715018a6146104735780637d1db4a51461047d5780638da5cb5b1461049b57806395d89b41146104cf5761012c565b806323b872dd116100f457806323b872dd146102825780632d83811914610306578063313ce5671461034857806339509351146103695780634549b039146103cd5761012c565b8063053ab1821461013157806306fdde031461015f578063095ea7b3146101e257806313114a9d1461024657806318160ddd14610264575b600080fd5b61015d6004803603602081101561014757600080fd5b8101908080359060200190929190505050610730565b005b6101676108c0565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156101a757808201518184015260208101905061018c565b50505050905090810190601f1680156101d45780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61022e600480360360408110156101f857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610962565b60405180821515815260200191505060405180910390f35b61024e610980565b6040518082815260200191505060405180910390f35b61026c61098a565b6040518082815260200191505060405180910390f35b6102ee6004803603606081101561029857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061099c565b60405180821515815260200191505060405180910390f35b6103326004803603602081101561031c57600080fd5b8101908080359060200190929190505050610a75565b6040518082815260200191505060405180910390f35b610350610af9565b604051808260ff16815260200191505060405180910390f35b6103b56004803603604081101561037f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610b10565b60405180821515815260200191505060405180910390f35b610405600480360360408110156103e357600080fd5b8101908080359060200190929190803515159060200190929190505050610bc3565b6040518082815260200191505060405180910390f35b61045d6004803603602081101561043157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610c80565b6040518082815260200191505060405180910390f35b61047b610d6b565b005b610485610ef1565b6040518082815260200191505060405180910390f35b6104a3610ef7565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6104d7610f20565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156105175780820151818401526020810190506104fc565b50505050905090810190601f1680156105445780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61059e6004803603604081101561056857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610fc2565b60405180821515815260200191505060405180910390f35b610602600480360360408110156105cc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061108f565b60405180821515815260200191505060405180910390f35b61065c6004803603602081101561063057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506110ad565b60405180821515815260200191505060405180910390f35b6106d66004803603604081101561068a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611103565b6040518082815260200191505060405180910390f35b61072e6004803603602081101561070257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061118a565b005b600061073a611395565b9050600460008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156107df576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180612ccf602c913960400191505060405180910390fd5b60006107ea8361139d565b50505050905061084281600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113f590919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061089a816006546113f590919063ffffffff16565b6006819055506108b58360075461143f90919063ffffffff16565b600781905550505050565b606060088054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156109585780601f1061092d57610100808354040283529160200191610958565b820191906000526020600020905b81548152906001019060200180831161093b57829003601f168201915b5050505050905090565b600061097661096f611395565b84846114c7565b6001905092915050565b6000600754905090565b600069d3c21bcecceda1000000905090565b60006109a98484846116be565b610a6a846109b5611395565b610a6585604051806060016040528060288152602001612c3560289139600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610a1b611395565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611bee9092919063ffffffff16565b6114c7565b600190509392505050565b6000600654821115610ad2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180612b7a602a913960400191505060405180910390fd5b6000610adc611cae565b9050610af18184611cd990919063ffffffff16565b915050919050565b6000600a60009054906101000a900460ff16905090565b6000610bb9610b1d611395565b84610bb48560036000610b2e611395565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461143f90919063ffffffff16565b6114c7565b6001905092915050565b600069d3c21bcecceda1000000831115610c45576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f416d6f756e74206d757374206265206c657373207468616e20737570706c790081525060200191505060405180910390fd5b81610c64576000610c558461139d565b50505050905080915050610c7a565b6000610c6f8461139d565b505050915050809150505b92915050565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610d1b57600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050610d66565b610d63600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610a75565b90505b919050565b610d73611395565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e33576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600b5481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060098054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610fb85780601f10610f8d57610100808354040283529160200191610fb8565b820191906000526020600020905b815481529060010190602001808311610f9b57829003601f168201915b5050505050905090565b6000611085610fcf611395565b8461108085604051806060016040528060258152602001612cfb6025913960036000610ff9611395565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611bee9092919063ffffffff16565b6114c7565b6001905092915050565b60006110a361109c611395565b84846116be565b6001905092915050565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611192611395565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611252576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156112d8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180612ba46026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b60008060008060008060006113b188611d23565b9150915060006113bf611cae565b905060008060006113d18c8686611d75565b92509250925082828288889a509a509a509a509a5050505050505091939590929450565b600061143783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611bee565b905092915050565b6000808284019050838110156114bd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561154d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180612cab6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115d3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180612bca6022913960400191505060405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611744576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180612c866025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117ca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180612b576023913960400191505060405180910390fd5b60008111611823576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526029815260200180612c5d6029913960400191505060405180910390fd5b61182b610ef7565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156118995750611869610ef7565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156118fa57600b548111156118f9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180612bec6028913960400191505060405180910390fd5b5b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561199d5750600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156119b2576119ad838383611dd3565b611be9565b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015611a555750600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15611a6a57611a65838383612026565b611be8565b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015611b0e5750600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611b2357611b1e838383612279565b611be7565b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611bc55750600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15611bda57611bd5838383612437565b611be6565b611be5838383612279565b5b5b5b5b505050565b6000838311158290611c9b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611c60578082015181840152602081019050611c45565b50505050905090810190601f168015611c8d5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6000806000611cbb61271f565b91509150611cd28183611cd990919063ffffffff16565b9250505090565b6000611d1b83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506129d0565b905092915050565b6000806000611d4f6004611d41606487611cd990919063ffffffff16565b612a9690919063ffffffff16565b90506000611d6682866113f590919063ffffffff16565b90508082935093505050915091565b600080600080611d8e8588612a9690919063ffffffff16565b90506000611da58688612a9690919063ffffffff16565b90506000611dbc82846113f590919063ffffffff16565b905082818395509550955050505093509350939050565b6000806000806000611de48661139d565b94509450945094509450611e4086600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113f590919063ffffffff16565b600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611ed585600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113f590919063ffffffff16565b600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611f6a84600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461143f90919063ffffffff16565b600160008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611fb78382612b1c565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b60008060008060006120378661139d565b9450945094509450945061209385600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113f590919063ffffffff16565b600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061212882600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461143f90919063ffffffff16565b600260008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506121bd84600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461143f90919063ffffffff16565b600160008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061220a8382612b1c565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b600080600080600061228a8661139d565b945094509450945094506122e685600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113f590919063ffffffff16565b600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061237b84600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461143f90919063ffffffff16565b600160008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506123c88382612b1c565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b60008060008060006124488661139d565b945094509450945094506124a486600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113f590919063ffffffff16565b600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061253985600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113f590919063ffffffff16565b600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506125ce82600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461143f90919063ffffffff16565b600260008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061266384600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461143f90919063ffffffff16565b600160008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506126b08382612b1c565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b60008060006006549050600069d3c21bcecceda1000000905060005b6005805490508110156129835782600160006005848154811061275a57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054118061284157508160026000600584815481106127d957fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b156128605760065469d3c21bcecceda1000000945094505050506129cc565b6128e9600160006005848154811061287457fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054846113f590919063ffffffff16565b925061297460026000600584815481106128ff57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054836113f590919063ffffffff16565b9150808060010191505061273b565b506129a369d3c21bcecceda1000000600654611cd990919063ffffffff16565b8210156129c35760065469d3c21bcecceda10000009350935050506129cc565b81819350935050505b9091565b60008083118290612a7c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612a41578082015181840152602081019050612a26565b50505050905090810190601f168015612a6e5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581612a8857fe5b049050809150509392505050565b600080831415612aa95760009050612b16565b6000828402905082848281612aba57fe5b0414612b11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180612c146021913960400191505060405180910390fd5b809150505b92915050565b612b31826006546113f590919063ffffffff16565b600681905550612b4c8160075461143f90919063ffffffff16565b600781905550505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220ae77c5be47a7384c63b674b9357fbb54276afb8680667051243ef489b55c58b764736f6c634300060c0033
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061012c5760003560e01c806370a08231116100ad578063a457c2d711610071578063a457c2d714610552578063a9059cbb146105b6578063cba0e9961461061a578063dd62ed3e14610674578063f2fde38b146106ec5761012c565b806370a082311461041b578063715018a6146104735780637d1db4a51461047d5780638da5cb5b1461049b57806395d89b41146104cf5761012c565b806323b872dd116100f457806323b872dd146102825780632d83811914610306578063313ce5671461034857806339509351146103695780634549b039146103cd5761012c565b8063053ab1821461013157806306fdde031461015f578063095ea7b3146101e257806313114a9d1461024657806318160ddd14610264575b600080fd5b61015d6004803603602081101561014757600080fd5b8101908080359060200190929190505050610730565b005b6101676108c0565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156101a757808201518184015260208101905061018c565b50505050905090810190601f1680156101d45780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61022e600480360360408110156101f857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610962565b60405180821515815260200191505060405180910390f35b61024e610980565b6040518082815260200191505060405180910390f35b61026c61098a565b6040518082815260200191505060405180910390f35b6102ee6004803603606081101561029857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061099c565b60405180821515815260200191505060405180910390f35b6103326004803603602081101561031c57600080fd5b8101908080359060200190929190505050610a75565b6040518082815260200191505060405180910390f35b610350610af9565b604051808260ff16815260200191505060405180910390f35b6103b56004803603604081101561037f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610b10565b60405180821515815260200191505060405180910390f35b610405600480360360408110156103e357600080fd5b8101908080359060200190929190803515159060200190929190505050610bc3565b6040518082815260200191505060405180910390f35b61045d6004803603602081101561043157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610c80565b6040518082815260200191505060405180910390f35b61047b610d6b565b005b610485610ef1565b6040518082815260200191505060405180910390f35b6104a3610ef7565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6104d7610f20565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156105175780820151818401526020810190506104fc565b50505050905090810190601f1680156105445780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61059e6004803603604081101561056857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610fc2565b60405180821515815260200191505060405180910390f35b610602600480360360408110156105cc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061108f565b60405180821515815260200191505060405180910390f35b61065c6004803603602081101561063057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506110ad565b60405180821515815260200191505060405180910390f35b6106d66004803603604081101561068a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611103565b6040518082815260200191505060405180910390f35b61072e6004803603602081101561070257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061118a565b005b600061073a611395565b9050600460008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156107df576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180612ccf602c913960400191505060405180910390fd5b60006107ea8361139d565b50505050905061084281600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113f590919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061089a816006546113f590919063ffffffff16565b6006819055506108b58360075461143f90919063ffffffff16565b600781905550505050565b606060088054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156109585780601f1061092d57610100808354040283529160200191610958565b820191906000526020600020905b81548152906001019060200180831161093b57829003601f168201915b5050505050905090565b600061097661096f611395565b84846114c7565b6001905092915050565b6000600754905090565b600069d3c21bcecceda1000000905090565b60006109a98484846116be565b610a6a846109b5611395565b610a6585604051806060016040528060288152602001612c3560289139600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610a1b611395565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611bee9092919063ffffffff16565b6114c7565b600190509392505050565b6000600654821115610ad2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180612b7a602a913960400191505060405180910390fd5b6000610adc611cae565b9050610af18184611cd990919063ffffffff16565b915050919050565b6000600a60009054906101000a900460ff16905090565b6000610bb9610b1d611395565b84610bb48560036000610b2e611395565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461143f90919063ffffffff16565b6114c7565b6001905092915050565b600069d3c21bcecceda1000000831115610c45576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f416d6f756e74206d757374206265206c657373207468616e20737570706c790081525060200191505060405180910390fd5b81610c64576000610c558461139d565b50505050905080915050610c7a565b6000610c6f8461139d565b505050915050809150505b92915050565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610d1b57600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050610d66565b610d63600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610a75565b90505b919050565b610d73611395565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e33576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600b5481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060098054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610fb85780601f10610f8d57610100808354040283529160200191610fb8565b820191906000526020600020905b815481529060010190602001808311610f9b57829003601f168201915b5050505050905090565b6000611085610fcf611395565b8461108085604051806060016040528060258152602001612cfb6025913960036000610ff9611395565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611bee9092919063ffffffff16565b6114c7565b6001905092915050565b60006110a361109c611395565b84846116be565b6001905092915050565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611192611395565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611252576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156112d8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180612ba46026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b60008060008060008060006113b188611d23565b9150915060006113bf611cae565b905060008060006113d18c8686611d75565b92509250925082828288889a509a509a509a509a5050505050505091939590929450565b600061143783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611bee565b905092915050565b6000808284019050838110156114bd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561154d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180612cab6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115d3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180612bca6022913960400191505060405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611744576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180612c866025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117ca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180612b576023913960400191505060405180910390fd5b60008111611823576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526029815260200180612c5d6029913960400191505060405180910390fd5b61182b610ef7565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156118995750611869610ef7565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156118fa57600b548111156118f9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180612bec6028913960400191505060405180910390fd5b5b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561199d5750600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156119b2576119ad838383611dd3565b611be9565b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015611a555750600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15611a6a57611a65838383612026565b611be8565b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015611b0e5750600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611b2357611b1e838383612279565b611be7565b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611bc55750600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15611bda57611bd5838383612437565b611be6565b611be5838383612279565b5b5b5b5b505050565b6000838311158290611c9b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611c60578082015181840152602081019050611c45565b50505050905090810190601f168015611c8d5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6000806000611cbb61271f565b91509150611cd28183611cd990919063ffffffff16565b9250505090565b6000611d1b83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506129d0565b905092915050565b6000806000611d4f6004611d41606487611cd990919063ffffffff16565b612a9690919063ffffffff16565b90506000611d6682866113f590919063ffffffff16565b90508082935093505050915091565b600080600080611d8e8588612a9690919063ffffffff16565b90506000611da58688612a9690919063ffffffff16565b90506000611dbc82846113f590919063ffffffff16565b905082818395509550955050505093509350939050565b6000806000806000611de48661139d565b94509450945094509450611e4086600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113f590919063ffffffff16565b600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611ed585600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113f590919063ffffffff16565b600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611f6a84600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461143f90919063ffffffff16565b600160008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611fb78382612b1c565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b60008060008060006120378661139d565b9450945094509450945061209385600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113f590919063ffffffff16565b600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061212882600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461143f90919063ffffffff16565b600260008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506121bd84600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461143f90919063ffffffff16565b600160008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061220a8382612b1c565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b600080600080600061228a8661139d565b945094509450945094506122e685600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113f590919063ffffffff16565b600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061237b84600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461143f90919063ffffffff16565b600160008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506123c88382612b1c565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b60008060008060006124488661139d565b945094509450945094506124a486600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113f590919063ffffffff16565b600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061253985600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113f590919063ffffffff16565b600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506125ce82600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461143f90919063ffffffff16565b600260008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061266384600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461143f90919063ffffffff16565b600160008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506126b08382612b1c565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b60008060006006549050600069d3c21bcecceda1000000905060005b6005805490508110156129835782600160006005848154811061275a57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054118061284157508160026000600584815481106127d957fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b156128605760065469d3c21bcecceda1000000945094505050506129cc565b6128e9600160006005848154811061287457fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054846113f590919063ffffffff16565b925061297460026000600584815481106128ff57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054836113f590919063ffffffff16565b9150808060010191505061273b565b506129a369d3c21bcecceda1000000600654611cd990919063ffffffff16565b8210156129c35760065469d3c21bcecceda10000009350935050506129cc565b81819350935050505b9091565b60008083118290612a7c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612a41578082015181840152602081019050612a26565b50505050905090810190601f168015612a6e5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581612a8857fe5b049050809150509392505050565b600080831415612aa95760009050612b16565b6000828402905082848281612aba57fe5b0414612b11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180612c146021913960400191505060405180910390fd5b809150505b92915050565b612b31826006546113f590919063ffffffff16565b600681905550612b4c8160075461143f90919063ffffffff16565b600781905550505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220ae77c5be47a7384c63b674b9357fbb54276afb8680667051243ef489b55c58b764736f6c634300060c0033
Deployed Bytecode Sourcemap
16882:9573:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19931:376;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;17809:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18721:161;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;19832:87;;;:::i;:::-;;;;;;;;;;;;;;;;;;;18086:95;;;:::i;:::-;;;;;;;;;;;;;;;;;;;18890:313;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;20757:253;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;17995:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;19211:218;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;20315:434;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;18189:198;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;16324:148;;;:::i;:::-;;17609:52;;;:::i;:::-;;;;;;;;;;;;;;;;;;;15682:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;17900:87;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19437:269;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;18395:167;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;19714:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;18570:143;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;16627:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;19931:376;19983:14;20000:12;:10;:12::i;:::-;19983:29;;20032:11;:19;20044:6;20032:19;;;;;;;;;;;;;;;;;;;;;;;;;20031:20;20023:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20112:15;20135:19;20146:7;20135:10;:19::i;:::-;20111:43;;;;;;20183:28;20203:7;20183;:15;20191:6;20183:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;20165:7;:15;20173:6;20165:15;;;;;;;;;;;;;;;:46;;;;20232:20;20244:7;20232;;:11;;:20;;;;:::i;:::-;20222:7;:30;;;;20276:23;20291:7;20276:10;;:14;;:23;;;;:::i;:::-;20263:10;:36;;;;19931:376;;;:::o;17809:83::-;17846:13;17879:5;17872:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17809:83;:::o;18721:161::-;18796:4;18813:39;18822:12;:10;:12::i;:::-;18836:7;18845:6;18813:8;:39::i;:::-;18870:4;18863:11;;18721:161;;;;:::o;19832:87::-;19874:7;19901:10;;19894:17;;19832:87;:::o;18086:95::-;18139:7;17361:24;18159:14;;18086:95;:::o;18890:313::-;18988:4;19005:36;19015:6;19023:9;19034:6;19005:9;:36::i;:::-;19052:121;19061:6;19069:12;:10;:12::i;:::-;19083:89;19121:6;19083:89;;;;;;;;;;;;;;;;;:11;:19;19095:6;19083:19;;;;;;;;;;;;;;;:33;19103:12;:10;:12::i;:::-;19083:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;19052:8;:121::i;:::-;19191:4;19184:11;;18890:313;;;;;:::o;20757:253::-;20823:7;20862;;20851;:18;;20843:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20927:19;20950:10;:8;:10::i;:::-;20927:33;;20978:24;20990:11;20978:7;:11;;:24;;;;:::i;:::-;20971:31;;;20757:253;;;:::o;17995:83::-;18036:5;18061:9;;;;;;;;;;;18054:16;;17995:83;:::o;19211:218::-;19299:4;19316:83;19325:12;:10;:12::i;:::-;19339:7;19348:50;19387:10;19348:11;:25;19360:12;:10;:12::i;:::-;19348:25;;;;;;;;;;;;;;;:34;19374:7;19348:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;19316:8;:83::i;:::-;19417:4;19410:11;;19211:218;;;;:::o;20315:434::-;20405:7;17361:24;20433:7;:18;;20425:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20503:17;20498:244;;20538:15;20561:19;20572:7;20561:10;:19::i;:::-;20537:43;;;;;;20602:7;20595:14;;;;;20498:244;20644:23;20674:19;20685:7;20674:10;:19::i;:::-;20642:51;;;;;;20715:15;20708:22;;;20315:434;;;;;:::o;18189:198::-;18255:7;18279:11;:20;18291:7;18279:20;;;;;;;;;;;;;;;;;;;;;;;;;18275:49;;;18308:7;:16;18316:7;18308:16;;;;;;;;;;;;;;;;18301:23;;;;18275:49;18342:37;18362:7;:16;18370:7;18362:16;;;;;;;;;;;;;;;;18342:19;:37::i;:::-;18335:44;;18189:198;;;;:::o;16324:148::-;15904:12;:10;:12::i;:::-;15894:22;;:6;;;;;;;;;;:22;;;15886:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16431:1:::1;16394:40;;16415:6;::::0;::::1;;;;;;;;16394:40;;;;;;;;;;;;16462:1;16445:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;16324:148::o:0;17609:52::-;;;;:::o;15682:79::-;15720:7;15747:6;;;;;;;;;;;15740:13;;15682:79;:::o;17900:87::-;17939:13;17972:7;17965:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17900:87;:::o;19437:269::-;19530:4;19547:129;19556:12;:10;:12::i;:::-;19570:7;19579:96;19618:15;19579:96;;;;;;;;;;;;;;;;;:11;:25;19591:12;:10;:12::i;:::-;19579:25;;;;;;;;;;;;;;;:34;19605:7;19579:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;19547:8;:129::i;:::-;19694:4;19687:11;;19437:269;;;;:::o;18395:167::-;18473:4;18490:42;18500:12;:10;:12::i;:::-;18514:9;18525:6;18490:9;:42::i;:::-;18550:4;18543:11;;18395:167;;;;:::o;19714:110::-;19772:4;19796:11;:20;19808:7;19796:20;;;;;;;;;;;;;;;;;;;;;;;;;19789:27;;19714:110;;;:::o;18570:143::-;18651:7;18678:11;:18;18690:5;18678:18;;;;;;;;;;;;;;;:27;18697:7;18678:27;;;;;;;;;;;;;;;;18671:34;;18570:143;;;;:::o;16627:244::-;15904:12;:10;:12::i;:::-;15894:22;;:6;;;;;;;;;;:22;;;15886:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16736:1:::1;16716:22;;:8;:22;;;;16708:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16826:8;16797:38;;16818:6;::::0;::::1;;;;;;;;16797:38;;;;;;;;;;;;16855:8;16846:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;16627:244:::0;:::o;1377:106::-;1430:15;1465:10;1458:17;;1377:106;:::o;24721:411::-;24780:7;24789;24798;24807;24816;24837:23;24862:12;24878:20;24890:7;24878:11;:20::i;:::-;24836:62;;;;24909:19;24932:10;:8;:10::i;:::-;24909:33;;24954:15;24971:23;24996:12;25012:39;25024:7;25033:4;25039:11;25012;:39::i;:::-;24953:98;;;;;;25070:7;25079:15;25096:4;25102:15;25119:4;25062:62;;;;;;;;;;;;;;;;24721:411;;;;;;;:::o;5097:136::-;5155:7;5182:43;5186:1;5189;5182:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;5175:50;;5097:136;;;;:::o;4633:181::-;4691:7;4711:9;4727:1;4723;:5;4711:17;;4752:1;4747;:6;;4739:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4805:1;4798:8;;;4633:181;;;;:::o;21018:337::-;21128:1;21111:19;;:5;:19;;;;21103:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21209:1;21190:21;;:7;:21;;;;21182:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21293:6;21263:11;:18;21275:5;21263:18;;;;;;;;;;;;;;;:27;21282:7;21263:27;;;;;;;;;;;;;;;:36;;;;21331:7;21315:32;;21324:5;21315:32;;;21340:6;21315:32;;;;;;;;;;;;;;;;;;21018:337;;;:::o;21363:1088::-;21478:1;21460:20;;:6;:20;;;;21452:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21562:1;21541:23;;:9;:23;;;;21533:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21632:1;21623:6;:10;21615:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21703:7;:5;:7::i;:::-;21693:17;;:6;:17;;;;:41;;;;;21727:7;:5;:7::i;:::-;21714:20;;:9;:20;;;;21693:41;21690:132;;;21765:12;;21755:6;:22;;21747:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21690:132;21851:11;:19;21863:6;21851:19;;;;;;;;;;;;;;;;;;;;;;;;;:46;;;;;21875:11;:22;21887:9;21875:22;;;;;;;;;;;;;;;;;;;;;;;;;21874:23;21851:46;21847:597;;;21914:48;21936:6;21944:9;21955:6;21914:21;:48::i;:::-;21847:597;;;21985:11;:19;21997:6;21985:19;;;;;;;;;;;;;;;;;;;;;;;;;21984:20;:46;;;;;22008:11;:22;22020:9;22008:22;;;;;;;;;;;;;;;;;;;;;;;;;21984:46;21980:464;;;22047:46;22067:6;22075:9;22086:6;22047:19;:46::i;:::-;21980:464;;;22116:11;:19;22128:6;22116:19;;;;;;;;;;;;;;;;;;;;;;;;;22115:20;:47;;;;;22140:11;:22;22152:9;22140:22;;;;;;;;;;;;;;;;;;;;;;;;;22139:23;22115:47;22111:333;;;22179:44;22197:6;22205:9;22216:6;22179:17;:44::i;:::-;22111:333;;;22245:11;:19;22257:6;22245:19;;;;;;;;;;;;;;;;;;;;;;;;;:45;;;;;22268:11;:22;22280:9;22268:22;;;;;;;;;;;;;;;;;;;;;;;;;22245:45;22241:203;;;22307:48;22329:6;22337:9;22348:6;22307:21;:48::i;:::-;22241:203;;;22388:44;22406:6;22414:9;22425:6;22388:17;:44::i;:::-;22241:203;22111:333;21980:464;21847:597;21363:1088;;;:::o;5536:192::-;5622:7;5655:1;5650;:6;;5658:12;5642:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5682:9;5698:1;5694;:5;5682:17;;5719:1;5712:8;;;5536:192;;;;;:::o;25720:163::-;25761:7;25782:15;25799;25818:19;:17;:19::i;:::-;25781:56;;;;25855:20;25867:7;25855;:11;;:20;;;;:::i;:::-;25848:27;;;;25720:163;:::o;6934:132::-;6992:7;7019:39;7023:1;7026;7019:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;7012:46;;6934:132;;;;:::o;25140:230::-;25200:7;25209;25229:12;25244:23;25265:1;25244:16;25256:3;25244:7;:11;;:16;;;;:::i;:::-;:20;;:23;;;;:::i;:::-;25229:38;;25278:23;25304:17;25316:4;25304:7;:11;;:17;;;;:::i;:::-;25278:43;;25340:15;25357:4;25332:30;;;;;;25140:230;;;:::o;25378:334::-;25473:7;25482;25491;25511:15;25529:24;25541:11;25529:7;:11;;:24;;;;:::i;:::-;25511:42;;25564:12;25579:21;25588:11;25579:4;:8;;:21;;;;:::i;:::-;25564:36;;25611:23;25637:17;25649:4;25637:7;:11;;:17;;;;:::i;:::-;25611:43;;25673:7;25682:15;25699:4;25665:39;;;;;;;;;25378:334;;;;;;;:::o;23456:509::-;23559:15;23576:23;23601:12;23615:23;23640:12;23656:19;23667:7;23656:10;:19::i;:::-;23558:117;;;;;;;;;;23704:28;23724:7;23704;:15;23712:6;23704:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;23686:7;:15;23694:6;23686:15;;;;;;;;;;;;;;;:46;;;;23761:28;23781:7;23761;:15;23769:6;23761:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;23743:7;:15;23751:6;23743:15;;;;;;;;;;;;;;;:46;;;;23821:39;23844:15;23821:7;:18;23829:9;23821:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;23800:7;:18;23808:9;23800:18;;;;;;;;;;;;;;;:60;;;;23874:23;23886:4;23892;23874:11;:23::i;:::-;23930:9;23913:44;;23922:6;23913:44;;;23941:15;23913:44;;;;;;;;;;;;;;;;;;23456:509;;;;;;;;:::o;22919:529::-;23020:15;23037:23;23062:12;23076:23;23101:12;23117:19;23128:7;23117:10;:19::i;:::-;23019:117;;;;;;;;;;23165:28;23185:7;23165;:15;23173:6;23165:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;23147:7;:15;23155:6;23147:15;;;;;;;;;;;;;;;:46;;;;23225:39;23248:15;23225:7;:18;23233:9;23225:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;23204:7;:18;23212:9;23204:18;;;;;;;;;;;;;;;:60;;;;23296:39;23319:15;23296:7;:18;23304:9;23296:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;23275:7;:18;23283:9;23275:18;;;;;;;;;;;;;;;:60;;;;23357:23;23369:4;23375;23357:11;:23::i;:::-;23413:9;23396:44;;23405:6;23396:44;;;23424:15;23396:44;;;;;;;;;;;;;;;;;;22919:529;;;;;;;;:::o;22459:452::-;22558:15;22575:23;22600:12;22614:23;22639:12;22655:19;22666:7;22655:10;:19::i;:::-;22557:117;;;;;;;;;;22703:28;22723:7;22703;:15;22711:6;22703:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;22685:7;:15;22693:6;22685:15;;;;;;;;;;;;;;;:46;;;;22763:39;22786:15;22763:7;:18;22771:9;22763:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;22742:7;:18;22750:9;22742:18;;;;;;;;;;;;;;;:60;;;;22820:23;22832:4;22838;22820:11;:23::i;:::-;22876:9;22859:44;;22868:6;22859:44;;;22887:15;22859:44;;;;;;;;;;;;;;;;;;22459:452;;;;;;;;:::o;23973:585::-;24076:15;24093:23;24118:12;24132:23;24157:12;24173:19;24184:7;24173:10;:19::i;:::-;24075:117;;;;;;;;;;24221:28;24241:7;24221;:15;24229:6;24221:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;24203:7;:15;24211:6;24203:15;;;;;;;;;;;;;;;:46;;;;24278:28;24298:7;24278;:15;24286:6;24278:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;24260:7;:15;24268:6;24260:15;;;;;;;;;;;;;;;:46;;;;24338:39;24361:15;24338:7;:18;24346:9;24338:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;24317:7;:18;24325:9;24317:18;;;;;;;;;;;;;;;:60;;;;24409:39;24432:15;24409:7;:18;24417:9;24409:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;24388:7;:18;24396:9;24388:18;;;;;;;;;;;;;;;:60;;;;24467:23;24479:4;24485;24467:11;:23::i;:::-;24523:9;24506:44;;24515:6;24506:44;;;24534:15;24506:44;;;;;;;;;;;;;;;;;;23973:585;;;;;;;;:::o;25891:561::-;25941:7;25950;25970:15;25988:7;;25970:25;;26006:15;17361:24;26006:25;;26053:9;26048:289;26072:9;:16;;;;26068:1;:20;26048:289;;;26138:7;26114;:21;26122:9;26132:1;26122:12;;;;;;;;;;;;;;;;;;;;;;;;;26114:21;;;;;;;;;;;;;;;;:31;:66;;;;26173:7;26149;:21;26157:9;26167:1;26157:12;;;;;;;;;;;;;;;;;;;;;;;;;26149:21;;;;;;;;;;;;;;;;:31;26114:66;26110:97;;;26190:7;;17361:24;26182:25;;;;;;;;;26110:97;26232:34;26244:7;:21;26252:9;26262:1;26252:12;;;;;;;;;;;;;;;;;;;;;;;;;26244:21;;;;;;;;;;;;;;;;26232:7;:11;;:34;;;;:::i;:::-;26222:44;;26291:34;26303:7;:21;26311:9;26321:1;26311:12;;;;;;;;;;;;;;;;;;;;;;;;;26303:21;;;;;;;;;;;;;;;;26291:7;:11;;:34;;;;:::i;:::-;26281:44;;26090:3;;;;;;;26048:289;;;;26361:20;17361:24;26361:7;;:11;;:20;;;;:::i;:::-;26351:7;:30;26347:61;;;26391:7;;17361:24;26383:25;;;;;;;;26347:61;26427:7;26436;26419:25;;;;;;25891:561;;;:::o;7562:278::-;7648:7;7680:1;7676;:5;7683:12;7668:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7707:9;7723:1;7719;:5;;;;;;7707:17;;7831:1;7824:8;;;7562:278;;;;;:::o;5987:471::-;6045:7;6295:1;6290;:6;6286:47;;;6320:1;6313:8;;;;6286:47;6345:9;6361:1;6357;:5;6345:17;;6390:1;6385;6381;:5;;;;;;:10;6373:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6449:1;6442:8;;;5987:471;;;;;:::o;24566:147::-;24644:17;24656:4;24644:7;;:11;;:17;;;;:::i;:::-;24634:7;:27;;;;24685:20;24700:4;24685:10;;:14;;:20;;;;:::i;:::-;24672:10;:33;;;;24566:147;;:::o
Swarm Source
ipfs://ae77c5be47a7384c63b674b9357fbb54276afb8680667051243ef489b55c58b7
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.