Latest 25 from a total of 4,286 transactions
| Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
|---|---|---|---|---|---|---|---|---|---|
| Transfer | 23767767 | 1 hr ago | IN | 0 ETH | 0.00001125 | ||||
| Transfer | 23767700 | 2 hrs ago | IN | 0 ETH | 0.00003077 | ||||
| Approve | 23764412 | 13 hrs ago | IN | 0 ETH | 0.00000684 | ||||
| Approve | 23762933 | 18 hrs ago | IN | 0 ETH | 0.00005136 | ||||
| Transfer | 23762318 | 20 hrs ago | IN | 0 ETH | 0.00005679 | ||||
| Transfer | 23759416 | 29 hrs ago | IN | 0 ETH | 0.00000891 | ||||
| Transfer | 23756727 | 38 hrs ago | IN | 0 ETH | 0.0000088 | ||||
| Transfer | 23756629 | 39 hrs ago | IN | 0 ETH | 0.00002908 | ||||
| Transfer | 23755531 | 42 hrs ago | IN | 0 ETH | 0.0000143 | ||||
| Transfer | 23755285 | 43 hrs ago | IN | 0 ETH | 0.00006073 | ||||
| Transfer | 23749156 | 2 days ago | IN | 0 ETH | 0.00016092 | ||||
| Approve | 23749147 | 2 days ago | IN | 0 ETH | 0.00018475 | ||||
| Approve | 23749145 | 2 days ago | IN | 0 ETH | 0.00018582 | ||||
| Transfer | 23747786 | 2 days ago | IN | 0 ETH | 0.00007122 | ||||
| Transfer | 23747489 | 2 days ago | IN | 0 ETH | 0.00018518 | ||||
| Transfer | 23746895 | 2 days ago | IN | 0 ETH | 0.00003928 | ||||
| Transfer | 23746743 | 3 days ago | IN | 0 ETH | 0.0000913 | ||||
| Transfer | 23746598 | 3 days ago | IN | 0 ETH | 0.00004156 | ||||
| Transfer | 23746519 | 3 days ago | IN | 0 ETH | 0.00007338 | ||||
| Transfer | 23746299 | 3 days ago | IN | 0 ETH | 0.00001832 | ||||
| Transfer | 23746250 | 3 days ago | IN | 0 ETH | 0.00004491 | ||||
| Transfer | 23743318 | 3 days ago | IN | 0 ETH | 0.00001531 | ||||
| Transfer | 23741529 | 3 days ago | IN | 0 ETH | 0.00017589 | ||||
| Transfer | 23741454 | 3 days ago | IN | 0 ETH | 0.00019608 | ||||
| Transfer | 23740041 | 3 days ago | IN | 0 ETH | 0.00003802 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
BTSE
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2020-09-02
*/
// contracts/BTSE-ERC20.sol
pragma solidity ^0.6.0;
/**
* @dev Library for managing
* https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
* types.
*
* Sets have the following properties:
*
* - Elements are added, removed, and checked for existence in constant time
* (O(1)).
* - Elements are enumerated in O(n). No guarantees are made on the ordering.
*
* ```
* contract Example {
* // Add the library methods
* using EnumerableSet for EnumerableSet.AddressSet;
*
* // Declare a set state variable
* EnumerableSet.AddressSet private mySet;
* }
* ```
*
* As of v3.0.0, only sets of type `address` (`AddressSet`) and `uint256`
* (`UintSet`) are supported.
*/
library EnumerableSet {
// To implement this library for multiple types with as little code
// repetition as possible, we write it in terms of a generic Set type with
// bytes32 values.
// The Set implementation uses private functions, and user-facing
// implementations (such as AddressSet) are just wrappers around the
// underlying Set.
// This means that we can only create new EnumerableSets for types that fit
// in bytes32.
struct Set {
// Storage of set values
bytes32[] _values;
// Position of the value in the `values` array, plus 1 because index 0
// means a value is not in the set.
mapping (bytes32 => uint256) _indexes;
}
/**
* @dev Add a value to a set. O(1).
*
* Returns true if the value was added to the set, that is if it was not
* already present.
*/
function _add(Set storage set, bytes32 value) private returns (bool) {
if (!_contains(set, value)) {
set._values.push(value);
// The value is stored at length-1, but we add 1 to all indexes
// and use 0 as a sentinel value
set._indexes[value] = set._values.length;
return true;
} else {
return false;
}
}
/**
* @dev Removes a value from a set. O(1).
*
* Returns true if the value was removed from the set, that is if it was
* present.
*/
function _remove(Set storage set, bytes32 value) private returns (bool) {
// We read and store the value's index to prevent multiple reads from the same storage slot
uint256 valueIndex = set._indexes[value];
if (valueIndex != 0) { // Equivalent to contains(set, value)
// To delete an element from the _values array in O(1), we swap the element to delete with the last one in
// the array, and then remove the last element (sometimes called as 'swap and pop').
// This modifies the order of the array, as noted in {at}.
uint256 toDeleteIndex = valueIndex - 1;
uint256 lastIndex = set._values.length - 1;
// When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs
// so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.
bytes32 lastvalue = set._values[lastIndex];
// Move the last value to the index where the value to delete is
set._values[toDeleteIndex] = lastvalue;
// Update the index for the moved value
set._indexes[lastvalue] = toDeleteIndex + 1; // All indexes are 1-based
// Delete the slot where the moved value was stored
set._values.pop();
// Delete the index for the deleted slot
delete set._indexes[value];
return true;
} else {
return false;
}
}
/**
* @dev Returns true if the value is in the set. O(1).
*/
function _contains(Set storage set, bytes32 value) private view returns (bool) {
return set._indexes[value] != 0;
}
/**
* @dev Returns the number of values on the set. O(1).
*/
function _length(Set storage set) private view returns (uint256) {
return set._values.length;
}
/**
* @dev Returns the value stored at position `index` in the set. O(1).
*
* Note that there are no guarantees on the ordering of values inside the
* array, and it may change when more values are added or removed.
*
* Requirements:
*
* - `index` must be strictly less than {length}.
*/
function _at(Set storage set, uint256 index) private view returns (bytes32) {
require(set._values.length > index, "EnumerableSet: index out of bounds");
return set._values[index];
}
// AddressSet
struct AddressSet {
Set _inner;
}
/**
* @dev Add a value to a set. O(1).
*
* Returns true if the value was added to the set, that is if it was not
* already present.
*/
function add(AddressSet storage set, address value) internal returns (bool) {
return _add(set._inner, bytes32(uint256(value)));
}
/**
* @dev Removes a value from a set. O(1).
*
* Returns true if the value was removed from the set, that is if it was
* present.
*/
function remove(AddressSet storage set, address value) internal returns (bool) {
return _remove(set._inner, bytes32(uint256(value)));
}
/**
* @dev Returns true if the value is in the set. O(1).
*/
function contains(AddressSet storage set, address value) internal view returns (bool) {
return _contains(set._inner, bytes32(uint256(value)));
}
/**
* @dev Returns the number of values in the set. O(1).
*/
function length(AddressSet storage set) internal view returns (uint256) {
return _length(set._inner);
}
/**
* @dev Returns the value stored at position `index` in the set. O(1).
*
* Note that there are no guarantees on the ordering of values inside the
* array, and it may change when more values are added or removed.
*
* Requirements:
*
* - `index` must be strictly less than {length}.
*/
function at(AddressSet storage set, uint256 index) internal view returns (address) {
return address(uint256(_at(set._inner, index)));
}
// UintSet
struct UintSet {
Set _inner;
}
/**
* @dev Add a value to a set. O(1).
*
* Returns true if the value was added to the set, that is if it was not
* already present.
*/
function add(UintSet storage set, uint256 value) internal returns (bool) {
return _add(set._inner, bytes32(value));
}
/**
* @dev Removes a value from a set. O(1).
*
* Returns true if the value was removed from the set, that is if it was
* present.
*/
function remove(UintSet storage set, uint256 value) internal returns (bool) {
return _remove(set._inner, bytes32(value));
}
/**
* @dev Returns true if the value is in the set. O(1).
*/
function contains(UintSet storage set, uint256 value) internal view returns (bool) {
return _contains(set._inner, bytes32(value));
}
/**
* @dev Returns the number of values on the set. O(1).
*/
function length(UintSet storage set) internal view returns (uint256) {
return _length(set._inner);
}
/**
* @dev Returns the value stored at position `index` in the set. O(1).
*
* Note that there are no guarantees on the ordering of values inside the
* array, and it may change when more values are added or removed.
*
* Requirements:
*
* - `index` must be strictly less than {length}.
*/
function at(UintSet storage set, uint256 index) internal view returns (uint256) {
return uint256(_at(set._inner, index));
}
}
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*/
function isContract(address account) internal view returns (bool) {
// According to EIP-1052, 0x0 is the value returned for not-yet created accounts
// and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
// for accounts without code, i.e. `keccak256('')`
bytes32 codehash;
bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
// solhint-disable-next-line no-inline-assembly
assembly { codehash := extcodehash(account) }
return (codehash != accountHash && codehash != 0x0);
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
// solhint-disable-next-line avoid-low-level-calls, avoid-call-value
(bool success, ) = recipient.call{ value: amount }("");
require(success, "Address: unable to send value, recipient may have reverted");
}
}
/**
* @dev Wrappers over Solidity's arithmetic operations with added overflow
* checks.
*
* Arithmetic operations in Solidity wrap on overflow. This can easily result
* in bugs, because programmers usually assume that an overflow raises an
* error, which is the standard behavior in high level programming languages.
* `SafeMath` restores this intuition by reverting the transaction when an
* operation overflows.
*
* Using this library instead of the unchecked operations eliminates an entire
* class of bugs, so it's recommended to use it always.
*/
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
* - Addition cannot overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
uint256 c = a + b;
require(c >= a, "SafeMath: addition overflow");
return c;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return sub(a, b, "SafeMath: subtraction overflow");
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b <= a, errorMessage);
uint256 c = a - b;
return c;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
* - Multiplication cannot overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) {
return 0;
}
uint256 c = a * b;
require(c / a == b, "SafeMath: multiplication overflow");
return c;
}
/**
* @dev Returns the integer division of two unsigned integers. Reverts on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return div(a, b, "SafeMath: division by zero");
}
/**
* @dev Returns the integer division of two unsigned integers. Reverts with custom message on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
// Solidity only automatically asserts when dividing by 0
require(b > 0, errorMessage);
uint256 c = a / b;
// assert(a == b * c + a % b); // There is no case in which this doesn't hold
return c;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* Reverts when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
return mod(a, b, "SafeMath: modulo by zero");
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* Reverts with custom message when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b != 0, errorMessage);
return a % b;
}
}
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `recipient`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address recipient, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `sender` to `recipient` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
}
/**
* @title Initializable
*
* @dev Helper contract to support initializer functions. To use it, replace
* the constructor with a function that has the `initializer` modifier.
* WARNING: Unlike constructors, initializer functions must be manually
* invoked. This applies both to deploying an Initializable contract, as well
* as extending an Initializable contract via inheritance.
* WARNING: When used with inheritance, manual care must be taken to not invoke
* a parent initializer twice, or ensure that all initializers are idempotent,
* because this is not dealt with automatically as with constructors.
*/
contract Initializable {
/**
* @dev Indicates that the contract has been initialized.
*/
bool private initialized;
/**
* @dev Indicates that the contract is in the process of being initialized.
*/
bool private initializing;
/**
* @dev Modifier to use in the initializer function of a contract.
*/
modifier initializer() {
require(initializing || isConstructor() || !initialized, "Contract instance has already been initialized");
bool isTopLevelCall = !initializing;
if (isTopLevelCall) {
initializing = true;
initialized = true;
}
_;
if (isTopLevelCall) {
initializing = false;
}
}
/// @dev Returns true if and only if the function is running in the constructor
function isConstructor() private view returns (bool) {
// extcodesize checks the size of the code stored in an address, and
// address returns the current address. Since the code is still not
// deployed when running a constructor, any checks on its code size will
// yield zero, making it an effective way to detect if a contract is
// under construction or not.
address self = address(this);
uint256 cs;
assembly { cs := extcodesize(self) }
return cs == 0;
}
// Reserved storage space to allow for layout changes in the future.
uint256[50] private ______gap;
}
/*
* @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 ContextUpgradeSafe is Initializable {
// Empty internal constructor, to prevent people from mistakenly deploying
// an instance of this contract, which should be used via inheritance.
function __Context_init() internal initializer {
__Context_init_unchained();
}
function __Context_init_unchained() internal initializer {
}
function _msgSender() internal view virtual returns (address payable) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes memory) {
this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
return msg.data;
}
uint256[50] private __gap;
}
/**
* @dev Contract module that allows children to implement role-based access
* control mechanisms.
*
* Roles are referred to by their `bytes32` identifier. These should be exposed
* in the external API and be unique. The best way to achieve this is by
* using `public constant` hash digests:
*
* ```
* bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
* ```
*
* Roles can be used to represent a set of permissions. To restrict access to a
* function call, use {hasRole}:
*
* ```
* function foo() public {
* require(hasRole(MY_ROLE, _msgSender()));
* ...
* }
* ```
*
* Roles can be granted and revoked dynamically via the {grantRole} and
* {revokeRole} functions. Each role has an associated admin role, and only
* accounts that have a role's admin role can call {grantRole} and {revokeRole}.
*
* By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
* that only accounts with this role will be able to grant or revoke other
* roles. More complex role relationships can be created by using
* {_setRoleAdmin}.
*/
abstract contract AccessControlUpgradeSafe is Initializable, ContextUpgradeSafe {
function __AccessControl_init() internal initializer {
__Context_init_unchained();
__AccessControl_init_unchained();
}
function __AccessControl_init_unchained() internal initializer {
}
using EnumerableSet for EnumerableSet.AddressSet;
using Address for address;
struct RoleData {
EnumerableSet.AddressSet members;
bytes32 adminRole;
}
mapping (bytes32 => RoleData) private _roles;
bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;
/**
* @dev Emitted when `account` is granted `role`.
*
* `sender` is the account that originated the contract call, an admin role
* bearer except when using {_setupRole}.
*/
event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);
/**
* @dev Emitted when `account` is revoked `role`.
*
* `sender` is the account that originated the contract call:
* - if using `revokeRole`, it is the admin role bearer
* - if using `renounceRole`, it is the role bearer (i.e. `account`)
*/
event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);
/**
* @dev Returns `true` if `account` has been granted `role`.
*/
function hasRole(bytes32 role, address account) public view returns (bool) {
return _roles[role].members.contains(account);
}
/**
* @dev Returns the number of accounts that have `role`. Can be used
* together with {getRoleMember} to enumerate all bearers of a role.
*/
function getRoleMemberCount(bytes32 role) public view returns (uint256) {
return _roles[role].members.length();
}
/**
* @dev Returns one of the accounts that have `role`. `index` must be a
* value between 0 and {getRoleMemberCount}, non-inclusive.
*
* Role bearers are not sorted in any particular way, and their ordering may
* change at any point.
*
* WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure
* you perform all queries on the same block. See the following
* https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post]
* for more information.
*/
function getRoleMember(bytes32 role, uint256 index) public view returns (address) {
return _roles[role].members.at(index);
}
/**
* @dev Returns the admin role that controls `role`. See {grantRole} and
* {revokeRole}.
*
* To change a role's admin, use {_setRoleAdmin}.
*/
function getRoleAdmin(bytes32 role) public view returns (bytes32) {
return _roles[role].adminRole;
}
/**
* @dev Grants `role` to `account`.
*
* If `account` had not been already granted `role`, emits a {RoleGranted}
* event.
*
* Requirements:
*
* - the caller must have ``role``'s admin role.
*/
function grantRole(bytes32 role, address account) public virtual {
require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to grant");
_grantRole(role, account);
}
/**
* @dev Revokes `role` from `account`.
*
* If `account` had been granted `role`, emits a {RoleRevoked} event.
*
* Requirements:
*
* - the caller must have ``role``'s admin role.
*/
function revokeRole(bytes32 role, address account) public virtual {
require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to revoke");
_revokeRole(role, account);
}
/**
* @dev Revokes `role` from the calling account.
*
* Roles are often managed via {grantRole} and {revokeRole}: this function's
* purpose is to provide a mechanism for accounts to lose their privileges
* if they are compromised (such as when a trusted device is misplaced).
*
* If the calling account had been granted `role`, emits a {RoleRevoked}
* event.
*
* Requirements:
*
* - the caller must be `account`.
*/
function renounceRole(bytes32 role, address account) public virtual {
require(account == _msgSender(), "AccessControl: can only renounce roles for self");
_revokeRole(role, account);
}
/**
* @dev Grants `role` to `account`.
*
* If `account` had not been already granted `role`, emits a {RoleGranted}
* event. Note that unlike {grantRole}, this function doesn't perform any
* checks on the calling account.
*
* [WARNING]
* ====
* This function should only be called from the constructor when setting
* up the initial roles for the system.
*
* Using this function in any other way is effectively circumventing the admin
* system imposed by {AccessControl}.
* ====
*/
function _setupRole(bytes32 role, address account) internal virtual {
_grantRole(role, account);
}
/**
* @dev Sets `adminRole` as ``role``'s admin role.
*/
function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
_roles[role].adminRole = adminRole;
}
function _grantRole(bytes32 role, address account) private {
if (_roles[role].members.add(account)) {
emit RoleGranted(role, account, _msgSender());
}
}
function _revokeRole(bytes32 role, address account) private {
if (_roles[role].members.remove(account)) {
emit RoleRevoked(role, account, _msgSender());
}
}
uint256[49] private __gap;
}
/**
* @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 PausableUpgradeSafe is Initializable, ContextUpgradeSafe {
/**
* @dev Emitted when the pause is triggered by `account`.
*/
event Paused(address account);
/**
* @dev Emitted when the pause is lifted by `account`.
*/
event Unpaused(address account);
bool private _paused;
/**
* @dev Initializes the contract in unpaused state.
*/
function __Pausable_init() internal initializer {
__Context_init_unchained();
__Pausable_init_unchained();
}
function __Pausable_init_unchained() internal initializer {
_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 Triggers stopped state.
*/
function _pause() internal virtual whenNotPaused {
_paused = true;
emit Paused(_msgSender());
}
/**
* @dev Returns to normal state.
*/
function _unpause() internal virtual whenPaused {
_paused = false;
emit Unpaused(_msgSender());
}
uint256[49] private __gap;
}
/**
* @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 {ERC20MinterPauser}.
*
* 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 ERC20UpgradeSafe is Initializable, ContextUpgradeSafe, IERC20 {
using SafeMath for uint256;
using Address for address;
mapping (address => uint256) private _balances;
mapping (address => mapping (address => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
uint8 private _decimals;
/**
* @dev Sets the values for {name} and {symbol}, initializes {decimals} with
* a default value of 18.
*
* To select a different value for {decimals}, use {_setupDecimals}.
*
* All three of these values are immutable: they can only be set once during
* construction.
*/
function __ERC20_init(string memory name, string memory symbol) internal initializer {
__Context_init_unchained();
__ERC20_init_unchained(name, symbol);
}
function __ERC20_init_unchained(string memory name, string memory symbol) internal initializer {
_name = name;
_symbol = symbol;
_decimals = 18;
}
/**
* @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. This is the value {ERC20} uses, unless {_setupDecimals} is
* called.
*
* 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;
}
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view override returns (uint256) {
return _totalSupply;
}
/**
* @dev See {IERC20-balanceOf}.
*/
function balanceOf(address account) public view override 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 virtual override returns (bool) {
_transfer(_msgSender(), recipient, amount);
return true;
}
/**
* @dev See {IERC20-allowance}.
*/
function allowance(address owner, address spender) public view virtual override returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {IERC20-approve}.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 amount) public virtual override 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 virtual override 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 virtual 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 virtual 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 virtual {
require(sender != address(0), "ERC20: transfer from the zero address");
require(recipient != address(0), "ERC20: transfer to the zero address");
_beforeTokenTransfer(sender, recipient, amount);
_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 virtual {
require(account != address(0), "ERC20: mint to the zero address");
_beforeTokenTransfer(address(0), account, amount);
_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 virtual {
require(account != address(0), "ERC20: burn from the zero address");
_beforeTokenTransfer(account, address(0), amount);
_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 virtual {
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 Sets {decimals} to a value other than the default one of 18.
*
* WARNING: This function should only be called from the constructor. Most
* applications that interact with token contracts will not expect
* {decimals} to ever change, and may work incorrectly if it does.
*/
function _setupDecimals(uint8 decimals_) internal {
_decimals = decimals_;
}
/**
* @dev Hook that is called before any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* will be to transferred to `to`.
* - when `from` is zero, `amount` tokens will be minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { }
uint256[44] private __gap;
}
/**
* @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).
*/
abstract contract ERC20BurnableUpgradeSafe is Initializable, ContextUpgradeSafe, ERC20UpgradeSafe {
function __ERC20Burnable_init() internal initializer {
__Context_init_unchained();
__ERC20Burnable_init_unchained();
}
function __ERC20Burnable_init_unchained() internal initializer {
}
/**
* @dev Destroys `amount` tokens from the caller.
*
* See {ERC20-_burn}.
*/
function burn(uint256 amount) public virtual {
_burn(_msgSender(), amount);
}
/**
* @dev Destroys `amount` tokens from `account`, deducting from the caller's
* allowance.
*
* See {ERC20-_burn} and {ERC20-allowance}.
*
* Requirements:
*
* - the caller must have allowance for ``accounts``'s tokens of at least
* `amount`.
*/
function burnFrom(address account, uint256 amount) public virtual {
uint256 decreasedAllowance = allowance(account, _msgSender()).sub(amount, "ERC20: burn amount exceeds allowance");
_approve(account, _msgSender(), decreasedAllowance);
_burn(account, amount);
}
uint256[50] private __gap;
}
/**
* @dev ERC20 token with pausable token transfers, minting and burning.
*
* Useful for scenarios such as preventing trades until the end of an evaluation
* period, or having an emergency switch for freezing all token transfers in the
* event of a large bug.
*/
abstract contract ERC20PausableUpgradeSafe is Initializable, ERC20UpgradeSafe, PausableUpgradeSafe {
function __ERC20Pausable_init() internal initializer {
__Context_init_unchained();
__Pausable_init_unchained();
__ERC20Pausable_init_unchained();
}
function __ERC20Pausable_init_unchained() internal initializer {
}
/**
* @dev See {ERC20-_beforeTokenTransfer}.
*
* Requirements:
*
* - the contract must not be paused.
*/
function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override {
super._beforeTokenTransfer(from, to, amount);
require(!paused(), "ERC20Pausable: token transfer while paused");
}
uint256[50] private __gap;
}
contract BTSE is Initializable, ContextUpgradeSafe, AccessControlUpgradeSafe, ERC20BurnableUpgradeSafe, ERC20PausableUpgradeSafe {
bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");
bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE");
bytes32 public constant BURNER_ROLE = keccak256("BURNER_ROLE");
function initialize(string memory name, string memory symbol, address admin) public {
__BTSE_init(name, symbol, admin);
}
function __BTSE_init(string memory name, string memory symbol, address admin) internal initializer {
__Context_init_unchained();
__AccessControl_init_unchained();
__ERC20_init_unchained(name, symbol);
__ERC20Burnable_init_unchained();
__Pausable_init_unchained();
__ERC20Pausable_init_unchained();
__BTSE_init_unchained(name, symbol, admin);
}
function __BTSE_init_unchained(string memory name, string memory symbol, address admin) internal initializer {
_setupRole(DEFAULT_ADMIN_ROLE, admin);
_setupRole(MINTER_ROLE, admin);
_setupRole(BURNER_ROLE, admin);
_setupRole(PAUSER_ROLE, admin);
_setupDecimals(8);
}
/**
* @dev Destroys `amount` tokens for `from`.
*
* See {ERC20-_burn}.
*
* Requirements:
*
* - the caller must have the `BURNER_ROLE`.
*/
function burn(address from, uint256 amount) public {
require(hasRole(BURNER_ROLE, msg.sender), "BTSE: must have burner role to burn"); // _msgSender() ?
_burn(from, amount);
}
/**
* @dev Creates `amount` new tokens for `to`.
*
* See {ERC20-_mint}.
*
* Requirements:
*
* - the caller must have the `MINTER_ROLE`.
*/
function mint(address to, uint256 amount) public {
require(hasRole(MINTER_ROLE, msg.sender), "BTSE: must have minter role to mint");
_mint(to, amount);
}
/**
* @dev Pauses all token transfers.
*
* See {ERC20Pausable} and {Pausable-_pause}.
*
* Requirements:
*
* - the caller must have the `PAUSER_ROLE`.
*/
function pause() public {
require(hasRole(PAUSER_ROLE, msg.sender), "BTSE: must have pauser role to pause");
_pause();
}
/**
* @dev Unpauses all token transfers.
*
* See {ERC20Pausable} and {Pausable-_unpause}.
*
* Requirements:
*
* - the caller must have the `PAUSER_ROLE`.
*/
function unpause() public {
require(hasRole(PAUSER_ROLE, msg.sender), "BTSE: must have pauser role to unpause");
_unpause();
}
function _beforeTokenTransfer(address from, address to, uint256 amount) internal override(ERC20UpgradeSafe, ERC20PausableUpgradeSafe) {
super._beforeTokenTransfer(from, to, amount);
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"BURNER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAUSER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"address","name":"admin","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
608060405234801561001057600080fd5b5061335a806100206000396000f3fe608060405234801561001057600080fd5b50600436106101da5760003560e01c806370a0823111610104578063a217fddf116100a2578063d539139311610071578063d539139314610a70578063d547741f14610a8e578063dd62ed3e14610adc578063e63ab1e914610b54576101da565b8063a217fddf14610948578063a457c2d714610966578063a9059cbb146109ca578063ca15c87314610a2e576101da565b80639010d07c116100de5780639010d07c146107b157806391d148541461081357806395d89b41146108775780639dc29fac146108fa576101da565b806370a082311461070157806379cc6790146107595780638456cb59146107a7576101da565b80632f2ff15d1161017c5780633f4ba83a1161014b5780633f4ba83a1461065b57806340c10f191461066557806342966c68146106b35780635c975abb146106e1576101da565b80632f2ff15d1461053a578063313ce5671461058857806336568abe146105a957806339509351146105f7576101da565b806318160ddd116101b857806318160ddd1461043857806323b872dd14610456578063248a9ca3146104da578063282c51f31461051c576101da565b806306fdde03146101df578063077f224a14610262578063095ea7b3146103d4575b600080fd5b6101e7610b72565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561022757808201518184015260208101905061020c565b50505050905090810190601f1680156102545780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6103d26004803603606081101561027857600080fd5b810190808035906020019064010000000081111561029557600080fd5b8201836020820111156102a757600080fd5b803590602001918460018302840111640100000000831117156102c957600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192908035906020019064010000000081111561032c57600080fd5b82018360208201111561033e57600080fd5b8035906020019184600183028401116401000000008311171561036057600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610c14565b005b610420600480360360408110156103ea57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610c24565b60405180821515815260200191505060405180910390f35b610440610c42565b6040518082815260200191505060405180910390f35b6104c26004803603606081101561046c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610c4c565b60405180821515815260200191505060405180910390f35b610506600480360360208110156104f057600080fd5b8101908080359060200190929190505050610d25565b6040518082815260200191505060405180910390f35b610524610d45565b6040518082815260200191505060405180910390f35b6105866004803603604081101561055057600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610d69565b005b610590610df3565b604051808260ff16815260200191505060405180910390f35b6105f5600480360360408110156105bf57600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610e0a565b005b6106436004803603604081101561060d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610ea3565b60405180821515815260200191505060405180910390f35b610663610f56565b005b6106b16004803603604081101561067b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610fdf565b005b6106df600480360360208110156106c957600080fd5b810190808035906020019092919050505061106c565b005b6106e9611080565b60405180821515815260200191505060405180910390f35b6107436004803603602081101561071757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611097565b6040518082815260200191505060405180910390f35b6107a56004803603604081101561076f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506110e0565b005b6107af611142565b005b6107e7600480360360408110156107c757600080fd5b8101908080359060200190929190803590602001909291905050506111cb565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61085f6004803603604081101561082957600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506111fd565b60405180821515815260200191505060405180910390f35b61087f61122f565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156108bf5780820151818401526020810190506108a4565b50505050905090810190601f1680156108ec5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6109466004803603604081101561091057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506112d1565b005b61095061135e565b6040518082815260200191505060405180910390f35b6109b26004803603604081101561097c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611365565b60405180821515815260200191505060405180910390f35b610a16600480360360408110156109e057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611432565b60405180821515815260200191505060405180910390f35b610a5a60048036036020811015610a4457600080fd5b8101908080359060200190929190505050611450565b6040518082815260200191505060405180910390f35b610a78611477565b6040518082815260200191505060405180910390f35b610ada60048036036040811015610aa457600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061149b565b005b610b3e60048036036040811015610af257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611525565b6040518082815260200191505060405180910390f35b610b5c6115ac565b6040518082815260200191505060405180910390f35b6060609a8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610c0a5780601f10610bdf57610100808354040283529160200191610c0a565b820191906000526020600020905b815481529060010190602001808311610bed57829003601f168201915b5050505050905090565b610c1f8383836115d0565b505050565b6000610c38610c3161170e565b8484611716565b6001905092915050565b6000609954905090565b6000610c5984848461190d565b610d1a84610c6561170e565b610d15856040518060600160405280602881526020016131a060289139609860008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610ccb61170e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611bd29092919063ffffffff16565b611716565b600190509392505050565b600060656000838152602001908152602001600020600201549050919050565b7f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a84881565b610d906065600084815260200190815260200160002060020154610d8b61170e565b6111fd565b610de5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180613090602f913960400191505060405180910390fd5b610def8282611c92565b5050565b6000609c60009054906101000a900460ff16905090565b610e1261170e565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610e95576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f8152602001806132cc602f913960400191505060405180910390fd5b610e9f8282611d26565b5050565b6000610f4c610eb061170e565b84610f478560986000610ec161170e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611dba90919063ffffffff16565b611716565b6001905092915050565b610f807f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a336111fd565b610fd5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061306a6026913960400191505060405180910390fd5b610fdd611e42565b565b6110097f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6336111fd565b61105e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602381526020018061323b6023913960400191505060405180910390fd5b6110688282611f35565b5050565b61107d61107761170e565b826120fe565b50565b600060fb60009054906101000a900460ff16905090565b6000609760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600061111f826040518060600160405280602481526020016131f6602491396111108661110b61170e565b611525565b611bd29092919063ffffffff16565b90506111338361112d61170e565b83611716565b61113d83836120fe565b505050565b61116c7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a336111fd565b6111c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806131046024913960400191505060405180910390fd5b6111c96122c4565b565b60006111f582606560008681526020019081526020016000206000016123b890919063ffffffff16565b905092915050565b600061122782606560008681526020019081526020016000206000016123d290919063ffffffff16565b905092915050565b6060609b8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156112c75780601f1061129c576101008083540402835291602001916112c7565b820191906000526020600020905b8154815290600101906020018083116112aa57829003601f168201915b5050505050905090565b6112fb7f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a848336111fd565b611350576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806130e16023913960400191505060405180910390fd5b61135a82826120fe565b5050565b6000801b81565b600061142861137261170e565b84611423856040518060600160405280602581526020016132a7602591396098600061139c61170e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611bd29092919063ffffffff16565b611716565b6001905092915050565b600061144661143f61170e565b848461190d565b6001905092915050565b600061147060656000848152602001908152602001600020600001612402565b9050919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b6114c260656000848152602001908152602001600020600201546114bd61170e565b6111fd565b611517576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806131706030913960400191505060405180910390fd5b6115218282611d26565b5050565b6000609860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b600060019054906101000a900460ff16806115ef57506115ee612417565b5b80611605575060008054906101000a900460ff16155b61165a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e8152602001806131c8602e913960400191505060405180910390fd5b60008060019054906101000a900460ff1615905080156116aa576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b6116b261242e565b6116ba61252c565b6116c4848461262a565b6116cc612774565b6116d4612872565b6116dc61298b565b6116e7848484612a89565b80156117085760008060016101000a81548160ff0219169083151502179055505b50505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561179c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806132836024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611822576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806131286022913960400191505060405180910390fd5b80609860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611993576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602581526020018061325e6025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a19576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806130476023913960400191505060405180910390fd5b611a24838383612c1f565b611a908160405180606001604052806026815260200161314a60269139609760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611bd29092919063ffffffff16565b609760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611b2581609760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611dba90919063ffffffff16565b609760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b6000838311158290611c7f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611c44578082015181840152602081019050611c29565b50505050905090810190601f168015611c715780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b611cba8160656000858152602001908152602001600020600001612c2f90919063ffffffff16565b15611d2257611cc761170e565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b611d4e8160656000858152602001908152602001600020600001612c5f90919063ffffffff16565b15611db657611d5b61170e565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b600080828401905083811015611e38576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b60fb60009054906101000a900460ff16611ec4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f5061757361626c653a206e6f742070617573656400000000000000000000000081525060200191505060405180910390fd5b600060fb60006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611f0861170e565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fd8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b611fe460008383612c1f565b611ff981609954611dba90919063ffffffff16565b60998190555061205181609760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611dba90919063ffffffff16565b609760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612184576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061321a6021913960400191505060405180910390fd5b61219082600083612c1f565b6121fc816040518060600160405280602281526020016130bf60229139609760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611bd29092919063ffffffff16565b609760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061225481609954612c8f90919063ffffffff16565b609981905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b60fb60009054906101000a900460ff1615612347576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b600160fb60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861238b61170e565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b60006123c78360000183612cd9565b60001c905092915050565b60006123fa836000018373ffffffffffffffffffffffffffffffffffffffff1660001b612d5c565b905092915050565b600061241082600001612d7f565b9050919050565b6000803090506000813b9050600081149250505090565b600060019054906101000a900460ff168061244d575061244c612417565b5b80612463575060008054906101000a900460ff16155b6124b8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e8152602001806131c8602e913960400191505060405180910390fd5b60008060019054906101000a900460ff161590508015612508576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b80156125295760008060016101000a81548160ff0219169083151502179055505b50565b600060019054906101000a900460ff168061254b575061254a612417565b5b80612561575060008054906101000a900460ff16155b6125b6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e8152602001806131c8602e913960400191505060405180910390fd5b60008060019054906101000a900460ff161590508015612606576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b80156126275760008060016101000a81548160ff0219169083151502179055505b50565b600060019054906101000a900460ff16806126495750612648612417565b5b8061265f575060008054906101000a900460ff16155b6126b4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e8152602001806131c8602e913960400191505060405180910390fd5b60008060019054906101000a900460ff161590508015612704576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b82609a908051906020019061271a929190612f87565b5081609b9080519060200190612731929190612f87565b506012609c60006101000a81548160ff021916908360ff160217905550801561276f5760008060016101000a81548160ff0219169083151502179055505b505050565b600060019054906101000a900460ff16806127935750612792612417565b5b806127a9575060008054906101000a900460ff16155b6127fe576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e8152602001806131c8602e913960400191505060405180910390fd5b60008060019054906101000a900460ff16159050801561284e576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b801561286f5760008060016101000a81548160ff0219169083151502179055505b50565b600060019054906101000a900460ff16806128915750612890612417565b5b806128a7575060008054906101000a900460ff16155b6128fc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e8152602001806131c8602e913960400191505060405180910390fd5b60008060019054906101000a900460ff16159050801561294c576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b600060fb60006101000a81548160ff02191690831515021790555080156129885760008060016101000a81548160ff0219169083151502179055505b50565b600060019054906101000a900460ff16806129aa57506129a9612417565b5b806129c0575060008054906101000a900460ff16155b612a15576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e8152602001806131c8602e913960400191505060405180910390fd5b60008060019054906101000a900460ff161590508015612a65576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b8015612a865760008060016101000a81548160ff0219169083151502179055505b50565b600060019054906101000a900460ff1680612aa85750612aa7612417565b5b80612abe575060008054906101000a900460ff16155b612b13576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e8152602001806131c8602e913960400191505060405180910390fd5b60008060019054906101000a900460ff161590508015612b63576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b612b706000801b83612d90565b612b9a7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a683612d90565b612bc47f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a84883612d90565b612bee7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a83612d90565b612bf86008612d9e565b8015612c195760008060016101000a81548160ff0219169083151502179055505b50505050565b612c2a838383612dbc565b505050565b6000612c57836000018373ffffffffffffffffffffffffffffffffffffffff1660001b612e2a565b905092915050565b6000612c87836000018373ffffffffffffffffffffffffffffffffffffffff1660001b612e9a565b905092915050565b6000612cd183836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611bd2565b905092915050565b600081836000018054905011612d3a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806130256022913960400191505060405180910390fd5b826000018281548110612d4957fe5b9060005260206000200154905092915050565b600080836001016000848152602001908152602001600020541415905092915050565b600081600001805490509050919050565b612d9a8282611c92565b5050565b80609c60006101000a81548160ff021916908360ff16021790555050565b612dc7838383612f82565b612dcf611080565b15612e25576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806132fb602a913960400191505060405180910390fd5b505050565b6000612e368383612d5c565b612e8f578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050612e94565b600090505b92915050565b60008083600101600084815260200190815260200160002054905060008114612f765760006001820390506000600186600001805490500390506000866000018281548110612ee557fe5b9060005260206000200154905080876000018481548110612f0257fe5b9060005260206000200181905550600183018760010160008381526020019081526020016000208190555086600001805480612f3a57fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050612f7c565b60009150505b92915050565b505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10612fc857805160ff1916838001178555612ff6565b82800160010185558215612ff6579182015b82811115612ff5578251825591602001919060010190612fda565b5b5090506130039190613007565b5090565b5b80821115613020576000816000905550600101613008565b509056fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e647345524332303a207472616e7366657220746f20746865207a65726f2061646472657373425453453a206d75737420686176652070617573657220726f6c6520746f20756e7061757365416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f206772616e7445524332303a206275726e20616d6f756e7420657863656564732062616c616e6365425453453a206d7573742068617665206275726e657220726f6c6520746f206275726e425453453a206d75737420686176652070617573657220726f6c6520746f20706175736545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f207265766f6b6545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365436f6e747261637420696e7374616e63652068617320616c7265616479206265656e20696e697469616c697a656445524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f2061646472657373425453453a206d7573742068617665206d696e74657220726f6c6520746f206d696e7445524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636520726f6c657320666f722073656c6645524332305061757361626c653a20746f6b656e207472616e73666572207768696c6520706175736564a2646970667358221220b413092c3a0cf1c6f7ff6a237de37dcff11462f912a9055654c66dd78273643664736f6c634300060c0033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101da5760003560e01c806370a0823111610104578063a217fddf116100a2578063d539139311610071578063d539139314610a70578063d547741f14610a8e578063dd62ed3e14610adc578063e63ab1e914610b54576101da565b8063a217fddf14610948578063a457c2d714610966578063a9059cbb146109ca578063ca15c87314610a2e576101da565b80639010d07c116100de5780639010d07c146107b157806391d148541461081357806395d89b41146108775780639dc29fac146108fa576101da565b806370a082311461070157806379cc6790146107595780638456cb59146107a7576101da565b80632f2ff15d1161017c5780633f4ba83a1161014b5780633f4ba83a1461065b57806340c10f191461066557806342966c68146106b35780635c975abb146106e1576101da565b80632f2ff15d1461053a578063313ce5671461058857806336568abe146105a957806339509351146105f7576101da565b806318160ddd116101b857806318160ddd1461043857806323b872dd14610456578063248a9ca3146104da578063282c51f31461051c576101da565b806306fdde03146101df578063077f224a14610262578063095ea7b3146103d4575b600080fd5b6101e7610b72565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561022757808201518184015260208101905061020c565b50505050905090810190601f1680156102545780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6103d26004803603606081101561027857600080fd5b810190808035906020019064010000000081111561029557600080fd5b8201836020820111156102a757600080fd5b803590602001918460018302840111640100000000831117156102c957600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192908035906020019064010000000081111561032c57600080fd5b82018360208201111561033e57600080fd5b8035906020019184600183028401116401000000008311171561036057600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610c14565b005b610420600480360360408110156103ea57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610c24565b60405180821515815260200191505060405180910390f35b610440610c42565b6040518082815260200191505060405180910390f35b6104c26004803603606081101561046c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610c4c565b60405180821515815260200191505060405180910390f35b610506600480360360208110156104f057600080fd5b8101908080359060200190929190505050610d25565b6040518082815260200191505060405180910390f35b610524610d45565b6040518082815260200191505060405180910390f35b6105866004803603604081101561055057600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610d69565b005b610590610df3565b604051808260ff16815260200191505060405180910390f35b6105f5600480360360408110156105bf57600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610e0a565b005b6106436004803603604081101561060d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610ea3565b60405180821515815260200191505060405180910390f35b610663610f56565b005b6106b16004803603604081101561067b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610fdf565b005b6106df600480360360208110156106c957600080fd5b810190808035906020019092919050505061106c565b005b6106e9611080565b60405180821515815260200191505060405180910390f35b6107436004803603602081101561071757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611097565b6040518082815260200191505060405180910390f35b6107a56004803603604081101561076f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506110e0565b005b6107af611142565b005b6107e7600480360360408110156107c757600080fd5b8101908080359060200190929190803590602001909291905050506111cb565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61085f6004803603604081101561082957600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506111fd565b60405180821515815260200191505060405180910390f35b61087f61122f565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156108bf5780820151818401526020810190506108a4565b50505050905090810190601f1680156108ec5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6109466004803603604081101561091057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506112d1565b005b61095061135e565b6040518082815260200191505060405180910390f35b6109b26004803603604081101561097c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611365565b60405180821515815260200191505060405180910390f35b610a16600480360360408110156109e057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611432565b60405180821515815260200191505060405180910390f35b610a5a60048036036020811015610a4457600080fd5b8101908080359060200190929190505050611450565b6040518082815260200191505060405180910390f35b610a78611477565b6040518082815260200191505060405180910390f35b610ada60048036036040811015610aa457600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061149b565b005b610b3e60048036036040811015610af257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611525565b6040518082815260200191505060405180910390f35b610b5c6115ac565b6040518082815260200191505060405180910390f35b6060609a8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610c0a5780601f10610bdf57610100808354040283529160200191610c0a565b820191906000526020600020905b815481529060010190602001808311610bed57829003601f168201915b5050505050905090565b610c1f8383836115d0565b505050565b6000610c38610c3161170e565b8484611716565b6001905092915050565b6000609954905090565b6000610c5984848461190d565b610d1a84610c6561170e565b610d15856040518060600160405280602881526020016131a060289139609860008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610ccb61170e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611bd29092919063ffffffff16565b611716565b600190509392505050565b600060656000838152602001908152602001600020600201549050919050565b7f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a84881565b610d906065600084815260200190815260200160002060020154610d8b61170e565b6111fd565b610de5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180613090602f913960400191505060405180910390fd5b610def8282611c92565b5050565b6000609c60009054906101000a900460ff16905090565b610e1261170e565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610e95576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f8152602001806132cc602f913960400191505060405180910390fd5b610e9f8282611d26565b5050565b6000610f4c610eb061170e565b84610f478560986000610ec161170e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611dba90919063ffffffff16565b611716565b6001905092915050565b610f807f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a336111fd565b610fd5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061306a6026913960400191505060405180910390fd5b610fdd611e42565b565b6110097f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6336111fd565b61105e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602381526020018061323b6023913960400191505060405180910390fd5b6110688282611f35565b5050565b61107d61107761170e565b826120fe565b50565b600060fb60009054906101000a900460ff16905090565b6000609760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600061111f826040518060600160405280602481526020016131f6602491396111108661110b61170e565b611525565b611bd29092919063ffffffff16565b90506111338361112d61170e565b83611716565b61113d83836120fe565b505050565b61116c7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a336111fd565b6111c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806131046024913960400191505060405180910390fd5b6111c96122c4565b565b60006111f582606560008681526020019081526020016000206000016123b890919063ffffffff16565b905092915050565b600061122782606560008681526020019081526020016000206000016123d290919063ffffffff16565b905092915050565b6060609b8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156112c75780601f1061129c576101008083540402835291602001916112c7565b820191906000526020600020905b8154815290600101906020018083116112aa57829003601f168201915b5050505050905090565b6112fb7f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a848336111fd565b611350576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806130e16023913960400191505060405180910390fd5b61135a82826120fe565b5050565b6000801b81565b600061142861137261170e565b84611423856040518060600160405280602581526020016132a7602591396098600061139c61170e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611bd29092919063ffffffff16565b611716565b6001905092915050565b600061144661143f61170e565b848461190d565b6001905092915050565b600061147060656000848152602001908152602001600020600001612402565b9050919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b6114c260656000848152602001908152602001600020600201546114bd61170e565b6111fd565b611517576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806131706030913960400191505060405180910390fd5b6115218282611d26565b5050565b6000609860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b600060019054906101000a900460ff16806115ef57506115ee612417565b5b80611605575060008054906101000a900460ff16155b61165a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e8152602001806131c8602e913960400191505060405180910390fd5b60008060019054906101000a900460ff1615905080156116aa576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b6116b261242e565b6116ba61252c565b6116c4848461262a565b6116cc612774565b6116d4612872565b6116dc61298b565b6116e7848484612a89565b80156117085760008060016101000a81548160ff0219169083151502179055505b50505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561179c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806132836024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611822576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806131286022913960400191505060405180910390fd5b80609860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611993576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602581526020018061325e6025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a19576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806130476023913960400191505060405180910390fd5b611a24838383612c1f565b611a908160405180606001604052806026815260200161314a60269139609760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611bd29092919063ffffffff16565b609760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611b2581609760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611dba90919063ffffffff16565b609760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b6000838311158290611c7f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611c44578082015181840152602081019050611c29565b50505050905090810190601f168015611c715780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b611cba8160656000858152602001908152602001600020600001612c2f90919063ffffffff16565b15611d2257611cc761170e565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b611d4e8160656000858152602001908152602001600020600001612c5f90919063ffffffff16565b15611db657611d5b61170e565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b600080828401905083811015611e38576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b60fb60009054906101000a900460ff16611ec4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f5061757361626c653a206e6f742070617573656400000000000000000000000081525060200191505060405180910390fd5b600060fb60006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611f0861170e565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fd8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b611fe460008383612c1f565b611ff981609954611dba90919063ffffffff16565b60998190555061205181609760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611dba90919063ffffffff16565b609760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612184576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061321a6021913960400191505060405180910390fd5b61219082600083612c1f565b6121fc816040518060600160405280602281526020016130bf60229139609760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611bd29092919063ffffffff16565b609760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061225481609954612c8f90919063ffffffff16565b609981905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b60fb60009054906101000a900460ff1615612347576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b600160fb60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861238b61170e565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b60006123c78360000183612cd9565b60001c905092915050565b60006123fa836000018373ffffffffffffffffffffffffffffffffffffffff1660001b612d5c565b905092915050565b600061241082600001612d7f565b9050919050565b6000803090506000813b9050600081149250505090565b600060019054906101000a900460ff168061244d575061244c612417565b5b80612463575060008054906101000a900460ff16155b6124b8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e8152602001806131c8602e913960400191505060405180910390fd5b60008060019054906101000a900460ff161590508015612508576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b80156125295760008060016101000a81548160ff0219169083151502179055505b50565b600060019054906101000a900460ff168061254b575061254a612417565b5b80612561575060008054906101000a900460ff16155b6125b6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e8152602001806131c8602e913960400191505060405180910390fd5b60008060019054906101000a900460ff161590508015612606576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b80156126275760008060016101000a81548160ff0219169083151502179055505b50565b600060019054906101000a900460ff16806126495750612648612417565b5b8061265f575060008054906101000a900460ff16155b6126b4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e8152602001806131c8602e913960400191505060405180910390fd5b60008060019054906101000a900460ff161590508015612704576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b82609a908051906020019061271a929190612f87565b5081609b9080519060200190612731929190612f87565b506012609c60006101000a81548160ff021916908360ff160217905550801561276f5760008060016101000a81548160ff0219169083151502179055505b505050565b600060019054906101000a900460ff16806127935750612792612417565b5b806127a9575060008054906101000a900460ff16155b6127fe576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e8152602001806131c8602e913960400191505060405180910390fd5b60008060019054906101000a900460ff16159050801561284e576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b801561286f5760008060016101000a81548160ff0219169083151502179055505b50565b600060019054906101000a900460ff16806128915750612890612417565b5b806128a7575060008054906101000a900460ff16155b6128fc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e8152602001806131c8602e913960400191505060405180910390fd5b60008060019054906101000a900460ff16159050801561294c576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b600060fb60006101000a81548160ff02191690831515021790555080156129885760008060016101000a81548160ff0219169083151502179055505b50565b600060019054906101000a900460ff16806129aa57506129a9612417565b5b806129c0575060008054906101000a900460ff16155b612a15576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e8152602001806131c8602e913960400191505060405180910390fd5b60008060019054906101000a900460ff161590508015612a65576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b8015612a865760008060016101000a81548160ff0219169083151502179055505b50565b600060019054906101000a900460ff1680612aa85750612aa7612417565b5b80612abe575060008054906101000a900460ff16155b612b13576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e8152602001806131c8602e913960400191505060405180910390fd5b60008060019054906101000a900460ff161590508015612b63576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b612b706000801b83612d90565b612b9a7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a683612d90565b612bc47f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a84883612d90565b612bee7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a83612d90565b612bf86008612d9e565b8015612c195760008060016101000a81548160ff0219169083151502179055505b50505050565b612c2a838383612dbc565b505050565b6000612c57836000018373ffffffffffffffffffffffffffffffffffffffff1660001b612e2a565b905092915050565b6000612c87836000018373ffffffffffffffffffffffffffffffffffffffff1660001b612e9a565b905092915050565b6000612cd183836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611bd2565b905092915050565b600081836000018054905011612d3a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806130256022913960400191505060405180910390fd5b826000018281548110612d4957fe5b9060005260206000200154905092915050565b600080836001016000848152602001908152602001600020541415905092915050565b600081600001805490509050919050565b612d9a8282611c92565b5050565b80609c60006101000a81548160ff021916908360ff16021790555050565b612dc7838383612f82565b612dcf611080565b15612e25576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806132fb602a913960400191505060405180910390fd5b505050565b6000612e368383612d5c565b612e8f578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050612e94565b600090505b92915050565b60008083600101600084815260200190815260200160002054905060008114612f765760006001820390506000600186600001805490500390506000866000018281548110612ee557fe5b9060005260206000200154905080876000018481548110612f0257fe5b9060005260206000200181905550600183018760010160008381526020019081526020016000208190555086600001805480612f3a57fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050612f7c565b60009150505b92915050565b505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10612fc857805160ff1916838001178555612ff6565b82800160010185558215612ff6579182015b82811115612ff5578251825591602001919060010190612fda565b5b5090506130039190613007565b5090565b5b80821115613020576000816000905550600101613008565b509056fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e647345524332303a207472616e7366657220746f20746865207a65726f2061646472657373425453453a206d75737420686176652070617573657220726f6c6520746f20756e7061757365416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f206772616e7445524332303a206275726e20616d6f756e7420657863656564732062616c616e6365425453453a206d7573742068617665206275726e657220726f6c6520746f206275726e425453453a206d75737420686176652070617573657220726f6c6520746f20706175736545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f207265766f6b6545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365436f6e747261637420696e7374616e63652068617320616c7265616479206265656e20696e697469616c697a656445524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f2061646472657373425453453a206d7573742068617665206d696e74657220726f6c6520746f206d696e7445524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636520726f6c657320666f722073656c6645524332305061757361626c653a20746f6b656e207472616e73666572207768696c6520706175736564a2646970667358221220b413092c3a0cf1c6f7ff6a237de37dcff11462f912a9055654c66dd78273643664736f6c634300060c0033
Deployed Bytecode Sourcemap
44959:2926:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33623:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45306:135;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;35729:169;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;34698:100;;;:::i;:::-;;;;;;;;;;;;;;;;;;;36372:321;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;26037:114;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;45233:62;;;:::i;:::-;;;;;;;;;;;;;;;;;;;26413:227;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;34550:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;27622:209;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;37102:218;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;47528:149;;;:::i;:::-;;46777:176;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;43133:91;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;30377:78;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;34861:119;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;43543:295;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;47167:143;;;:::i;:::-;;25710:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;24671:139;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;33825:87;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46379:198;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;23839:49;;;:::i;:::-;;;;;;;;;;;;;;;;;;;37823:269;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;35193:175;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;24984:127;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;45095:62;;;:::i;:::-;;;;;;;;;;;;;;;;;;;26885:230;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;35431:151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;45164:62;;;:::i;:::-;;;;;;;;;;;;;;;;;;;33623:83;33660:13;33693:5;33686:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33623:83;:::o;45306:135::-;45401:32;45413:4;45419:6;45427:5;45401:11;:32::i;:::-;45306:135;;;:::o;35729:169::-;35812:4;35829:39;35838:12;:10;:12::i;:::-;35852:7;35861:6;35829:8;:39::i;:::-;35886:4;35879:11;;35729:169;;;;:::o;34698:100::-;34751:7;34778:12;;34771:19;;34698:100;:::o;36372:321::-;36478:4;36495:36;36505:6;36513:9;36524:6;36495:9;:36::i;:::-;36542:121;36551:6;36559:12;:10;:12::i;:::-;36573:89;36611:6;36573:89;;;;;;;;;;;;;;;;;:11;:19;36585:6;36573:19;;;;;;;;;;;;;;;:33;36593:12;:10;:12::i;:::-;36573:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;36542:8;:121::i;:::-;36681:4;36674:11;;36372:321;;;;;:::o;26037:114::-;26094:7;26121:6;:12;26128:4;26121:12;;;;;;;;;;;:22;;;26114:29;;26037:114;;;:::o;45233:62::-;45271:24;45233:62;:::o;26413:227::-;26497:45;26505:6;:12;26512:4;26505:12;;;;;;;;;;;:22;;;26529:12;:10;:12::i;:::-;26497:7;:45::i;:::-;26489:105;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26607:25;26618:4;26624:7;26607:10;:25::i;:::-;26413:227;;:::o;34550:83::-;34591:5;34616:9;;;;;;;;;;;34609:16;;34550:83;:::o;27622:209::-;27720:12;:10;:12::i;:::-;27709:23;;:7;:23;;;27701:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27797:26;27809:4;27815:7;27797:11;:26::i;:::-;27622:209;;:::o;37102:218::-;37190:4;37207:83;37216:12;:10;:12::i;:::-;37230:7;37239:50;37278:10;37239:11;:25;37251:12;:10;:12::i;:::-;37239:25;;;;;;;;;;;;;;;:34;37265:7;37239:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;37207:8;:83::i;:::-;37308:4;37301:11;;37102:218;;;;:::o;47528:149::-;47573:32;45202:24;47594:10;47573:7;:32::i;:::-;47565:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47659:10;:8;:10::i;:::-;47528:149::o;46777:176::-;46845:32;45133:24;46866:10;46845:7;:32::i;:::-;46837:80;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46928:17;46934:2;46938:6;46928:5;:17::i;:::-;46777:176;;:::o;43133:91::-;43189:27;43195:12;:10;:12::i;:::-;43209:6;43189:5;:27::i;:::-;43133:91;:::o;30377:78::-;30416:4;30440:7;;;;;;;;;;;30433:14;;30377:78;:::o;34861:119::-;34927:7;34954:9;:18;34964:7;34954:18;;;;;;;;;;;;;;;;34947:25;;34861:119;;;:::o;43543:295::-;43620:26;43649:84;43686:6;43649:84;;;;;;;;;;;;;;;;;:32;43659:7;43668:12;:10;:12::i;:::-;43649:9;:32::i;:::-;:36;;:84;;;;;:::i;:::-;43620:113;;43746:51;43755:7;43764:12;:10;:12::i;:::-;43778:18;43746:8;:51::i;:::-;43808:22;43814:7;43823:6;43808:5;:22::i;:::-;43543:295;;;:::o;47167:143::-;47210:32;45202:24;47231:10;47210:7;:32::i;:::-;47202:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47294:8;:6;:8::i;:::-;47167:143::o;25710:138::-;25783:7;25810:30;25834:5;25810:6;:12;25817:4;25810:12;;;;;;;;;;;:20;;:23;;:30;;;;:::i;:::-;25803:37;;25710:138;;;;:::o;24671:139::-;24740:4;24764:38;24794:7;24764:6;:12;24771:4;24764:12;;;;;;;;;;;:20;;:29;;:38;;;;:::i;:::-;24757:45;;24671:139;;;;:::o;33825:87::-;33864:13;33897:7;33890:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33825:87;:::o;46379:198::-;46449:32;45271:24;46470:10;46449:7;:32::i;:::-;46441:80;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46550:19;46556:4;46562:6;46550:5;:19::i;:::-;46379:198;;:::o;23839:49::-;23884:4;23839:49;;;:::o;37823:269::-;37916:4;37933:129;37942:12;:10;:12::i;:::-;37956:7;37965:96;38004:15;37965:96;;;;;;;;;;;;;;;;;:11;:25;37977:12;:10;:12::i;:::-;37965:25;;;;;;;;;;;;;;;:34;37991:7;37965:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;37933:8;:129::i;:::-;38080:4;38073:11;;37823:269;;;;:::o;35193:175::-;35279:4;35296:42;35306:12;:10;:12::i;:::-;35320:9;35331:6;35296:9;:42::i;:::-;35356:4;35349:11;;35193:175;;;;:::o;24984:127::-;25047:7;25074:29;:6;:12;25081:4;25074:12;;;;;;;;;;;:20;;:27;:29::i;:::-;25067:36;;24984:127;;;:::o;45095:62::-;45133:24;45095:62;:::o;26885:230::-;26970:45;26978:6;:12;26985:4;26978:12;;;;;;;;;;;:22;;;27002:12;:10;:12::i;:::-;26970:7;:45::i;:::-;26962:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27081:26;27093:4;27099:7;27081:11;:26::i;:::-;26885:230;;:::o;35431:151::-;35520:7;35547:11;:18;35559:5;35547:18;;;;;;;;;;;;;;;:27;35566:7;35547:27;;;;;;;;;;;;;;;;35540:34;;35431:151;;;;:::o;45164:62::-;45202:24;45164:62;:::o;45449:411::-;19762:12;;;;;;;;;;;:31;;;;19778:15;:13;:15::i;:::-;19762:31;:47;;;;19798:11;;;;;;;;;;19797:12;19762:47;19754:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19873:19;19896:12;;;;;;;;;;;19895:13;19873:35;;19923:14;19919:99;;;19969:4;19954:12;;:19;;;;;;;;;;;;;;;;;;20002:4;19988:11;;:18;;;;;;;;;;;;;;;;;;19919:99;45559:26:::1;:24;:26::i;:::-;45596:32;:30;:32::i;:::-;45639:36;45662:4;45668:6;45639:22;:36::i;:::-;45686:32;:30;:32::i;:::-;45729:27;:25;:27::i;:::-;45767:32;:30;:32::i;:::-;45810:42;45832:4;45838:6;45846:5;45810:21;:42::i;:::-;20048:14:::0;20044:67;;;20094:5;20079:12;;:20;;;;;;;;;;;;;;;;;;20044:67;45449:411;;;;:::o;21775:106::-;21828:15;21863:10;21856:17;;21775:106;:::o;40970:346::-;41089:1;41072:19;;:5;:19;;;;41064:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41170:1;41151:21;;:7;:21;;;;41143:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41254:6;41224:11;:18;41236:5;41224:18;;;;;;;;;;;;;;;:27;41243:7;41224:27;;;;;;;;;;;;;;;:36;;;;41292:7;41276:32;;41285:5;41276:32;;;41301:6;41276:32;;;;;;;;;;;;;;;;;;40970:346;;;:::o;38582:539::-;38706:1;38688:20;;:6;:20;;;;38680:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38790:1;38769:23;;:9;:23;;;;38761:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38845:47;38866:6;38874:9;38885:6;38845:20;:47::i;:::-;38925:71;38947:6;38925:71;;;;;;;;;;;;;;;;;:9;:17;38935:6;38925:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;38905:9;:17;38915:6;38905:17;;;;;;;;;;;;;;;:91;;;;39030:32;39055:6;39030:9;:20;39040:9;39030:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;39007:9;:20;39017:9;39007:20;;;;;;;;;;;;;;;:55;;;;39095:9;39078:35;;39087:6;39078:35;;;39106:6;39078:35;;;;;;;;;;;;;;;;;;38582:539;;;:::o;12416:192::-;12502:7;12535:1;12530;:6;;12538:12;12522:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12562:9;12578:1;12574;:5;12562:17;;12599:1;12592:8;;;12416:192;;;;;:::o;28742:188::-;28816:33;28841:7;28816:6;:12;28823:4;28816:12;;;;;;;;;;;:20;;:24;;:33;;;;:::i;:::-;28812:111;;;28898:12;:10;:12::i;:::-;28871:40;;28889:7;28871:40;;28883:4;28871:40;;;;;;;;;;28812:111;28742:188;;:::o;28938:192::-;29013:36;29041:7;29013:6;:12;29020:4;29013:12;;;;;;;;;;;:20;;:27;;:36;;;;:::i;:::-;29009:114;;;29098:12;:10;:12::i;:::-;29071:40;;29089:7;29071:40;;29083:4;29071:40;;;;;;;;;;29009:114;28938:192;;:::o;11529:181::-;11587:7;11607:9;11623:1;11619;:5;11607:17;;11648:1;11643;:6;;11635:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11701:1;11694:8;;;11529:181;;;;:::o;31110:120::-;30813:7;;;;;;;;;;;30805:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31179:5:::1;31169:7;;:15;;;;;;;;;;;;;;;;;;31200:22;31209:12;:10;:12::i;:::-;31200:22;;;;;;;;;;;;;;;;;;;;31110:120::o:0;39402:378::-;39505:1;39486:21;;:7;:21;;;;39478:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39556:49;39585:1;39589:7;39598:6;39556:20;:49::i;:::-;39633:24;39650:6;39633:12;;:16;;:24;;;;:::i;:::-;39618:12;:39;;;;39689:30;39712:6;39689:9;:18;39699:7;39689:18;;;;;;;;;;;;;;;;:22;;:30;;;;:::i;:::-;39668:9;:18;39678:7;39668:18;;;;;;;;;;;;;;;:51;;;;39756:7;39735:37;;39752:1;39735:37;;;39765:6;39735:37;;;;;;;;;;;;;;;;;;39402:378;;:::o;40112:418::-;40215:1;40196:21;;:7;:21;;;;40188:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40268:49;40289:7;40306:1;40310:6;40268:20;:49::i;:::-;40351:68;40374:6;40351:68;;;;;;;;;;;;;;;;;:9;:18;40361:7;40351:18;;;;;;;;;;;;;;;;:22;;:68;;;;;:::i;:::-;40330:9;:18;40340:7;40330:18;;;;;;;;;;;;;;;:89;;;;40445:24;40462:6;40445:12;;:16;;:24;;;;:::i;:::-;40430:12;:39;;;;40511:1;40485:37;;40494:7;40485:37;;;40515:6;40485:37;;;;;;;;;;;;;;;;;;40112:418;;:::o;30928:118::-;30614:7;;;;;;;;;;;30613:8;30605:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30998:4:::1;30988:7;;:14;;;;;;;;;;;;;;;;;;31018:20;31025:12;:10;:12::i;:::-;31018:20;;;;;;;;;;;;;;;;;;;;30928:118::o:0;6283:149::-;6357:7;6400:22;6404:3;:10;;6416:5;6400:3;:22::i;:::-;6392:31;;6377:47;;6283:149;;;;:::o;5568:158::-;5648:4;5672:46;5682:3;:10;;5710:5;5702:14;;5694:23;;5672:9;:46::i;:::-;5665:53;;5568:158;;;;:::o;5812:117::-;5875:7;5902:19;5910:3;:10;;5902:7;:19::i;:::-;5895:26;;5812:117;;;:::o;20211:546::-;20258:4;20629:12;20652:4;20629:28;;20668:10;20718:4;20706:17;20700:23;;20748:1;20742:2;:7;20735:14;;;;20211:546;:::o;21696:69::-;19762:12;;;;;;;;;;;:31;;;;19778:15;:13;:15::i;:::-;19762:31;:47;;;;19798:11;;;;;;;;;;19797:12;19762:47;19754:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19873:19;19896:12;;;;;;;;;;;19895:13;19873:35;;19923:14;19919:99;;;19969:4;19954:12;;:19;;;;;;;;;;;;;;;;;;20002:4;19988:11;;:18;;;;;;;;;;;;;;;;;;19919:99;20048:14;20044:67;;;20094:5;20079:12;;:20;;;;;;;;;;;;;;;;;;20044:67;21696:69;:::o;23511:75::-;19762:12;;;;;;;;;;;:31;;;;19778:15;:13;:15::i;:::-;19762:31;:47;;;;19798:11;;;;;;;;;;19797:12;19762:47;19754:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19873:19;19896:12;;;;;;;;;;;19895:13;19873:35;;19923:14;19919:99;;;19969:4;19954:12;;:19;;;;;;;;;;;;;;;;;;20002:4;19988:11;;:18;;;;;;;;;;;;;;;;;;19919:99;20048:14;20044:67;;;20094:5;20079:12;;:20;;;;;;;;;;;;;;;;;;20044:67;23511:75;:::o;33367:184::-;19762:12;;;;;;;;;;;:31;;;;19778:15;:13;:15::i;:::-;19762:31;:47;;;;19798:11;;;;;;;;;;19797:12;19762:47;19754:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19873:19;19896:12;;;;;;;;;;;19895:13;19873:35;;19923:14;19919:99;;;19969:4;19954:12;;:19;;;;;;;;;;;;;;;;;;20002:4;19988:11;;:18;;;;;;;;;;;;;;;;;;19919:99;33485:4:::1;33477:5;:12;;;;;;;;;;;;:::i;:::-;;33510:6;33500:7;:16;;;;;;;;;;;;:::i;:::-;;33539:2;33527:9;;:14;;;;;;;;;;;;;;;;;;20048::::0;20044:67;;;20094:5;20079:12;;:20;;;;;;;;;;;;;;;;;;20044:67;33367:184;;;:::o;42942:75::-;19762:12;;;;;;;;;;;:31;;;;19778:15;:13;:15::i;:::-;19762:31;:47;;;;19798:11;;;;;;;;;;19797:12;19762:47;19754:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19873:19;19896:12;;;;;;;;;;;19895:13;19873:35;;19923:14;19919:99;;;19969:4;19954:12;;:19;;;;;;;;;;;;;;;;;;20002:4;19988:11;;:18;;;;;;;;;;;;;;;;;;19919:99;20048:14;20044:67;;;20094:5;20079:12;;:20;;;;;;;;;;;;;;;;;;20044:67;42942:75;:::o;30177:98::-;19762:12;;;;;;;;;;;:31;;;;19778:15;:13;:15::i;:::-;19762:31;:47;;;;19798:11;;;;;;;;;;19797:12;19762:47;19754:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19873:19;19896:12;;;;;;;;;;;19895:13;19873:35;;19923:14;19919:99;;;19969:4;19954:12;;:19;;;;;;;;;;;;;;;;;;20002:4;19988:11;;:18;;;;;;;;;;;;;;;;;;19919:99;30260:5:::1;30250:7;;:15;;;;;;;;;;;;;;;;;;20048:14:::0;20044:67;;;20094:5;20079:12;;:20;;;;;;;;;;;;;;;;;;20044:67;30177:98;:::o;44451:75::-;19762:12;;;;;;;;;;;:31;;;;19778:15;:13;:15::i;:::-;19762:31;:47;;;;19798:11;;;;;;;;;;19797:12;19762:47;19754:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19873:19;19896:12;;;;;;;;;;;19895:13;19873:35;;19923:14;19919:99;;;19969:4;19954:12;;:19;;;;;;;;;;;;;;;;;;20002:4;19988:11;;:18;;;;;;;;;;;;;;;;;;19919:99;20048:14;20044:67;;;20094:5;20079:12;;:20;;;;;;;;;;;;;;;;;;20044:67;44451:75;:::o;45868:320::-;19762:12;;;;;;;;;;;:31;;;;19778:15;:13;:15::i;:::-;19762:31;:47;;;;19798:11;;;;;;;;;;19797:12;19762:47;19754:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19873:19;19896:12;;;;;;;;;;;19895:13;19873:35;;19923:14;19919:99;;;19969:4;19954:12;;:19;;;;;;;;;;;;;;;;;;20002:4;19988:11;;:18;;;;;;;;;;;;;;;;;;19919:99;45990:37:::1;23884:4;46001:18:::0;::::1;46021:5;45990:10;:37::i;:::-;46038:30;45133:24;46062:5;46038:10;:30::i;:::-;46079;45271:24;46103:5;46079:10;:30::i;:::-;46120;45202:24;46144:5;46120:10;:30::i;:::-;46163:17;46178:1;46163:14;:17::i;:::-;20048:14:::0;20044:67;;;20094:5;20079:12;;:20;;;;;;;;;;;;;;;;;;20044:67;45868:320;;;;:::o;47685:197::-;47830:44;47857:4;47863:2;47867:6;47830:26;:44::i;:::-;47685:197;;;:::o;5014:143::-;5084:4;5108:41;5113:3;:10;;5141:5;5133:14;;5125:23;;5108:4;:41::i;:::-;5101:48;;5014:143;;;;:::o;5333:149::-;5406:4;5430:44;5438:3;:10;;5466:5;5458:14;;5450:23;;5430:7;:44::i;:::-;5423:51;;5333:149;;;;:::o;11985:136::-;12043:7;12070:43;12074:1;12077;12070:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;12063:50;;11985:136;;;;:::o;4556:204::-;4623:7;4672:5;4651:3;:11;;:18;;;;:26;4643:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4734:3;:11;;4746:5;4734:18;;;;;;;;;;;;;;;;4727:25;;4556:204;;;;:::o;3878:129::-;3951:4;3998:1;3975:3;:12;;:19;3988:5;3975:19;;;;;;;;;;;;:24;;3968:31;;3878:129;;;;:::o;4093:109::-;4149:7;4176:3;:11;;:18;;;;4169:25;;4093:109;;;:::o;28414:112::-;28493:25;28504:4;28510:7;28493:10;:25::i;:::-;28414:112;;:::o;41648:90::-;41721:9;41709;;:21;;;;;;;;;;;;;;;;;;41648:90;:::o;44680:238::-;44789:44;44816:4;44822:2;44826:6;44789:26;:44::i;:::-;44855:8;:6;:8::i;:::-;44854:9;44846:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44680:238;;;:::o;1658:414::-;1721:4;1743:21;1753:3;1758:5;1743:9;:21::i;:::-;1738:327;;1781:3;:11;;1798:5;1781:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1964:3;:11;;:18;;;;1942:3;:12;;:19;1955:5;1942:19;;;;;;;;;;;:40;;;;2004:4;1997:11;;;;1738:327;2048:5;2041:12;;1658:414;;;;;:::o;2248:1544::-;2314:4;2432:18;2453:3;:12;;:19;2466:5;2453:19;;;;;;;;;;;;2432:40;;2503:1;2489:10;:15;2485:1300;;2851:21;2888:1;2875:10;:14;2851:38;;2904:17;2945:1;2924:3;:11;;:18;;;;:22;2904:42;;3191:17;3211:3;:11;;3223:9;3211:22;;;;;;;;;;;;;;;;3191:42;;3357:9;3328:3;:11;;3340:13;3328:26;;;;;;;;;;;;;;;:38;;;;3476:1;3460:13;:17;3434:3;:12;;:23;3447:9;3434:23;;;;;;;;;;;:43;;;;3586:3;:11;;:17;;;;;;;;;;;;;;;;;;;;;;;;3681:3;:12;;:19;3694:5;3681:19;;;;;;;;;;;3674:26;;;3724:4;3717:11;;;;;;;;2485:1300;3768:5;3761:12;;;2248:1544;;;;;:::o;42341:92::-;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o
Swarm Source
ipfs://b413092c3a0cf1c6f7ff6a237de37dcff11462f912a9055654c66dd782736436
Loading...
Loading
Loading...
Loading
OVERVIEW
Launched on 05/05/2020, BTSE aims to provide an exchange utility token carefully designed to augment the user experience on the exchange and within the BTSE ecosystem.Multichain Portfolio | 34 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.