Overview
Max Total Supply
95,000,000 SETS
Holders
300 (0.00%)
Total Transfers
-
Market
Price
$0.01 @ 0.000004 ETH (+0.40%)
Onchain Market Cap
$1,339,025.00
Circulating Supply Market Cap
$38,804.00
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|---|---|---|---|---|
1 | Tokpie | SETS-ETH | $0.0141 0.0000042 Eth | $34,299.00 2,433,853.900 SETS | 100.0000% |
Contract Name:
SETSToken
Compiler Version
v0.5.17+commit.d19bba13
Contract Source Code (Solidity Multiple files format)
pragma solidity ^0.5.0; import './FullERC20Token.sol'; /* The MIT License (MIT) Copyright (c) 2019-2020 Sensitrust Limited Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ contract SETSToken is FullERC20Token { constructor() FullERC20Token ("Sensitrust Token", "SETS", 18, 200000000) public { } }
pragma solidity ^0.5.0; /* The MIT License (MIT) Copyright (c) 2016-2019 zOS Global Limited Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with GSN meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ contract Context { // Empty internal constructor, to prevent people from mistakenly deploying // an instance of this contract, which should be used via inheritance. constructor () internal { } // solhint-disable-previous-line no-empty-blocks function _msgSender() internal view returns (address payable) { return msg.sender; } function _msgData() internal view returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } }
pragma solidity ^0.5.0; /* The MIT License (MIT) Copyright (c) 2016-2019 zOS Global Limited Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ import "./Context.sol"; import "./IERC20.sol"; import "./SafeMath.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20Mintable}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20 { using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}; * * Requirements: * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for `sender`'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal { require(account != address(0), "ERC20: mint to the zero address"); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal { require(account != address(0), "ERC20: burn from the zero address"); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens. * * This is internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Destroys `amount` tokens from `account`.`amount` is then deducted * from the caller's allowance. * * See {_burn} and {_approve}. */ function _burnFrom(address account, uint256 amount) internal { _burn(account, amount); _approve(account, _msgSender(), _allowances[account][_msgSender()].sub(amount, "ERC20: burn amount exceeds allowance")); } }
pragma solidity ^0.5.0; import "./Context.sol"; import "./ERC20.sol"; /* The MIT License (MIT) Copyright (c) 2016-2019 zOS Global Limited Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public { _burn(_msgSender(), amount); } /** * @dev See {ERC20-_burnFrom}. */ function burnFrom(address account, uint256 amount) public { _burnFrom(account, amount); } }
pragma solidity ^0.5.0; import "./IERC20.sol"; /* The MIT License (MIT) Copyright (c) 2016-2019 zOS Global Limited Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ /** * @dev Optional functions from the ERC20 standard. */ contract ERC20Detailed is IERC20 { string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for `name`, `symbol`, and `decimals`. All three of * these values are immutable: they can only be set once during * construction. */ constructor (string memory name, string memory symbol, uint8 decimals) public { _name = name; _symbol = symbol; _decimals = decimals; } /** * @dev Returns the name of the token. */ function name() public view returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view returns (uint8) { return _decimals; } }
pragma solidity ^0.5.0; import './ERC20Detailed.sol'; import './ERC20Burnable.sol'; import './SenderReceiverAdminRole.sol'; /* The MIT License (MIT) Copyright (c) 2019-2020 Sensitrust Limited Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ contract FullERC20Token is ERC20, // Define our token as a Standard ERC20 token ERC20Detailed, // Add detailed information ERC20Burnable, // Add the possibility to burn tokens SenderReceiverAdminRole // Add roles and functions to manage admins for receiving and sending tokens, independently on the transferability { // Specifies if the tokens can be transferred bool private _transferable = false; /** Constructor * @param _name Extended name of the token * @param _symbol Symbol representing the token * @param _decimals Number of decimals * @param _amount Number of tokens to create (Total Supply) */ constructor (string memory _name, string memory _symbol, uint8 _decimals, uint256 _amount) ERC20Detailed(_name, _symbol, _decimals) // Call the constructor of ERC20Detailed public { require(_amount > 0, "The total supply must be greater than 0"); // Calculate the total supply uint256 totalSupply = _amount.mul(10 ** uint256(_decimals)); // Mint the corresponding amount of tokens and assign them to the conctract creator _mint(msg.sender, totalSupply); // Assign the contract creator to the group of transfer admins _addTransferAdmin(msg.sender); } /** Check whether tokens can be transferred * @return True if tokens can be transferred, False otherwise */ function isTransferrable() public view returns (bool) { return _transferable; } /** Enable the transferability of tokens */ function enableTransfer() public onlyTransferAdmin { _transferable = true; } /** Add additional checks to the _transfer function (transferability) * @dev Transfer token for a specified addresses * @param from The address to transfer from. * @param to The address to transfer to. * @param value The amount to be transferred. */ function _transfer(address from, address to, uint256 value) internal { require(isTransferrable() || isSenderAdmin(from) || isReceiverAdmin(to), "Token transfer is not enabled yet"); super._transfer(from, to, value); } // Attributes and functions to manage the Transfer Admin Role // ---------------------------------------------------------------------------- using Roles for Roles.Role; // Events for transfer admins event TransferAdminAdded(address indexed account); event TransferAdminRemoved(address indexed account); // Set of addresses owning the admin role Roles.Role private _transferAdmins; modifier onlyTransferAdmin() { require(isTransferAdmin(msg.sender), "This operation can be performed by Transfer Admins only"); _; } function isTransferAdmin(address account) public view returns (bool) { return _transferAdmins.has(account); } function addTransferAdmin(address account) public onlyTransferAdmin { _addTransferAdmin(account); } function renounceTransferAdmin() public onlyTransferAdmin { _removeTransferAdmin(msg.sender); } function _addTransferAdmin(address account) internal { _transferAdmins.add(account); emit TransferAdminAdded(account); } function _removeTransferAdmin(address account) internal { _transferAdmins.remove(account); emit TransferAdminRemoved(account); } // ---------------------------------------------------------------------------- }
pragma solidity ^0.5.0; /* The MIT License (MIT) Copyright (c) 2016-2019 zOS Global Limited Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ /** * @dev Interface of the ERC20 standard as defined in the EIP. Does not include * the optional functions; to access them see {ERC20Detailed}. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); }
pragma solidity ^0.5.0; /* The MIT License (MIT) Copyright (c) 2016-2019 zOS Global Limited Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ /** * @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]; } }
pragma solidity ^0.5.0; /* The MIT License (MIT) Copyright (c) 2016-2019 zOS Global Limited Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * - Subtraction cannot overflow. * * _Available since v2.4.0._ */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. * * _Available since v2.4.0._ */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { // Solidity only automatically asserts when dividing by 0 require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. * * _Available since v2.4.0._ */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } }
pragma solidity ^0.5.0; /* The MIT License (MIT) Copyright (c) 2019-2020 Sensitrust Limited Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ import './Roles.sol'; /** * @title SenderReceiverAdminRole * @dev SenderReceiverAdmins can send or receive tokens, independently on transferability of tokens. */ contract SenderReceiverAdminRole { using Roles for Roles.Role; // Events for receiver/sender admins event SenderAdminAdded(address indexed account); event SenderAdminRemoved(address indexed account); event ReceiverAdminAdded(address indexed account); event ReceiverAdminRemoved(address indexed account); // Set of addresses owning the admin role Roles.Role private _senderAdmins; Roles.Role private _receiverAdmins; // Constructor constructor () internal { _addSenderAdmin(msg.sender); _addReceiverAdmin(msg.sender); } // Functions to manage the Sender Admin Role // ---------------------------------------------------------------------------- modifier onlySenderAdmin() { require(isSenderAdmin(msg.sender), "This operation can be performed by Sender Admins only"); _; } function isSenderAdmin(address account) public view returns (bool) { return _senderAdmins.has(account); } function addSenderAdmin(address account) public onlySenderAdmin { _addSenderAdmin(account); } function renounceSenderAdmin() public onlySenderAdmin { _removeSenderAdmin(msg.sender); } function _addSenderAdmin(address account) internal { _senderAdmins.add(account); emit SenderAdminAdded(account); } function _removeSenderAdmin(address account) internal { _senderAdmins.remove(account); emit SenderAdminRemoved(account); } // ---------------------------------------------------------------------------- // Functions to manage the Receiver Admin Role // ---------------------------------------------------------------------------- modifier onlyReceiverAdmin() { require(isReceiverAdmin(msg.sender), "This operation can be performed by Receiver Admins only"); _; } function isReceiverAdmin(address account) public view returns (bool) { return _receiverAdmins.has(account); } function addReceiverAdmin(address account) public onlyReceiverAdmin { _addReceiverAdmin(account); } function renounceReceiverAdmin() public onlyReceiverAdmin { _removeReceiverAdmin(msg.sender); } function _addReceiverAdmin(address account) internal { _receiverAdmins.add(account); emit ReceiverAdminAdded(account); } function _removeReceiverAdmin(address account) internal { _receiverAdmins.remove(account); emit ReceiverAdminRemoved(account); } // ---------------------------------------------------------------------------- }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"ReceiverAdminAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"ReceiverAdminRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"SenderAdminAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"SenderAdminRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"TransferAdminAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"TransferAdminRemoved","type":"event"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addReceiverAdmin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addSenderAdmin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addTransferAdmin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"enableTransfer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isReceiverAdmin","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isSenderAdmin","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isTransferAdmin","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isTransferrable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceReceiverAdmin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceSenderAdmin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceTransferAdmin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526000600860006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b506040518060400160405280601081526020017f53656e7369747275737420546f6b656e000000000000000000000000000000008152506040518060400160405280600481526020017f53455453000000000000000000000000000000000000000000000000000000008152506012630bebc2008383838260039080519060200190620000bb92919062000787565b508160049080519060200190620000d492919062000787565b5080600560006101000a81548160ff021916908360ff1602179055505050506200010433620001c260201b60201c565b62000115336200022360201b60201c565b6000811162000170576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602781526020018062002a476027913960400191505060405180910390fd5b6000620001928360ff16600a0a836200028460201b62001e731790919060201c565b9050620001a633826200030f60201b60201c565b620001b733620004d960201b60201c565b505050505062000836565b620001dd8160066200053a60201b62001c911790919060201c565b8073ffffffffffffffffffffffffffffffffffffffff167f5f623b47bfe36aaaf34e1462c270eb404748419392eec3cde90904bd96d90e3460405160405180910390a250565b6200023e8160076200053a60201b62001c911790919060201c565b8073ffffffffffffffffffffffffffffffffffffffff167f13f07a5e41c05094bc8d0f13990d083807823116008d9b6b30245a485aec32db60405160405180910390a250565b60008083141562000299576000905062000309565b6000828402905082848281620002ab57fe5b041462000304576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018062002a046021913960400191505060405180910390fd5b809150505b92915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620003b3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b620003cf816002546200061e60201b620013d21790919060201c565b6002819055506200042d816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546200061e60201b620013d21790919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b620004f48160096200053a60201b62001c911790919060201c565b8073ffffffffffffffffffffffffffffffffffffffff167f20b54ba3b54af0ae97076cd941c65ed4fec15c91c8f6faa21ad9379df5cdad7660405160405180910390a250565b6200054c8282620006a760201b60201c565b15620005c0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f526f6c65733a206163636f756e7420616c72656164792068617320726f6c650081525060200191505060405180910390fd5b60018260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000808284019050838110156200069d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000730576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018062002a256022913960400191505060405180910390fd5b8260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620007ca57805160ff1916838001178555620007fb565b82800160010185558215620007fb579182015b82811115620007fa578251825591602001919060010190620007dd565b5b5090506200080a91906200080e565b5090565b6200083391905b808211156200082f57600081600090555060010162000815565b5090565b90565b6121be80620008466000396000f3fe608060405234801561001057600080fd5b50600436106101585760003560e01c806370a08231116100c3578063a9059cbb1161007c578063a9059cbb146106a7578063bedb980b1461070d578063dd62ed3e14610717578063e341d5651461078f578063e3ebf98d146107d3578063f1b50c1d1461082f57610158565b806370a08231146104ca57806379cc6790146105225780637ca395c3146105705780637ec918ee146105b457806395d89b41146105be578063a457c2d71461064157610158565b80633950935111610115578063395093511461033057806339e03905146103965780633a5349a9146103da57806342966c68146104365780634c9c3e8a1461046457806360e2a5881461046e57610158565b806306fdde031461015d578063095ea7b3146101e057806318160ddd1461024657806318e6b3671461026457806323b872dd14610286578063313ce5671461030c575b600080fd5b610165610839565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156101a557808201518184015260208101905061018a565b50505050905090810190601f1680156101d25780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61022c600480360360408110156101f657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506108db565b604051808215151515815260200191505060405180910390f35b61024e6108f9565b6040518082815260200191505060405180910390f35b61026c610903565b604051808215151515815260200191505060405180910390f35b6102f26004803603606081101561029c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061091a565b604051808215151515815260200191505060405180910390f35b6103146109f3565b604051808260ff1660ff16815260200191505060405180910390f35b61037c6004803603604081101561034657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610a0a565b604051808215151515815260200191505060405180910390f35b6103d8600480360360208110156103ac57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610abd565b005b61041c600480360360208110156103f057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610b27565b604051808215151515815260200191505060405180910390f35b6104626004803603602081101561044c57600080fd5b8101908080359060200190929190505050610b44565b005b61046c610b58565b005b6104b06004803603602081101561048457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610bc1565b604051808215151515815260200191505060405180910390f35b61050c600480360360208110156104e057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610bde565b6040518082815260200191505060405180910390f35b61056e6004803603604081101561053857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610c26565b005b6105b26004803603602081101561058657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610c34565b005b6105bc610c9e565b005b6105c6610d07565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156106065780820151818401526020810190506105eb565b50505050905090810190601f1680156106335780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61068d6004803603604081101561065757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610da9565b604051808215151515815260200191505060405180910390f35b6106f3600480360360408110156106bd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610e76565b604051808215151515815260200191505060405180910390f35b610715610e94565b005b6107796004803603604081101561072d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610efd565b6040518082815260200191505060405180910390f35b6107d1600480360360208110156107a557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610f84565b005b610815600480360360208110156107e957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610fee565b604051808215151515815260200191505060405180910390f35b61083761100b565b005b606060038054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156108d15780601f106108a6576101008083540402835291602001916108d1565b820191906000526020600020905b8154815290600101906020018083116108b457829003601f168201915b5050505050905090565b60006108ef6108e8611086565b848461108e565b6001905092915050565b6000600254905090565b6000600860009054906101000a900460ff16905090565b6000610927848484611285565b6109e884610933611086565b6109e38560405180606001604052806028815260200161203560289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610999611086565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113129092919063ffffffff16565b61108e565b600190509392505050565b6000600560009054906101000a900460ff16905090565b6000610ab3610a17611086565b84610aae8560016000610a28611086565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113d290919063ffffffff16565b61108e565b6001905092915050565b610ac633610b27565b610b1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526035815260200180611fbe6035913960400191505060405180910390fd5b610b248161145a565b50565b6000610b3d8260066114b490919063ffffffff16565b9050919050565b610b55610b4f611086565b82611592565b50565b610b6133610bc1565b610bb6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603781526020018061210d6037913960400191505060405180910390fd5b610bbf3361174a565b565b6000610bd78260076114b490919063ffffffff16565b9050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610c3082826117a4565b5050565b610c3d33610fee565b610c92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526037815260200180611f1d6037913960400191505060405180910390fd5b610c9b81611873565b50565b610ca733610b27565b610cfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526035815260200180611fbe6035913960400191505060405180910390fd5b610d05336118cd565b565b606060048054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610d9f5780601f10610d7457610100808354040283529160200191610d9f565b820191906000526020600020905b815481529060010190602001808311610d8257829003601f168201915b5050505050905090565b6000610e6c610db6611086565b84610e67856040518060600160405280602581526020016121656025913960016000610de0611086565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113129092919063ffffffff16565b61108e565b6001905092915050565b6000610e8a610e83611086565b8484611285565b6001905092915050565b610e9d33610fee565b610ef2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526037815260200180611f1d6037913960400191505060405180910390fd5b610efb33611927565b565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610f8d33610bc1565b610fe2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603781526020018061210d6037913960400191505060405180910390fd5b610feb81611981565b50565b60006110048260096114b490919063ffffffff16565b9050919050565b61101433610fee565b611069576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526037815260200180611f1d6037913960400191505060405180910390fd5b6001600860006101000a81548160ff021916908315150217905550565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611114576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806120e96024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561119a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180611f766022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b61128d610903565b8061129d575061129c83610b27565b5b806112ad57506112ac82610bc1565b5b611302576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806121446021913960400191505060405180910390fd5b61130d8383836119db565b505050565b60008383111582906113bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611384578082015181840152602081019050611369565b50505050905090810190601f1680156113b15780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600080828401905083811015611450576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b61146e816006611c9190919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f5f623b47bfe36aaaf34e1462c270eb404748419392eec3cde90904bd96d90e3460405160405180910390a250565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561153b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061205d6022913960400191505060405180910390fd5b8260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611618576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806120a36021913960400191505060405180910390fd5b61168381604051806060016040528060228152602001611f54602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113129092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506116da81600254611d6c90919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b61175e816007611db690919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f83260bd5cb0f49df24817f246b12eaf6cac3c7667ce1b39ac4f3733dbd378c8360405160405180910390a250565b6117ae8282611592565b61186f826117ba611086565b61186a8460405180606001604052806024815260200161207f60249139600160008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000611820611086565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113129092919063ffffffff16565b61108e565b5050565b611887816009611c9190919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f20b54ba3b54af0ae97076cd941c65ed4fec15c91c8f6faa21ad9379df5cdad7660405160405180910390a250565b6118e1816006611db690919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167fef15eca2e094874c606991ec6bac18e0969b4b5747ac4afb4d007149add9837760405160405180910390a250565b61193b816009611db690919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f9875305e3123604588f12a5ad9f8b6738bfdcde245815243822ded4946eaf8c460405160405180910390a250565b611995816007611c9190919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f13f07a5e41c05094bc8d0f13990d083807823116008d9b6b30245a485aec32db60405160405180910390a250565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611a61576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806120c46025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ae7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180611efa6023913960400191505060405180910390fd5b611b5281604051806060016040528060268152602001611f98602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113129092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611be5816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113d290919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b611c9b82826114b4565b15611d0e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f526f6c65733a206163636f756e7420616c72656164792068617320726f6c650081525060200191505060405180910390fd5b60018260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000611dae83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611312565b905092915050565b611dc082826114b4565b611e15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180611ff36021913960400191505060405180910390fd5b60008260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600080831415611e865760009050611ef3565b6000828402905082848281611e9757fe5b0414611eee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806120146021913960400191505060405180910390fd5b809150505b9291505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737354686973206f7065726174696f6e2063616e20626520706572666f726d6564206279205472616e736665722041646d696e73206f6e6c7945524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636554686973206f7065726174696f6e2063616e20626520706572666f726d65642062792053656e6465722041646d696e73206f6e6c79526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c65536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365526f6c65733a206163636f756e7420697320746865207a65726f206164647265737345524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737354686973206f7065726174696f6e2063616e20626520706572666f726d65642062792052656365697665722041646d696e73206f6e6c79546f6b656e207472616e73666572206973206e6f7420656e61626c65642079657445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa265627a7a72315820a1b7291915d445aad3cc44d4c5329723fe930d4c73f4e7cff3f1d7b0f181347f64736f6c63430005110032536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77526f6c65733a206163636f756e7420697320746865207a65726f206164647265737354686520746f74616c20737570706c79206d7573742062652067726561746572207468616e2030
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101585760003560e01c806370a08231116100c3578063a9059cbb1161007c578063a9059cbb146106a7578063bedb980b1461070d578063dd62ed3e14610717578063e341d5651461078f578063e3ebf98d146107d3578063f1b50c1d1461082f57610158565b806370a08231146104ca57806379cc6790146105225780637ca395c3146105705780637ec918ee146105b457806395d89b41146105be578063a457c2d71461064157610158565b80633950935111610115578063395093511461033057806339e03905146103965780633a5349a9146103da57806342966c68146104365780634c9c3e8a1461046457806360e2a5881461046e57610158565b806306fdde031461015d578063095ea7b3146101e057806318160ddd1461024657806318e6b3671461026457806323b872dd14610286578063313ce5671461030c575b600080fd5b610165610839565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156101a557808201518184015260208101905061018a565b50505050905090810190601f1680156101d25780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61022c600480360360408110156101f657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506108db565b604051808215151515815260200191505060405180910390f35b61024e6108f9565b6040518082815260200191505060405180910390f35b61026c610903565b604051808215151515815260200191505060405180910390f35b6102f26004803603606081101561029c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061091a565b604051808215151515815260200191505060405180910390f35b6103146109f3565b604051808260ff1660ff16815260200191505060405180910390f35b61037c6004803603604081101561034657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610a0a565b604051808215151515815260200191505060405180910390f35b6103d8600480360360208110156103ac57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610abd565b005b61041c600480360360208110156103f057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610b27565b604051808215151515815260200191505060405180910390f35b6104626004803603602081101561044c57600080fd5b8101908080359060200190929190505050610b44565b005b61046c610b58565b005b6104b06004803603602081101561048457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610bc1565b604051808215151515815260200191505060405180910390f35b61050c600480360360208110156104e057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610bde565b6040518082815260200191505060405180910390f35b61056e6004803603604081101561053857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610c26565b005b6105b26004803603602081101561058657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610c34565b005b6105bc610c9e565b005b6105c6610d07565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156106065780820151818401526020810190506105eb565b50505050905090810190601f1680156106335780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61068d6004803603604081101561065757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610da9565b604051808215151515815260200191505060405180910390f35b6106f3600480360360408110156106bd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610e76565b604051808215151515815260200191505060405180910390f35b610715610e94565b005b6107796004803603604081101561072d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610efd565b6040518082815260200191505060405180910390f35b6107d1600480360360208110156107a557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610f84565b005b610815600480360360208110156107e957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610fee565b604051808215151515815260200191505060405180910390f35b61083761100b565b005b606060038054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156108d15780601f106108a6576101008083540402835291602001916108d1565b820191906000526020600020905b8154815290600101906020018083116108b457829003601f168201915b5050505050905090565b60006108ef6108e8611086565b848461108e565b6001905092915050565b6000600254905090565b6000600860009054906101000a900460ff16905090565b6000610927848484611285565b6109e884610933611086565b6109e38560405180606001604052806028815260200161203560289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610999611086565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113129092919063ffffffff16565b61108e565b600190509392505050565b6000600560009054906101000a900460ff16905090565b6000610ab3610a17611086565b84610aae8560016000610a28611086565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113d290919063ffffffff16565b61108e565b6001905092915050565b610ac633610b27565b610b1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526035815260200180611fbe6035913960400191505060405180910390fd5b610b248161145a565b50565b6000610b3d8260066114b490919063ffffffff16565b9050919050565b610b55610b4f611086565b82611592565b50565b610b6133610bc1565b610bb6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603781526020018061210d6037913960400191505060405180910390fd5b610bbf3361174a565b565b6000610bd78260076114b490919063ffffffff16565b9050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610c3082826117a4565b5050565b610c3d33610fee565b610c92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526037815260200180611f1d6037913960400191505060405180910390fd5b610c9b81611873565b50565b610ca733610b27565b610cfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526035815260200180611fbe6035913960400191505060405180910390fd5b610d05336118cd565b565b606060048054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610d9f5780601f10610d7457610100808354040283529160200191610d9f565b820191906000526020600020905b815481529060010190602001808311610d8257829003601f168201915b5050505050905090565b6000610e6c610db6611086565b84610e67856040518060600160405280602581526020016121656025913960016000610de0611086565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113129092919063ffffffff16565b61108e565b6001905092915050565b6000610e8a610e83611086565b8484611285565b6001905092915050565b610e9d33610fee565b610ef2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526037815260200180611f1d6037913960400191505060405180910390fd5b610efb33611927565b565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610f8d33610bc1565b610fe2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603781526020018061210d6037913960400191505060405180910390fd5b610feb81611981565b50565b60006110048260096114b490919063ffffffff16565b9050919050565b61101433610fee565b611069576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526037815260200180611f1d6037913960400191505060405180910390fd5b6001600860006101000a81548160ff021916908315150217905550565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611114576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806120e96024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561119a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180611f766022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b61128d610903565b8061129d575061129c83610b27565b5b806112ad57506112ac82610bc1565b5b611302576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806121446021913960400191505060405180910390fd5b61130d8383836119db565b505050565b60008383111582906113bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611384578082015181840152602081019050611369565b50505050905090810190601f1680156113b15780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600080828401905083811015611450576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b61146e816006611c9190919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f5f623b47bfe36aaaf34e1462c270eb404748419392eec3cde90904bd96d90e3460405160405180910390a250565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561153b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061205d6022913960400191505060405180910390fd5b8260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611618576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806120a36021913960400191505060405180910390fd5b61168381604051806060016040528060228152602001611f54602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113129092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506116da81600254611d6c90919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b61175e816007611db690919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f83260bd5cb0f49df24817f246b12eaf6cac3c7667ce1b39ac4f3733dbd378c8360405160405180910390a250565b6117ae8282611592565b61186f826117ba611086565b61186a8460405180606001604052806024815260200161207f60249139600160008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000611820611086565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113129092919063ffffffff16565b61108e565b5050565b611887816009611c9190919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f20b54ba3b54af0ae97076cd941c65ed4fec15c91c8f6faa21ad9379df5cdad7660405160405180910390a250565b6118e1816006611db690919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167fef15eca2e094874c606991ec6bac18e0969b4b5747ac4afb4d007149add9837760405160405180910390a250565b61193b816009611db690919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f9875305e3123604588f12a5ad9f8b6738bfdcde245815243822ded4946eaf8c460405160405180910390a250565b611995816007611c9190919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f13f07a5e41c05094bc8d0f13990d083807823116008d9b6b30245a485aec32db60405160405180910390a250565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611a61576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806120c46025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ae7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180611efa6023913960400191505060405180910390fd5b611b5281604051806060016040528060268152602001611f98602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113129092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611be5816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113d290919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b611c9b82826114b4565b15611d0e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f526f6c65733a206163636f756e7420616c72656164792068617320726f6c650081525060200191505060405180910390fd5b60018260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000611dae83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611312565b905092915050565b611dc082826114b4565b611e15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180611ff36021913960400191505060405180910390fd5b60008260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600080831415611e865760009050611ef3565b6000828402905082848281611e9757fe5b0414611eee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806120146021913960400191505060405180910390fd5b809150505b9291505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737354686973206f7065726174696f6e2063616e20626520706572666f726d6564206279205472616e736665722041646d696e73206f6e6c7945524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636554686973206f7065726174696f6e2063616e20626520706572666f726d65642062792053656e6465722041646d696e73206f6e6c79526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c65536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365526f6c65733a206163636f756e7420697320746865207a65726f206164647265737345524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737354686973206f7065726174696f6e2063616e20626520706572666f726d65642062792052656365697665722041646d696e73206f6e6c79546f6b656e207472616e73666572206973206e6f7420656e61626c65642079657445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa265627a7a72315820a1b7291915d445aad3cc44d4c5329723fe930d4c73f4e7cff3f1d7b0f181347f64736f6c63430005110032
Deployed Bytecode Sourcemap
1153:132:7:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1153:132:7;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1741:81:3;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;1741:81:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3580:149:1;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;3580:149:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;2639:89;;;:::i;:::-;;;;;;;;;;;;;;;;;;;2813:93:4;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;4187:300:1;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;4187:300:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;2569:81:3;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;4882:207:1;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;4882:207:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;2288:105:9;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;2288:105:9;;;;;;;;;;;;;;;;;;;:::i;:::-;;2165:117;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;2165:117:9;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;1528:81:2;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;1528:81:2;;;;;;;;;;;;;;;;;:::i;:::-;;3424:107:9;;;:::i;:::-;;3180:121;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;3180:121:9;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;2786:108:1;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;2786:108:1;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;1666:101:2;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;1666:101:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;4346:113:4;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;4346:113:4;;;;;;;;;;;;;;;;;;;:::i;:::-;;2399:101:9;;;:::i;:::-;;1935:85:3;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;1935:85:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5576:258:1;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;5576:258:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;3097:155;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;3097:155:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;4467:109:4;;;:::i;:::-;;3310:132:1;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;3310:132:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;3307:111:9;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;3307:111:9;;;;;;;;;;;;;;;;;;;:::i;:::-;;4215:123:4;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;4215:123:4;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;2967:90;;;:::i;:::-;;1741:81:3;1778:13;1810:5;1803:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1741:81;:::o;3580:149:1:-;3646:4;3662:39;3671:12;:10;:12::i;:::-;3685:7;3694:6;3662:8;:39::i;:::-;3718:4;3711:11;;3580:149;;;;:::o;2639:89::-;2683:7;2709:12;;2702:19;;2639:89;:::o;2813:93:4:-;2861:4;2885:13;;;;;;;;;;;2878:20;;2813:93;:::o;4187:300:1:-;4276:4;4292:36;4302:6;4310:9;4321:6;4292:9;:36::i;:::-;4338:121;4347:6;4355:12;:10;:12::i;:::-;4369:89;4407:6;4369:89;;;;;;;;;;;;;;;;;:11;:19;4381:6;4369:19;;;;;;;;;;;;;;;:33;4389:12;:10;:12::i;:::-;4369:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;4338:8;:121::i;:::-;4476:4;4469:11;;4187:300;;;;;:::o;2569:81:3:-;2610:5;2634:9;;;;;;;;;;;2627:16;;2569:81;:::o;4882:207:1:-;4962:4;4978:83;4987:12;:10;:12::i;:::-;5001:7;5010:50;5049:10;5010:11;:25;5022:12;:10;:12::i;:::-;5010:25;;;;;;;;;;;;;;;:34;5036:7;5010:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;4978:8;:83::i;:::-;5078:4;5071:11;;4882:207;;;;:::o;2288:105:9:-;2058:25;2072:10;2058:13;:25::i;:::-;2050:91;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2362:24;2378:7;2362:15;:24::i;:::-;2288:105;:::o;2165:117::-;2226:4;2249:26;2267:7;2249:13;:17;;:26;;;;:::i;:::-;2242:33;;2165:117;;;:::o;1528:81:2:-;1575:27;1581:12;:10;:12::i;:::-;1595:6;1575:5;:27::i;:::-;1528:81;:::o;3424:107:9:-;3069:27;3085:10;3069:15;:27::i;:::-;3061:95;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3492:32;3513:10;3492:20;:32::i;:::-;3424:107::o;3180:121::-;3243:4;3266:28;3286:7;3266:15;:19;;:28;;;;:::i;:::-;3259:35;;3180:121;;;:::o;2786:108:1:-;2843:7;2869:9;:18;2879:7;2869:18;;;;;;;;;;;;;;;;2862:25;;2786:108;;;:::o;1666:101:2:-;1734:26;1744:7;1753:6;1734:9;:26::i;:::-;1666:101;;:::o;4346:113:4:-;4100:27;4116:10;4100:15;:27::i;:::-;4092:95;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4425:26;4443:7;4425:17;:26::i;:::-;4346:113;:::o;2399:101:9:-;2058:25;2072:10;2058:13;:25::i;:::-;2050:91;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2463:30;2482:10;2463:18;:30::i;:::-;2399:101::o;1935:85:3:-;1974:13;2006:7;1999:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1935:85;:::o;5576:258:1:-;5661:4;5677:129;5686:12;:10;:12::i;:::-;5700:7;5709:96;5748:15;5709:96;;;;;;;;;;;;;;;;;:11;:25;5721:12;:10;:12::i;:::-;5709:25;;;;;;;;;;;;;;;:34;5735:7;5709:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;5677:8;:129::i;:::-;5823:4;5816:11;;5576:258;;;;:::o;3097:155::-;3166:4;3182:42;3192:12;:10;:12::i;:::-;3206:9;3217:6;3182:9;:42::i;:::-;3241:4;3234:11;;3097:155;;;;:::o;4467:109:4:-;4100:27;4116:10;4100:15;:27::i;:::-;4092:95;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4536:32;4557:10;4536:20;:32::i;:::-;4467:109::o;3310:132:1:-;3382:7;3408:11;:18;3420:5;3408:18;;;;;;;;;;;;;;;:27;3427:7;3408:27;;;;;;;;;;;;;;;;3401:34;;3310:132;;;;:::o;3307:111:9:-;3069:27;3085:10;3069:15;:27::i;:::-;3061:95;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3385:26;3403:7;3385:17;:26::i;:::-;3307:111;:::o;4215:123:4:-;4278:4;4302:28;4322:7;4302:15;:19;;:28;;;;:::i;:::-;4295:35;;4215:123;;;:::o;2967:90::-;4100:27;4116:10;4100:15;:27::i;:::-;4092:95;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3045:4;3029:13;;:20;;;;;;;;;;;;;;;;;;2967:90::o;1885:96:0:-;1930:15;1964:10;1957:17;;1885:96;:::o;8430:332:1:-;8540:1;8523:19;;:5;:19;;;;8515:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8620:1;8601:21;;:7;:21;;;;8593:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8702:6;8672:11;:18;8684:5;8672:18;;;;;;;;;;;;;;;:27;8691:7;8672:27;;;;;;;;;;;;;;;:36;;;;8739:7;8723:32;;8732:5;8723:32;;;8748:6;8723:32;;;;;;;;;;;;;;;;;;8430:332;;;:::o;3360:240:4:-;3448:17;:15;:17::i;:::-;:40;;;;3469:19;3483:4;3469:13;:19::i;:::-;3448:40;:63;;;;3492:19;3508:2;3492:15;:19::i;:::-;3448:63;3440:109;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3560:32;3576:4;3582:2;3586:5;3560:15;:32::i;:::-;3360:240;;;:::o;2829:187:8:-;2915:7;2947:1;2942;:6;;2950:12;2934:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;2934:29:8;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2973:9;2989:1;2985;:5;2973:17;;3008:1;3001:8;;;2829:187;;;;;:::o;1931:176::-;1989:7;2008:9;2024:1;2020;:5;2008:17;;2048:1;2043;:6;;2035:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2099:1;2092:8;;;1931:176;;;;:::o;2506:134:9:-;2567:26;2585:7;2567:13;:17;;:26;;;;:::i;:::-;2625:7;2608:25;;;;;;;;;;;;2506:134;:::o;1876:200:6:-;1948:4;1991:1;1972:21;;:7;:21;;;;1964:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2049:4;:11;;:20;2061:7;2049:20;;;;;;;;;;;;;;;;;;;;;;;;;2042:27;;1876:200;;;;:::o;7663:342:1:-;7757:1;7738:21;;:7;:21;;;;7730:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7829:68;7852:6;7829:68;;;;;;;;;;;;;;;;;:9;:18;7839:7;7829:18;;;;;;;;;;;;;;;;:22;;:68;;;;;:::i;:::-;7808:9;:18;7818:7;7808:18;;;;;;;;;;;;;;;:89;;;;7922:24;7939:6;7922:12;;:16;;:24;;;;:::i;:::-;7907:12;:39;;;;7987:1;7961:37;;7970:7;7961:37;;;7991:6;7961:37;;;;;;;;;;;;;;;;;;7663:342;;:::o;3683:148:9:-;3749:31;3772:7;3749:15;:22;;:31;;;;:::i;:::-;3816:7;3795:29;;;;;;;;;;;;3683:148;:::o;8940:229:1:-;9011:22;9017:7;9026:6;9011:5;:22::i;:::-;9043:119;9052:7;9061:12;:10;:12::i;:::-;9075:86;9114:6;9075:86;;;;;;;;;;;;;;;;;:11;:20;9087:7;9075:20;;;;;;;;;;;;;;;:34;9096:12;:10;:12::i;:::-;9075:34;;;;;;;;;;;;;;;;:38;;:86;;;;;:::i;:::-;9043:8;:119::i;:::-;8940:229;;:::o;4584:143:4:-;4648:28;4668:7;4648:15;:19;;:28;;;;:::i;:::-;4711:7;4692:27;;;;;;;;;;;;4584:143;:::o;2646:142:9:-;2710:29;2731:7;2710:13;:20;;:29;;;;:::i;:::-;2773:7;2754:27;;;;;;;;;;;;2646:142;:::o;4735:151:4:-;4802:31;4825:7;4802:15;:22;;:31;;;;:::i;:::-;4870:7;4849:29;;;;;;;;;;;;4735:151;:::o;3537:140:9:-;3600:28;3620:7;3600:15;:19;;:28;;;;:::i;:::-;3662:7;3643:27;;;;;;;;;;;;3537:140;:::o;6308:464:1:-;6423:1;6405:20;;:6;:20;;;;6397:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6506:1;6485:23;;:9;:23;;;;6477:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6579;6601:6;6579:71;;;;;;;;;;;;;;;;;:9;:17;6589:6;6579:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;6559:9;:17;6569:6;6559:17;;;;;;;;;;;;;;;:91;;;;6683:32;6708:6;6683:9;:20;6693:9;6683:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;6660:9;:20;6670:9;6660:20;;;;;;;;;;;;;;;:55;;;;6747:9;6730:35;;6739:6;6730:35;;;6758:6;6730:35;;;;;;;;;;;;;;;;;;6308:464;;;:::o;1357:175:6:-;1434:18;1438:4;1444:7;1434:3;:18::i;:::-;1433:19;1425:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1521:4;1498;:11;;:20;1510:7;1498:20;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;1357:175;;:::o;2371:134:8:-;2429:7;2455:43;2459:1;2462;2455:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;2448:50;;2371:134;;;;:::o;1607:180:6:-;1686:18;1690:4;1696:7;1686:3;:18::i;:::-;1678:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1775:5;1752:4;:11;;:20;1764:7;1752:20;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;1607:180;;:::o;3256:459:8:-;3314:7;3560:1;3555;:6;3551:45;;;3584:1;3577:8;;;;3551:45;3606:9;3622:1;3618;:5;3606:17;;3650:1;3645;3641;:5;;;;;;:10;3633:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3707:1;3700:8;;;3256:459;;;;;:::o
Swarm Source
bzzr://a1b7291915d445aad3cc44d4c5329723fe930d4c73f4e7cff3f1d7b0f181347f
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.