Feature Tip: Add private address tag to any address under My Name Tag !
Token migration announcement. Zloadr token contract has migrated BNB Smart Chain to a new address.
ERC-20
Overview
Max Total Supply
100,000,000 ZDR
Holders
349 (0.00%)
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ZDRToken
Compiler Version
v0.5.10+commit.5a6ea5b1
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2019-08-09 */ pragma solidity ^0.5.10; /** * @dev Interface of the ERC777Token standard as defined in the EIP. * * This contract uses the * [ERC1820 registry standard](https://eips.ethereum.org/EIPS/eip-1820) 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 `tokensReceived` * 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 `tokensReceived` * 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); } /** * @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 * [ERC1820 global registry](https://eips.ethereum.org/EIPS/eip-1820). * * 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, uint amount, bytes calldata userData, bytes calldata operatorData ) external; } /** * @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 * [ERC1820 global registry](https://eips.ethereum.org/EIPS/eip-1820). * * 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, uint amount, bytes calldata userData, bytes calldata operatorData ) external; } /** * @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. * * > 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); } /** * @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) { require(b <= a, "SafeMath: subtraction overflow"); 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) { // Solidity only automatically asserts when dividing by 0 require(b > 0, "SafeMath: division by zero"); 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) { require(b != 0, "SafeMath: modulo by zero"); return a % b; } } // File: contracts\zeppelin\utils\Address.sol pragma solidity ^0.5.0; /** * @dev Collection of functions related to the address type, */ library Address { /** * @dev Returns true if `account` is a contract. * * This test is non-exhaustive, and there may be false-negatives: during the * execution of a contract's constructor, its address will be reported as * not containing a contract. * * > It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. */ function isContract(address account) internal view returns (bool) { // This method relies in extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } } /** * @dev Interface of the global ERC1820 Registry, as defined in the * [EIP](https://eips.ethereum.org/EIPS/eip-1820). 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 * [section of the EIP](https://eips.ethereum.org/EIPS/eip-1820#interface-name). */ 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.address()` 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.address()` 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); } /** * @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 `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 IERC777, IERC20 { using SafeMath for uint256; using Address for address; IERC1820Registry private _erc1820 = 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.setInterfaceImplementer(address(this), keccak256("ERC777Token"), address(this)); _erc1820.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 `Transfer` event for ERC20 compatibility. */ function send(address recipient, uint256 amount, bytes memory data) public { _send(msg.sender, msg.sender, recipient, amount, data, "", true); } /** * @dev See `IERC20.transfer`. * * Unlike `send`, `recipient` is _not_ required to implement the `tokensReceived` * 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 = msg.sender; _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 `Transfer` event for ERC20 compatibility. */ function burn(uint256 amount, bytes memory data) public { _burn(msg.sender, msg.sender, 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) external { require(msg.sender != operator, "ERC777: authorizing self as operator"); if (_defaultOperators[operator]) { delete _revokedDefaultOperators[msg.sender][operator]; } else { _operators[msg.sender][operator] = true; } emit AuthorizedOperator(operator, msg.sender); } /** * @dev See `IERC777.revokeOperator`. */ function revokeOperator(address operator) external { require(operator != msg.sender, "ERC777: revoking self as operator"); if (_defaultOperators[operator]) { _revokedDefaultOperators[msg.sender][operator] = true; } else { delete _operators[msg.sender][operator]; } emit RevokedOperator(operator, msg.sender); } /** * @dev See `IERC777.defaultOperators`. */ function defaultOperators() public view returns (address[] memory) { return _defaultOperatorsArray; } /** * @dev See `IERC777.operatorSend`. * * Emits `Sent` and `Transfer` events. */ function operatorSend( address sender, address recipient, uint256 amount, bytes memory data, bytes memory operatorData ) public { require(isOperatorFor(msg.sender, sender), "ERC777: caller is not an operator for holder"); _send(msg.sender, sender, recipient, amount, data, operatorData, true); } /** * @dev See `IERC777.operatorBurn`. * * Emits `Sent` and `Transfer` events. */ function operatorBurn(address account, uint256 amount, bytes memory data, bytes memory operatorData) public { require(isOperatorFor(msg.sender, account), "ERC777: caller is not an operator for holder"); _burn(msg.sender, 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) external returns (bool) { address holder = msg.sender; _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` and `Transfer` 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 = msg.sender; _callTokensToSend(spender, holder, recipient, amount, "", ""); _move(spender, holder, recipient, amount, "", ""); _approve(holder, spender, _allowances[holder][spender].sub(amount)); _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 `raccount`, the corresponding function * will be called with `operator`, `data` and `operatorData`. * * See `IERC777Sender` and `IERC777Recipient`. * * Emits `Sent` and `Transfer` events. * * Requirements * * - `account` cannot be the zero address. * - if `account` is a contract, it must implement the `tokensReceived` * 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 ) private { 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 ) private { require(from != address(0), "ERC777: burn from the zero address"); _callTokensToSend(operator, from, address(0), amount, data, operatorData); // Update state variables _totalSupply = _totalSupply.sub(amount); _balances[from] = _balances[from].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); _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) private { // 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 ) private { address implementer = _erc1820.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 ) private { address implementer = _erc1820.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"); } } } /** * @title Roles * @dev Library for managing addresses assigned to a Role. */ library Roles { struct Role { mapping (address => bool) bearer; } /** * @dev Give an account access to this role. */ function add(Role storage role, address account) internal { require(!has(role, account), "Roles: account already has role"); role.bearer[account] = true; } /** * @dev Remove an account's access to this role. */ function remove(Role storage role, address account) internal { require(has(role, account), "Roles: account does not have role"); role.bearer[account] = false; } /** * @dev Check if an account has this role. * @return bool */ function has(Role storage role, address account) internal view returns (bool) { require(account != address(0), "Roles: account is the zero address"); return role.bearer[account]; } } contract PauserRole { using Roles for Roles.Role; event PauserAdded(address indexed account); event PauserRemoved(address indexed account); Roles.Role private _pausers; constructor () internal { _addPauser(msg.sender); } modifier onlyPauser() { require(isPauser(msg.sender), "PauserRole: caller does not have the Pauser role"); _; } function isPauser(address account) public view returns (bool) { return _pausers.has(account); } function addPauser(address account) public onlyPauser { _addPauser(account); } function renouncePauser() public { _removePauser(msg.sender); } function _addPauser(address account) internal { _pausers.add(account); emit PauserAdded(account); } function _removePauser(address account) internal { _pausers.remove(account); emit PauserRemoved(account); } } /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ contract Pausable is PauserRole { /** * @dev Emitted when the pause is triggered by a pauser (`account`). */ event Paused(address account); /** * @dev Emitted when the pause is lifted by a pauser (`account`). */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. Assigns the Pauser role * to the deployer. */ constructor () internal { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. */ modifier whenNotPaused() { require(!_paused, "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. */ modifier whenPaused() { require(_paused, "Pausable: not paused"); _; } /** * @dev Called by a pauser to pause, triggers stopped state. */ function pause() public onlyPauser whenNotPaused { _paused = true; emit Paused(msg.sender); } /** * @dev Called by a pauser to unpause, returns to normal state. */ function unpause() public onlyPauser whenPaused { _paused = false; emit Unpaused(msg.sender); } } /** * @title Pausable token * @dev ERC20 modified with pausable transfers. */ contract ERC777Pausable is ERC777, Pausable { constructor(string memory name, string memory symbol, address[] memory defaultOperators) ERC777(name, symbol, defaultOperators) public {} //== Pause ERC20 transfers == function transfer(address to, uint256 value) public whenNotPaused returns (bool) { return super.transfer(to, value); } function transferFrom(address from, address to, uint256 value) public whenNotPaused returns (bool) { return super.transferFrom(from, to, value); } function burn(uint256 amount, bytes memory data) public whenNotPaused { super.burn(amount, data); } //== Pause ERC777 transfers == function send(address recipient, uint256 amount, bytes memory data) public whenNotPaused{ super.send(recipient, amount, data); } function operatorSend(address sender, address recipient, uint256 amount, bytes memory data, bytes memory operatorData) public whenNotPaused { super.operatorSend(sender, recipient, amount, data, operatorData); } function operatorBurn(address account, uint256 amount, bytes memory data, bytes memory operatorData) public whenNotPaused { super.operatorBurn(account, amount, data, operatorData); } } contract ZDRToken is ERC777Pausable { string constant NAME = 'Zloadr Token'; string constant SYMBOL = 'ZDR'; uint8 constant DECIMALS= 18; //Required by ERC777 uint256 constant TOTAL_SUPPLY = 100_000_000 * (uint256(10)**DECIMALS); constructor(address[] memory defaultOperators) ERC777Pausable(NAME, SYMBOL, defaultOperators) public { _mint(msg.sender, msg.sender, TOTAL_SUPPLY, '', ''); } }
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":"from","type":"address"},{"name":"to","type":"address"},{"name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"account","type":"address"}],"name":"isPauser","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"granularity","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"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":false,"inputs":[],"name":"renouncePauser","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":false,"inputs":[{"name":"account","type":"address"}],"name":"addPauser","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","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":"to","type":"address"},{"name":"value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"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":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":"defaultOperators","type":"address[]"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"}],"name":"PauserAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"}],"name":"PauserRemoved","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
6080604052600080546001600160a01b031916731820a4b7618bde71dce8cdc73aab6c95905fad241790553480156200003757600080fd5b5060405162002fb938038062002fb9833981810160405260208110156200005d57600080fd5b8101908080516401000000008111156200007657600080fd5b820160208101848111156200008a57600080fd5b8151856020820283011164010000000082111715620000a857600080fd5b50509291905050506040518060400160405280600c81526020017f5a6c6f61647220546f6b656e00000000000000000000000000000000000000008152506040518060400160405280600381526020017f5a445200000000000000000000000000000000000000000000000000000000008152508282828282600390805190602001906200013892919062000aef565b5081516200014e90600490602085019062000aef565b5080516200016490600590602084019062000b74565b5060005b600554811015620001c457600160066000600584815481106200018757fe5b6000918252602080832091909101546001600160a01b031683528201929092526040019020805460ff191691151591909117905560010162000168565b5060008054604080517f455243373737546f6b656e0000000000000000000000000000000000000000008152815190819003600b0181207f29965a1d00000000000000000000000000000000000000000000000000000000825230600483018190526024830191909152604482015290516001600160a01b03909216926329965a1d9260648084019382900301818387803b1580156200026357600080fd5b505af115801562000278573d6000803e3d6000fd5b505060008054604080517f4552433230546f6b656e000000000000000000000000000000000000000000008152815190819003600a0181207f29965a1d00000000000000000000000000000000000000000000000000000000825230600483018190526024830191909152604482015290516001600160a01b0390921694506329965a1d9350606480820193929182900301818387803b1580156200031c57600080fd5b505af115801562000331573d6000803e3d6000fd5b5050505050505062000349336200039e60201b60201c565b5050600b805460ff19169055506040805160208082018352600080835283519182019093529182526200039791339182916a52b7d2dcc80cd2e400000091906001600160e01b03620003f016565b5062000c21565b620003b981600a6200066360201b62001e011790919060201c565b6040516001600160a01b038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b6001600160a01b0384166200046657604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4552433737373a206d696e7420746f20746865207a65726f2061646472657373604482015290519081900360640190fd5b62000482836002546200070a60201b620020a21790919060201c565b6002556001600160a01b038416600090815260016020908152604090912054620004b7918590620020a26200070a821b17901c565b60016000866001600160a01b03166001600160a01b0316815260200190815260200160002081905550620004f98560008686868660016200078660201b60201c565b836001600160a01b0316856001600160a01b03167f2fe5be0146f74c5bce36c0b80911af6c7d86ff27e89d5cfa61fc681327954e5d858585604051808481526020018060200180602001838103835285818151815260200191508051906020019080838360005b838110156200057a57818101518382015260200162000560565b50505050905090810190601f168015620005a85780820380516001836020036101000a031916815260200191505b50838103825284518152845160209182019186019080838360005b83811015620005dd578181015183820152602001620005c3565b50505050905090810190601f1680156200060b5780820380516001836020036101000a031916815260200191505b509550505050505060405180910390a36040805184815290516001600160a01b038616916000917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050505050565b6200067882826001600160e01b0362000a6616565b15620006e557604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b6000828201838110156200077f57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b60008054604080517faabbb8ca0000000000000000000000000000000000000000000000000000000081526001600160a01b0389811660048301527fb281fc8c12954d22544db45de3159a39272895b169a852b314f9cc762e44c53b60248301529151919092169163aabbb8ca916044808301926020929190829003018186803b1580156200081457600080fd5b505afa15801562000829573d6000803e3d6000fd5b505050506040513d60208110156200084057600080fd5b505190506001600160a01b03811615620009de57806001600160a01b03166223de298989898989896040518763ffffffff1660e01b815260040180876001600160a01b03166001600160a01b03168152602001866001600160a01b03166001600160a01b03168152602001856001600160a01b03166001600160a01b031681526020018481526020018060200180602001838103835285818151815260200191508051906020019080838360005b8381101562000908578181015183820152602001620008ee565b50505050905090810190601f168015620009365780820380516001836020036101000a031916815260200191505b50838103825284518152845160209182019186019080838360005b838110156200096b57818101518382015260200162000951565b50505050905090810190601f168015620009995780820380516001836020036101000a031916815260200191505b5098505050505050505050600060405180830381600087803b158015620009bf57600080fd5b505af1158015620009d4573d6000803e3d6000fd5b5050505062000a5c565b811562000a5c5762000a04866001600160a01b031662000ae960201b620020fc1760201c565b1562000a5c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252604d81526020018062002f6c604d913960600191505060405180910390fd5b5050505050505050565b60006001600160a01b03821662000ac9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018062002f4a6022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b3b151590565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1062000b3257805160ff191683800117855562000b62565b8280016001018555821562000b62579182015b8281111562000b6257825182559160200191906001019062000b45565b5062000b7092915062000bda565b5090565b82805482825590600052602060002090810192821562000bcc579160200282015b8281111562000bcc57825182546001600160a01b0319166001600160a01b0390911617825560209092019160019091019062000b95565b5062000b7092915062000bfa565b62000bf791905b8082111562000b70576000815560010162000be1565b90565b62000bf791905b8082111562000b705780546001600160a01b031916815560010162000c01565b6123198062000c316000396000f3fe608060405234801561001057600080fd5b50600436106101585760003560e01c806370a08231116100c3578063a9059cbb1161007c578063a9059cbb146105ac578063d95b6371146105d8578063dd62ed3e14610606578063fad8b32a14610634578063fc673c4f1461065a578063fe9d93031461079857610158565b806370a082311461047157806382dc1ec4146104975780638456cb59146104bd578063959b8c3f146104c557806395d89b41146104eb5780639bd9bbc6146104f357610158565b80633f4ba83a116101155780633f4ba83a146102e057806346fbf68e146102ea578063556f0dc7146103105780635c975abb1461031857806362ad1b83146103205780636ef8d66d1461046957610158565b806306e485381461015d57806306fdde03146101b5578063095ea7b31461023257806318160ddd1461027257806323b872dd1461028c578063313ce567146102c2575b600080fd5b610165610843565b60408051602080825283518183015283519192839290830191858101910280838360005b838110156101a1578181015183820152602001610189565b505050509050019250505060405180910390f35b6101bd6108a5565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101f75781810151838201526020016101df565b50505050905090810190601f1680156102245780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61025e6004803603604081101561024857600080fd5b506001600160a01b038135169060200135610932565b604080519115158252519081900360200190f35b61027a61094a565b60408051918252519081900360200190f35b61025e600480360360608110156102a257600080fd5b506001600160a01b03813581169160208101359091169060400135610950565b6102ca6109b1565b6040805160ff9092168252519081900360200190f35b6102e86109b6565b005b61025e6004803603602081101561030057600080fd5b50356001600160a01b0316610a87565b61027a610aa0565b61025e610aa5565b6102e8600480360360a081101561033657600080fd5b6001600160a01b03823581169260208101359091169160408201359190810190608081016060820135600160201b81111561037057600080fd5b82018360208201111561038257600080fd5b803590602001918460018302840111600160201b831117156103a357600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b8111156103f557600080fd5b82018360208201111561040757600080fd5b803590602001918460018302840111600160201b8311171561042857600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610aae945050505050565b6102e8610b0d565b61027a6004803603602081101561048757600080fd5b50356001600160a01b0316610b18565b6102e8600480360360208110156104ad57600080fd5b50356001600160a01b0316610b33565b6102e8610b83565b6102e8600480360360208110156104db57600080fd5b50356001600160a01b0316610c54565b6101bd610d55565b6102e86004803603606081101561050957600080fd5b6001600160a01b0382351691602081013591810190606081016040820135600160201b81111561053857600080fd5b82018360208201111561054a57600080fd5b803590602001918460018302840111600160201b8311171561056b57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610db6945050505050565b61025e600480360360408110156105c257600080fd5b506001600160a01b038135169060200135610e11565b61025e600480360360408110156105ee57600080fd5b506001600160a01b0381358116916020013516610e70565b61027a6004803603604081101561061c57600080fd5b506001600160a01b0381358116916020013516610f11565b6102e86004803603602081101561064a57600080fd5b50356001600160a01b0316610f3c565b6102e86004803603608081101561067057600080fd5b6001600160a01b0382351691602081013591810190606081016040820135600160201b81111561069f57600080fd5b8201836020820111156106b157600080fd5b803590602001918460018302840111600160201b831117156106d257600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b81111561072457600080fd5b82018360208201111561073657600080fd5b803590602001918460018302840111600160201b8311171561075757600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092955061103d945050505050565b6102e8600480360360408110156107ae57600080fd5b81359190810190604081016020820135600160201b8111156107cf57600080fd5b8201836020820111156107e157600080fd5b803590602001918460018302840111600160201b8311171561080257600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092955061109a945050505050565b6060600580548060200260200160405190810160405280929190818152602001828054801561089b57602002820191906000526020600020905b81546001600160a01b0316815260019091019060200180831161087d575b5050505050905090565b60038054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561089b5780601f106109065761010080835404028352916020019161089b565b820191906000526020600020905b81548152906001019060200180831161091457509395945050505050565b6000336109408185856110f3565b5060019392505050565b60025490565b600b5460009060ff161561099e576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6109a984848461119a565b949350505050565b601290565b6109bf33610a87565b6109fa5760405162461bcd60e51b81526004018080602001828103825260308152602001806121256030913960400191505060405180910390fd5b600b5460ff16610a48576040805162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015290519081900360640190fd5b600b805460ff191690556040805133815290517f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa9181900360200190a1565b6000610a9a600a8363ffffffff6112ff16565b92915050565b600190565b600b5460ff1690565b600b5460ff1615610af9576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b610b068585858585611366565b5050505050565b610b16336113bb565b565b6001600160a01b031660009081526001602052604090205490565b610b3c33610a87565b610b775760405162461bcd60e51b81526004018080602001828103825260308152602001806121256030913960400191505060405180910390fd5b610b8081611403565b50565b610b8c33610a87565b610bc75760405162461bcd60e51b81526004018080602001828103825260308152602001806121256030913960400191505060405180910390fd5b600b5460ff1615610c12576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b600b805460ff191660011790556040805133815290517f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2589181900360200190a1565b336001600160a01b0382161415610c9c5760405162461bcd60e51b81526004018080602001828103825260248152602001806121776024913960400191505060405180910390fd5b6001600160a01b03811660009081526006602052604090205460ff1615610ced573360009081526008602090815260408083206001600160a01b03851684529091529020805460ff19169055610d1c565b3360009081526007602090815260408083206001600160a01b03851684529091529020805460ff191660011790555b60405133906001600160a01b038316907ff4caeb2d6ca8932a215a353d0703c326ec2d81fc68170f320eb2ab49e9df61f990600090a350565b60048054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561089b5780601f106109065761010080835404028352916020019161089b565b600b5460ff1615610e01576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b610e0c83838361144b565b505050565b600b5460009060ff1615610e5f576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b610e69838361146a565b9392505050565b6000816001600160a01b0316836001600160a01b03161480610edb57506001600160a01b03831660009081526006602052604090205460ff168015610edb57506001600160a01b0380831660009081526008602090815260408083209387168352929052205460ff16155b80610e695750506001600160a01b0390811660009081526007602090815260408083209490931682529290925290205460ff1690565b6001600160a01b03918216600090815260096020908152604080832093909416825291909152205490565b6001600160a01b038116331415610f845760405162461bcd60e51b815260040180806020018281038252602181526020018061219b6021913960400191505060405180910390fd5b6001600160a01b03811660009081526006602052604090205460ff1615610fd8573360009081526008602090815260408083206001600160a01b03851684529091529020805460ff19166001179055611004565b3360009081526007602090815260408083206001600160a01b03851684529091529020805460ff191690555b60405133906001600160a01b038316907f50546e66e5f44d728365dc3908c63bc5cfeeab470722c1677e3073a6ac294aa190600090a350565b600b5460ff1615611088576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6110948484848461153c565b50505050565b600b5460ff16156110e5576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6110ef828261158e565b5050565b6001600160a01b0382166111385760405162461bcd60e51b81526004018080602001828103825260238152602001806122c26023913960400191505060405180910390fd5b6001600160a01b03808416600081815260096020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b60006001600160a01b0383166111e15760405162461bcd60e51b815260040180806020018281038252602481526020018061224c6024913960400191505060405180910390fd5b6001600160a01b0384166112265760405162461bcd60e51b815260040180806020018281038252602681526020018061229c6026913960400191505060405180910390fd5b60003390506112578186868660405180602001604052806000815250604051806020016040528060008152506115aa565b6112838186868660405180602001604052806000815250604051806020016040528060008152506117e2565b6001600160a01b038086166000908152600960209081526040808320938516835292905220546112c690869083906112c1908763ffffffff6119e216565b6110f3565b6112f48186868660405180602001604052806000815250604051806020016040528060008152506000611a3f565b506001949350505050565b60006001600160a01b0382166113465760405162461bcd60e51b81526004018080602001828103825260228152602001806121dd6022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b6113703386610e70565b6113ab5760405162461bcd60e51b815260040180806020018281038252602c815260200180612270602c913960400191505060405180910390fd5b610b063386868686866001611ccf565b6113cc600a8263ffffffff611d9a16565b6040516001600160a01b038216907fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e90600090a250565b611414600a8263ffffffff611e0116565b6040516001600160a01b038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b610e0c3333858585604051806020016040528060008152506001611ccf565b60006001600160a01b0383166114b15760405162461bcd60e51b815260040180806020018281038252602481526020018061224c6024913960400191505060405180910390fd5b60003390506114e28182868660405180602001604052806000815250604051806020016040528060008152506115aa565b61150e8182868660405180602001604052806000815250604051806020016040528060008152506117e2565b6109408182868660405180602001604052806000815250604051806020016040528060008152506000611a3f565b6115463385610e70565b6115815760405162461bcd60e51b815260040180806020018281038252602c815260200180612270602c913960400191505060405180910390fd5b6110943385858585611e82565b6110ef3333848460405180602001604052806000815250611e82565b600080546040805163555ddc6560e11b81526001600160a01b0389811660048301527f29ddb589b1fb5fc7cf394961c1adf5f8c6454761adf795e67fe149f658abe89560248301529151919092169163aabbb8ca916044808301926020929190829003018186803b15801561161e57600080fd5b505afa158015611632573d6000803e3d6000fd5b505050506040513d602081101561164857600080fd5b505190506001600160a01b038116156117d957806001600160a01b03166375ab97828888888888886040518763ffffffff1660e01b815260040180876001600160a01b03166001600160a01b03168152602001866001600160a01b03166001600160a01b03168152602001856001600160a01b03166001600160a01b031681526020018481526020018060200180602001838103835285818151815260200191508051906020019080838360005b8381101561170e5781810151838201526020016116f6565b50505050905090810190601f16801561173b5780820380516001836020036101000a031916815260200191505b50838103825284518152845160209182019186019080838360005b8381101561176e578181015183820152602001611756565b50505050905090810190601f16801561179b5780820380516001836020036101000a031916815260200191505b5098505050505050505050600060405180830381600087803b1580156117c057600080fd5b505af11580156117d4573d6000803e3d6000fd5b505050505b50505050505050565b6001600160a01b03851660009081526001602052604090205461180b908463ffffffff6119e216565b6001600160a01b038087166000908152600160205260408082209390935590861681522054611840908463ffffffff6120a216565b60016000866001600160a01b03166001600160a01b0316815260200190815260200160002081905550836001600160a01b0316856001600160a01b0316876001600160a01b03167f06b541ddaa720db2b10a4d0cdac39b8d360425fc073085fac19bc82614677987868686604051808481526020018060200180602001838103835285818151815260200191508051906020019080838360005b838110156118f25781810151838201526020016118da565b50505050905090810190601f16801561191f5780820380516001836020036101000a031916815260200191505b50838103825284518152845160209182019186019080838360005b8381101561195257818101518382015260200161193a565b50505050905090810190601f16801561197f5780820380516001836020036101000a031916815260200191505b509550505050505060405180910390a4836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050565b600082821115611a39576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b600080546040805163555ddc6560e11b81526001600160a01b0389811660048301527fb281fc8c12954d22544db45de3159a39272895b169a852b314f9cc762e44c53b60248301529151919092169163aabbb8ca916044808301926020929190829003018186803b158015611ab357600080fd5b505afa158015611ac7573d6000803e3d6000fd5b505050506040513d6020811015611add57600080fd5b505190506001600160a01b03811615611c7157806001600160a01b03166223de298989898989896040518763ffffffff1660e01b815260040180876001600160a01b03166001600160a01b03168152602001866001600160a01b03166001600160a01b03168152602001856001600160a01b03166001600160a01b031681526020018481526020018060200180602001838103835285818151815260200191508051906020019080838360005b83811015611ba2578181015183820152602001611b8a565b50505050905090810190601f168015611bcf5780820380516001836020036101000a031916815260200191505b50838103825284518152845160209182019186019080838360005b83811015611c02578181015183820152602001611bea565b50505050905090810190601f168015611c2f5780820380516001836020036101000a031916815260200191505b5098505050505050505050600060405180830381600087803b158015611c5457600080fd5b505af1158015611c68573d6000803e3d6000fd5b50505050611cc5565b8115611cc557611c89866001600160a01b03166120fc565b15611cc55760405162461bcd60e51b815260040180806020018281038252604d8152602001806121ff604d913960600191505060405180910390fd5b5050505050505050565b6001600160a01b038616611d145760405162461bcd60e51b81526004018080602001828103825260228152602001806121036022913960400191505060405180910390fd5b6001600160a01b038516611d6f576040805162461bcd60e51b815260206004820181905260248201527f4552433737373a2073656e6420746f20746865207a65726f2061646472657373604482015290519081900360640190fd5b611d7d8787878787876115aa565b611d8b8787878787876117e2565b6117d987878787878787611a3f565b611da482826112ff565b611ddf5760405162461bcd60e51b81526004018080602001828103825260218152602001806121bc6021913960400191505060405180910390fd5b6001600160a01b0316600090815260209190915260409020805460ff19169055565b611e0b82826112ff565b15611e5d576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b6001600160a01b038416611ec75760405162461bcd60e51b81526004018080602001828103825260228152602001806121556022913960400191505060405180910390fd5b611ed6858560008686866115aa565b600254611ee9908463ffffffff6119e216565b6002556001600160a01b038416600090815260016020526040902054611f15908463ffffffff6119e216565b60016000866001600160a01b03166001600160a01b0316815260200190815260200160002081905550836001600160a01b0316856001600160a01b03167fa78a9be3a7b862d26933ad85fb11d80ef66b8f972d7cbba06621d583943a4098858585604051808481526020018060200180602001838103835285818151815260200191508051906020019080838360005b83811015611fbd578181015183820152602001611fa5565b50505050905090810190601f168015611fea5780820380516001836020036101000a031916815260200191505b50838103825284518152845160209182019186019080838360005b8381101561201d578181015183820152602001612005565b50505050905090810190601f16801561204a5780820380516001836020036101000a031916815260200191505b509550505050505060405180910390a36040805184815290516000916001600160a01b038716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050505050565b600082820183811015610e69576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b3b15159056fe4552433737373a2073656e642066726f6d20746865207a65726f2061646472657373506175736572526f6c653a2063616c6c657220646f6573206e6f742068617665207468652050617573657220726f6c654552433737373a206275726e2066726f6d20746865207a65726f20616464726573734552433737373a20617574686f72697a696e672073656c66206173206f70657261746f724552433737373a207265766f6b696e672073656c66206173206f70657261746f72526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c65526f6c65733a206163636f756e7420697320746865207a65726f20616464726573734552433737373a20746f6b656e20726563697069656e7420636f6e747261637420686173206e6f20696d706c656d656e74657220666f7220455243373737546f6b656e73526563697069656e744552433737373a207472616e7366657220746f20746865207a65726f20616464726573734552433737373a2063616c6c6572206973206e6f7420616e206f70657261746f7220666f7220686f6c6465724552433737373a207472616e736665722066726f6d20746865207a65726f20616464726573734552433737373a20617070726f766520746f20746865207a65726f2061646472657373a265627a7a72305820572a4fe431187157ad881087d2cf0796f86d56269221c56054ac3ab67989f5b464736f6c634300050a0032526f6c65733a206163636f756e7420697320746865207a65726f20616464726573734552433737373a20746f6b656e20726563697069656e7420636f6e747261637420686173206e6f20696d706c656d656e74657220666f7220455243373737546f6b656e73526563697069656e74000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000010000000000000000000000007dd817b9c0e810734cea950f9ee38eb49ac2ef67
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101585760003560e01c806370a08231116100c3578063a9059cbb1161007c578063a9059cbb146105ac578063d95b6371146105d8578063dd62ed3e14610606578063fad8b32a14610634578063fc673c4f1461065a578063fe9d93031461079857610158565b806370a082311461047157806382dc1ec4146104975780638456cb59146104bd578063959b8c3f146104c557806395d89b41146104eb5780639bd9bbc6146104f357610158565b80633f4ba83a116101155780633f4ba83a146102e057806346fbf68e146102ea578063556f0dc7146103105780635c975abb1461031857806362ad1b83146103205780636ef8d66d1461046957610158565b806306e485381461015d57806306fdde03146101b5578063095ea7b31461023257806318160ddd1461027257806323b872dd1461028c578063313ce567146102c2575b600080fd5b610165610843565b60408051602080825283518183015283519192839290830191858101910280838360005b838110156101a1578181015183820152602001610189565b505050509050019250505060405180910390f35b6101bd6108a5565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101f75781810151838201526020016101df565b50505050905090810190601f1680156102245780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61025e6004803603604081101561024857600080fd5b506001600160a01b038135169060200135610932565b604080519115158252519081900360200190f35b61027a61094a565b60408051918252519081900360200190f35b61025e600480360360608110156102a257600080fd5b506001600160a01b03813581169160208101359091169060400135610950565b6102ca6109b1565b6040805160ff9092168252519081900360200190f35b6102e86109b6565b005b61025e6004803603602081101561030057600080fd5b50356001600160a01b0316610a87565b61027a610aa0565b61025e610aa5565b6102e8600480360360a081101561033657600080fd5b6001600160a01b03823581169260208101359091169160408201359190810190608081016060820135600160201b81111561037057600080fd5b82018360208201111561038257600080fd5b803590602001918460018302840111600160201b831117156103a357600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b8111156103f557600080fd5b82018360208201111561040757600080fd5b803590602001918460018302840111600160201b8311171561042857600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610aae945050505050565b6102e8610b0d565b61027a6004803603602081101561048757600080fd5b50356001600160a01b0316610b18565b6102e8600480360360208110156104ad57600080fd5b50356001600160a01b0316610b33565b6102e8610b83565b6102e8600480360360208110156104db57600080fd5b50356001600160a01b0316610c54565b6101bd610d55565b6102e86004803603606081101561050957600080fd5b6001600160a01b0382351691602081013591810190606081016040820135600160201b81111561053857600080fd5b82018360208201111561054a57600080fd5b803590602001918460018302840111600160201b8311171561056b57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610db6945050505050565b61025e600480360360408110156105c257600080fd5b506001600160a01b038135169060200135610e11565b61025e600480360360408110156105ee57600080fd5b506001600160a01b0381358116916020013516610e70565b61027a6004803603604081101561061c57600080fd5b506001600160a01b0381358116916020013516610f11565b6102e86004803603602081101561064a57600080fd5b50356001600160a01b0316610f3c565b6102e86004803603608081101561067057600080fd5b6001600160a01b0382351691602081013591810190606081016040820135600160201b81111561069f57600080fd5b8201836020820111156106b157600080fd5b803590602001918460018302840111600160201b831117156106d257600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b81111561072457600080fd5b82018360208201111561073657600080fd5b803590602001918460018302840111600160201b8311171561075757600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092955061103d945050505050565b6102e8600480360360408110156107ae57600080fd5b81359190810190604081016020820135600160201b8111156107cf57600080fd5b8201836020820111156107e157600080fd5b803590602001918460018302840111600160201b8311171561080257600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092955061109a945050505050565b6060600580548060200260200160405190810160405280929190818152602001828054801561089b57602002820191906000526020600020905b81546001600160a01b0316815260019091019060200180831161087d575b5050505050905090565b60038054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561089b5780601f106109065761010080835404028352916020019161089b565b820191906000526020600020905b81548152906001019060200180831161091457509395945050505050565b6000336109408185856110f3565b5060019392505050565b60025490565b600b5460009060ff161561099e576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6109a984848461119a565b949350505050565b601290565b6109bf33610a87565b6109fa5760405162461bcd60e51b81526004018080602001828103825260308152602001806121256030913960400191505060405180910390fd5b600b5460ff16610a48576040805162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015290519081900360640190fd5b600b805460ff191690556040805133815290517f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa9181900360200190a1565b6000610a9a600a8363ffffffff6112ff16565b92915050565b600190565b600b5460ff1690565b600b5460ff1615610af9576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b610b068585858585611366565b5050505050565b610b16336113bb565b565b6001600160a01b031660009081526001602052604090205490565b610b3c33610a87565b610b775760405162461bcd60e51b81526004018080602001828103825260308152602001806121256030913960400191505060405180910390fd5b610b8081611403565b50565b610b8c33610a87565b610bc75760405162461bcd60e51b81526004018080602001828103825260308152602001806121256030913960400191505060405180910390fd5b600b5460ff1615610c12576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b600b805460ff191660011790556040805133815290517f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2589181900360200190a1565b336001600160a01b0382161415610c9c5760405162461bcd60e51b81526004018080602001828103825260248152602001806121776024913960400191505060405180910390fd5b6001600160a01b03811660009081526006602052604090205460ff1615610ced573360009081526008602090815260408083206001600160a01b03851684529091529020805460ff19169055610d1c565b3360009081526007602090815260408083206001600160a01b03851684529091529020805460ff191660011790555b60405133906001600160a01b038316907ff4caeb2d6ca8932a215a353d0703c326ec2d81fc68170f320eb2ab49e9df61f990600090a350565b60048054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561089b5780601f106109065761010080835404028352916020019161089b565b600b5460ff1615610e01576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b610e0c83838361144b565b505050565b600b5460009060ff1615610e5f576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b610e69838361146a565b9392505050565b6000816001600160a01b0316836001600160a01b03161480610edb57506001600160a01b03831660009081526006602052604090205460ff168015610edb57506001600160a01b0380831660009081526008602090815260408083209387168352929052205460ff16155b80610e695750506001600160a01b0390811660009081526007602090815260408083209490931682529290925290205460ff1690565b6001600160a01b03918216600090815260096020908152604080832093909416825291909152205490565b6001600160a01b038116331415610f845760405162461bcd60e51b815260040180806020018281038252602181526020018061219b6021913960400191505060405180910390fd5b6001600160a01b03811660009081526006602052604090205460ff1615610fd8573360009081526008602090815260408083206001600160a01b03851684529091529020805460ff19166001179055611004565b3360009081526007602090815260408083206001600160a01b03851684529091529020805460ff191690555b60405133906001600160a01b038316907f50546e66e5f44d728365dc3908c63bc5cfeeab470722c1677e3073a6ac294aa190600090a350565b600b5460ff1615611088576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6110948484848461153c565b50505050565b600b5460ff16156110e5576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6110ef828261158e565b5050565b6001600160a01b0382166111385760405162461bcd60e51b81526004018080602001828103825260238152602001806122c26023913960400191505060405180910390fd5b6001600160a01b03808416600081815260096020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b60006001600160a01b0383166111e15760405162461bcd60e51b815260040180806020018281038252602481526020018061224c6024913960400191505060405180910390fd5b6001600160a01b0384166112265760405162461bcd60e51b815260040180806020018281038252602681526020018061229c6026913960400191505060405180910390fd5b60003390506112578186868660405180602001604052806000815250604051806020016040528060008152506115aa565b6112838186868660405180602001604052806000815250604051806020016040528060008152506117e2565b6001600160a01b038086166000908152600960209081526040808320938516835292905220546112c690869083906112c1908763ffffffff6119e216565b6110f3565b6112f48186868660405180602001604052806000815250604051806020016040528060008152506000611a3f565b506001949350505050565b60006001600160a01b0382166113465760405162461bcd60e51b81526004018080602001828103825260228152602001806121dd6022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b6113703386610e70565b6113ab5760405162461bcd60e51b815260040180806020018281038252602c815260200180612270602c913960400191505060405180910390fd5b610b063386868686866001611ccf565b6113cc600a8263ffffffff611d9a16565b6040516001600160a01b038216907fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e90600090a250565b611414600a8263ffffffff611e0116565b6040516001600160a01b038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b610e0c3333858585604051806020016040528060008152506001611ccf565b60006001600160a01b0383166114b15760405162461bcd60e51b815260040180806020018281038252602481526020018061224c6024913960400191505060405180910390fd5b60003390506114e28182868660405180602001604052806000815250604051806020016040528060008152506115aa565b61150e8182868660405180602001604052806000815250604051806020016040528060008152506117e2565b6109408182868660405180602001604052806000815250604051806020016040528060008152506000611a3f565b6115463385610e70565b6115815760405162461bcd60e51b815260040180806020018281038252602c815260200180612270602c913960400191505060405180910390fd5b6110943385858585611e82565b6110ef3333848460405180602001604052806000815250611e82565b600080546040805163555ddc6560e11b81526001600160a01b0389811660048301527f29ddb589b1fb5fc7cf394961c1adf5f8c6454761adf795e67fe149f658abe89560248301529151919092169163aabbb8ca916044808301926020929190829003018186803b15801561161e57600080fd5b505afa158015611632573d6000803e3d6000fd5b505050506040513d602081101561164857600080fd5b505190506001600160a01b038116156117d957806001600160a01b03166375ab97828888888888886040518763ffffffff1660e01b815260040180876001600160a01b03166001600160a01b03168152602001866001600160a01b03166001600160a01b03168152602001856001600160a01b03166001600160a01b031681526020018481526020018060200180602001838103835285818151815260200191508051906020019080838360005b8381101561170e5781810151838201526020016116f6565b50505050905090810190601f16801561173b5780820380516001836020036101000a031916815260200191505b50838103825284518152845160209182019186019080838360005b8381101561176e578181015183820152602001611756565b50505050905090810190601f16801561179b5780820380516001836020036101000a031916815260200191505b5098505050505050505050600060405180830381600087803b1580156117c057600080fd5b505af11580156117d4573d6000803e3d6000fd5b505050505b50505050505050565b6001600160a01b03851660009081526001602052604090205461180b908463ffffffff6119e216565b6001600160a01b038087166000908152600160205260408082209390935590861681522054611840908463ffffffff6120a216565b60016000866001600160a01b03166001600160a01b0316815260200190815260200160002081905550836001600160a01b0316856001600160a01b0316876001600160a01b03167f06b541ddaa720db2b10a4d0cdac39b8d360425fc073085fac19bc82614677987868686604051808481526020018060200180602001838103835285818151815260200191508051906020019080838360005b838110156118f25781810151838201526020016118da565b50505050905090810190601f16801561191f5780820380516001836020036101000a031916815260200191505b50838103825284518152845160209182019186019080838360005b8381101561195257818101518382015260200161193a565b50505050905090810190601f16801561197f5780820380516001836020036101000a031916815260200191505b509550505050505060405180910390a4836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050565b600082821115611a39576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b600080546040805163555ddc6560e11b81526001600160a01b0389811660048301527fb281fc8c12954d22544db45de3159a39272895b169a852b314f9cc762e44c53b60248301529151919092169163aabbb8ca916044808301926020929190829003018186803b158015611ab357600080fd5b505afa158015611ac7573d6000803e3d6000fd5b505050506040513d6020811015611add57600080fd5b505190506001600160a01b03811615611c7157806001600160a01b03166223de298989898989896040518763ffffffff1660e01b815260040180876001600160a01b03166001600160a01b03168152602001866001600160a01b03166001600160a01b03168152602001856001600160a01b03166001600160a01b031681526020018481526020018060200180602001838103835285818151815260200191508051906020019080838360005b83811015611ba2578181015183820152602001611b8a565b50505050905090810190601f168015611bcf5780820380516001836020036101000a031916815260200191505b50838103825284518152845160209182019186019080838360005b83811015611c02578181015183820152602001611bea565b50505050905090810190601f168015611c2f5780820380516001836020036101000a031916815260200191505b5098505050505050505050600060405180830381600087803b158015611c5457600080fd5b505af1158015611c68573d6000803e3d6000fd5b50505050611cc5565b8115611cc557611c89866001600160a01b03166120fc565b15611cc55760405162461bcd60e51b815260040180806020018281038252604d8152602001806121ff604d913960600191505060405180910390fd5b5050505050505050565b6001600160a01b038616611d145760405162461bcd60e51b81526004018080602001828103825260228152602001806121036022913960400191505060405180910390fd5b6001600160a01b038516611d6f576040805162461bcd60e51b815260206004820181905260248201527f4552433737373a2073656e6420746f20746865207a65726f2061646472657373604482015290519081900360640190fd5b611d7d8787878787876115aa565b611d8b8787878787876117e2565b6117d987878787878787611a3f565b611da482826112ff565b611ddf5760405162461bcd60e51b81526004018080602001828103825260218152602001806121bc6021913960400191505060405180910390fd5b6001600160a01b0316600090815260209190915260409020805460ff19169055565b611e0b82826112ff565b15611e5d576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b6001600160a01b038416611ec75760405162461bcd60e51b81526004018080602001828103825260228152602001806121556022913960400191505060405180910390fd5b611ed6858560008686866115aa565b600254611ee9908463ffffffff6119e216565b6002556001600160a01b038416600090815260016020526040902054611f15908463ffffffff6119e216565b60016000866001600160a01b03166001600160a01b0316815260200190815260200160002081905550836001600160a01b0316856001600160a01b03167fa78a9be3a7b862d26933ad85fb11d80ef66b8f972d7cbba06621d583943a4098858585604051808481526020018060200180602001838103835285818151815260200191508051906020019080838360005b83811015611fbd578181015183820152602001611fa5565b50505050905090810190601f168015611fea5780820380516001836020036101000a031916815260200191505b50838103825284518152845160209182019186019080838360005b8381101561201d578181015183820152602001612005565b50505050905090810190601f16801561204a5780820380516001836020036101000a031916815260200191505b509550505050505060405180910390a36040805184815290516000916001600160a01b038716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050505050565b600082820183811015610e69576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b3b15159056fe4552433737373a2073656e642066726f6d20746865207a65726f2061646472657373506175736572526f6c653a2063616c6c657220646f6573206e6f742068617665207468652050617573657220726f6c654552433737373a206275726e2066726f6d20746865207a65726f20616464726573734552433737373a20617574686f72697a696e672073656c66206173206f70657261746f724552433737373a207265766f6b696e672073656c66206173206f70657261746f72526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c65526f6c65733a206163636f756e7420697320746865207a65726f20616464726573734552433737373a20746f6b656e20726563697069656e7420636f6e747261637420686173206e6f20696d706c656d656e74657220666f7220455243373737546f6b656e73526563697069656e744552433737373a207472616e7366657220746f20746865207a65726f20616464726573734552433737373a2063616c6c6572206973206e6f7420616e206f70657261746f7220666f7220686f6c6465724552433737373a207472616e736665722066726f6d20746865207a65726f20616464726573734552433737373a20617070726f766520746f20746865207a65726f2061646472657373a265627a7a72305820572a4fe431187157ad881087d2cf0796f86d56269221c56054ac3ab67989f5b464736f6c634300050a0032
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000010000000000000000000000007dd817b9c0e810734cea950f9ee38eb49ac2ef67
-----Decoded View---------------
Arg [0] : defaultOperators (address[]): 0x7Dd817B9C0E810734CEA950f9ee38EB49AC2EF67
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [2] : 0000000000000000000000007dd817b9c0e810734cea950f9ee38eb49ac2ef67
Deployed Bytecode Sourcemap
42322:438:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;42322:438:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27522: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;27522:115:0;;;;;;;;;;;;;;;;;23842: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;23842:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29065:184;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;29065:184:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;24617:91;;;:::i;:::-;;;;;;;;;;;;;;;;41410:160;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;41410:160:0;;;;;;;;;;;;;;;;;:::i;24273:76::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;40817:118;;;:::i;:::-;;38399:109;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;38399:109:0;-1:-1:-1;;;;;38399:109:0;;:::i;24471:80::-;;;:::i;40026:78::-;;;:::i;41885:224::-;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;;;;;41885:224:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;41885:224:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;41885:224: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;41885:224:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;41885:224:0;;;;;;;;-1:-1:-1;41885:224:0;;-1:-1:-1;;;;;5:28;;2:2;;;46:1;43;36:12;2:2;41885:224:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;41885:224: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;41885:224:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;41885:224:0;;-1:-1:-1;41885:224:0;;-1:-1:-1;;;;;41885:224:0:i;38616:77::-;;;:::i;24813:118::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;24813:118:0;-1:-1:-1;;;;;24813:118:0;;:::i;38516:92::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;38516:92:0;-1:-1:-1;;;;;38516:92:0;;:::i;40606:116::-;;;:::i;26593:399::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;26593:399:0;-1:-1:-1;;;;;26593:399:0;;:::i;23986:87::-;;;:::i;41735:142::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;41735:142:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;41735:142:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;41735:142: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;41735:142:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;41735:142:0;;-1:-1:-1;41735:142:0;;-1:-1:-1;;;;;41735:142:0:i;41270:132::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;41270:132:0;;;;;;;;:::i;26210:311::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;26210:311:0;;;;;;;;;;:::i;28784:136::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;28784:136:0;;;;;;;;;;:::i;27061:390::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;27061:390:0;-1:-1:-1;;;;;27061:390:0;;:::i;42117:196::-;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;;;;;42117:196:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;42117:196:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;42117:196: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;42117:196:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;42117:196:0;;;;;;;;-1:-1:-1;42117:196:0;;-1:-1:-1;;;;;5:28;;2:2;;;46:1;43;36:12;2:2;42117:196:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;42117:196: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;42117:196:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;42117:196:0;;-1:-1:-1;42117:196:0;;-1:-1:-1;;;;;42117:196:0:i;41578:113::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;41578:113:0;;;;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;41578:113:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;41578:113: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;41578:113:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;41578:113:0;;-1:-1:-1;41578:113:0;;-1:-1:-1;;;;;41578:113:0:i;27522:115::-;27571:16;27607:22;27600:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;27600:29:0;;;;;;;;;;;;;;;;;;;;;;;27522:115;:::o;23842:83::-;23912:5;23905:12;;;;;;;;-1:-1:-1;;23905:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23879:13;;23905:12;;23912:5;;23905:12;;23912:5;23905:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;23905:12:0;;23842:83;-1:-1:-1;;;;;23842:83:0:o;29065:184::-;29132:4;29166:10;29187:32;29166:10;29204:7;29213:5;29187:8;:32::i;:::-;-1:-1:-1;29237:4:0;;29065:184;-1:-1:-1;;;29065:184:0:o;24617:91::-;24688:12;;24617:91;:::o;41410:160::-;40263:7;;41503:4;;40263:7;;40262:8;40254:37;;;;;-1:-1:-1;;;40254:37:0;;;;;;;;;;;;-1:-1:-1;;;40254:37:0;;;;;;;;;;;;;;;41527:35;41546:4;41552:2;41556:5;41527:18;:35::i;:::-;41520:42;41410:160;-1:-1:-1;;;;41410:160:0:o;24273:76::-;24339:2;24273:76;:::o;40817:118::-;38298:20;38307:10;38298:8;:20::i;:::-;38290:81;;;;-1:-1:-1;;;38290:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40462:7;;;;40454:40;;;;;-1:-1:-1;;;40454:40:0;;;;;;;;;;;;-1:-1:-1;;;40454:40:0;;;;;;;;;;;;;;;40876:7;:15;;-1:-1:-1;;40876:15:0;;;40907:20;;;40916:10;40907:20;;;;;;;;;;;;;40817:118::o;38399:109::-;38455:4;38479:21;:8;38492:7;38479:21;:12;:21;:::i;:::-;38472:28;38399:109;-1:-1:-1;;38399:109:0:o;24471:80::-;24542:1;24471:80;:::o;40026:78::-;40089:7;;;;40026:78;:::o;41885:224::-;40263:7;;;;40262:8;40254:37;;;;;-1:-1:-1;;;40254:37:0;;;;;;;;;;;;-1:-1:-1;;;40254:37:0;;;;;;;;;;;;;;;42036:65;42055:6;42063:9;42074:6;42082:4;42088:12;42036:18;:65::i;:::-;41885:224;;;;;:::o;38616:77::-;38660:25;38674:10;38660:13;:25::i;:::-;38616:77::o;24813:118::-;-1:-1:-1;;;;;24901:22:0;24874:7;24901:22;;;:9;:22;;;;;;;24813:118::o;38516:92::-;38298:20;38307:10;38298:8;:20::i;:::-;38290:81;;;;-1:-1:-1;;;38290:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38581:19;38592:7;38581:10;:19::i;:::-;38516:92;:::o;40606:116::-;38298:20;38307:10;38298:8;:20::i;:::-;38290:81;;;;-1:-1:-1;;;38290:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40263:7;;;;40262:8;40254:37;;;;;-1:-1:-1;;;40254:37:0;;;;;;;;;;;;-1:-1:-1;;;40254:37:0;;;;;;;;;;;;;;;40666:7;:14;;-1:-1:-1;;40666:14:0;40676:4;40666:14;;;40696:18;;;40703:10;40696:18;;;;;;;;;;;;;40606:116::o;26593:399::-;26666:10;-1:-1:-1;;;;;26666:22:0;;;;26658:71;;;;-1:-1:-1;;;26658:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;26746:27:0;;;;;;:17;:27;;;;;;;;26742:185;;;26822:10;26797:36;;;;:24;:36;;;;;;;;-1:-1:-1;;;;;26797:46:0;;;;;;;;;26790:53;;-1:-1:-1;;26790:53:0;;;26742:185;;;26887:10;26876:22;;;;:10;:22;;;;;;;;-1:-1:-1;;;;;26876:32:0;;;;;;;;;:39;;-1:-1:-1;;26876:39:0;26911:4;26876:39;;;26742:185;26944:40;;26973:10;;-1:-1:-1;;;;;26944:40:0;;;;;;;;26593:399;:::o;23986:87::-;24058:7;24051:14;;;;;;;;-1:-1:-1;;24051:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24025:13;;24051:14;;24058:7;;24051:14;;24058:7;24051:14;;;;;;;;;;;;;;;;;;;;;;;;41735:142;40263:7;;;;40262:8;40254:37;;;;;-1:-1:-1;;;40254:37:0;;;;;;;;;;;;-1:-1:-1;;;40254:37:0;;;;;;;;;;;;;;;41834:35;41845:9;41856:6;41864:4;41834:10;:35::i;:::-;41735:142;;;:::o;41270:132::-;40263:7;;41345:4;;40263:7;;40262:8;40254:37;;;;;-1:-1:-1;;;40254:37:0;;;;;;;;;;;;-1:-1:-1;;;40254:37:0;;;;;;;;;;;;;;;41369:25;41384:2;41388:5;41369:14;:25::i;:::-;41362:32;41270:132;-1:-1:-1;;;41270:132:0:o;26210:311::-;26318:4;26354:11;-1:-1:-1;;;;;26342:23:0;:8;-1:-1:-1;;;;;26342:23:0;;:121;;;-1:-1:-1;;;;;;26383:27:0;;;;;;:17;:27;;;;;;;;:79;;;;-1:-1:-1;;;;;;26415:37:0;;;;;;;:24;:37;;;;;;;;:47;;;;;;;;;;;;26414:48;26383:79;26342:171;;;-1:-1:-1;;;;;;;26480:23:0;;;;;;;:10;:23;;;;;;;;:33;;;;;;;;;;;;;;;;26210:311::o;28784:136::-;-1:-1:-1;;;;;28884:19:0;;;28857:7;28884:19;;;:11;:19;;;;;;;;:28;;;;;;;;;;;;;28784:136::o;27061:390::-;-1:-1:-1;;;;;27131:22:0;;27143:10;27131:22;;27123:68;;;;-1:-1:-1;;;27123:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;27208:27:0;;;;;;:17;:27;;;;;;;;27204:185;;;27277:10;27252:36;;;;:24;:36;;;;;;;;-1:-1:-1;;;;;27252:46:0;;;;;;;;;:53;;-1:-1:-1;;27252:53:0;27301:4;27252:53;;;27204:185;;;27356:10;27345:22;;;;:10;:22;;;;;;;;-1:-1:-1;;;;;27345:32:0;;;;;;;;;27338:39;;-1:-1:-1;;27338:39:0;;;27204:185;27406:37;;27432:10;;-1:-1:-1;;;;;27406:37:0;;;;;;;;27061:390;:::o;42117:196::-;40263:7;;;;40262:8;40254:37;;;;;-1:-1:-1;;;40254:37:0;;;;;;;;;;;;-1:-1:-1;;;40254:37:0;;;;;;;;;;;;;;;42250:55;42269:7;42278:6;42286:4;42292:12;42250:18;:55::i;:::-;42117:196;;;;:::o;41578:113::-;40263:7;;;;40262:8;40254:37;;;;;-1:-1:-1;;;40254:37:0;;;;;;;;;;;;-1:-1:-1;;;40254:37:0;;;;;;;;;;;;;;;41659:24;41670:6;41678:4;41659:10;:24::i;:::-;41578:113;;:::o;34116:499::-;-1:-1:-1;;;;;34449:21:0;;34441:69;;;;-1:-1:-1;;;34441:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;34523:19:0;;;;;;;:11;:19;;;;;;;;:28;;;;;;;;;;;;;:36;;;34575:32;;;;;;;;;;;;;;;;;34116:499;;;:::o;29599:630::-;29688:4;-1:-1:-1;;;;;29713:23:0;;29705:72;;;;-1:-1:-1;;;29705:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;29796:20:0;;29788:71;;;;-1:-1:-1;;;29788:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29872:15;29890:10;29872:28;;29913:61;29931:7;29940:6;29948:9;29959:6;29913:61;;;;;;;;;;;;;;;;;;;;;;;;:17;:61::i;:::-;29987:49;29993:7;30002:6;30010:9;30021:6;29987:49;;;;;;;;;;;;;;;;;;;;;;;;:5;:49::i;:::-;-1:-1:-1;;;;;30073:19:0;;;;;;;:11;:19;;;;;;;;:28;;;;;;;;;;30047:67;;30056:6;;30064:7;;30073:40;;30106:6;30073:40;:32;:40;:::i;:::-;30047:8;:67::i;:::-;30127:70;30147:7;30156:6;30164:9;30175:6;30127:70;;;;;;;;;;;;;;;;;;;;;;;;30191:5;30127:19;:70::i;:::-;-1:-1:-1;30217:4:0;;29599:630;-1:-1:-1;;;;29599:630:0:o;37774:203::-;37846:4;-1:-1:-1;;;;;37871:21:0;;37863:68;;;;-1:-1:-1;;;37863:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;37949:20:0;:11;:20;;;;;;;;;;;;;;;37774:203::o;27756:378::-;27963:33;27977:10;27989:6;27963:13;:33::i;:::-;27955:90;;;;-1:-1:-1;;;27955:90:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28056:70;28062:10;28074:6;28082:9;28093:6;28101:4;28107:12;28121:4;28056:5;:70::i;38831:130::-;38891:24;:8;38907:7;38891:24;:15;:24;:::i;:::-;38931:22;;-1:-1:-1;;;;;38931:22:0;;;;;;;;38831:130;:::o;38701:122::-;38758:21;:8;38771:7;38758:21;:12;:21;:::i;:::-;38795:20;;-1:-1:-1;;;;;38795:20:0;;;;;;;;38701:122;:::o;25061:158::-;25147:64;25153:10;25165;25177:9;25188:6;25196:4;25147:64;;;;;;;;;;;;25206:4;25147:5;:64::i;25458:432::-;25527:4;-1:-1:-1;;;;;25552:23:0;;25544:72;;;;-1:-1:-1;;;25544:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25629:12;25644:10;25629:25;;25667:56;25685:4;25691;25697:9;25708:6;25667:56;;;;;;;;;;;;;;;;;;;;;;;;:17;:56::i;:::-;25736:44;25742:4;25748;25754:9;25765:6;25736:44;;;;;;;;;;;;;;;;;;;;;;;;:5;:44::i;:::-;25793:65;25813:4;25819;25825:9;25836:6;25793:65;;;;;;;;;;;;;;;;;;;;;;;;25852:5;25793:19;:65::i;28253:283::-;28380:34;28394:10;28406:7;28380:13;:34::i;:::-;28372:91;;;;-1:-1:-1;;;28372:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28474:54;28480:10;28492:7;28501:6;28509:4;28515:12;28474:5;:54::i;26020:122::-;26087:47;26093:10;26105;26117:6;26125:4;26087:47;;;;;;;;;;;;:5;:47::i;35099:488::-;35330:19;35352:8;;:68;;;-1:-1:-1;;;35352:68:0;;-1:-1:-1;;;;;35352:68:0;;;;;;;22196:66;35352:68;;;;;;:8;;;;;:32;;:68;;;;;;;;;;;;;;:8;:68;;;5:2:-1;;;;30:1;27;20:12;5:2;35352:68:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;35352:68:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;35352:68:0;;-1:-1:-1;;;;;;35435:25:0;;;35431:149;;35491:11;-1:-1:-1;;;;;35477:39:0;;35517:8;35527:4;35533:2;35537:6;35545:8;35555:12;35477:91;;;;;;;;;;;;;-1:-1:-1;;;;;35477:91:0;-1:-1:-1;;;;;35477:91:0;;;;;;-1:-1:-1;;;;;35477:91:0;-1:-1:-1;;;;;35477:91:0;;;;;;-1:-1:-1;;;;;35477:91:0;-1:-1:-1;;;;;35477: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;35477:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35477: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;35477:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;35477:91:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;35477:91:0;;;;35431:149;35099:488;;;;;;;:::o;33668:440::-;-1:-1:-1;;;;;33905:15:0;;;;;;:9;:15;;;;;;:27;;33925:6;33905:27;:19;:27;:::i;:::-;-1:-1:-1;;;;;33887:15:0;;;;;;;:9;:15;;;;;;:45;;;;33959:13;;;;;;;:25;;33977:6;33959:25;:17;:25;:::i;:::-;33943:9;:13;33953:2;-1:-1:-1;;;;;33943:13:0;-1:-1:-1;;;;;33943:13:0;;;;;;;;;;;;:41;;;;34023:2;-1:-1:-1;;;;;34002:56:0;34017:4;-1:-1:-1;;;;;34002:56:0;34007:8;-1:-1:-1;;;;;34002:56:0;;34027:6;34035:8;34045:12;34002: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;34002:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34002: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;34002:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34089:2;-1:-1:-1;;;;;34074:26:0;34083:4;-1:-1:-1;;;;;34074:26:0;;34093:6;34074:26;;;;;;;;;;;;;;;;;;33668:440;;;;;;:::o;12645:184::-;12703:7;12736:1;12731;:6;;12723:49;;;;;-1:-1:-1;;;12723:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12795:5:0;;;12645:184::o;36289:695::-;36557:19;36579:8;;:69;;;-1:-1:-1;;;36579:69:0;;-1:-1:-1;;;;;36579:69:0;;;;;;;22382:66;36579:69;;;;;;:8;;;;;:32;;:69;;;;;;;;;;;;;;:8;:69;;;5:2:-1;;;;30:1;27;20:12;5:2;36579:69:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;36579:69:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;36579:69:0;;-1:-1:-1;;;;;;36663:25:0;;;36659:318;;36722:11;-1:-1:-1;;;;;36705:44:0;;36750:8;36760:4;36766:2;36770:6;36778:8;36788:12;36705:96;;;;;;;;;;;;;-1:-1:-1;;;;;36705:96:0;-1:-1:-1;;;;;36705:96:0;;;;;;-1:-1:-1;;;;;36705:96:0;-1:-1:-1;;;;;36705:96:0;;;;;;-1:-1:-1;;;;;36705:96:0;-1:-1:-1;;;;;36705: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;36705:96:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36705: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;36705:96:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;36705:96:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;36705:96:0;;;;36659:318;;;36823:19;36819:158;;;36868:15;:2;-1:-1:-1;;;;;36868:13:0;;:15::i;:::-;36867:16;36859:106;;;;-1:-1:-1;;;36859:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36289:695;;;;;;;;:::o;32010:656::-;-1:-1:-1;;;;;32272:18:0;;32264:65;;;;-1:-1:-1;;;32264:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;32348:16:0;;32340:61;;;;;-1:-1:-1;;;32340:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32414:69;32432:8;32442:4;32448:2;32452:6;32460:8;32470:12;32414:17;:69::i;:::-;32496:57;32502:8;32512:4;32518:2;32522:6;32530:8;32540:12;32496:5;:57::i;:::-;32566:92;32586:8;32596:4;32602:2;32606:6;32614:8;32624:12;32638:19;32566;:92::i;37496:183::-;37576:18;37580:4;37586:7;37576:3;:18::i;:::-;37568:64;;;;-1:-1:-1;;;37568:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;37643:20:0;37666:5;37643:20;;;;;;;;;;;:28;;-1:-1:-1;;37643:28:0;;;37496:183::o;37238:178::-;37316:18;37320:4;37326:7;37316:3;:18::i;:::-;37315:19;37307:63;;;;;-1:-1:-1;;;37307:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;37381:20:0;:11;:20;;;;;;;;;;;:27;;-1:-1:-1;;37381:27:0;37404:4;37381:27;;;37238:178::o;33046:614::-;-1:-1:-1;;;;;33248:18:0;;33240:65;;;;-1:-1:-1;;;33240:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33318:73;33336:8;33346:4;33360:1;33364:6;33372:4;33378:12;33318:17;:73::i;:::-;33454:12;;:24;;33471:6;33454:24;:16;:24;:::i;:::-;33439:12;:39;-1:-1:-1;;;;;33507:15:0;;;;;;:9;:15;;;;;;:27;;33527:6;33507:27;:19;:27;:::i;:::-;33489:9;:15;33499:4;-1:-1:-1;;;;;33489:15:0;-1:-1:-1;;;;;33489:15:0;;;;;;;;;;;;:45;;;;33569:4;-1:-1:-1;;;;;33552:50:0;33559:8;-1:-1:-1;;;;;33552:50:0;;33575:6;33583:4;33589:12;33552: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;33552:50:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33552: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;33552:50:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33618:34;;;;;;;;33641:1;;-1:-1:-1;;;;;33618:34:0;;;;;;;;;;;;33046:614;;;;;:::o;12189:181::-;12247:7;12279:5;;;12303:6;;;;12295:46;;;;;-1:-1:-1;;;12295:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;15575:422;15942:20;15981:8;;;15575:422::o
Swarm Source
bzzr://572a4fe431187157ad881087d2cf0796f86d56269221c56054ac3ab67989f5b4
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.