Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 71 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Release Time Loc... | 20736201 | 75 days ago | IN | 0 ETH | 0.00102489 | ||||
Register Time Lo... | 20736193 | 75 days ago | IN | 0 ETH | 0.00203699 | ||||
Release Time Loc... | 18380561 | 405 days ago | IN | 0 ETH | 0.00050769 | ||||
Register Time Lo... | 18380552 | 405 days ago | IN | 0 ETH | 0.0007732 | ||||
Release Time Loc... | 18336779 | 411 days ago | IN | 0 ETH | 0.00049425 | ||||
Register Time Lo... | 18336763 | 411 days ago | IN | 0 ETH | 0.00101537 | ||||
Release Time Loc... | 17217073 | 568 days ago | IN | 0 ETH | 0.01302848 | ||||
Register Time Lo... | 17217022 | 568 days ago | IN | 0 ETH | 0.01624766 | ||||
Release Time Loc... | 16579717 | 658 days ago | IN | 0 ETH | 0.00328733 | ||||
Register Time Lo... | 16579704 | 658 days ago | IN | 0 ETH | 0.00535054 | ||||
Release Time Loc... | 16421202 | 680 days ago | IN | 0 ETH | 0.00165825 | ||||
Register Time Lo... | 16421183 | 680 days ago | IN | 0 ETH | 0.00272889 | ||||
Release Time Loc... | 16149285 | 718 days ago | IN | 0 ETH | 0.0104169 | ||||
Register Time Lo... | 16149261 | 718 days ago | IN | 0 ETH | 0.00672273 | ||||
Remove Time Lock... | 16149194 | 718 days ago | IN | 0 ETH | 0.00078034 | ||||
Remove Time Lock... | 16149193 | 718 days ago | IN | 0 ETH | 0.0006476 | ||||
Remove Time Lock... | 16149190 | 718 days ago | IN | 0 ETH | 0.00081642 | ||||
Remove Time Lock... | 16149186 | 718 days ago | IN | 0 ETH | 0.00081011 | ||||
Release Time Loc... | 15017903 | 886 days ago | IN | 0 ETH | 0.00178806 | ||||
Register Time Lo... | 15017881 | 886 days ago | IN | 0 ETH | 0.00220293 | ||||
Release Time Loc... | 14358839 | 992 days ago | IN | 0 ETH | 0.00224129 | ||||
Register Time Lo... | 14358831 | 992 days ago | IN | 0 ETH | 0.00343963 | ||||
Release Time Loc... | 14358808 | 992 days ago | IN | 0 ETH | 0.00214246 | ||||
Register Time Lo... | 14358800 | 992 days ago | IN | 0 ETH | 0.00123645 | ||||
Register Time Lo... | 14358800 | 992 days ago | IN | 0 ETH | 0.00363709 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
DecentrSaleContract
Compiler Version
v0.6.10+commit.00c0fcaf
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-07-01 */ // File: @openzeppelin/contracts/GSN/Context.sol // SPDX-License-Identifier: GPL-3.0 pragma solidity ^0.6.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with GSN meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol pragma solidity ^0.6.0; /** * @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); } // File: @openzeppelin/contracts/math/SafeMath.sol pragma solidity ^0.6.0; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } // File: @openzeppelin/contracts/utils/Address.sol pragma solidity ^0.6.2; /** * @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 Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return _functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) { require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: weiValue }(data); if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol pragma solidity ^0.6.0; /** * @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 {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20 { using SafeMath for uint256; 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. */ constructor (string memory name, string memory symbol) public { _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 { } } // File: @openzeppelin/contracts/access/Ownable.sol pragma solidity ^0.6.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } // File: @openzeppelin/contracts/utils/Pausable.sol pragma solidity ^0.6.0; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ contract Pausable is Context { /** * @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. */ constructor () internal { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!_paused, "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(_paused, "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } } // File: contracts/DecentrSaleContract.sol pragma solidity >=0.5.0 <0.7.0; abstract contract ERC20DecentrToken { // Allows token minting function mintToken(address to, uint256 value) external virtual returns (bool success); // Pauses token use function pause() external virtual; // Unpauses token use function unpause() external virtual; } /** * @dev Pausable specifies if trade is opened or not. * @dev Ownable is keeping track of owner of the */ contract DecentrSaleContract is Ownable, Pausable { // Amount of max Mintable tokens uint256 private _maxMintable = 10**27; // Amount of total minted tokens uint256 private _totalMinted; // Blocks identifiers to keep track of contract life uint private _startBlock; uint private _lastBlock; // Mutable ETH <-> Token rate uint private _exchangeRate; // Wallet which will act like an ICO address payable private ETHWallet; // Token as a main point of trading in the contract. ERC20DecentrToken public DecentrToken; bool private tokenInitialized; // Promised tokens information. // Stores information about tokens to be released at some certain point of time. struct TimeLockedTokenInfo { uint256 tokensAmount; uint releaseDate; uint createdAt; bool isEntity; // Represents check for whether struct exists. } // Stores information about the tokens that should and heldTimeline mapping(address => TimeLockedTokenInfo) private timeLockedTokens; // Flag for initialization checks bool private _initializationCompleted = false; event ExchangeRateUpdate(uint amountOfTokensForEthereum); event TimeLockedTokensRelease(address to, uint256 tokensAmount); event Contribution(address from, uint256 amount); event ContractStateUpdated(bool isPaused); constructor () public { // !Important: Enabling pause to refuse Ether receiving closeTrade(); // Registers block which is the first bloc of contract life _startBlock = block.number; } /** * @dev Allows admin to register delayed tokens sending by creating a record of how much tokens should be sent to receiver after some date. */ function registerTimeLockedTokens(address receiver, uint tokensAmount, uint releaseDate) public onlyOwner returns (bool success) { require(receiver != address(0), 'DecentrSaleContract: Receiver address must not be empty.'); require(tokensAmount > 0, 'DecentrSaleContract: Tokens amount should be defined.'); require(releaseDate >= now, 'DecentrSaleContract: Release date should be in future.'); // Calculating total amount of minted tokens uint256 total = _totalMinted + tokensAmount; // Restrict amount of mintable tokens require(total <= _maxMintable, 'DecentrSaleContract: Amount of tokens to be minted exceeds the max tokens allowed amount.'); // Adding information about the time locked tokens for address timeLockedTokens[receiver] = TimeLockedTokenInfo(tokensAmount, releaseDate, now, true); _totalMinted += tokensAmount; return true; } /** * @dev Allows user to check if there are some tokens that can be released. */ function canReceiveTimeLockedTokens() public view returns (bool canReceive) { return _canReleaseTimeLockedTokens(msg.sender); } /** * @dev Allows owner to check if there are some tokens that can be released for receiver. */ function canReleaseTimeLockedTokens(address receiver) public view onlyOwner returns (bool canRelease) { return _canReleaseTimeLockedTokens(receiver); } /** * @dev Private method for checking if there are some tokens that can be released for receiver. */ function _canReleaseTimeLockedTokens(address receiver) private view returns (bool canRelease) { TimeLockedTokenInfo memory timeLockedTokenInfo = timeLockedTokens[receiver]; require(isValidTimeLockedTokenInfo(timeLockedTokenInfo), 'DecentrSaleContract: There are no time locked tokens for current address'); return timeLockedTokenInfo.releaseDate <= now; } /** * @dev Sender can request sending tokens directly if there are tokens which are no longer locked by time. */ function receiveTimeLockedTokens() public returns (bool success) { return _releaseTimeLockedTokensForAddress(msg.sender); } /** * @dev Owner can request sending tokens directly to receiver if there are tokens which are no longer locked by time. */ function releaseTimeLockedTokensForAddress(address receiver) public onlyOwner returns (bool success) { return _releaseTimeLockedTokensForAddress(receiver); } /** * @dev Releasing tokens for receiver if there are tokens which are no longer locked by time. */ function _releaseTimeLockedTokensForAddress(address receiver) private returns (bool success) { // Loading info of time locked tokens for the receiver TimeLockedTokenInfo memory timeLockedTokenInfo = timeLockedTokens[receiver]; require(isValidTimeLockedTokenInfo(timeLockedTokenInfo), 'DecentrSaleContract: There are no time locked tokens for address'); require(timeLockedTokenInfo.releaseDate <= now); // Minting tokens for the sender who passed Ether DecentrToken.mintToken(receiver, timeLockedTokenInfo.tokensAmount); // Emitting event about the tokens release for receiver. TimeLockedTokensRelease(receiver, timeLockedTokenInfo.tokensAmount); // Cleaning up the record about the time locked tokens after sending tokens to receiver. delete timeLockedTokens[receiver]; // Keeping track of the last block _lastBlock = block.number; return true; } /** * @dev Owner can remove time locked tokens for receiver. */ function removeTimeLockedTokensForAddress(address receiver) public onlyOwner returns (bool success) { TimeLockedTokenInfo memory timeLockedTokenInfo = timeLockedTokens[receiver]; require(isValidTimeLockedTokenInfo(timeLockedTokenInfo), 'DecentrSaleContract: There are no time locked tokens for receiver address.'); // Adjusting total minted tokens amount as tokens will not be released ever after removal. _totalMinted -= timeLockedTokenInfo.tokensAmount; // Cleaning up the record about the time locked tokens after sending tokens to receiver. delete timeLockedTokens[receiver]; return true; } /** * @dev Allows address to get the information about the tokens that will be released for that account. */ function getTimeLockedTokens() public view returns (uint256 tokensAmount, uint releaseDate, bool canBeReleased) { return (timeLockedTokens[msg.sender].tokensAmount, timeLockedTokens[msg.sender].releaseDate, timeLockedTokens[msg.sender].releaseDate <= now); } /** * @dev Allows admin to get the information about the tokens that * will be released for the address at some certain point of time. * * modifiers: onlyOwner */ function getTimeLockedTokensForAddress(address _address) public view onlyOwner returns (uint256 tokensAmount, uint releaseDate, uint createdAt, bool canBeReleased) { return (timeLockedTokens[_address].tokensAmount, timeLockedTokens[_address].releaseDate, timeLockedTokens[_address].createdAt, timeLockedTokens[msg.sender].releaseDate <= now); } /** * @dev Setup: * - Token to be used */ function setup(address tokenAddress) public pendingInitialization { // Loading the Token to work with DecentrToken = ERC20DecentrToken(tokenAddress); // Setting initialization is complete _initializationCompleted = true; } /** * @dev Updates the ETH/COIN rate. Can be controlled only by the owner. */ function setExchangeRate(uint exchangeRate) public onlyOwner whenNotPaused { _exchangeRate = exchangeRate; // Emitting event about the exchange rate update. ExchangeRateUpdate(exchangeRate); } /** * @dev Changes ERC20 Token status to paused. */ function pauseToken() public onlyOwner { DecentrToken.pause(); } /** * @dev Changes ERC20 Token status to unpaused. */ function unpauseToken() public onlyOwner { DecentrToken.unpause(); } /** * @dev Closes the trade if opened. Can be controlled only by the owner. */ function closeTrade() public onlyOwner whenNotPaused { _pause(); ContractStateUpdated(true); } /** * @dev Opens the trade if closed. Can be controlled only by the owner. */ function openTrade() public onlyOwner whenPaused { _unpause(); ContractStateUpdated(false); } /** * @dev Returns address of the startBlock. */ function startBlock() public view returns (uint) { return _startBlock; } /** * @dev Returns address of the lastBlock. */ function lastBlock() public view returns (uint) { return _lastBlock; } /** * @dev Sets ICO wallet to which Eth will be sent in case of minting tokens when contract is not paused. */ function setICOWallet(address payable _wallet) public onlyOwner returns (bool isSet) { // Setting up ICO wallet ETHWallet = _wallet; return true; } /** * @dev Allows publicly to load address of the ICO wallet attached for Ether receiving by contract when contract is not paused and trading is allowed. */ function getICOWallet() public view returns (address icoWallet) { return ETHWallet; } /** * @dev Determines if struct is valid. The only workaround to check if struct is not empty. */ function isValidTimeLockedTokenInfo(TimeLockedTokenInfo memory timeLockedTokenInfo) private pure returns (bool isValid) { return timeLockedTokenInfo.isEntity; } /** * @dev Checks whether initialization is not completed. */ modifier pendingInitialization() { require(!_initializationCompleted, 'DecentrSaleContract: Initialization is already completed.'); _; } /** * @dev Checks whether initialization is completed. */ modifier initializationCompleted() { require(_initializationCompleted, 'DecentrSaleContract: Initialization is not completed.'); _; } /** * @dev Buy Token function. Accepts Ether. Converts ETH to TOKEN and sends new TOKEN to the sender */ function buyToken() external payable { _buyToken(); } /** * @dev Should receive Ether when not paused */ function _buyToken() private whenNotPaused initializationCompleted { // Sent ether must be above 0 require(msg.value > 0); // Calculating amount of tokens to be sent for a uint256 amount = msg.value * _exchangeRate; // Calculating total amount of minted tokens uint256 total = _totalMinted + amount; // Restrict amount of mintable tokens require(total <= _maxMintable, 'DecentrSaleContract: Amount of tokens to be minted exceeds the max tokens allowed amount.'); // Updating total minted tokens amount _totalMinted += total; // Performing Ether transfer to the ICO account ETHWallet.transfer(msg.value); // Minting tokens for the sender who passed Ether DecentrToken.mintToken(msg.sender, amount); // Emitting event about the contribution of a sender into the system by buying the tokens. Contribution(msg.sender, amount); // Keeping track of the last block _lastBlock = block.number; } /** * @dev Default function Accepting Ether. Converts ETH to TOKEN and sends new TOKEN to the sender */ receive() external payable { _buyToken(); } /** * @dev Fallback function Accepting Ether. Converts ETH to TOKEN and sends new TOKEN to the sender */ fallback() external payable { _buyToken(); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"isPaused","type":"bool"}],"name":"ContractStateUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Contribution","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amountOfTokensForEthereum","type":"uint256"}],"name":"ExchangeRateUpdate","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokensAmount","type":"uint256"}],"name":"TimeLockedTokensRelease","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"DecentrToken","outputs":[{"internalType":"contract ERC20DecentrToken","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyToken","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"canReceiveTimeLockedTokens","outputs":[{"internalType":"bool","name":"canReceive","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"canReleaseTimeLockedTokens","outputs":[{"internalType":"bool","name":"canRelease","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"closeTrade","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getICOWallet","outputs":[{"internalType":"address","name":"icoWallet","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTimeLockedTokens","outputs":[{"internalType":"uint256","name":"tokensAmount","type":"uint256"},{"internalType":"uint256","name":"releaseDate","type":"uint256"},{"internalType":"bool","name":"canBeReleased","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"getTimeLockedTokensForAddress","outputs":[{"internalType":"uint256","name":"tokensAmount","type":"uint256"},{"internalType":"uint256","name":"releaseDate","type":"uint256"},{"internalType":"uint256","name":"createdAt","type":"uint256"},{"internalType":"bool","name":"canBeReleased","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrade","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pauseToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"receiveTimeLockedTokens","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"tokensAmount","type":"uint256"},{"internalType":"uint256","name":"releaseDate","type":"uint256"}],"name":"registerTimeLockedTokens","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"releaseTimeLockedTokensForAddress","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"removeTimeLockedTokensForAddress","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"exchangeRate","type":"uint256"}],"name":"setExchangeRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_wallet","type":"address"}],"name":"setICOWallet","outputs":[{"internalType":"bool","name":"isSet","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"}],"name":"setup","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpauseToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040526b033b2e3c9fd0803ce80000006001556000600960006101000a81548160ff0219169083151502179055503480156200003c57600080fd5b5060006200004f6200012460201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35060008060146101000a81548160ff021916908315150217905550620001176200012c60201b60201c565b43600381905550620003e3565b600033905090565b6200013c6200012460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614620001fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600060149054906101000a900460ff161562000282576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b62000292620002d060201b60201c565b7f8dc6c1e8991434aec3506b21423e68962907ed60fc5ff6e9297923eca89d2f006001604051808215151515815260200191505060405180910390a1565b600060149054906101000a900460ff161562000354576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6001600060146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258620003a06200012460201b60201c565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b612ae680620003f36000396000f3fe60806040526004361061014f5760003560e01c8063806b984f116100b6578063cbeeba6b1161006f578063cbeeba6b1461060c578063db068e0e14610675578063dedb8c26146106b0578063f2fde38b14610707578063fb201b1d14610758578063fcdb89ce1461076f5761015e565b8063806b984f14610497578063878a712a146104c257806387984fbe146104f15780638da5cb5b1461056e578063a4821719146105c5578063bfdb5941146105cf5761015e565b806350669a031161010857806350669a03146103515780635c975abb1461036857806366d3820314610397578063715018a6146103e85780637153ae7f146103ff57806372ad91021461042e5761015e565b80630891af9d146101685780632c349627146101d1578063336fb494146101e8578063348a80431461025157806343551298146102cf57806348cd4cb1146103265761015e565b3661015e5761015c610786565b005b610166610786565b005b34801561017457600080fd5b506101b76004803603602081101561018b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610abc565b604051808215151515815260200191505060405180910390f35b3480156101dd57600080fd5b506101e6610b97565b005b3480156101f457600080fd5b506102376004803603602081101561020b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610ce4565b604051808215151515815260200191505060405180910390f35b34801561025d57600080fd5b506102a06004803603602081101561027457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610dbf565b604051808581526020018481526020018381526020018215151515815260200194505050505060405180910390f35b3480156102db57600080fd5b506102e4610fac565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561033257600080fd5b5061033b610fd6565b6040518082815260200191505060405180910390f35b34801561035d57600080fd5b50610366610fe0565b005b34801561037457600080fd5b5061037d61112d565b604051808215151515815260200191505060405180910390f35b3480156103a357600080fd5b506103e6600480360360208110156103ba57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611143565b005b3480156103f457600080fd5b506103fd611208565b005b34801561040b57600080fd5b50610414611390565b604051808215151515815260200191505060405180910390f35b34801561043a57600080fd5b5061047d6004803603602081101561045157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506113a0565b604051808215151515815260200191505060405180910390f35b3480156104a357600080fd5b506104ac6115e2565b6040518082815260200191505060405180910390f35b3480156104ce57600080fd5b506104d76115ec565b604051808215151515815260200191505060405180910390f35b3480156104fd57600080fd5b506105546004803603606081101561051457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190803590602001909291905050506115fc565b604051808215151515815260200191505060405180910390f35b34801561057a57600080fd5b50610583611923565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6105cd61194c565b005b3480156105db57600080fd5b506105e4611956565b6040518084815260200183815260200182151515158152602001935050505060405180910390f35b34801561061857600080fd5b5061065b6004803603602081101561062f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611a32565b604051808215151515815260200191505060405180910390f35b34801561068157600080fd5b506106ae6004803603602081101561069857600080fd5b8101908080359060200190929190505050611b47565b005b3480156106bc57600080fd5b506106c5611cd4565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561071357600080fd5b506107566004803603602081101561072a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611cfa565b005b34801561076457600080fd5b5061076d611f07565b005b34801561077b57600080fd5b50610784612098565b005b600060149054906101000a900460ff1615610809576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b600960009054906101000a900460ff1661086e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260358152602001806128e46035913960400191505060405180910390fd5b6000341161087b57600080fd5b6000600554340290506000816002540190506001548111156108e8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526059815260200180612a586059913960600191505060405180910390fd5b80600260008282540192505081905550600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f19350505050158015610960573d6000803e3d6000fd5b50600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166379c6506833846040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015610a0a57600080fd5b505af1158015610a1e573d6000803e3d6000fd5b505050506040513d6020811015610a3457600080fd5b8101908080519060200190929190505050507f4d154d4aae216bed6d0926db77c00df2b57c6b5ba4eee05775de20facede3a7b3383604051808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060405180910390a1436004819055505050565b6000610ac661222a565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b87576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b610b9082612232565b9050919050565b610b9f61222a565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610c60576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16638456cb596040518163ffffffff1660e01b8152600401600060405180830381600087803b158015610cca57600080fd5b505af1158015610cde573d6000803e3d6000fd5b50505050565b6000610cee61222a565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610daf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b610db88261232f565b9050919050565b600080600080610dcd61222a565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e8e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000154600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010154600860008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206002015442600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010154111593509350935093509193509193565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600354905090565b610fe861222a565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146110a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16633f4ba83a6040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561111357600080fd5b505af1158015611127573d6000803e3d6000fd5b50505050565b60008060149054906101000a900460ff16905090565b600960009054906101000a900460ff16156111a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260398152602001806128ab6039913960400191505060405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600960006101000a81548160ff02191690831515021790555050565b61121061222a565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146112d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600061139b3361232f565b905090565b60006113aa61222a565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461146b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b611473612824565b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060800160405290816000820154815260200160018201548152602001600282015481526020016003820160009054906101000a900460ff161515151581525050905061150181612604565b611556576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252604a815260200180612951604a913960600191505060405180910390fd5b8060000151600260008282540392505081905550600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600080820160009055600182016000905560028201600090556003820160006101000a81549060ff021916905550506001915050919050565b6000600454905090565b60006115f733612232565b905090565b600061160661222a565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146116c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561174d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260388152602001806129196038913960400191505060405180910390fd5b600083116117a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603581526020018061299b6035913960400191505060405180910390fd5b428210156117ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260368152602001806128756036913960400191505060405180910390fd5b600083600254019050600154811115611863576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526059815260200180612a586059913960600191505060405180910390fd5b604051806080016040528085815260200184815260200142815260200160011515815250600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000155602082015181600101556040820151816002015560608201518160030160006101000a81548160ff0219169083151502179055509050508360026000828254019250508190555060019150509392505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611954610786565b565b6000806000600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000154600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001015442600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101541115925092509250909192565b6000611a3c61222a565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611afd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b81600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050919050565b611b4f61222a565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611c10576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600060149054906101000a900460ff1615611c93576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b806005819055507fd49aa359d9387d4d625acc5631c7639943ffdf0c67080181e910f7906ae94dff816040518082815260200191505060405180910390a150565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611d0261222a565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611dc3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e49576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061284f6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611f0f61222a565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611fd0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600060149054906101000a900460ff16612052576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f5061757361626c653a206e6f742070617573656400000000000000000000000081525060200191505060405180910390fd5b61205a612612565b7f8dc6c1e8991434aec3506b21423e68962907ed60fc5ff6e9297923eca89d2f006000604051808215151515815260200191505060405180910390a1565b6120a061222a565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612161576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600060149054906101000a900460ff16156121e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6121ec61271a565b7f8dc6c1e8991434aec3506b21423e68962907ed60fc5ff6e9297923eca89d2f006001604051808215151515815260200191505060405180910390a1565b600033905090565b600061223c612824565b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060800160405290816000820154815260200160018201548152602001600282015481526020016003820160009054906101000a900460ff16151515158152505090506122ca81612604565b61231f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260488152602001806129d06048913960600191505060405180910390fd5b4281602001511115915050919050565b6000612339612824565b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060800160405290816000820154815260200160018201548152602001600282015481526020016003820160009054906101000a900460ff16151515158152505090506123c781612604565b61241c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526040815260200180612a186040913960400191505060405180910390fd5b428160200151111561242d57600080fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166379c650688483600001516040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b1580156124da57600080fd5b505af11580156124ee573d6000803e3d6000fd5b505050506040513d602081101561250457600080fd5b8101908080519060200190929190505050507f0621086247278e7094ff01059f11d8ee791dd22221a2d2313bef0057c2a7df75838260000151604051808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060405180910390a1600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600080820160009055600182016000905560028201600090556003820160006101000a81549060ff02191690555050436004819055506001915050919050565b600081606001519050919050565b600060149054906101000a900460ff16612694576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f5061757361626c653a206e6f742070617573656400000000000000000000000081525060200191505060405180910390fd5b60008060146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6126d761222a565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b600060149054906101000a900460ff161561279d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6001600060146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586127e161222a565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b6040518060800160405280600081526020016000815260200160008152602001600015158152509056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373446563656e747253616c65436f6e74726163743a2052656c6561736520646174652073686f756c6420626520696e206675747572652e446563656e747253616c65436f6e74726163743a20496e697469616c697a6174696f6e20697320616c726561647920636f6d706c657465642e446563656e747253616c65436f6e74726163743a20496e697469616c697a6174696f6e206973206e6f7420636f6d706c657465642e446563656e747253616c65436f6e74726163743a2052656365697665722061646472657373206d757374206e6f7420626520656d7074792e446563656e747253616c65436f6e74726163743a20546865726520617265206e6f2074696d65206c6f636b656420746f6b656e7320666f7220726563656976657220616464726573732e446563656e747253616c65436f6e74726163743a20546f6b656e7320616d6f756e742073686f756c6420626520646566696e65642e446563656e747253616c65436f6e74726163743a20546865726520617265206e6f2074696d65206c6f636b656420746f6b656e7320666f722063757272656e742061646472657373446563656e747253616c65436f6e74726163743a20546865726520617265206e6f2074696d65206c6f636b656420746f6b656e7320666f722061646472657373446563656e747253616c65436f6e74726163743a20416d6f756e74206f6620746f6b656e7320746f206265206d696e746564206578636565647320746865206d617820746f6b656e7320616c6c6f77656420616d6f756e742ea2646970667358221220d820a8cbc6919d29d7086aa257106a410c6e95ba9ceddc168702c628ecd5c73364736f6c634300060a0033
Deployed Bytecode
0x60806040526004361061014f5760003560e01c8063806b984f116100b6578063cbeeba6b1161006f578063cbeeba6b1461060c578063db068e0e14610675578063dedb8c26146106b0578063f2fde38b14610707578063fb201b1d14610758578063fcdb89ce1461076f5761015e565b8063806b984f14610497578063878a712a146104c257806387984fbe146104f15780638da5cb5b1461056e578063a4821719146105c5578063bfdb5941146105cf5761015e565b806350669a031161010857806350669a03146103515780635c975abb1461036857806366d3820314610397578063715018a6146103e85780637153ae7f146103ff57806372ad91021461042e5761015e565b80630891af9d146101685780632c349627146101d1578063336fb494146101e8578063348a80431461025157806343551298146102cf57806348cd4cb1146103265761015e565b3661015e5761015c610786565b005b610166610786565b005b34801561017457600080fd5b506101b76004803603602081101561018b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610abc565b604051808215151515815260200191505060405180910390f35b3480156101dd57600080fd5b506101e6610b97565b005b3480156101f457600080fd5b506102376004803603602081101561020b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610ce4565b604051808215151515815260200191505060405180910390f35b34801561025d57600080fd5b506102a06004803603602081101561027457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610dbf565b604051808581526020018481526020018381526020018215151515815260200194505050505060405180910390f35b3480156102db57600080fd5b506102e4610fac565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561033257600080fd5b5061033b610fd6565b6040518082815260200191505060405180910390f35b34801561035d57600080fd5b50610366610fe0565b005b34801561037457600080fd5b5061037d61112d565b604051808215151515815260200191505060405180910390f35b3480156103a357600080fd5b506103e6600480360360208110156103ba57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611143565b005b3480156103f457600080fd5b506103fd611208565b005b34801561040b57600080fd5b50610414611390565b604051808215151515815260200191505060405180910390f35b34801561043a57600080fd5b5061047d6004803603602081101561045157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506113a0565b604051808215151515815260200191505060405180910390f35b3480156104a357600080fd5b506104ac6115e2565b6040518082815260200191505060405180910390f35b3480156104ce57600080fd5b506104d76115ec565b604051808215151515815260200191505060405180910390f35b3480156104fd57600080fd5b506105546004803603606081101561051457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190803590602001909291905050506115fc565b604051808215151515815260200191505060405180910390f35b34801561057a57600080fd5b50610583611923565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6105cd61194c565b005b3480156105db57600080fd5b506105e4611956565b6040518084815260200183815260200182151515158152602001935050505060405180910390f35b34801561061857600080fd5b5061065b6004803603602081101561062f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611a32565b604051808215151515815260200191505060405180910390f35b34801561068157600080fd5b506106ae6004803603602081101561069857600080fd5b8101908080359060200190929190505050611b47565b005b3480156106bc57600080fd5b506106c5611cd4565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561071357600080fd5b506107566004803603602081101561072a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611cfa565b005b34801561076457600080fd5b5061076d611f07565b005b34801561077b57600080fd5b50610784612098565b005b600060149054906101000a900460ff1615610809576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b600960009054906101000a900460ff1661086e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260358152602001806128e46035913960400191505060405180910390fd5b6000341161087b57600080fd5b6000600554340290506000816002540190506001548111156108e8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526059815260200180612a586059913960600191505060405180910390fd5b80600260008282540192505081905550600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f19350505050158015610960573d6000803e3d6000fd5b50600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166379c6506833846040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015610a0a57600080fd5b505af1158015610a1e573d6000803e3d6000fd5b505050506040513d6020811015610a3457600080fd5b8101908080519060200190929190505050507f4d154d4aae216bed6d0926db77c00df2b57c6b5ba4eee05775de20facede3a7b3383604051808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060405180910390a1436004819055505050565b6000610ac661222a565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b87576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b610b9082612232565b9050919050565b610b9f61222a565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610c60576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16638456cb596040518163ffffffff1660e01b8152600401600060405180830381600087803b158015610cca57600080fd5b505af1158015610cde573d6000803e3d6000fd5b50505050565b6000610cee61222a565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610daf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b610db88261232f565b9050919050565b600080600080610dcd61222a565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e8e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000154600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010154600860008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206002015442600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010154111593509350935093509193509193565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600354905090565b610fe861222a565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146110a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16633f4ba83a6040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561111357600080fd5b505af1158015611127573d6000803e3d6000fd5b50505050565b60008060149054906101000a900460ff16905090565b600960009054906101000a900460ff16156111a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260398152602001806128ab6039913960400191505060405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600960006101000a81548160ff02191690831515021790555050565b61121061222a565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146112d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600061139b3361232f565b905090565b60006113aa61222a565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461146b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b611473612824565b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060800160405290816000820154815260200160018201548152602001600282015481526020016003820160009054906101000a900460ff161515151581525050905061150181612604565b611556576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252604a815260200180612951604a913960600191505060405180910390fd5b8060000151600260008282540392505081905550600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600080820160009055600182016000905560028201600090556003820160006101000a81549060ff021916905550506001915050919050565b6000600454905090565b60006115f733612232565b905090565b600061160661222a565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146116c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561174d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260388152602001806129196038913960400191505060405180910390fd5b600083116117a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603581526020018061299b6035913960400191505060405180910390fd5b428210156117ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260368152602001806128756036913960400191505060405180910390fd5b600083600254019050600154811115611863576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526059815260200180612a586059913960600191505060405180910390fd5b604051806080016040528085815260200184815260200142815260200160011515815250600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000155602082015181600101556040820151816002015560608201518160030160006101000a81548160ff0219169083151502179055509050508360026000828254019250508190555060019150509392505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611954610786565b565b6000806000600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000154600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001015442600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101541115925092509250909192565b6000611a3c61222a565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611afd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b81600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050919050565b611b4f61222a565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611c10576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600060149054906101000a900460ff1615611c93576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b806005819055507fd49aa359d9387d4d625acc5631c7639943ffdf0c67080181e910f7906ae94dff816040518082815260200191505060405180910390a150565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611d0261222a565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611dc3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e49576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061284f6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611f0f61222a565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611fd0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600060149054906101000a900460ff16612052576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f5061757361626c653a206e6f742070617573656400000000000000000000000081525060200191505060405180910390fd5b61205a612612565b7f8dc6c1e8991434aec3506b21423e68962907ed60fc5ff6e9297923eca89d2f006000604051808215151515815260200191505060405180910390a1565b6120a061222a565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612161576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600060149054906101000a900460ff16156121e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6121ec61271a565b7f8dc6c1e8991434aec3506b21423e68962907ed60fc5ff6e9297923eca89d2f006001604051808215151515815260200191505060405180910390a1565b600033905090565b600061223c612824565b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060800160405290816000820154815260200160018201548152602001600282015481526020016003820160009054906101000a900460ff16151515158152505090506122ca81612604565b61231f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260488152602001806129d06048913960600191505060405180910390fd5b4281602001511115915050919050565b6000612339612824565b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060800160405290816000820154815260200160018201548152602001600282015481526020016003820160009054906101000a900460ff16151515158152505090506123c781612604565b61241c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526040815260200180612a186040913960400191505060405180910390fd5b428160200151111561242d57600080fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166379c650688483600001516040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b1580156124da57600080fd5b505af11580156124ee573d6000803e3d6000fd5b505050506040513d602081101561250457600080fd5b8101908080519060200190929190505050507f0621086247278e7094ff01059f11d8ee791dd22221a2d2313bef0057c2a7df75838260000151604051808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060405180910390a1600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600080820160009055600182016000905560028201600090556003820160006101000a81549060ff02191690555050436004819055506001915050919050565b600081606001519050919050565b600060149054906101000a900460ff16612694576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f5061757361626c653a206e6f742070617573656400000000000000000000000081525060200191505060405180910390fd5b60008060146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6126d761222a565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b600060149054906101000a900460ff161561279d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6001600060146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586127e161222a565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b6040518060800160405280600081526020016000815260200160008152602001600015158152509056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373446563656e747253616c65436f6e74726163743a2052656c6561736520646174652073686f756c6420626520696e206675747572652e446563656e747253616c65436f6e74726163743a20496e697469616c697a6174696f6e20697320616c726561647920636f6d706c657465642e446563656e747253616c65436f6e74726163743a20496e697469616c697a6174696f6e206973206e6f7420636f6d706c657465642e446563656e747253616c65436f6e74726163743a2052656365697665722061646472657373206d757374206e6f7420626520656d7074792e446563656e747253616c65436f6e74726163743a20546865726520617265206e6f2074696d65206c6f636b656420746f6b656e7320666f7220726563656976657220616464726573732e446563656e747253616c65436f6e74726163743a20546f6b656e7320616d6f756e742073686f756c6420626520646566696e65642e446563656e747253616c65436f6e74726163743a20546865726520617265206e6f2074696d65206c6f636b656420746f6b656e7320666f722063757272656e742061646472657373446563656e747253616c65436f6e74726163743a20546865726520617265206e6f2074696d65206c6f636b656420746f6b656e7320666f722061646472657373446563656e747253616c65436f6e74726163743a20416d6f756e74206f6620746f6b656e7320746f206265206d696e746564206578636565647320746865206d617820746f6b656e7320616c6c6f77656420616d6f756e742ea2646970667358221220d820a8cbc6919d29d7086aa257106a410c6e95ba9ceddc168702c628ecd5c73364736f6c634300060a0033
Deployed Bytecode Sourcemap
31499:12107:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43396:11;:9;:11::i;:::-;31499:12107;;43584:11;:9;:11::i;:::-;31499:12107;34650:165;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;39507:78;;;;;;;;;;;;;:::i;:::-;;35757:171;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;38404:358;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41006:99;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;40264:86;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;39664:82;;;;;;;;;;;;;:::i;:::-;;29818:78;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;38836:265;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;28192:148;;;;;;;;;;;;;:::i;:::-;;35471:137;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;37122:670;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;40423:84;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;34388:141;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;33322:959;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;27550:79;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;42017:67;;;:::i;:::-;;37926:272;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40643:181;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;39204:226;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;32048:37;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;28495:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;40072:118;;;;;;;;;;;;;:::i;:::-;;39850:119;;;;;;;;;;;;;:::i;:::-;;42160:1069;30136:7;;;;;;;;;;;30135:8;30127:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41785:24:::1;;;;;;;;;;;41777:90;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42297:1:::2;42285:9;:13;42277:22;;;::::0;::::2;;42370:14;42399:13;;42387:9;:25;42370:42;;42479:13;42510:6;42495:12;;:21;42479:37;;42593:12;;42584:5;:21;;42576:123;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42776:5;42760:12;;:21;;;;;;;;;;;42851:9;;;;;;;;;;;:18;;:29;42870:9;42851:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;42952:12;;;;;;;;;;;:22;;;42975:10;42987:6;42952:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;43107:32;43120:10;43132:6;43107:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;43209:12;43196:10;:25;;;;41878:1;;42160:1069::o:0;34650:165::-;34735:15;27772:12;:10;:12::i;:::-;27762:22;;:6;;;;;;;;;;;:22;;;27754:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34770:37:::1;34798:8;34770:27;:37::i;:::-;34763:44;;34650:165:::0;;;:::o;39507:78::-;27772:12;:10;:12::i;:::-;27762:22;;:6;;;;;;;;;;;:22;;;27754:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39557:12:::1;;;;;;;;;;;:18;;;:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;39507:78::o:0;35757:171::-;35844:12;27772;:10;:12::i;:::-;27762:22;;:6;;;;;;;;;;;:22;;;27754:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35876:44:::1;35911:8;35876:34;:44::i;:::-;35869:51;;35757:171:::0;;;:::o;38404:358::-;38492:20;38514:16;38532:14;38548:18;27772:12;:10;:12::i;:::-;27762:22;;:6;;;;;;;;;;;:22;;;27754:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38587:16:::1;:26;38604:8;38587:26;;;;;;;;;;;;;;;:39;;;38628:16;:26;38645:8;38628:26;;;;;;;;;;;;;;;:38;;;38668:16;:26;38685:8;38668:26;;;;;;;;;;;;;;;:36;;;38750:3;38706:16;:28;38723:10;38706:28;;;;;;;;;;;;;;;:40;;;:47;;38579:175;;;;;;;;38404:358:::0;;;;;:::o;41006:99::-;41051:17;41088:9;;;;;;;;;;;41081:16;;41006:99;:::o;40264:86::-;40307:4;40331:11;;40324:18;;40264:86;:::o;39664:82::-;27772:12;:10;:12::i;:::-;27762:22;;:6;;;;;;;;;;;:22;;;27754:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39716:12:::1;;;;;;;;;;;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;39664:82::o:0;29818:78::-;29857:4;29881:7;;;;;;;;;;;29874:14;;29818:78;:::o;38836:265::-;41542:24;;;;;;;;;;;41541:25;41533:95;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38989:12:::1;38956;;:46;;;;;;;;;;;;;;;;;;39089:4;39062:24;;:31;;;;;;;;;;;;;;;;;;38836:265:::0;:::o;28192:148::-;27772:12;:10;:12::i;:::-;27762:22;;:6;;;;;;;;;;;:22;;;27754:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28299:1:::1;28262:40;;28283:6;::::0;::::1;;;;;;;;;28262:40;;;;;;;;;;;;28330:1;28313:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;28192:148::o:0;35471:137::-;35522:12;35554:46;35589:10;35554:34;:46::i;:::-;35547:53;;35471:137;:::o;37122:670::-;37208:12;27772;:10;:12::i;:::-;27762:22;;:6;;;;;;;;;;;:22;;;27754:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37233:46:::1;;:::i;:::-;37282:16;:26;37299:8;37282:26;;;;;;;;;;;;;;;37233:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;37329:47;37356:19;37329:26;:47::i;:::-;37321:134;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37584:19;:32;;;37568:12;;:48;;;;;;;;;;;37734:16;:26;37751:8;37734:26;;;;;;;;;;;;;;;;37727:33:::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37780:4;37773:11;;;37122:670:::0;;;:::o;40423:84::-;40465:4;40489:10;;40482:17;;40423:84;:::o;34388:141::-;34447:15;34482:39;34510:10;34482:27;:39::i;:::-;34475:46;;34388:141;:::o;33322:959::-;33437:12;27772;:10;:12::i;:::-;27762:22;;:6;;;;;;;;;;;:22;;;27754:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33492:1:::1;33472:22;;:8;:22;;;;33464:91;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33589:1;33574:12;:16;33566:82;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33682:3;33667:11;:18;;33659:85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33811:13;33842:12;33827;;:27;33811:43;;33931:12;;33922:5;:21;;33914:123;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34151:57;;;;;;;;34171:12;34151:57;;;;34185:11;34151:57;;;;34198:3;34151:57;;;;34203:4;34151:57;;;;::::0;34122:16:::1;:26;34139:8;34122:26;;;;;;;;;;;;;;;:86;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34237:12;34221;;:28;;;;;;;;;;;34269:4;34262:11;;;33322:959:::0;;;;;:::o;27550:79::-;27588:7;27615:6;;;;;;;;;;;27608:13;;27550:79;:::o;42017:67::-;42065:11;:9;:11::i;:::-;42017:67::o;37926:272::-;37978:20;38000:16;38018:18;38057:16;:28;38074:10;38057:28;;;;;;;;;;;;;;;:41;;;38100:16;:28;38117:10;38100:28;;;;;;;;;;;;;;;:40;;;38186:3;38142:16;:28;38159:10;38142:28;;;;;;;;;;;;;;;:40;;;:47;;38049:141;;;;;;37926:272;;;:::o;40643:181::-;40716:10;27772:12;:10;:12::i;:::-;27762:22;;:6;;;;;;;;;;;:22;;;27754:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40785:7:::1;40773:9;;:19;;;;;;;;;;;;;;;;;;40812:4;40805:11;;40643:181:::0;;;:::o;39204:226::-;27772:12;:10;:12::i;:::-;27762:22;;:6;;;;;;;;;;;:22;;;27754:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30136:7:::1;;;;;;;;;;;30135:8;30127:37;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;39306:12:::2;39290:13;:28;;;;39390:32;39409:12;39390:32;;;;;;;;;;;;;;;;;;39204:226:::0;:::o;32048:37::-;;;;;;;;;;;;;:::o;28495:244::-;27772:12;:10;:12::i;:::-;27762:22;;:6;;;;;;;;;;;:22;;;27754:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28604:1:::1;28584:22;;:8;:22;;;;28576:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28694:8;28665:38;;28686:6;::::0;::::1;;;;;;;;;28665:38;;;;;;;;;;;;28723:8;28714:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;28495:244:::0;:::o;40072:118::-;27772:12;:10;:12::i;:::-;27762:22;;:6;;;;;;;;;;;:22;;;27754:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30412:7:::1;;;;;;;;;;;30404:40;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;40132:10:::2;:8;:10::i;:::-;40155:27;40176:5;40155:27;;;;;;;;;;;;;;;;;;;;;;40072:118::o:0;39850:119::-;27772:12;:10;:12::i;:::-;27762:22;;:6;;;;;;;;;;;:22;;;27754:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30136:7:::1;;;;;;;;;;;30135:8;30127:37;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;39914:8:::2;:6;:8::i;:::-;39935:26;39956:4;39935:26;;;;;;;;;;;;;;;;;;;;;;39850:119::o:0;663:106::-;716:15;751:10;744:17;;663:106;:::o;34942:391::-;35019:15;35047:46;;:::i;:::-;35096:16;:26;35113:8;35096:26;;;;;;;;;;;;;;;35047:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35143:47;35170:19;35143:26;:47::i;:::-;35135:132;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35322:3;35287:19;:31;;;:38;;35280:45;;;34942:391;;;:::o;36053:982::-;36132:12;36223:46;;:::i;:::-;36272:16;:26;36289:8;36272:26;;;;;;;;;;;;;;;36223:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36319:47;36346:19;36319:26;:47::i;:::-;36311:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36489:3;36454:19;:31;;;:38;;36446:47;;;;;;36565:12;;;;;;;;;;;:22;;;36588:8;36598:19;:32;;;36565:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36710:67;36734:8;36744:19;:32;;;36710:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;36895:16;:26;36912:8;36895:26;;;;;;;;;;;;;;;;36888:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36991:12;36978:10;:25;;;;37023:4;37016:11;;;36053:982;;;:::o;41228:174::-;41334:12;41366:19;:28;;;41359:35;;41228:174;;;:::o;30867:120::-;30412:7;;;;;;;;;;;30404:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30936:5:::1;30926:7:::0;::::1;:15;;;;;;;;;;;;;;;;;;30957:22;30966:12;:10;:12::i;:::-;30957:22;;;;;;;;;;;;;;;;;;;;;;30867:120::o:0;30608:118::-;30136:7;;;;;;;;;;;30135:8;30127:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30678:4:::1;30668:7;;:14;;;;;;;;;;;;;;;;;;30698:20;30705:12;:10;:12::i;:::-;30698:20;;;;;;;;;;;;;;;;;;;;;;30608:118::o:0;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o
Swarm Source
ipfs://d820a8cbc6919d29d7086aa257106a410c6e95ba9ceddc168702c628ecd5c733
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.