More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 1,710 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer | 21521478 | 21 days ago | IN | 0 ETH | 0.00102613 | ||||
Transfer | 21515787 | 22 days ago | IN | 0 ETH | 0.00109374 | ||||
Approve | 20673030 | 139 days ago | IN | 0 ETH | 0.00006205 | ||||
Approve | 20548506 | 157 days ago | IN | 0 ETH | 0.00005175 | ||||
Approve | 20302505 | 191 days ago | IN | 0 ETH | 0.00007736 | ||||
Transfer | 20298007 | 192 days ago | IN | 0 ETH | 0.00011989 | ||||
Transfer | 20143352 | 213 days ago | IN | 0 ETH | 0.00020669 | ||||
Transfer | 19640443 | 284 days ago | IN | 0 ETH | 0.00168655 | ||||
Transfer | 19286174 | 333 days ago | IN | 0 ETH | 0.00281081 | ||||
Transfer | 18833951 | 397 days ago | IN | 0 ETH | 0.00132612 | ||||
Transfer | 18705439 | 415 days ago | IN | 0 ETH | 0.00111285 | ||||
Transfer | 18563437 | 435 days ago | IN | 0 ETH | 0.00320374 | ||||
Approve | 18338903 | 466 days ago | IN | 0 ETH | 0.00023584 | ||||
Transfer | 18322137 | 469 days ago | IN | 0 ETH | 0.00062265 | ||||
Approve | 18158229 | 492 days ago | IN | 0 ETH | 0.00053163 | ||||
Transfer | 17768403 | 546 days ago | IN | 0 ETH | 0.00078506 | ||||
Transfer | 17768385 | 546 days ago | IN | 0 ETH | 0.00101965 | ||||
Transfer | 17668205 | 560 days ago | IN | 0 ETH | 0.00058065 | ||||
Transfer | 17654928 | 562 days ago | IN | 0 ETH | 0.00051285 | ||||
Approve | 16876614 | 672 days ago | IN | 0 ETH | 0.00154185 | ||||
Approve | 16729802 | 692 days ago | IN | 0 ETH | 0.00064267 | ||||
Approve | 16729800 | 692 days ago | IN | 0 ETH | 0.00112326 | ||||
Transfer | 16331702 | 748 days ago | IN | 0 ETH | 0.0006701 | ||||
Approve | 16263713 | 758 days ago | IN | 0 ETH | 0.00053932 | ||||
Approve | 15890420 | 810 days ago | IN | 0 ETH | 0.000998 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
LKSC
Compiler Version
v0.5.5+commit.47a71e8f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-07-04 */ // File: @openzeppelin/contracts/GSN/Context.sol pragma solidity ^0.5.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 { } // solhint-disable-previous-line no-empty-blocks function _msgSender() internal view returns (address payable) { return msg.sender; } function _msgData() internal view 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/token/ERC777/IERC777.sol pragma solidity ^0.5.0; /** * @dev Interface of the ERC777Token standard as defined in the EIP. * * This contract uses the * https://eips.ethereum.org/EIPS/eip-1820[ERC1820 registry standard] to let * token holders and recipients react to token movements by using setting implementers * for the associated interfaces in said registry. See {IERC1820Registry} and * {ERC1820Implementer}. */ interface IERC777 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() external view returns (string memory); /** * @dev Returns the smallest part of the token that is not divisible. This * means all token operations (creation, movement and destruction) must have * amounts that are a multiple of this number. * * For most token contracts, this value will equal 1. */ function granularity() external view returns (uint256); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by an account (`owner`). */ function balanceOf(address owner) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * If send or receive hooks are registered for the caller and `recipient`, * the corresponding functions will be called with `data` and empty * `operatorData`. See {IERC777Sender} and {IERC777Recipient}. * * Emits a {Sent} event. * * Requirements * * - the caller must have at least `amount` tokens. * - `recipient` cannot be the zero address. * - if `recipient` is a contract, it must implement the {IERC777Recipient} * interface. */ function send(address recipient, uint256 amount, bytes calldata data) external; /** * @dev Destroys `amount` tokens from the caller's account, reducing the * total supply. * * If a send hook is registered for the caller, the corresponding function * will be called with `data` and empty `operatorData`. See {IERC777Sender}. * * Emits a {Burned} event. * * Requirements * * - the caller must have at least `amount` tokens. */ function burn(uint256 amount, bytes calldata data) external; /** * @dev Returns true if an account is an operator of `tokenHolder`. * Operators can send and burn tokens on behalf of their owners. All * accounts are their own operator. * * See {operatorSend} and {operatorBurn}. */ function isOperatorFor(address operator, address tokenHolder) external view returns (bool); /** * @dev Make an account an operator of the caller. * * See {isOperatorFor}. * * Emits an {AuthorizedOperator} event. * * Requirements * * - `operator` cannot be calling address. */ function authorizeOperator(address operator) external; /** * @dev Make an account an operator of the caller. * * See {isOperatorFor} and {defaultOperators}. * * Emits a {RevokedOperator} event. * * Requirements * * - `operator` cannot be calling address. */ function revokeOperator(address operator) external; /** * @dev Returns the list of default operators. These accounts are operators * for all token holders, even if {authorizeOperator} was never called on * them. * * This list is immutable, but individual holders may revoke these via * {revokeOperator}, in which case {isOperatorFor} will return false. */ function defaultOperators() external view returns (address[] memory); /** * @dev Moves `amount` tokens from `sender` to `recipient`. The caller must * be an operator of `sender`. * * If send or receive hooks are registered for `sender` and `recipient`, * the corresponding functions will be called with `data` and * `operatorData`. See {IERC777Sender} and {IERC777Recipient}. * * Emits a {Sent} event. * * Requirements * * - `sender` cannot be the zero address. * - `sender` must have at least `amount` tokens. * - the caller must be an operator for `sender`. * - `recipient` cannot be the zero address. * - if `recipient` is a contract, it must implement the {IERC777Recipient} * interface. */ function operatorSend( address sender, address recipient, uint256 amount, bytes calldata data, bytes calldata operatorData ) external; /** * @dev Destoys `amount` tokens from `account`, reducing the total supply. * The caller must be an operator of `account`. * * If a send hook is registered for `account`, the corresponding function * will be called with `data` and `operatorData`. See {IERC777Sender}. * * Emits a {Burned} event. * * Requirements * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. * - the caller must be an operator for `account`. */ function operatorBurn( address account, uint256 amount, bytes calldata data, bytes calldata operatorData ) external; event Sent( address indexed operator, address indexed from, address indexed to, uint256 amount, bytes data, bytes operatorData ); event Minted(address indexed operator, address indexed to, uint256 amount, bytes data, bytes operatorData); event Burned(address indexed operator, address indexed from, uint256 amount, bytes data, bytes operatorData); event AuthorizedOperator(address indexed operator, address indexed tokenHolder); event RevokedOperator(address indexed operator, address indexed tokenHolder); } // File: @openzeppelin/contracts/token/ERC777/IERC777Recipient.sol pragma solidity ^0.5.0; /** * @dev Interface of the ERC777TokensRecipient standard as defined in the EIP. * * Accounts can be notified of {IERC777} tokens being sent to them by having a * contract implement this interface (contract holders can be their own * implementer) and registering it on the * https://eips.ethereum.org/EIPS/eip-1820[ERC1820 global registry]. * * See {IERC1820Registry} and {ERC1820Implementer}. */ interface IERC777Recipient { /** * @dev Called by an {IERC777} token contract whenever tokens are being * moved or created into a registered account (`to`). The type of operation * is conveyed by `from` being the zero address or not. * * This call occurs _after_ the token contract's state is updated, so * {IERC777-balanceOf}, etc., can be used to query the post-operation state. * * This function may revert to prevent the operation from being executed. */ function tokensReceived( address operator, address from, address to, uint256 amount, bytes calldata userData, bytes calldata operatorData ) external; } // File: @openzeppelin/contracts/token/ERC777/IERC777Sender.sol pragma solidity ^0.5.0; /** * @dev Interface of the ERC777TokensSender standard as defined in the EIP. * * {IERC777} Token holders can be notified of operations performed on their * tokens by having a contract implement this interface (contract holders can be * their own implementer) and registering it on the * https://eips.ethereum.org/EIPS/eip-1820[ERC1820 global registry]. * * See {IERC1820Registry} and {ERC1820Implementer}. */ interface IERC777Sender { /** * @dev Called by an {IERC777} token contract whenever a registered holder's * (`from`) tokens are about to be moved or destroyed. The type of operation * is conveyed by `to` being the zero address or not. * * This call occurs _before_ the token contract's state is updated, so * {IERC777-balanceOf}, etc., can be used to query the pre-operation state. * * This function may revert to prevent the operation from being executed. */ function tokensToSend( address operator, address from, address to, uint256 amount, bytes calldata userData, bytes calldata operatorData ) external; } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol pragma solidity ^0.5.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. Does not include * the optional functions; to access them see {ERC20Detailed}. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File: @openzeppelin/contracts/math/SafeMath.sol pragma solidity ^0.5.0; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * - Subtraction cannot overflow. * * _Available since v2.4.0._ */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. * * _Available since v2.4.0._ */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { // Solidity only automatically asserts when dividing by 0 require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. * * _Available since v2.4.0._ */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } // File: @openzeppelin/contracts/utils/Address.sol pragma solidity ^0.5.5; /** * @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 Converts an `address` into `address payable`. Note that this is * simply a type cast: the actual underlying value is not changed. * * _Available since v2.4.0._ */ function toPayable(address account) internal pure returns (address payable) { return address(uint160(account)); } /** * @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]. * * _Available since v2.4.0._ */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-call-value (bool success, ) = recipient.call.value(amount)(""); require(success, "Address: unable to send value, recipient may have reverted"); } } // File: @openzeppelin/contracts/introspection/IERC1820Registry.sol pragma solidity ^0.5.0; /** * @dev Interface of the global ERC1820 Registry, as defined in the * https://eips.ethereum.org/EIPS/eip-1820[EIP]. Accounts may register * implementers for interfaces in this registry, as well as query support. * * Implementers may be shared by multiple accounts, and can also implement more * than a single interface for each account. Contracts can implement interfaces * for themselves, but externally-owned accounts (EOA) must delegate this to a * contract. * * {IERC165} interfaces can also be queried via the registry. * * For an in-depth explanation and source code analysis, see the EIP text. */ interface IERC1820Registry { /** * @dev Sets `newManager` as the manager for `account`. A manager of an * account is able to set interface implementers for it. * * By default, each account is its own manager. Passing a value of `0x0` in * `newManager` will reset the manager to this initial state. * * Emits a {ManagerChanged} event. * * Requirements: * * - the caller must be the current manager for `account`. */ function setManager(address account, address newManager) external; /** * @dev Returns the manager for `account`. * * See {setManager}. */ function getManager(address account) external view returns (address); /** * @dev Sets the `implementer` contract as `account`'s implementer for * `interfaceHash`. * * `account` being the zero address is an alias for the caller's address. * The zero address can also be used in `implementer` to remove an old one. * * See {interfaceHash} to learn how these are created. * * Emits an {InterfaceImplementerSet} event. * * Requirements: * * - the caller must be the current manager for `account`. * - `interfaceHash` must not be an {IERC165} interface id (i.e. it must not * end in 28 zeroes). * - `implementer` must implement {IERC1820Implementer} and return true when * queried for support, unless `implementer` is the caller. See * {IERC1820Implementer-canImplementInterfaceForAddress}. */ function setInterfaceImplementer(address account, bytes32 interfaceHash, address implementer) external; /** * @dev Returns the implementer of `interfaceHash` for `account`. If no such * implementer is registered, returns the zero address. * * If `interfaceHash` is an {IERC165} interface id (i.e. it ends with 28 * zeroes), `account` will be queried for support of it. * * `account` being the zero address is an alias for the caller's address. */ function getInterfaceImplementer(address account, bytes32 interfaceHash) external view returns (address); /** * @dev Returns the interface hash for an `interfaceName`, as defined in the * corresponding * https://eips.ethereum.org/EIPS/eip-1820#interface-name[section of the EIP]. */ function interfaceHash(string calldata interfaceName) external pure returns (bytes32); /** * @notice Updates the cache with whether the contract implements an ERC165 interface or not. * @param account Address of the contract for which to update the cache. * @param interfaceId ERC165 interface for which to update the cache. */ function updateERC165Cache(address account, bytes4 interfaceId) external; /** * @notice Checks whether a contract implements an ERC165 interface or not. * If the result is not cached a direct lookup on the contract address is performed. * If the result is not cached or the cached value is out-of-date, the cache MUST be updated manually by calling * {updateERC165Cache} with the contract address. * @param account Address of the contract to check. * @param interfaceId ERC165 interface to check. * @return True if `account` implements `interfaceId`, false otherwise. */ function implementsERC165Interface(address account, bytes4 interfaceId) external view returns (bool); /** * @notice Checks whether a contract implements an ERC165 interface or not without using nor updating the cache. * @param account Address of the contract to check. * @param interfaceId ERC165 interface to check. * @return True if `account` implements `interfaceId`, false otherwise. */ function implementsERC165InterfaceNoCache(address account, bytes4 interfaceId) external view returns (bool); event InterfaceImplementerSet(address indexed account, bytes32 indexed interfaceHash, address indexed implementer); event ManagerChanged(address indexed account, address indexed newManager); } // File: @openzeppelin/contracts/token/ERC777/ERC777.sol pragma solidity ^0.5.0; /** * @dev Implementation of the {IERC777} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * * Support for ERC20 is included in this contract, as specified by the EIP: both * the ERC777 and ERC20 interfaces can be safely used when interacting with it. * Both {IERC777-Sent} and {IERC20-Transfer} events are emitted on token * movements. * * Additionally, the {IERC777-granularity} value is hard-coded to `1`, meaning that there * are no special restrictions in the amount of tokens that created, moved, or * destroyed. This makes integration with ERC20 applications seamless. */ contract ERC777 is Context, IERC777, IERC20 { using SafeMath for uint256; using Address for address; IERC1820Registry constant internal ERC1820_REGISTRY = IERC1820Registry(0x1820a4B7618BdE71Dce8cdc73aAB6C95905faD24); mapping(address => uint256) private _balances; uint256 private _totalSupply; string private _name; string private _symbol; // We inline the result of the following hashes because Solidity doesn't resolve them at compile time. // See https://github.com/ethereum/solidity/issues/4024. // keccak256("ERC777TokensSender") bytes32 constant private TOKENS_SENDER_INTERFACE_HASH = 0x29ddb589b1fb5fc7cf394961c1adf5f8c6454761adf795e67fe149f658abe895; // keccak256("ERC777TokensRecipient") bytes32 constant private TOKENS_RECIPIENT_INTERFACE_HASH = 0xb281fc8c12954d22544db45de3159a39272895b169a852b314f9cc762e44c53b; // This isn't ever read from - it's only used to respond to the defaultOperators query. address[] private _defaultOperatorsArray; // Immutable, but accounts may revoke them (tracked in __revokedDefaultOperators). mapping(address => bool) private _defaultOperators; // For each account, a mapping of its operators and revoked default operators. mapping(address => mapping(address => bool)) private _operators; mapping(address => mapping(address => bool)) private _revokedDefaultOperators; // ERC20-allowances mapping (address => mapping (address => uint256)) private _allowances; /** * @dev `defaultOperators` may be an empty array. */ constructor( string memory name, string memory symbol, address[] memory defaultOperators ) public { _name = name; _symbol = symbol; _defaultOperatorsArray = defaultOperators; for (uint256 i = 0; i < _defaultOperatorsArray.length; i++) { _defaultOperators[_defaultOperatorsArray[i]] = true; } // register interfaces ERC1820_REGISTRY.setInterfaceImplementer(address(this), keccak256("ERC777Token"), address(this)); ERC1820_REGISTRY.setInterfaceImplementer(address(this), keccak256("ERC20Token"), address(this)); } /** * @dev See {IERC777-name}. */ function name() public view returns (string memory) { return _name; } /** * @dev See {IERC777-symbol}. */ function symbol() public view returns (string memory) { return _symbol; } /** * @dev See {ERC20Detailed-decimals}. * * Always returns 18, as per the * [ERC777 EIP](https://eips.ethereum.org/EIPS/eip-777#backward-compatibility). */ function decimals() public pure returns (uint8) { return 18; } /** * @dev See {IERC777-granularity}. * * This implementation always returns `1`. */ function granularity() public view returns (uint256) { return 1; } /** * @dev See {IERC777-totalSupply}. */ function totalSupply() public view returns (uint256) { return _totalSupply; } /** * @dev Returns the amount of tokens owned by an account (`tokenHolder`). */ function balanceOf(address tokenHolder) public view returns (uint256) { return _balances[tokenHolder]; } /** * @dev See {IERC777-send}. * * Also emits a {IERC20-Transfer} event for ERC20 compatibility. */ function send(address recipient, uint256 amount, bytes memory data) public { _send(_msgSender(), _msgSender(), recipient, amount, data, "", true); } /** * @dev See {IERC20-transfer}. * * Unlike `send`, `recipient` is _not_ required to implement the {IERC777Recipient} * interface if it is a contract. * * Also emits a {Sent} event. */ function transfer(address recipient, uint256 amount) public returns (bool) { require(recipient != address(0), "ERC777: transfer to the zero address"); address from = _msgSender(); _callTokensToSend(from, from, recipient, amount, "", ""); _move(from, from, recipient, amount, "", ""); _callTokensReceived(from, from, recipient, amount, "", "", false); return true; } /** * @dev See {IERC777-burn}. * * Also emits a {IERC20-Transfer} event for ERC20 compatibility. */ function burn(uint256 amount, bytes memory data) public { _burn(_msgSender(), _msgSender(), amount, data, ""); } /** * @dev See {IERC777-isOperatorFor}. */ function isOperatorFor( address operator, address tokenHolder ) public view returns (bool) { return operator == tokenHolder || (_defaultOperators[operator] && !_revokedDefaultOperators[tokenHolder][operator]) || _operators[tokenHolder][operator]; } /** * @dev See {IERC777-authorizeOperator}. */ function authorizeOperator(address operator) public { require(_msgSender() != operator, "ERC777: authorizing self as operator"); if (_defaultOperators[operator]) { delete _revokedDefaultOperators[_msgSender()][operator]; } else { _operators[_msgSender()][operator] = true; } emit AuthorizedOperator(operator, _msgSender()); } /** * @dev See {IERC777-revokeOperator}. */ function revokeOperator(address operator) public { require(operator != _msgSender(), "ERC777: revoking self as operator"); if (_defaultOperators[operator]) { _revokedDefaultOperators[_msgSender()][operator] = true; } else { delete _operators[_msgSender()][operator]; } emit RevokedOperator(operator, _msgSender()); } /** * @dev See {IERC777-defaultOperators}. */ function defaultOperators() public view returns (address[] memory) { return _defaultOperatorsArray; } /** * @dev See {IERC777-operatorSend}. * * Emits {Sent} and {IERC20-Transfer} events. */ function operatorSend( address sender, address recipient, uint256 amount, bytes memory data, bytes memory operatorData ) public { require(isOperatorFor(_msgSender(), sender), "ERC777: caller is not an operator for holder"); _send(_msgSender(), sender, recipient, amount, data, operatorData, true); } /** * @dev See {IERC777-operatorBurn}. * * Emits {Burned} and {IERC20-Transfer} events. */ function operatorBurn(address account, uint256 amount, bytes memory data, bytes memory operatorData) public { require(isOperatorFor(_msgSender(), account), "ERC777: caller is not an operator for holder"); _burn(_msgSender(), account, amount, data, operatorData); } /** * @dev See {IERC20-allowance}. * * Note that operator and allowance concepts are orthogonal: operators may * not have allowance, and accounts with allowance may not be operators * themselves. */ function allowance(address holder, address spender) public view returns (uint256) { return _allowances[holder][spender]; } /** * @dev See {IERC20-approve}. * * Note that accounts cannot have allowance issued by their operators. */ function approve(address spender, uint256 value) public returns (bool) { address holder = _msgSender(); _approve(holder, spender, value); return true; } /** * @dev See {IERC20-transferFrom}. * * Note that operator and allowance concepts are orthogonal: operators cannot * call `transferFrom` (unless they have allowance), and accounts with * allowance cannot call `operatorSend` (unless they are operators). * * Emits {Sent}, {IERC20-Transfer} and {IERC20-Approval} events. */ function transferFrom(address holder, address recipient, uint256 amount) public returns (bool) { require(recipient != address(0), "ERC777: transfer to the zero address"); require(holder != address(0), "ERC777: transfer from the zero address"); address spender = _msgSender(); _callTokensToSend(spender, holder, recipient, amount, "", ""); _move(spender, holder, recipient, amount, "", ""); _approve(holder, spender, _allowances[holder][spender].sub(amount, "ERC777: transfer amount exceeds allowance")); _callTokensReceived(spender, holder, recipient, amount, "", "", false); return true; } /** * @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * If a send hook is registered for `account`, the corresponding function * will be called with `operator`, `data` and `operatorData`. * * See {IERC777Sender} and {IERC777Recipient}. * * Emits {Minted} and {IERC20-Transfer} events. * * Requirements * * - `account` cannot be the zero address. * - if `account` is a contract, it must implement the {IERC777Recipient} * interface. */ function _mint( address operator, address account, uint256 amount, bytes memory userData, bytes memory operatorData ) internal { require(account != address(0), "ERC777: mint to the zero address"); // Update state variables _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); _callTokensReceived(operator, address(0), account, amount, userData, operatorData, true); emit Minted(operator, account, amount, userData, operatorData); emit Transfer(address(0), account, amount); } /** * @dev Send tokens * @param operator address operator requesting the transfer * @param from address token holder address * @param to address recipient address * @param amount uint256 amount of tokens to transfer * @param userData bytes extra information provided by the token holder (if any) * @param operatorData bytes extra information provided by the operator (if any) * @param requireReceptionAck if true, contract recipients are required to implement ERC777TokensRecipient */ function _send( address operator, address from, address to, uint256 amount, bytes memory userData, bytes memory operatorData, bool requireReceptionAck ) internal { require(from != address(0), "ERC777: send from the zero address"); require(to != address(0), "ERC777: send to the zero address"); _callTokensToSend(operator, from, to, amount, userData, operatorData); _move(operator, from, to, amount, userData, operatorData); _callTokensReceived(operator, from, to, amount, userData, operatorData, requireReceptionAck); } /** * @dev Burn tokens * @param operator address operator requesting the operation * @param from address token holder address * @param amount uint256 amount of tokens to burn * @param data bytes extra information provided by the token holder * @param operatorData bytes extra information provided by the operator (if any) */ function _burn( address operator, address from, uint256 amount, bytes memory data, bytes memory operatorData ) internal { require(from != address(0), "ERC777: burn from the zero address"); _callTokensToSend(operator, from, address(0), amount, data, operatorData); // Update state variables _balances[from] = _balances[from].sub(amount, "ERC777: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Burned(operator, from, amount, data, operatorData); emit Transfer(from, address(0), amount); } function _move( address operator, address from, address to, uint256 amount, bytes memory userData, bytes memory operatorData ) private { _balances[from] = _balances[from].sub(amount, "ERC777: transfer amount exceeds balance"); _balances[to] = _balances[to].add(amount); emit Sent(operator, from, to, amount, userData, operatorData); emit Transfer(from, to, amount); } function _approve(address holder, address spender, uint256 value) internal { // TODO: restore this require statement if this function becomes internal, or is called at a new callsite. It is // currently unnecessary. //require(holder != address(0), "ERC777: approve from the zero address"); require(spender != address(0), "ERC777: approve to the zero address"); _allowances[holder][spender] = value; emit Approval(holder, spender, value); } /** * @dev Call from.tokensToSend() if the interface is registered * @param operator address operator requesting the transfer * @param from address token holder address * @param to address recipient address * @param amount uint256 amount of tokens to transfer * @param userData bytes extra information provided by the token holder (if any) * @param operatorData bytes extra information provided by the operator (if any) */ function _callTokensToSend( address operator, address from, address to, uint256 amount, bytes memory userData, bytes memory operatorData ) internal { address implementer = ERC1820_REGISTRY.getInterfaceImplementer(from, TOKENS_SENDER_INTERFACE_HASH); if (implementer != address(0)) { IERC777Sender(implementer).tokensToSend(operator, from, to, amount, userData, operatorData); } } /** * @dev Call to.tokensReceived() if the interface is registered. Reverts if the recipient is a contract but * tokensReceived() was not registered for the recipient * @param operator address operator requesting the transfer * @param from address token holder address * @param to address recipient address * @param amount uint256 amount of tokens to transfer * @param userData bytes extra information provided by the token holder (if any) * @param operatorData bytes extra information provided by the operator (if any) * @param requireReceptionAck if true, contract recipients are required to implement ERC777TokensRecipient */ function _callTokensReceived( address operator, address from, address to, uint256 amount, bytes memory userData, bytes memory operatorData, bool requireReceptionAck ) internal { address implementer = ERC1820_REGISTRY.getInterfaceImplementer(to, TOKENS_RECIPIENT_INTERFACE_HASH); if (implementer != address(0)) { IERC777Recipient(implementer).tokensReceived(operator, from, to, amount, userData, operatorData); } else if (requireReceptionAck) { require(!to.isContract(), "ERC777: token recipient contract has no implementer for ERC777TokensRecipient"); } } } // File: contracts/LKSC.sol pragma solidity ^0.5.0; contract LKSC is ERC777 { address public owner; event Redeem( address indexed redeemer, uint256 value, string underlyingAssetRecipient ); constructor( string memory tokenName, string memory tokenSymbol, address[] memory defaultOperators ) ERC777(tokenName, tokenSymbol, defaultOperators) public { owner = _msgSender(); } function changeOwner( address newOwner ) external { require( _msgSender() == owner, "Only the owner can change the `owner` account!" ); require( _msgSender() != address(0), "owner cannot be the zero address!" ); owner = newOwner; } function mint( address recipient, uint256 value ) external returns (bool) { mint(recipient, value, "", ""); return true; } function mint( address recipient, uint256 value, bytes memory userData, bytes memory operatorData ) public returns (bool) { require( _msgSender() == owner, "Only the owner can mint tokens!" ); require( recipient != address(0), "pToken: Cannot mint to the zero address!" ); _mint(owner, recipient, value, userData, operatorData); return true; } function redeem( uint256 amount, string calldata underlyingAssetRecipient ) external returns (bool) { redeem(amount, "", underlyingAssetRecipient); return true; } function redeem( uint256 amount, bytes memory data, string memory underlyingAssetRecipient ) public { _burn(_msgSender(), _msgSender(), amount, data, ""); emit Redeem(msg.sender, amount, underlyingAssetRecipient); } function operatorRedeem( address account, uint256 amount, bytes calldata data, bytes calldata operatorData, string calldata underlyingAssetRecipient ) external { require( isOperatorFor(_msgSender(), account), "ERC777: caller is not an operator for holder" ); _burn(_msgSender(), account, amount, data, operatorData); emit Redeem(account, amount, underlyingAssetRecipient); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"constant":true,"inputs":[],"name":"defaultOperators","outputs":[{"name":"","type":"address[]"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"account","type":"address"},{"name":"amount","type":"uint256"},{"name":"data","type":"bytes"},{"name":"operatorData","type":"bytes"},{"name":"underlyingAssetRecipient","type":"string"}],"name":"operatorRedeem","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"holder","type":"address"},{"name":"recipient","type":"address"},{"name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"amount","type":"uint256"},{"name":"underlyingAssetRecipient","type":"string"}],"name":"redeem","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":false,"inputs":[{"name":"recipient","type":"address"},{"name":"value","type":"uint256"}],"name":"mint","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"granularity","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"sender","type":"address"},{"name":"recipient","type":"address"},{"name":"amount","type":"uint256"},{"name":"data","type":"bytes"},{"name":"operatorData","type":"bytes"}],"name":"operatorSend","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"tokenHolder","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"operator","type":"address"}],"name":"authorizeOperator","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"recipient","type":"address"},{"name":"amount","type":"uint256"},{"name":"data","type":"bytes"}],"name":"send","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"changeOwner","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"recipient","type":"address"},{"name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"amount","type":"uint256"},{"name":"data","type":"bytes"},{"name":"underlyingAssetRecipient","type":"string"}],"name":"redeem","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"operator","type":"address"},{"name":"tokenHolder","type":"address"}],"name":"isOperatorFor","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"recipient","type":"address"},{"name":"value","type":"uint256"},{"name":"userData","type":"bytes"},{"name":"operatorData","type":"bytes"}],"name":"mint","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"holder","type":"address"},{"name":"spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"operator","type":"address"}],"name":"revokeOperator","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"account","type":"address"},{"name":"amount","type":"uint256"},{"name":"data","type":"bytes"},{"name":"operatorData","type":"bytes"}],"name":"operatorBurn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"amount","type":"uint256"},{"name":"data","type":"bytes"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"tokenName","type":"string"},{"name":"tokenSymbol","type":"string"},{"name":"defaultOperators","type":"address[]"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"redeemer","type":"address"},{"indexed":false,"name":"value","type":"uint256"},{"indexed":false,"name":"underlyingAssetRecipient","type":"string"}],"name":"Redeem","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"operator","type":"address"},{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"amount","type":"uint256"},{"indexed":false,"name":"data","type":"bytes"},{"indexed":false,"name":"operatorData","type":"bytes"}],"name":"Sent","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"operator","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"amount","type":"uint256"},{"indexed":false,"name":"data","type":"bytes"},{"indexed":false,"name":"operatorData","type":"bytes"}],"name":"Minted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"operator","type":"address"},{"indexed":true,"name":"from","type":"address"},{"indexed":false,"name":"amount","type":"uint256"},{"indexed":false,"name":"data","type":"bytes"},{"indexed":false,"name":"operatorData","type":"bytes"}],"name":"Burned","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"operator","type":"address"},{"indexed":true,"name":"tokenHolder","type":"address"}],"name":"AuthorizedOperator","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"operator","type":"address"},{"indexed":true,"name":"tokenHolder","type":"address"}],"name":"RevokedOperator","type":"event"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405162002f2738038062002f27833981018060405260608110156200003757600080fd5b8101908080516401000000008111156200005057600080fd5b820160208101848111156200006457600080fd5b81516401000000008111828201871017156200007f57600080fd5b505092919060200180516401000000008111156200009c57600080fd5b82016020810184811115620000b057600080fd5b8151640100000000811182820187101715620000cb57600080fd5b50509291906020018051640100000000811115620000e857600080fd5b82016020810184811115620000fc57600080fd5b81518560208202830111640100000000821117156200011a57600080fd5b5050855190935085925084915083906200013c90600290602086019062000391565b5081516200015290600390602085019062000391565b5080516200016890600490602084019062000416565b5060005b600454811015620001ca576001600560006004848154811015156200018d57fe5b6000918252602080832091909101546001600160a01b031683528201929092526040019020805460ff19169115159190911790556001016200016c565b50604080517f455243373737546f6b656e0000000000000000000000000000000000000000008152815190819003600b0181207f29965a1d0000000000000000000000000000000000000000000000000000000082523060048301819052602483019190915260448201529051731820a4b7618bde71dce8cdc73aab6c95905fad24916329965a1d91606480830192600092919082900301818387803b1580156200027457600080fd5b505af115801562000289573d6000803e3d6000fd5b5050604080517f4552433230546f6b656e000000000000000000000000000000000000000000008152815190819003600a0181207f29965a1d0000000000000000000000000000000000000000000000000000000082523060048301819052602483019190915260448201529051731820a4b7618bde71dce8cdc73aab6c95905fad2493506329965a1d9250606480830192600092919082900301818387803b1580156200033657600080fd5b505af11580156200034b573d6000803e3d6000fd5b50505050505050620003626200038c60201b60201c565b600980546001600160a01b0319166001600160a01b039290921691909117905550620004c0915050565b335b90565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620003d457805160ff191683800117855562000404565b8280016001018555821562000404579182015b8281111562000404578251825591602001919060010190620003e7565b50620004129291506200047c565b5090565b8280548282559060005260206000209081019282156200046e579160200282015b828111156200046e57825182546001600160a01b0319166001600160a01b0390911617825560209092019160019091019062000437565b506200041292915062000499565b6200038e91905b8082111562000412576000815560010162000483565b6200038e91905b80821115620004125780546001600160a01b0319168155600101620004a0565b612a5780620004d06000396000f3fe608060405234801561001057600080fd5b50600436106101735760003560e01c80638da5cb5b116100de578063ce67c00311610097578063dd62ed3e11610071578063dd62ed3e14610a31578063fad8b32a14610a5f578063fc673c4f14610a85578063fe9d930314610bc357610173565b8063ce67c00314610795578063d95b6371146108c5578063dcdc7dd0146108f357610173565b80638da5cb5b14610638578063959b8c3f1461065c57806395d89b41146106825780639bd9bbc61461068a578063a6f9dae114610743578063a9059cbb1461076957610173565b806324b76fd51161013057806324b76fd514610402578063313ce5671461047757806340c10f1914610495578063556f0dc7146104c157806362ad1b83146104c957806370a082311461061257610173565b806306e485381461017857806306fdde03146101d0578063095ea7b31461024d57806318160ddd1461028d5780631e9cee74146102a757806323b872dd146103cc575b600080fd5b610180610c6e565b60408051602080825283518183015283519192839290830191858101910280838360005b838110156101bc5781810151838201526020016101a4565b505050509050019250505060405180910390f35b6101d8610cd0565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102125781810151838201526020016101fa565b50505050905090810190601f16801561023f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102796004803603604081101561026357600080fd5b506001600160a01b038135169060200135610d5a565b604080519115158252519081900360200190f35b610295610d7c565b60408051918252519081900360200190f35b6103ca600480360360a08110156102bd57600080fd5b6001600160a01b0382351691602081013591810190606081016040820135600160201b8111156102ec57600080fd5b8201836020820111156102fe57600080fd5b803590602001918460018302840111600160201b8311171561031f57600080fd5b919390929091602081019035600160201b81111561033c57600080fd5b82018360208201111561034e57600080fd5b803590602001918460018302840111600160201b8311171561036f57600080fd5b919390929091602081019035600160201b81111561038c57600080fd5b82018360208201111561039e57600080fd5b803590602001918460018302840111600160201b831117156103bf57600080fd5b509092509050610d82565b005b610279600480360360608110156103e257600080fd5b506001600160a01b03813581169160208101359091169060400135610ecc565b6102796004803603604081101561041857600080fd5b81359190810190604081016020820135600160201b81111561043957600080fd5b82018360208201111561044b57600080fd5b803590602001918460018302840111600160201b8311171561046c57600080fd5b509092509050611059565b61047f6110ab565b6040805160ff9092168252519081900360200190f35b610279600480360360408110156104ab57600080fd5b506001600160a01b0381351690602001356110b0565b6102956110dc565b6103ca600480360360a08110156104df57600080fd5b6001600160a01b03823581169260208101359091169160408201359190810190608081016060820135600160201b81111561051957600080fd5b82018360208201111561052b57600080fd5b803590602001918460018302840111600160201b8311171561054c57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b81111561059e57600080fd5b8201836020820111156105b057600080fd5b803590602001918460018302840111600160201b831117156105d157600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506110e1945050505050565b6102956004803603602081101561062857600080fd5b50356001600160a01b0316611150565b61064061116b565b604080516001600160a01b039092168252519081900360200190f35b6103ca6004803603602081101561067257600080fd5b50356001600160a01b031661117a565b6101d86112c9565b6103ca600480360360608110156106a057600080fd5b6001600160a01b0382351691602081013591810190606081016040820135600160201b8111156106cf57600080fd5b8201836020820111156106e157600080fd5b803590602001918460018302840111600160201b8311171561070257600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092955061132a945050505050565b6103ca6004803603602081101561075957600080fd5b50356001600160a01b031661135c565b6102796004803603604081101561077f57600080fd5b506001600160a01b03813516906020013561142d565b6103ca600480360360608110156107ab57600080fd5b81359190810190604081016020820135600160201b8111156107cc57600080fd5b8201836020820111156107de57600080fd5b803590602001918460018302840111600160201b831117156107ff57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b81111561085157600080fd5b82018360208201111561086357600080fd5b803590602001918460018302840111600160201b8311171561088457600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092955061150b945050505050565b610279600480360360408110156108db57600080fd5b506001600160a01b03813581169160200135166115e5565b6102796004803603608081101561090957600080fd5b6001600160a01b0382351691602081013591810190606081016040820135600160201b81111561093857600080fd5b82018360208201111561094a57600080fd5b803590602001918460018302840111600160201b8311171561096b57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b8111156109bd57600080fd5b8201836020820111156109cf57600080fd5b803590602001918460018302840111600160201b831117156109f057600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611687945050505050565b61029560048036036040811015610a4757600080fd5b506001600160a01b038135811691602001351661175f565b6103ca60048036036020811015610a7557600080fd5b50356001600160a01b031661178a565b6103ca60048036036080811015610a9b57600080fd5b6001600160a01b0382351691602081013591810190606081016040820135600160201b811115610aca57600080fd5b820183602082011115610adc57600080fd5b803590602001918460018302840111600160201b83111715610afd57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b811115610b4f57600080fd5b820183602082011115610b6157600080fd5b803590602001918460018302840111600160201b83111715610b8257600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506118d3945050505050565b6103ca60048036036040811015610bd957600080fd5b81359190810190604081016020820135600160201b811115610bfa57600080fd5b820183602082011115610c0c57600080fd5b803590602001918460018302840111600160201b83111715610c2d57600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092955061193e945050505050565b60606004805480602002602001604051908101604052809291908181526020018280548015610cc657602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311610ca8575b5050505050905090565b60028054604080516020601f6000196101006001871615020190941685900493840181900481028201810190925282815260609390929091830182828015610cc65780601f10610d2e57610100808354040283529160200191610cc6565b820191906000526020600020905b815481529060010190602001808311610d3c57509395945050505050565b600080610d6561196c565b9050610d72818585611970565b5060019392505050565b60015490565b610d93610d8d61196c565b896115e5565b1515610dd357604051600160e51b62461bcd02815260040180806020018281038252602c81526020018061296b602c913960400191505060405180910390fd5b610e50610dde61196c565b898989898080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050604080516020601f8d018190048102820181019092528b815292508b91508a9081908401838280828437600092019190915250611a1c92505050565b876001600160a01b03167f78e6c3f67f57c26578f2487b930b70d844bcc8dd8f4d629fb4af81252ab5aa6588848460405180848152602001806020018281038252848482818152602001925080828437600083820152604051601f909101601f1916909201829003965090945050505050a25050505050505050565b60006001600160a01b0383161515610f1857604051600160e51b62461bcd0281526004018080602001828103825260248152602001806129476024913960400191505060405180910390fd5b6001600160a01b0384161515610f6257604051600160e51b62461bcd0281526004018080602001828103825260268152602001806129c06026913960400191505060405180910390fd5b6000610f6c61196c565b9050610f9a818686866040518060200160405280600081525060405180602001604052806000815250611c4e565b610fc6818686866040518060200160405280600081525060405180602001604052806000815250611e99565b611020858261101b86604051806060016040528060298152602001612997602991396001600160a01b03808c166000908152600860209081526040808320938b1683529290522054919063ffffffff6120b216565b611970565b61104e818686866040518060200160405280600081525060405180602001604052806000815250600061214c565b506001949350505050565b6000610d72846040518060200160405280600081525085858080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061150b92505050565b601290565b6000610d7283836040518060200160405280600081525060405180602001604052806000815250611687565b600190565b6110f26110ec61196c565b866115e5565b151561113257604051600160e51b62461bcd02815260040180806020018281038252602c81526020018061296b602c913960400191505060405180910390fd5b61114961113d61196c565b868686868660016123f2565b5050505050565b6001600160a01b031660009081526020819052604090205490565b6009546001600160a01b031681565b806001600160a01b031661118c61196c565b6001600160a01b031614156111d557604051600160e51b62461bcd02815260040180806020018281038252602481526020018061286c6024913960400191505060405180910390fd5b6001600160a01b03811660009081526005602052604090205460ff1615611238576007600061120261196c565b6001600160a01b03908116825260208083019390935260409182016000908120918516815292529020805460ff1916905561127f565b60016006600061124661196c565b6001600160a01b03908116825260208083019390935260409182016000908120918616815292529020805460ff19169115159190911790555b61128761196c565b6001600160a01b0316816001600160a01b03167ff4caeb2d6ca8932a215a353d0703c326ec2d81fc68170f320eb2ab49e9df61f960405160405180910390a350565b60038054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610cc65780601f10610d2e57610100808354040283529160200191610cc6565b61135761133561196c565b61133d61196c565b8585856040518060200160405280600081525060016123f2565b505050565b6009546001600160a01b031661137061196c565b6001600160a01b0316146113b857604051600160e51b62461bcd02815260040180806020018281038252602e81526020018061281c602e913960400191505060405180910390fd5b60006113c261196c565b6001600160a01b0316141561140b57604051600160e51b62461bcd0281526004018080602001828103825260218152602001806128906021913960400191505060405180910390fd5b600980546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160a01b038316151561147957604051600160e51b62461bcd0281526004018080602001828103825260248152602001806129476024913960400191505060405180910390fd5b600061148361196c565b90506114b1818286866040518060200160405280600081525060405180602001604052806000815250611c4e565b6114dd818286866040518060200160405280600081525060405180602001604052806000815250611e99565b610d72818286866040518060200160405280600081525060405180602001604052806000815250600061214c565b61153561151661196c565b61151e61196c565b858560405180602001604052806000815250611a1c565b336001600160a01b03167f78e6c3f67f57c26578f2487b930b70d844bcc8dd8f4d629fb4af81252ab5aa6584836040518083815260200180602001828103825283818151815260200191508051906020019080838360005b838110156115a557818101518382015260200161158d565b50505050905090810190601f1680156115d25780820380516001836020036101000a031916815260200191505b50935050505060405180910390a2505050565b6000816001600160a01b0316836001600160a01b0316148061165057506001600160a01b03831660009081526005602052604090205460ff16801561165057506001600160a01b0380831660009081526007602090815260408083209387168352929052205460ff16155b8061168057506001600160a01b0380831660009081526006602090815260408083209387168352929052205460ff165b9392505050565b6009546000906001600160a01b031661169e61196c565b6001600160a01b0316146116fc5760408051600160e51b62461bcd02815260206004820152601f60248201527f4f6e6c7920746865206f776e65722063616e206d696e7420746f6b656e732100604482015290519081900360640190fd5b6001600160a01b038516151561174657604051600160e51b62461bcd0281526004018080602001828103825260288152602001806128b16028913960400191505060405180910390fd5b60095461104e906001600160a01b0316868686866124c7565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205490565b61179261196c565b6001600160a01b03828116911614156117df57604051600160e51b62461bcd0281526004018080602001828103825260218152602001806128d96021913960400191505060405180910390fd5b6001600160a01b03811660009081526005602052604090205460ff161561184b5760016007600061180e61196c565b6001600160a01b03908116825260208083019390935260409182016000908120918616815292529020805460ff1916911515919091179055611889565b6006600061185761196c565b6001600160a01b03908116825260208083019390935260409182016000908120918516815292529020805460ff191690555b61189161196c565b6001600160a01b0316816001600160a01b03167f50546e66e5f44d728365dc3908c63bc5cfeeab470722c1677e3073a6ac294aa160405160405180910390a350565b6118e46118de61196c565b856115e5565b151561192457604051600160e51b62461bcd02815260040180806020018281038252602c81526020018061296b602c913960400191505060405180910390fd5b61193861192f61196c565b85858585611a1c565b50505050565b61196861194961196c565b61195161196c565b848460405180602001604052806000815250611a1c565b5050565b3390565b6001600160a01b03821615156119ba57604051600160e51b62461bcd028152600401808060200182810382526023815260200180612a096023913960400191505060405180910390fd5b6001600160a01b03808416600081815260086020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0384161515611a6657604051600160e51b62461bcd02815260040180806020018281038252602281526020018061284a6022913960400191505060405180910390fd5b611a7585856000868686611c4e565b611ab8836040518060600160405280602381526020016129e6602391396001600160a01b038716600090815260208190526040902054919063ffffffff6120b216565b6001600160a01b038516600090815260208190526040902055600154611ae4908463ffffffff6126f716565b600181905550836001600160a01b0316856001600160a01b03167fa78a9be3a7b862d26933ad85fb11d80ef66b8f972d7cbba06621d583943a4098858585604051808481526020018060200180602001838103835285818151815260200191508051906020019080838360005b83811015611b69578181015183820152602001611b51565b50505050905090810190601f168015611b965780820380516001836020036101000a031916815260200191505b50838103825284518152845160209182019186019080838360005b83811015611bc9578181015183820152602001611bb1565b50505050905090810190601f168015611bf65780820380516001836020036101000a031916815260200191505b509550505050505060405180910390a36040805184815290516000916001600160a01b038716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050505050565b60408051600160e11b63555ddc650281526001600160a01b03871660048201527f29ddb589b1fb5fc7cf394961c1adf5f8c6454761adf795e67fe149f658abe89560248201529051600091731820a4b7618bde71dce8cdc73aab6c95905fad249163aabbb8ca91604480820192602092909190829003018186803b158015611cd557600080fd5b505afa158015611ce9573d6000803e3d6000fd5b505050506040513d6020811015611cff57600080fd5b505190506001600160a01b03811615611e9057806001600160a01b03166375ab97828888888888886040518763ffffffff1660e01b815260040180876001600160a01b03166001600160a01b03168152602001866001600160a01b03166001600160a01b03168152602001856001600160a01b03166001600160a01b031681526020018481526020018060200180602001838103835285818151815260200191508051906020019080838360005b83811015611dc5578181015183820152602001611dad565b50505050905090810190601f168015611df25780820380516001836020036101000a031916815260200191505b50838103825284518152845160209182019186019080838360005b83811015611e25578181015183820152602001611e0d565b50505050905090810190601f168015611e525780820380516001836020036101000a031916815260200191505b5098505050505050505050600060405180830381600087803b158015611e7757600080fd5b505af1158015611e8b573d6000803e3d6000fd5b505050505b50505050505050565b611edc836040518060600160405280602781526020016127f5602791396001600160a01b038816600090815260208190526040902054919063ffffffff6120b216565b6001600160a01b038087166000908152602081905260408082209390935590861681522054611f11908463ffffffff61273916565b600080866001600160a01b03166001600160a01b0316815260200190815260200160002081905550836001600160a01b0316856001600160a01b0316876001600160a01b03167f06b541ddaa720db2b10a4d0cdac39b8d360425fc073085fac19bc82614677987868686604051808481526020018060200180602001838103835285818151815260200191508051906020019080838360005b83811015611fc2578181015183820152602001611faa565b50505050905090810190601f168015611fef5780820380516001836020036101000a031916815260200191505b50838103825284518152845160209182019186019080838360005b8381101561202257818101518382015260200161200a565b50505050905090810190601f16801561204f5780820380516001836020036101000a031916815260200191505b509550505050505060405180910390a4836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050565b6000818484111561214457604051600160e51b62461bcd0281526004018080602001828103825283818151815260200191508051906020019080838360005b838110156121095781810151838201526020016120f1565b50505050905090810190601f1680156121365780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60408051600160e11b63555ddc650281526001600160a01b03871660048201527fb281fc8c12954d22544db45de3159a39272895b169a852b314f9cc762e44c53b60248201529051600091731820a4b7618bde71dce8cdc73aab6c95905fad249163aabbb8ca91604480820192602092909190829003018186803b1580156121d357600080fd5b505afa1580156121e7573d6000803e3d6000fd5b505050506040513d60208110156121fd57600080fd5b505190506001600160a01b0381161561239157806001600160a01b03166223de298989898989896040518763ffffffff1660e01b815260040180876001600160a01b03166001600160a01b03168152602001866001600160a01b03166001600160a01b03168152602001856001600160a01b03166001600160a01b031681526020018481526020018060200180602001838103835285818151815260200191508051906020019080838360005b838110156122c25781810151838201526020016122aa565b50505050905090810190601f1680156122ef5780820380516001836020036101000a031916815260200191505b50838103825284518152845160209182019186019080838360005b8381101561232257818101518382015260200161230a565b50505050905090810190601f16801561234f5780820380516001836020036101000a031916815260200191505b5098505050505050505050600060405180830381600087803b15801561237457600080fd5b505af1158015612388573d6000803e3d6000fd5b505050506123e8565b81156123e8576123a9866001600160a01b0316612796565b156123e857604051600160e51b62461bcd02815260040180806020018281038252604d8152602001806128fa604d913960600191505060405180910390fd5b5050505050505050565b6001600160a01b038616151561243c57604051600160e51b62461bcd0281526004018080602001828103825260228152602001806127d36022913960400191505060405180910390fd5b6001600160a01b038516151561249c5760408051600160e51b62461bcd02815260206004820181905260248201527f4552433737373a2073656e6420746f20746865207a65726f2061646472657373604482015290519081900360640190fd5b6124aa878787878787611c4e565b6124b8878787878787611e99565b611e908787878787878761214c565b6001600160a01b03841615156125275760408051600160e51b62461bcd02815260206004820181905260248201527f4552433737373a206d696e7420746f20746865207a65726f2061646472657373604482015290519081900360640190fd5b60015461253a908463ffffffff61273916565b6001556001600160a01b038416600090815260208190526040902054612566908463ffffffff61273916565b6001600160a01b03851660009081526020819052604081209190915561259390869086868686600161214c565b836001600160a01b0316856001600160a01b03167f2fe5be0146f74c5bce36c0b80911af6c7d86ff27e89d5cfa61fc681327954e5d858585604051808481526020018060200180602001838103835285818151815260200191508051906020019080838360005b838110156126125781810151838201526020016125fa565b50505050905090810190601f16801561263f5780820380516001836020036101000a031916815260200191505b50838103825284518152845160209182019186019080838360005b8381101561267257818101518382015260200161265a565b50505050905090810190601f16801561269f5780820380516001836020036101000a031916815260200191505b509550505050505060405180910390a36040805184815290516001600160a01b038616916000917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050505050565b600061168083836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506120b2565b6000828201838110156116805760408051600160e51b62461bcd02815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a4708181148015906127ca57508115155b94935050505056fe4552433737373a2073656e642066726f6d20746865207a65726f20616464726573734552433737373a207472616e7366657220616d6f756e7420657863656564732062616c616e63654f6e6c7920746865206f776e65722063616e206368616e67652074686520606f776e657260206163636f756e74214552433737373a206275726e2066726f6d20746865207a65726f20616464726573734552433737373a20617574686f72697a696e672073656c66206173206f70657261746f726f776e65722063616e6e6f7420626520746865207a65726f20616464726573732170546f6b656e3a2043616e6e6f74206d696e7420746f20746865207a65726f2061646472657373214552433737373a207265766f6b696e672073656c66206173206f70657261746f724552433737373a20746f6b656e20726563697069656e7420636f6e747261637420686173206e6f20696d706c656d656e74657220666f7220455243373737546f6b656e73526563697069656e744552433737373a207472616e7366657220746f20746865207a65726f20616464726573734552433737373a2063616c6c6572206973206e6f7420616e206f70657261746f7220666f7220686f6c6465724552433737373a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654552433737373a207472616e736665722066726f6d20746865207a65726f20616464726573734552433737373a206275726e20616d6f756e7420657863656564732062616c616e63654552433737373a20617070726f766520746f20746865207a65726f2061646472657373a165627a7a723058203da5b70814a2cc7abbf57678db903fd93d7cff6953cb605806b0cd631be47cab0029000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000074c4b53434f494e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044c4b5343000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000d3b7e49ac214fdceabcf93178bf96963226179be
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101735760003560e01c80638da5cb5b116100de578063ce67c00311610097578063dd62ed3e11610071578063dd62ed3e14610a31578063fad8b32a14610a5f578063fc673c4f14610a85578063fe9d930314610bc357610173565b8063ce67c00314610795578063d95b6371146108c5578063dcdc7dd0146108f357610173565b80638da5cb5b14610638578063959b8c3f1461065c57806395d89b41146106825780639bd9bbc61461068a578063a6f9dae114610743578063a9059cbb1461076957610173565b806324b76fd51161013057806324b76fd514610402578063313ce5671461047757806340c10f1914610495578063556f0dc7146104c157806362ad1b83146104c957806370a082311461061257610173565b806306e485381461017857806306fdde03146101d0578063095ea7b31461024d57806318160ddd1461028d5780631e9cee74146102a757806323b872dd146103cc575b600080fd5b610180610c6e565b60408051602080825283518183015283519192839290830191858101910280838360005b838110156101bc5781810151838201526020016101a4565b505050509050019250505060405180910390f35b6101d8610cd0565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102125781810151838201526020016101fa565b50505050905090810190601f16801561023f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102796004803603604081101561026357600080fd5b506001600160a01b038135169060200135610d5a565b604080519115158252519081900360200190f35b610295610d7c565b60408051918252519081900360200190f35b6103ca600480360360a08110156102bd57600080fd5b6001600160a01b0382351691602081013591810190606081016040820135600160201b8111156102ec57600080fd5b8201836020820111156102fe57600080fd5b803590602001918460018302840111600160201b8311171561031f57600080fd5b919390929091602081019035600160201b81111561033c57600080fd5b82018360208201111561034e57600080fd5b803590602001918460018302840111600160201b8311171561036f57600080fd5b919390929091602081019035600160201b81111561038c57600080fd5b82018360208201111561039e57600080fd5b803590602001918460018302840111600160201b831117156103bf57600080fd5b509092509050610d82565b005b610279600480360360608110156103e257600080fd5b506001600160a01b03813581169160208101359091169060400135610ecc565b6102796004803603604081101561041857600080fd5b81359190810190604081016020820135600160201b81111561043957600080fd5b82018360208201111561044b57600080fd5b803590602001918460018302840111600160201b8311171561046c57600080fd5b509092509050611059565b61047f6110ab565b6040805160ff9092168252519081900360200190f35b610279600480360360408110156104ab57600080fd5b506001600160a01b0381351690602001356110b0565b6102956110dc565b6103ca600480360360a08110156104df57600080fd5b6001600160a01b03823581169260208101359091169160408201359190810190608081016060820135600160201b81111561051957600080fd5b82018360208201111561052b57600080fd5b803590602001918460018302840111600160201b8311171561054c57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b81111561059e57600080fd5b8201836020820111156105b057600080fd5b803590602001918460018302840111600160201b831117156105d157600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506110e1945050505050565b6102956004803603602081101561062857600080fd5b50356001600160a01b0316611150565b61064061116b565b604080516001600160a01b039092168252519081900360200190f35b6103ca6004803603602081101561067257600080fd5b50356001600160a01b031661117a565b6101d86112c9565b6103ca600480360360608110156106a057600080fd5b6001600160a01b0382351691602081013591810190606081016040820135600160201b8111156106cf57600080fd5b8201836020820111156106e157600080fd5b803590602001918460018302840111600160201b8311171561070257600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092955061132a945050505050565b6103ca6004803603602081101561075957600080fd5b50356001600160a01b031661135c565b6102796004803603604081101561077f57600080fd5b506001600160a01b03813516906020013561142d565b6103ca600480360360608110156107ab57600080fd5b81359190810190604081016020820135600160201b8111156107cc57600080fd5b8201836020820111156107de57600080fd5b803590602001918460018302840111600160201b831117156107ff57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b81111561085157600080fd5b82018360208201111561086357600080fd5b803590602001918460018302840111600160201b8311171561088457600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092955061150b945050505050565b610279600480360360408110156108db57600080fd5b506001600160a01b03813581169160200135166115e5565b6102796004803603608081101561090957600080fd5b6001600160a01b0382351691602081013591810190606081016040820135600160201b81111561093857600080fd5b82018360208201111561094a57600080fd5b803590602001918460018302840111600160201b8311171561096b57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b8111156109bd57600080fd5b8201836020820111156109cf57600080fd5b803590602001918460018302840111600160201b831117156109f057600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611687945050505050565b61029560048036036040811015610a4757600080fd5b506001600160a01b038135811691602001351661175f565b6103ca60048036036020811015610a7557600080fd5b50356001600160a01b031661178a565b6103ca60048036036080811015610a9b57600080fd5b6001600160a01b0382351691602081013591810190606081016040820135600160201b811115610aca57600080fd5b820183602082011115610adc57600080fd5b803590602001918460018302840111600160201b83111715610afd57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b811115610b4f57600080fd5b820183602082011115610b6157600080fd5b803590602001918460018302840111600160201b83111715610b8257600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506118d3945050505050565b6103ca60048036036040811015610bd957600080fd5b81359190810190604081016020820135600160201b811115610bfa57600080fd5b820183602082011115610c0c57600080fd5b803590602001918460018302840111600160201b83111715610c2d57600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092955061193e945050505050565b60606004805480602002602001604051908101604052809291908181526020018280548015610cc657602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311610ca8575b5050505050905090565b60028054604080516020601f6000196101006001871615020190941685900493840181900481028201810190925282815260609390929091830182828015610cc65780601f10610d2e57610100808354040283529160200191610cc6565b820191906000526020600020905b815481529060010190602001808311610d3c57509395945050505050565b600080610d6561196c565b9050610d72818585611970565b5060019392505050565b60015490565b610d93610d8d61196c565b896115e5565b1515610dd357604051600160e51b62461bcd02815260040180806020018281038252602c81526020018061296b602c913960400191505060405180910390fd5b610e50610dde61196c565b898989898080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050604080516020601f8d018190048102820181019092528b815292508b91508a9081908401838280828437600092019190915250611a1c92505050565b876001600160a01b03167f78e6c3f67f57c26578f2487b930b70d844bcc8dd8f4d629fb4af81252ab5aa6588848460405180848152602001806020018281038252848482818152602001925080828437600083820152604051601f909101601f1916909201829003965090945050505050a25050505050505050565b60006001600160a01b0383161515610f1857604051600160e51b62461bcd0281526004018080602001828103825260248152602001806129476024913960400191505060405180910390fd5b6001600160a01b0384161515610f6257604051600160e51b62461bcd0281526004018080602001828103825260268152602001806129c06026913960400191505060405180910390fd5b6000610f6c61196c565b9050610f9a818686866040518060200160405280600081525060405180602001604052806000815250611c4e565b610fc6818686866040518060200160405280600081525060405180602001604052806000815250611e99565b611020858261101b86604051806060016040528060298152602001612997602991396001600160a01b03808c166000908152600860209081526040808320938b1683529290522054919063ffffffff6120b216565b611970565b61104e818686866040518060200160405280600081525060405180602001604052806000815250600061214c565b506001949350505050565b6000610d72846040518060200160405280600081525085858080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061150b92505050565b601290565b6000610d7283836040518060200160405280600081525060405180602001604052806000815250611687565b600190565b6110f26110ec61196c565b866115e5565b151561113257604051600160e51b62461bcd02815260040180806020018281038252602c81526020018061296b602c913960400191505060405180910390fd5b61114961113d61196c565b868686868660016123f2565b5050505050565b6001600160a01b031660009081526020819052604090205490565b6009546001600160a01b031681565b806001600160a01b031661118c61196c565b6001600160a01b031614156111d557604051600160e51b62461bcd02815260040180806020018281038252602481526020018061286c6024913960400191505060405180910390fd5b6001600160a01b03811660009081526005602052604090205460ff1615611238576007600061120261196c565b6001600160a01b03908116825260208083019390935260409182016000908120918516815292529020805460ff1916905561127f565b60016006600061124661196c565b6001600160a01b03908116825260208083019390935260409182016000908120918616815292529020805460ff19169115159190911790555b61128761196c565b6001600160a01b0316816001600160a01b03167ff4caeb2d6ca8932a215a353d0703c326ec2d81fc68170f320eb2ab49e9df61f960405160405180910390a350565b60038054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610cc65780601f10610d2e57610100808354040283529160200191610cc6565b61135761133561196c565b61133d61196c565b8585856040518060200160405280600081525060016123f2565b505050565b6009546001600160a01b031661137061196c565b6001600160a01b0316146113b857604051600160e51b62461bcd02815260040180806020018281038252602e81526020018061281c602e913960400191505060405180910390fd5b60006113c261196c565b6001600160a01b0316141561140b57604051600160e51b62461bcd0281526004018080602001828103825260218152602001806128906021913960400191505060405180910390fd5b600980546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160a01b038316151561147957604051600160e51b62461bcd0281526004018080602001828103825260248152602001806129476024913960400191505060405180910390fd5b600061148361196c565b90506114b1818286866040518060200160405280600081525060405180602001604052806000815250611c4e565b6114dd818286866040518060200160405280600081525060405180602001604052806000815250611e99565b610d72818286866040518060200160405280600081525060405180602001604052806000815250600061214c565b61153561151661196c565b61151e61196c565b858560405180602001604052806000815250611a1c565b336001600160a01b03167f78e6c3f67f57c26578f2487b930b70d844bcc8dd8f4d629fb4af81252ab5aa6584836040518083815260200180602001828103825283818151815260200191508051906020019080838360005b838110156115a557818101518382015260200161158d565b50505050905090810190601f1680156115d25780820380516001836020036101000a031916815260200191505b50935050505060405180910390a2505050565b6000816001600160a01b0316836001600160a01b0316148061165057506001600160a01b03831660009081526005602052604090205460ff16801561165057506001600160a01b0380831660009081526007602090815260408083209387168352929052205460ff16155b8061168057506001600160a01b0380831660009081526006602090815260408083209387168352929052205460ff165b9392505050565b6009546000906001600160a01b031661169e61196c565b6001600160a01b0316146116fc5760408051600160e51b62461bcd02815260206004820152601f60248201527f4f6e6c7920746865206f776e65722063616e206d696e7420746f6b656e732100604482015290519081900360640190fd5b6001600160a01b038516151561174657604051600160e51b62461bcd0281526004018080602001828103825260288152602001806128b16028913960400191505060405180910390fd5b60095461104e906001600160a01b0316868686866124c7565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205490565b61179261196c565b6001600160a01b03828116911614156117df57604051600160e51b62461bcd0281526004018080602001828103825260218152602001806128d96021913960400191505060405180910390fd5b6001600160a01b03811660009081526005602052604090205460ff161561184b5760016007600061180e61196c565b6001600160a01b03908116825260208083019390935260409182016000908120918616815292529020805460ff1916911515919091179055611889565b6006600061185761196c565b6001600160a01b03908116825260208083019390935260409182016000908120918516815292529020805460ff191690555b61189161196c565b6001600160a01b0316816001600160a01b03167f50546e66e5f44d728365dc3908c63bc5cfeeab470722c1677e3073a6ac294aa160405160405180910390a350565b6118e46118de61196c565b856115e5565b151561192457604051600160e51b62461bcd02815260040180806020018281038252602c81526020018061296b602c913960400191505060405180910390fd5b61193861192f61196c565b85858585611a1c565b50505050565b61196861194961196c565b61195161196c565b848460405180602001604052806000815250611a1c565b5050565b3390565b6001600160a01b03821615156119ba57604051600160e51b62461bcd028152600401808060200182810382526023815260200180612a096023913960400191505060405180910390fd5b6001600160a01b03808416600081815260086020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0384161515611a6657604051600160e51b62461bcd02815260040180806020018281038252602281526020018061284a6022913960400191505060405180910390fd5b611a7585856000868686611c4e565b611ab8836040518060600160405280602381526020016129e6602391396001600160a01b038716600090815260208190526040902054919063ffffffff6120b216565b6001600160a01b038516600090815260208190526040902055600154611ae4908463ffffffff6126f716565b600181905550836001600160a01b0316856001600160a01b03167fa78a9be3a7b862d26933ad85fb11d80ef66b8f972d7cbba06621d583943a4098858585604051808481526020018060200180602001838103835285818151815260200191508051906020019080838360005b83811015611b69578181015183820152602001611b51565b50505050905090810190601f168015611b965780820380516001836020036101000a031916815260200191505b50838103825284518152845160209182019186019080838360005b83811015611bc9578181015183820152602001611bb1565b50505050905090810190601f168015611bf65780820380516001836020036101000a031916815260200191505b509550505050505060405180910390a36040805184815290516000916001600160a01b038716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050505050565b60408051600160e11b63555ddc650281526001600160a01b03871660048201527f29ddb589b1fb5fc7cf394961c1adf5f8c6454761adf795e67fe149f658abe89560248201529051600091731820a4b7618bde71dce8cdc73aab6c95905fad249163aabbb8ca91604480820192602092909190829003018186803b158015611cd557600080fd5b505afa158015611ce9573d6000803e3d6000fd5b505050506040513d6020811015611cff57600080fd5b505190506001600160a01b03811615611e9057806001600160a01b03166375ab97828888888888886040518763ffffffff1660e01b815260040180876001600160a01b03166001600160a01b03168152602001866001600160a01b03166001600160a01b03168152602001856001600160a01b03166001600160a01b031681526020018481526020018060200180602001838103835285818151815260200191508051906020019080838360005b83811015611dc5578181015183820152602001611dad565b50505050905090810190601f168015611df25780820380516001836020036101000a031916815260200191505b50838103825284518152845160209182019186019080838360005b83811015611e25578181015183820152602001611e0d565b50505050905090810190601f168015611e525780820380516001836020036101000a031916815260200191505b5098505050505050505050600060405180830381600087803b158015611e7757600080fd5b505af1158015611e8b573d6000803e3d6000fd5b505050505b50505050505050565b611edc836040518060600160405280602781526020016127f5602791396001600160a01b038816600090815260208190526040902054919063ffffffff6120b216565b6001600160a01b038087166000908152602081905260408082209390935590861681522054611f11908463ffffffff61273916565b600080866001600160a01b03166001600160a01b0316815260200190815260200160002081905550836001600160a01b0316856001600160a01b0316876001600160a01b03167f06b541ddaa720db2b10a4d0cdac39b8d360425fc073085fac19bc82614677987868686604051808481526020018060200180602001838103835285818151815260200191508051906020019080838360005b83811015611fc2578181015183820152602001611faa565b50505050905090810190601f168015611fef5780820380516001836020036101000a031916815260200191505b50838103825284518152845160209182019186019080838360005b8381101561202257818101518382015260200161200a565b50505050905090810190601f16801561204f5780820380516001836020036101000a031916815260200191505b509550505050505060405180910390a4836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050565b6000818484111561214457604051600160e51b62461bcd0281526004018080602001828103825283818151815260200191508051906020019080838360005b838110156121095781810151838201526020016120f1565b50505050905090810190601f1680156121365780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60408051600160e11b63555ddc650281526001600160a01b03871660048201527fb281fc8c12954d22544db45de3159a39272895b169a852b314f9cc762e44c53b60248201529051600091731820a4b7618bde71dce8cdc73aab6c95905fad249163aabbb8ca91604480820192602092909190829003018186803b1580156121d357600080fd5b505afa1580156121e7573d6000803e3d6000fd5b505050506040513d60208110156121fd57600080fd5b505190506001600160a01b0381161561239157806001600160a01b03166223de298989898989896040518763ffffffff1660e01b815260040180876001600160a01b03166001600160a01b03168152602001866001600160a01b03166001600160a01b03168152602001856001600160a01b03166001600160a01b031681526020018481526020018060200180602001838103835285818151815260200191508051906020019080838360005b838110156122c25781810151838201526020016122aa565b50505050905090810190601f1680156122ef5780820380516001836020036101000a031916815260200191505b50838103825284518152845160209182019186019080838360005b8381101561232257818101518382015260200161230a565b50505050905090810190601f16801561234f5780820380516001836020036101000a031916815260200191505b5098505050505050505050600060405180830381600087803b15801561237457600080fd5b505af1158015612388573d6000803e3d6000fd5b505050506123e8565b81156123e8576123a9866001600160a01b0316612796565b156123e857604051600160e51b62461bcd02815260040180806020018281038252604d8152602001806128fa604d913960600191505060405180910390fd5b5050505050505050565b6001600160a01b038616151561243c57604051600160e51b62461bcd0281526004018080602001828103825260228152602001806127d36022913960400191505060405180910390fd5b6001600160a01b038516151561249c5760408051600160e51b62461bcd02815260206004820181905260248201527f4552433737373a2073656e6420746f20746865207a65726f2061646472657373604482015290519081900360640190fd5b6124aa878787878787611c4e565b6124b8878787878787611e99565b611e908787878787878761214c565b6001600160a01b03841615156125275760408051600160e51b62461bcd02815260206004820181905260248201527f4552433737373a206d696e7420746f20746865207a65726f2061646472657373604482015290519081900360640190fd5b60015461253a908463ffffffff61273916565b6001556001600160a01b038416600090815260208190526040902054612566908463ffffffff61273916565b6001600160a01b03851660009081526020819052604081209190915561259390869086868686600161214c565b836001600160a01b0316856001600160a01b03167f2fe5be0146f74c5bce36c0b80911af6c7d86ff27e89d5cfa61fc681327954e5d858585604051808481526020018060200180602001838103835285818151815260200191508051906020019080838360005b838110156126125781810151838201526020016125fa565b50505050905090810190601f16801561263f5780820380516001836020036101000a031916815260200191505b50838103825284518152845160209182019186019080838360005b8381101561267257818101518382015260200161265a565b50505050905090810190601f16801561269f5780820380516001836020036101000a031916815260200191505b509550505050505060405180910390a36040805184815290516001600160a01b038616916000917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050505050565b600061168083836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506120b2565b6000828201838110156116805760408051600160e51b62461bcd02815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a4708181148015906127ca57508115155b94935050505056fe4552433737373a2073656e642066726f6d20746865207a65726f20616464726573734552433737373a207472616e7366657220616d6f756e7420657863656564732062616c616e63654f6e6c7920746865206f776e65722063616e206368616e67652074686520606f776e657260206163636f756e74214552433737373a206275726e2066726f6d20746865207a65726f20616464726573734552433737373a20617574686f72697a696e672073656c66206173206f70657261746f726f776e65722063616e6e6f7420626520746865207a65726f20616464726573732170546f6b656e3a2043616e6e6f74206d696e7420746f20746865207a65726f2061646472657373214552433737373a207265766f6b696e672073656c66206173206f70657261746f724552433737373a20746f6b656e20726563697069656e7420636f6e747261637420686173206e6f20696d706c656d656e74657220666f7220455243373737546f6b656e73526563697069656e744552433737373a207472616e7366657220746f20746865207a65726f20616464726573734552433737373a2063616c6c6572206973206e6f7420616e206f70657261746f7220666f7220686f6c6465724552433737373a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654552433737373a207472616e736665722066726f6d20746865207a65726f20616464726573734552433737373a206275726e20616d6f756e7420657863656564732062616c616e63654552433737373a20617070726f766520746f20746865207a65726f2061646472657373a165627a7a723058203da5b70814a2cc7abbf57678db903fd93d7cff6953cb605806b0cd631be47cab0029
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000074c4b53434f494e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044c4b5343000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000d3b7e49ac214fdceabcf93178bf96963226179be
-----Decoded View---------------
Arg [0] : tokenName (string): LKSCOIN
Arg [1] : tokenSymbol (string): LKSC
Arg [2] : defaultOperators (address[]): 0xD3b7e49aC214FdCEAbCf93178bf96963226179bE
-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [4] : 4c4b53434f494e00000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 4c4b534300000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [8] : 000000000000000000000000d3b7e49ac214fdceabcf93178bf96963226179be
Deployed Bytecode Sourcemap
43016:2583:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;43016:2583:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33277:115;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;33277:115:0;;;;;;;;;;;;;;;;;29559:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;29559:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34844:184;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;34844:184:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;30334:91;;;:::i;:::-;;;;;;;;;;;;;;;;45091:505;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;;;;;45091:505:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;45091:505:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;45091:505:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;45091:505:0;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;45091:505:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;45091:505:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;45091:505:0;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;45091:505:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;45091:505:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;-1:-1;45091:505:0;;-1:-1:-1;45091:505:0;-1:-1:-1;45091:505:0;:::i;:::-;;35404:677;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;35404:677:0;;;;;;;;;;;;;;;;;:::i;44560:231::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;44560:231:0;;;;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;44560:231:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;44560:231:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;-1:-1;44560:231:0;;-1:-1:-1;44560:231:0;-1:-1:-1;44560:231:0;:::i;29990:76::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;43835:191;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;43835:191:0;;;;;;;;:::i;30188:80::-;;;:::i;33518:382::-;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;;;;;33518:382:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;33518:382:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;33518:382:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;33518:382:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;33518:382:0;;;;;;;;-1:-1:-1;33518:382:0;;-1:-1:-1;;;;;5:28;;2:2;;;46:1;43;36:12;2:2;33518:382:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;33518:382:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;33518:382:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;33518:382:0;;-1:-1:-1;33518:382:0;;-1:-1:-1;;;;;33518:382:0:i;30530:118::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;30530:118:0;-1:-1:-1;;;;;30530:118:0;;:::i;43049:20::-;;;:::i;:::-;;;;-1:-1:-1;;;;;43049:20:0;;;;;;;;;;;;;;32336:405;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;32336:405:0;-1:-1:-1;;;;;32336:405:0;;:::i;29703:87::-;;;:::i;30785:162::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;30785:162:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;30785:162:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;30785:162:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;30785:162:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;30785:162:0;;-1:-1:-1;30785:162:0;;-1:-1:-1;;;;;30785:162:0:i;43466:361::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;43466:361:0;-1:-1:-1;;;;;43466:361:0;;:::i;31188:434::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;31188:434:0;;;;;;;;:::i;44799:284::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;44799:284:0;;;;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;44799:284:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;44799:284:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;44799:284:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;44799:284:0;;;;;;;;-1:-1:-1;44799:284:0;;-1:-1:-1;;;;;5:28;;2:2;;;46:1;43;36:12;2:2;44799:284:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;44799:284:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;44799:284:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;44799:284:0;;-1:-1:-1;44799:284:0;;-1:-1:-1;;;;;44799:284:0:i;31953:311::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;31953:311:0;;;;;;;;;;:::i;44034:518::-;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;;;;;44034:518:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;44034:518:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;44034:518:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;44034:518:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;44034:518:0;;;;;;;;-1:-1:-1;44034:518:0;;-1:-1:-1;;;;;5:28;;2:2;;;46:1;43;36:12;2:2;44034:518:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;44034:518:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;44034:518:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;44034:518:0;;-1:-1:-1;44034:518:0;;-1:-1:-1;;;;;44034:518:0:i;34563:136::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;34563:136:0;;;;;;;;;;:::i;32810:396::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;32810:396:0;-1:-1:-1;;;;;32810:396:0;;:::i;34028:287::-;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;;;;;34028:287:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;34028:287:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;34028:287:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;34028:287:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;34028:287:0;;;;;;;;-1:-1:-1;34028:287:0;;-1:-1:-1;;;;;5:28;;2:2;;;46:1;43;36:12;2:2;34028:287:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;34028:287:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;34028:287:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;34028:287:0;;-1:-1:-1;34028:287:0;;-1:-1:-1;;;;;34028:287:0:i;31759:126::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;31759:126:0;;;;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;31759:126:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;31759:126:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;31759:126:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;31759:126:0;;-1:-1:-1;31759:126:0;;-1:-1:-1;;;;;31759:126:0:i;33277:115::-;33326:16;33362:22;33355:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;33355:29:0;;;;;;;;;;;;;;;;;;;;;;;33277:115;:::o;29559:83::-;29629:5;29622:12;;;;;;;-1:-1:-1;;29622:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29596:13;;29622:12;;29629:5;;29622:12;;29629:5;29622:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29622:12:0;;29559:83;-1:-1:-1;;;;;29559:83:0:o;34844:184::-;34909:4;34926:14;34943:12;:10;:12::i;:::-;34926:29;;34966:32;34975:6;34983:7;34992:5;34966:8;:32::i;:::-;-1:-1:-1;35016:4:0;;34844:184;-1:-1:-1;;;34844:184:0:o;30334:91::-;30405:12;;30334:91;:::o;45091:505::-;45348:36;45362:12;:10;:12::i;:::-;45376:7;45348:13;:36::i;:::-;45326:130;;;;;;-1:-1:-1;;;;;45326:130:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45467:56;45473:12;:10;:12::i;:::-;45487:7;45496:6;45504:4;;45467:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;;45467:56:0;;;;137:4:-1;45467:56:0;;;;;;;;;;;;;;;;;;-1:-1:-1;45510:12:0;;-1:-1:-1;45510:12:0;;;;45467:56;;45510:12;;;;45467:56;1:33:-1;99:1;81:16;;74:27;;;;-1:-1;45467:5:0;;-1:-1:-1;;;45467:56:0:i;:::-;45546:7;-1:-1:-1;;;;;45539:49:0;;45555:6;45563:24;;45539:49;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;;74:27;45539:49:0;;137:4:-1;117:14;;;-1:-1;;113:30;157:16;;;45539:49:0;;;;-1:-1:-1;45539:49:0;;-1:-1:-1;;;;;45539:49:0;45091:505;;;;;;;;:::o;35404:677::-;35493:4;-1:-1:-1;;;;;35518:23:0;;;;35510:72;;;;-1:-1:-1;;;;;35510:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35601:20:0;;;;35593:71;;;;-1:-1:-1;;;;;35593:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35677:15;35695:12;:10;:12::i;:::-;35677:30;;35720:61;35738:7;35747:6;35755:9;35766:6;35720:61;;;;;;;;;;;;;;;;;;;;;;;;:17;:61::i;:::-;35794:49;35800:7;35809:6;35817:9;35828:6;35794:49;;;;;;;;;;;;;;;;;;;;;;;;:5;:49::i;:::-;35854:112;35863:6;35871:7;35880:85;35913:6;35880:85;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35880:19:0;;;;;;;:11;:19;;;;;;;;:28;;;;;;;;;;;:85;;:32;:85;:::i;:::-;35854:8;:112::i;:::-;35979:70;35999:7;36008:6;36016:9;36027:6;35979:70;;;;;;;;;;;;;;;;;;;;;;;;36043:5;35979:19;:70::i;:::-;-1:-1:-1;36069:4:0;;35404:677;-1:-1:-1;;;;35404:677:0:o;44560:231::-;44695:4;44717:44;44724:6;44717:44;;;;;;;;;;;;44736:24;;44717:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;44717:6:0;;-1:-1:-1;;;44717:44:0:i;29990:76::-;30056:2;29990:76;:::o;43835:191::-;43944:4;43966:30;43971:9;43982:5;43966:30;;;;;;;;;;;;;;;;;;;;;;;;:4;:30::i;30188:80::-;30259:1;30188:80;:::o;33518:382::-;33725:35;33739:12;:10;:12::i;:::-;33753:6;33725:13;:35::i;:::-;33717:92;;;;;;-1:-1:-1;;;;;33717:92:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33820:72;33826:12;:10;:12::i;:::-;33840:6;33848:9;33859:6;33867:4;33873:12;33887:4;33820:5;:72::i;:::-;33518:382;;;;;:::o;30530:118::-;-1:-1:-1;;;;;30618:22:0;30591:7;30618:22;;;;;;;;;;;;30530:118::o;43049:20::-;;;-1:-1:-1;;;;;43049:20:0;;:::o;32336:405::-;32423:8;-1:-1:-1;;;;;32407:24:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;32407:24:0;;;32399:73;;;;-1:-1:-1;;;;;32399:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;32489:27:0;;;;;;:17;:27;;;;;;;;32485:189;;;32540:24;:38;32565:12;:10;:12::i;:::-;-1:-1:-1;;;;;32540:38:0;;;;;;;;;;;;;;;;;-1:-1:-1;32540:38:0;;;:48;;;;;;;;;32533:55;;-1:-1:-1;;32533:55:0;;;32485:189;;;32658:4;32621:10;:24;32632:12;:10;:12::i;:::-;-1:-1:-1;;;;;32621:24:0;;;;;;;;;;;;;;;;;-1:-1:-1;32621:24:0;;;:34;;;;;;;;;:41;;-1:-1:-1;;32621:41:0;;;;;;;;;;32485:189;32720:12;:10;:12::i;:::-;-1:-1:-1;;;;;32691:42:0;32710:8;-1:-1:-1;;;;;32691:42:0;;;;;;;;;;;32336:405;:::o;29703:87::-;29775:7;29768:14;;;;;;;;-1:-1:-1;;29768:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29742:13;;29768:14;;29775:7;;29768:14;;29775:7;29768:14;;;;;;;;;;;;;;;;;;;;;;;;30785:162;30871:68;30877:12;:10;:12::i;:::-;30891;:10;:12::i;:::-;30905:9;30916:6;30924:4;30871:68;;;;;;;;;;;;30934:4;30871:5;:68::i;:::-;30785:162;;;:::o;43466:361::-;43593:5;;-1:-1:-1;;;;;43593:5:0;43577:12;:10;:12::i;:::-;-1:-1:-1;;;;;43577:21:0;;43555:117;;;;-1:-1:-1;;;;;43555:117:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43729:1;43705:12;:10;:12::i;:::-;-1:-1:-1;;;;;43705:26:0;;;43683:109;;;;-1:-1:-1;;;;;43683:109:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43803:5;:16;;-1:-1:-1;;;;;;43803:16:0;-1:-1:-1;;;;;43803:16:0;;;;;;;;;;43466:361::o;31188:434::-;31257:4;-1:-1:-1;;;;;31282:23:0;;;;31274:72;;;;-1:-1:-1;;;;;31274:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31359:12;31374;:10;:12::i;:::-;31359:27;;31399:56;31417:4;31423;31429:9;31440:6;31399:56;;;;;;;;;;;;;;;;;;;;;;;;:17;:56::i;:::-;31468:44;31474:4;31480;31486:9;31497:6;31468:44;;;;;;;;;;;;;;;;;;;;;;;;:5;:44::i;:::-;31525:65;31545:4;31551;31557:9;31568:6;31525:65;;;;;;;;;;;;;;;;;;;;;;;;31584:5;31525:19;:65::i;44799:284::-;44956:51;44962:12;:10;:12::i;:::-;44976;:10;:12::i;:::-;44990:6;44998:4;44956:51;;;;;;;;;;;;:5;:51::i;:::-;45030:10;-1:-1:-1;;;;;45023:52:0;;45042:6;45050:24;45023:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;45023:52:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44799:284;;;:::o;31953:311::-;32061:4;32097:11;-1:-1:-1;;;;;32085:23:0;:8;-1:-1:-1;;;;;32085:23:0;;:121;;;-1:-1:-1;;;;;;32126:27:0;;;;;;:17;:27;;;;;;;;:79;;;;-1:-1:-1;;;;;;32158:37:0;;;;;;;:24;:37;;;;;;;;:47;;;;;;;;;;;;32157:48;32126:79;32085:171;;;-1:-1:-1;;;;;;32223:23:0;;;;;;;:10;:23;;;;;;;;:33;;;;;;;;;;;;32085:171;32078:178;31953:311;-1:-1:-1;;;31953:311:0:o;44034:518::-;44269:5;;44209:4;;-1:-1:-1;;;;;44269:5:0;44253:12;:10;:12::i;:::-;-1:-1:-1;;;;;44253:21:0;;44231:102;;;;;-1:-1:-1;;;;;44231:102:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;44366:23:0;;;;44344:113;;;;-1:-1:-1;;;;;44344:113:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44474:5;;44468:54;;-1:-1:-1;;;;;44474:5:0;44481:9;44492:5;44499:8;44509:12;44468:5;:54::i;34563:136::-;-1:-1:-1;;;;;34663:19:0;;;34636:7;34663:19;;;:11;:19;;;;;;;;:28;;;;;;;;;;;;;34563:136::o;32810:396::-;32890:12;:10;:12::i;:::-;-1:-1:-1;;;;;32878:24:0;;;;;;;32870:70;;;;-1:-1:-1;;;;;32870:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;32957:27:0;;;;;;:17;:27;;;;;;;;32953:189;;;33052:4;33001:24;:38;33026:12;:10;:12::i;:::-;-1:-1:-1;;;;;33001:38:0;;;;;;;;;;;;;;;;;-1:-1:-1;33001:38:0;;;:48;;;;;;;;;:55;;-1:-1:-1;;33001:55:0;;;;;;;;;;32953:189;;;33096:10;:24;33107:12;:10;:12::i;:::-;-1:-1:-1;;;;;33096:24:0;;;;;;;;;;;;;;;;;-1:-1:-1;33096:24:0;;;:34;;;;;;;;;33089:41;;-1:-1:-1;;33089:41:0;;;32953:189;33185:12;:10;:12::i;:::-;-1:-1:-1;;;;;33159:39:0;33175:8;-1:-1:-1;;;;;33159:39:0;;;;;;;;;;;32810:396;:::o;34028:287::-;34155:36;34169:12;:10;:12::i;:::-;34183:7;34155:13;:36::i;:::-;34147:93;;;;;;-1:-1:-1;;;;;34147:93:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34251:56;34257:12;:10;:12::i;:::-;34271:7;34280:6;34288:4;34294:12;34251:5;:56::i;:::-;34028:287;;;;:::o;31759:126::-;31826:51;31832:12;:10;:12::i;:::-;31846;:10;:12::i;:::-;31860:6;31868:4;31826:51;;;;;;;;;;;;:5;:51::i;:::-;31759:126;;:::o;858:98::-;938:10;858:98;:::o;40062:500::-;-1:-1:-1;;;;;40396:21:0;;;;40388:69;;;;-1:-1:-1;;;;;40388:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;40470:19:0;;;;;;;:11;:19;;;;;;;;:28;;;;;;;;;;;;;:36;;;40522:32;;;;;;;;;;;;;;;;;40062:500;;;:::o;38909:654::-;-1:-1:-1;;;;;39112:18:0;;;;39104:65;;;;-1:-1:-1;;;;;39104:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39182:73;39200:8;39210:4;39224:1;39228:6;39236:4;39242:12;39182:17;:73::i;:::-;39321:66;39341:6;39321:66;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;39321:15:0;;:9;:15;;;;;;;;;;;;:66;;:19;:66;:::i;:::-;-1:-1:-1;;;;;39303:15:0;;:9;:15;;;;;;;;;;:84;39413:12;;:24;;39430:6;39413:24;:16;:24;:::i;:::-;39398:12;:39;;;;39472:4;-1:-1:-1;;;;;39455:50:0;39462:8;-1:-1:-1;;;;;39455:50:0;;39478:6;39486:4;39492:12;39455:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;39455:50:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39455:50:0;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;39455:50:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39521:34;;;;;;;;39544:1;;-1:-1:-1;;;;;39521:34:0;;;;;;;;;;;;38909:654;;;;;:::o;41046:497::-;41300:76;;;-1:-1:-1;;;;;41300:76:0;;-1:-1:-1;;;;;41300:76:0;;;;;;27897:66;41300:76;;;;;;41278:19;;27419:42;;41300:40;;:76;;;;;;;;;;;;;;;27419:42;41300:76;;;5:2:-1;;;;30:1;27;20:12;5:2;41300:76:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;41300:76:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;41300:76:0;;-1:-1:-1;;;;;;41391:25:0;;;41387:149;;41447:11;-1:-1:-1;;;;;41433:39:0;;41473:8;41483:4;41489:2;41493:6;41501:8;41511:12;41433:91;;;;;;;;;;;;;-1:-1:-1;;;;;41433:91:0;-1:-1:-1;;;;;41433:91:0;;;;;;-1:-1:-1;;;;;41433:91:0;-1:-1:-1;;;;;41433:91:0;;;;;;-1:-1:-1;;;;;41433:91:0;-1:-1:-1;;;;;41433:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;41433:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41433:91:0;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;41433:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;41433:91:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;41433:91:0;;;;41387:149;41046:497;;;;;;;:::o;39571:483::-;39808:70;39828:6;39808:70;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;39808:15:0;;:9;:15;;;;;;;;;;;;:70;;:19;:70;:::i;:::-;-1:-1:-1;;;;;39790:15:0;;;:9;:15;;;;;;;;;;;:88;;;;39905:13;;;;;;;:25;;39923:6;39905:25;:17;:25;:::i;:::-;39889:9;:13;39899:2;-1:-1:-1;;;;;39889:13:0;-1:-1:-1;;;;;39889:13:0;;;;;;;;;;;;:41;;;;39969:2;-1:-1:-1;;;;;39948:56:0;39963:4;-1:-1:-1;;;;;39948:56:0;39953:8;-1:-1:-1;;;;;39948:56:0;;39973:6;39981:8;39991:12;39948:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;39948:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39948:56:0;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;39948:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40035:2;-1:-1:-1;;;;;40020:26:0;40029:4;-1:-1:-1;;;;;40020:26:0;;40039:6;40020:26;;;;;;;;;;;;;;;;;;39571:483;;;;;;:::o;14745:192::-;14831:7;14867:12;14859:6;;;;14851:29;;;;-1:-1:-1;;;;;14851:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;14851:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;14903:5:0;;;14745:192::o;42245:704::-;42536:77;;;-1:-1:-1;;;;;42536:77:0;;-1:-1:-1;;;;;42536:77:0;;;;;;28083:66;42536:77;;;;;;42514:19;;27419:42;;42536:40;;:77;;;;;;;;;;;;;;;27419:42;42536:77;;;5:2:-1;;;;30:1;27;20:12;5:2;42536:77:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;42536:77:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;42536:77:0;;-1:-1:-1;;;;;;42628:25:0;;;42624:318;;42687:11;-1:-1:-1;;;;;42670:44:0;;42715:8;42725:4;42731:2;42735:6;42743:8;42753:12;42670:96;;;;;;;;;;;;;-1:-1:-1;;;;;42670:96:0;-1:-1:-1;;;;;42670:96:0;;;;;;-1:-1:-1;;;;;42670:96:0;-1:-1:-1;;;;;42670:96:0;;;;;;-1:-1:-1;;;;;42670:96:0;-1:-1:-1;;;;;42670:96:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;42670:96:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42670:96:0;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;42670:96:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;42670:96:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;42670:96:0;;;;42624:318;;;42788:19;42784:158;;;42833:15;:2;-1:-1:-1;;;;;42833:13:0;;:15::i;:::-;42832:16;42824:106;;;;-1:-1:-1;;;;;42824:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42245:704;;;;;;;;:::o;37872:657::-;-1:-1:-1;;;;;38135:18:0;;;;38127:65;;;;-1:-1:-1;;;;;38127:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38211:16:0;;;;38203:61;;;;;-1:-1:-1;;;;;38203:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38277:69;38295:8;38305:4;38311:2;38315:6;38323:8;38333:12;38277:17;:69::i;:::-;38359:57;38365:8;38375:4;38381:2;38385:6;38393:8;38403:12;38359:5;:57::i;:::-;38429:92;38449:8;38459:4;38465:2;38469:6;38477:8;38487:12;38501:19;38429;:92::i;36670:650::-;-1:-1:-1;;;;;36876:21:0;;;;36868:66;;;;;-1:-1:-1;;;;;36868:66:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36997:12;;:24;;37014:6;36997:24;:16;:24;:::i;:::-;36982:12;:39;-1:-1:-1;;;;;37053:18:0;;:9;:18;;;;;;;;;;;:30;;37076:6;37053:30;:22;:30;:::i;:::-;-1:-1:-1;;;;;37032:18:0;;:9;:18;;;;;;;;;;:51;;;;37096:88;;37116:8;;37042:7;37147:6;37155:8;37165:12;37179:4;37096:19;:88::i;:::-;37219:7;-1:-1:-1;;;;;37202:57:0;37209:8;-1:-1:-1;;;;;37202:57:0;;37228:6;37236:8;37246:12;37202:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;37202:57:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37202:57:0;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;37202:57:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37275:37;;;;;;;;-1:-1:-1;;;;;37275:37:0;;;37292:1;;37275:37;;;;;;;;;36670:650;;;;;:::o;14272:136::-;14330:7;14357:43;14361:1;14364;14357:43;;;;;;;;;;;;;;;;;:3;:43::i;13816:181::-;13874:7;13906:5;;;13930:6;;;;13922:46;;;;;-1:-1:-1;;;;;13922:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;19175:619;19235:4;19703:20;;19546:66;19743:23;;;;;;:42;;-1:-1:-1;19770:15:0;;;19743:42;19735:51;19175:619;-1:-1:-1;;;;19175:619:0:o
Swarm Source
bzzr://3da5b70814a2cc7abbf57678db903fd93d7cff6953cb605806b0cd631be47cab
Loading...
Loading
Loading...
Loading
OVERVIEW
LKSCOIN has been created to have a significant impact on the Internet through payments and donations to content creators within social networks and in general web user generated content.Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.