More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 31 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Reclaim Tokens | 11515935 | 1486 days ago | IN | 0 ETH | 0.00205436 | ||||
Reclaim Tokens | 11515843 | 1486 days ago | IN | 0 ETH | 0.00205498 | ||||
Buy Tokens | 11473446 | 1492 days ago | IN | 1 ETH | 0.00300276 | ||||
Buy Tokens | 11435521 | 1498 days ago | IN | 1 ETH | 0.00300276 | ||||
Buy Tokens | 11424161 | 1500 days ago | IN | 1.04 ETH | 0.00406456 | ||||
Buy Tokens | 11417276 | 1501 days ago | IN | 1 ETH | 0.00300276 | ||||
Buy Tokens | 11417258 | 1501 days ago | IN | 1.08 ETH | 0.00300276 | ||||
Buy Tokens | 11416240 | 1501 days ago | IN | 1.16 ETH | 0.00300276 | ||||
Buy Tokens | 11412361 | 1502 days ago | IN | 1 ETH | 0.00300276 | ||||
Buy Tokens | 11411800 | 1502 days ago | IN | 1.3 ETH | 0.00300276 | ||||
Buy Tokens | 11410924 | 1502 days ago | IN | 1.5 ETH | 0.00300276 | ||||
Buy Tokens | 11409932 | 1502 days ago | IN | 1.03 ETH | 0.00300276 | ||||
Buy Tokens | 11409881 | 1502 days ago | IN | 1.01 ETH | 0.00240276 | ||||
Buy Tokens | 11406594 | 1503 days ago | IN | 1 ETH | 0.00300276 | ||||
Buy Tokens | 11404576 | 1503 days ago | IN | 1 ETH | 0.00300276 | ||||
Buy Tokens | 11404547 | 1503 days ago | IN | 1.02 ETH | 0.00300276 | ||||
Buy Tokens | 11403906 | 1503 days ago | IN | 1.04 ETH | 0.00300276 | ||||
Buy Tokens | 11403819 | 1503 days ago | IN | 1 ETH | 0.00300276 | ||||
Buy Tokens | 11403803 | 1503 days ago | IN | 1.06481578 ETH | 0.00300276 | ||||
Buy Tokens | 11403685 | 1503 days ago | IN | 1.03403689 ETH | 0.00300276 | ||||
Buy Tokens | 11401397 | 1503 days ago | IN | 1.02 ETH | 0.00300276 | ||||
Buy Tokens | 11400408 | 1504 days ago | IN | 1 ETH | 0.00300276 | ||||
Buy Tokens | 11399832 | 1504 days ago | IN | 1.01 ETH | 0.00300276 | ||||
Transfer | 11399056 | 1504 days ago | IN | 1.0037112 ETH | 0.00164725 | ||||
Transfer | 11399050 | 1504 days ago | IN | 0.99527665 ETH | 0.0006517 |
Latest 24 internal transactions
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
11473446 | 1492 days ago | 1 ETH | ||||
11435521 | 1498 days ago | 1 ETH | ||||
11424161 | 1500 days ago | 1.04 ETH | ||||
11417276 | 1501 days ago | 1 ETH | ||||
11417258 | 1501 days ago | 1.08 ETH | ||||
11416240 | 1501 days ago | 1.16 ETH | ||||
11412361 | 1502 days ago | 1 ETH | ||||
11411800 | 1502 days ago | 1.3 ETH | ||||
11410924 | 1502 days ago | 1.5 ETH | ||||
11409932 | 1502 days ago | 1.03 ETH | ||||
11409881 | 1502 days ago | 1.01 ETH | ||||
11406594 | 1503 days ago | 1 ETH | ||||
11404576 | 1503 days ago | 1 ETH | ||||
11404547 | 1503 days ago | 1.02 ETH | ||||
11403906 | 1503 days ago | 1.04 ETH | ||||
11403819 | 1503 days ago | 1 ETH | ||||
11403803 | 1503 days ago | 1.06481578 ETH | ||||
11403685 | 1503 days ago | 1.03403689 ETH | ||||
11401397 | 1503 days ago | 1.02 ETH | ||||
11400408 | 1504 days ago | 1 ETH | ||||
11399832 | 1504 days ago | 1.01 ETH | ||||
11399056 | 1504 days ago | 1.0037112 ETH | ||||
11398037 | 1504 days ago | 1 ETH | ||||
11398037 | 1504 days ago | 1 ETH |
Loading...
Loading
Contract Name:
PreSale
Compiler Version
v0.6.2+commit.bacdbe57
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-12-01 */ // File: openzeppelin-solidity/contracts/GSN/Context.sol // SPDX-License-Identifier: MIT 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-solidity/contracts/access/Ownable.sol // SPDX-License-Identifier: MIT 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-solidity/contracts/utils/Address.sol // SPDX-License-Identifier: MIT 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) { // This method relies in extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @dev 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-solidity/contracts/math/SafeMath.sol // SPDX-License-Identifier: MIT 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-solidity/contracts/utils/ReentrancyGuard.sol // SPDX-License-Identifier: MIT pragma solidity ^0.6.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor () internal { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and make it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: openzeppelin-solidity/contracts/token/ERC20/IERC20.sol // SPDX-License-Identifier: MIT 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-solidity/contracts/token/ERC20/ERC20.sol // SPDX-License-Identifier: MIT 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 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-solidity/contracts/token/ERC20/ERC20Burnable.sol // SPDX-License-Identifier: MIT pragma solidity ^0.6.0; /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { uint256 decreasedAllowance = allowance(account, _msgSender()).sub(amount, "ERC20: burn amount exceeds allowance"); _approve(account, _msgSender(), decreasedAllowance); _burn(account, amount); } } // File: contracts/Token.sol pragma solidity 0.6.2; contract KYCDToken is Ownable, ERC20Burnable { using Address for address; using SafeMath for uint256; /// Constant that holds token distribution. uint256 constant public MULTIPLIER = 10 ** 18; uint256 constant public TEAM_ALLOCATION = 100000 * MULTIPLIER; uint256 constant public MARKETING_ALLOCATION = 100000 * MULTIPLIER; uint256 constant public REWARDS_ALLOCATION = 300000 * MULTIPLIER; uint256 constant public PRESALE_ALLOCATION = 500000 * MULTIPLIER; /// Timestamp at which rewards tokens get released. i.e Till Pre Sale runs. uint256 public rewardsAllocationReleaseAt; /// Timestamp at which mearketing tokens get released. i.e 3 Months after the Pre Sale. uint256 public marketingAllocationReleaseAt; /// Timestamp at which team tokens get released. i.e /// Once Presale ends it will lock the tokens for 3 months and after that have a vesting of 1 year /// with a cliff of 3 months. uint256 public teamAllocationVestingStartAt; struct VestingMeta { /// Variable to keep track of last period vesting release. uint256 lastVestingReleaseTime; /// variable to keep track of the already release amount. uint256 alreadyReleasedAmount; } VestingMeta public vestingDetails; /// Boolean variable to know whether team tokens are allocated or not. bool public isTeamTokensAllocated; /// Boolean variable to know whether marketing tokens are allocated or not. bool public isMarketingTokensAllocated; /// Boolean variable to know whether rewards tokens are allocated or not. bool public isRewardsTokensAllocated; /// Private variable to switch off the minting. bool private _mintingClosed; /// Address of the sale contract address. address public preSaleContractAddress; /// Boolean variable to keep track whether release timings are set or not. bool public isReleaseTimingsSet; /// Even emitted when tokens get unlocked. event TokensUnlocked(address indexed _beneficiary, uint256 _amount); /// @dev Contructor to set the token name & symbol. /// /// @param _tokenName Name of the token. /// @param _tokenSymbol Symbol of the token. constructor(string memory _tokenName, string memory _tokenSymbol) ERC20(_tokenName, _tokenSymbol) public { // Set initial variables isTeamTokensAllocated = false; isMarketingTokensAllocated = false; isRewardsTokensAllocated = false; _mintingClosed = false; isReleaseTimingsSet = false; } /// @dev Used to mint initial number of tokens. Called only by the owner of the contract. /// This is a one time operation performed by the token issuer. /// /// @param _saleContractAddress Address of the pre sale contract. function initialMint(address _saleContractAddress) public onlyOwner { require(!_mintingClosed, "Intital minting closed"); require(_saleContractAddress.isContract(), "Not a valid contract address"); // Close the minting. _mintingClosed = true; // Mint Presale tokens to the sale contract address. _mint(_saleContractAddress, PRESALE_ALLOCATION); // Mint tokens for locking allocation. // Compute total amounts of token. Avoiding SafeMath as values are deterministics. uint256 _amount = TEAM_ALLOCATION + MARKETING_ALLOCATION + REWARDS_ALLOCATION; _mint(address(this), _amount); } /// @dev When sale cap is reached it will set the token release timings for different allocations /// NB - Can only be called by the pre sale contract address. function setReleaseTimings() external { require(_msgSender() == preSaleContractAddress, "Un-authorized access"); require(!isReleaseTimingsSet, "Release timings are already set"); uint256 currentTime = now; uint256 threeMonthsPeriod = currentTime + (3 * 30 days); // 3 months time. rewardsAllocationReleaseAt = currentTime; marketingAllocationReleaseAt = threeMonthsPeriod; teamAllocationVestingStartAt = threeMonthsPeriod; vestingDetails.lastVestingReleaseTime = teamAllocationVestingStartAt; vestingDetails.alreadyReleasedAmount = uint256(0); isReleaseTimingsSet = true; } /// @dev Used to unlock tokens, Only be called by the contract owner & also received by the owner as well. /// It commulate the `releaseAmount` as per the time passed and release the /// commulated number of tokens. /// e.g - Owner call this function at Monday, 08-Mar-21 10:00:00 UTC /// then commulated amount of tokens will be REWARDS_ALLOCATION + MARKETING_ALLOCATION function unlockTokens() external onlyOwner { uint256 currentTime = now; uint256 releaseAmount = 0; if (!isRewardsTokensAllocated && currentTime >= rewardsAllocationReleaseAt) { releaseAmount = REWARDS_ALLOCATION; isRewardsTokensAllocated = true; } if (!isMarketingTokensAllocated && currentTime >= marketingAllocationReleaseAt) { releaseAmount += MARKETING_ALLOCATION; isMarketingTokensAllocated = true; } if (!isTeamTokensAllocated && currentTime >= teamAllocationVestingStartAt) { releaseAmount += _getTeamTokenReleaseAmount(); } require(releaseAmount > 0, "Tokens are locked"); // Transfer funds to owner. _transfer(address(this), _msgSender(), releaseAmount); emit TokensUnlocked(_msgSender(), releaseAmount); } function _getTeamTokenReleaseAmount() internal returns(uint256 releasedAmount) { if (vestingDetails.alreadyReleasedAmount == TEAM_ALLOCATION) { isTeamTokensAllocated = true; return 0; } else { uint256 currentTime = now; uint256 noOfPeriods = currentTime.sub(vestingDetails.lastVestingReleaseTime) / (3 * 30 days); releasedAmount = TEAM_ALLOCATION.div(noOfPeriods); vestingDetails.lastVestingReleaseTime = currentTime; vestingDetails.alreadyReleasedAmount += releasedAmount; } } } // File: contracts/PreSale.sol pragma solidity 0.6.2; contract PreSale is ReentrancyGuard, Ownable { using Address for address payable; using SafeMath for uint256; KYCDToken public token; /// Sale phases timings. /// /// Early Phase starts once open() function is called. /// while token rate during this phase is ~ 0.00142 i.e 1 ETH = 700 tokens. /// /// Late Phase starts once early phase cap reaches. /// while token rate during this phase is ~ 0.00167 i.e 1 ETH = 600 tokens. /// /// Once late phase cap is achieved sale become closed. uint256 constant public EARLY_PHASE_CAP = 300 ether; uint256 constant public LATE_PHASE_CAP = 400 ether; uint256 constant public EARLY_PHASE_MINIMUM_INVESTMENT_CAP = 1 ether; uint256 constant public LATE_PHASE_MINIMUM_INVESTMENT_CAP = 5 ether / 10; /// Multiplier to provide precision. uint256 constant public MULTIPLIER = 10 ** 18; /// Rates for different phases of the sale. uint256 constant public EALRY_PHASE_RATE = 700 * MULTIPLIER; /// i.e 700 tokens = 1 ETH. uint256 constant public LATE_PHASE_RATE = 600 * MULTIPLIER; /// i.e 600 tokens = 1 ETH. /// No. of total ETH raised. uint256 public fundCollected; /// Address receives the funds collected from the sale. address public fundsReceiver; /// Boolean variable to provide the status of sale. bool public isOpen; /// Event emitted when tokens are bought by the investor. event TokensBought(address indexed _beneficiary, uint256 _amount); /// @dev fallback function to receives ETH. receive() external payable { // calls `buyTokens()` buyTokens(); } /// @dev Constructor to set initial values for the contract. /// /// @param _tokenAddress Address of the token that gets distributed. /// @param _fundsReceiver Address that receives the funds collected from the sale. constructor(address _tokenAddress, address _fundsReceiver) public { // 0x0 is not allowed. It is only a sanity check. _checkForZeroAddress(_tokenAddress); _checkForZeroAddress(_fundsReceiver); // Assign variables. token = KYCDToken(_tokenAddress); fundsReceiver = _fundsReceiver; // Set sale status to false. isOpen = false; } /// @dev Used to open the sale contract. function open() public onlyOwner { require(!isOpen, "Sale is already open"); require(token.balanceOf(address(this)) > uint256(0), "Balance is insufficient"); isOpen = true; } /// @dev Transfer tokens to the owner address. function reclaimTokens(uint256 _amount) public onlyOwner { require(token.transfer(_msgSender(), _amount), "Transfer failed"); } /// @dev Used to buy tokens using ETH. It is only allowed to call when sale is running. function buyTokens() public payable nonReentrant { // Check whether sale is in running or not. _hasSaleOpen(); // Check for the 0 value. require(msg.value > 0, "Zero investments aren't allowed"); // Calculate the amount of tokens to sale. uint256 tokensToSale = getROI(msg.value); // Sends funds to funds collector wallet. address(uint160(fundsReceiver)).sendValue(msg.value); // Tokens get transfered from this contract to the buyer. require(token.transfer(msg.sender, tokensToSale), "Transfer failed"); // Emit event. emit TokensBought(msg.sender, tokensToSale); } /// @dev Public getter to fetch the no. of tokens . function getROI(uint256 _amount) internal returns(uint256 _roi) { if (fundCollected < EARLY_PHASE_CAP) { require(_amount >= EARLY_PHASE_MINIMUM_INVESTMENT_CAP, "Less than minimum allowed investment amount in early phase"); uint256 newFundsAmount = fundCollected.add(_amount); if (newFundsAmount > EARLY_PHASE_CAP) { _roi = (_amount.sub(newFundsAmount - EARLY_PHASE_CAP) * EALRY_PHASE_RATE).div(MULTIPLIER); fundCollected = fundCollected.add(_amount.sub(newFundsAmount - EARLY_PHASE_CAP)); _roi = _roi + _getLatePhaseROI(newFundsAmount - EARLY_PHASE_CAP); } else { _roi = _amount * EALRY_PHASE_RATE / MULTIPLIER; fundCollected = fundCollected.add(_amount); } } else { require(_amount >= LATE_PHASE_MINIMUM_INVESTMENT_CAP, "Less than minimum allowed investment amount in late phase"); _roi = _getLatePhaseROI(_amount); } } function _getLatePhaseROI(uint256 _amount) internal returns(uint256 _roi) { uint256 newFundsAmount = fundCollected.add(_amount); if (newFundsAmount > (EARLY_PHASE_CAP + LATE_PHASE_CAP)) { // This extra amount needs to refund uint256 extraAmount = newFundsAmount - (EARLY_PHASE_CAP + LATE_PHASE_CAP); _amount = _amount - extraAmount; // Initiate refund of extra ETHs address(uint160(_msgSender())).sendValue(extraAmount); } _roi = _amount * LATE_PHASE_RATE / MULTIPLIER; fundCollected = fundCollected.add(_amount); if (fundCollected == (EARLY_PHASE_CAP + LATE_PHASE_CAP)) { token.setReleaseTimings(); } } function _hasSaleOpen() internal view { require(isOpen, "Sale has yet to be started"); require(fundCollected < EARLY_PHASE_CAP + LATE_PHASE_CAP, "Cap is reached, Sale closed"); } function _checkForZeroAddress(address _target) internal pure { require(_target != address(0), "Invalid address"); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_tokenAddress","type":"address"},{"internalType":"address","name":"_fundsReceiver","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"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":true,"internalType":"address","name":"_beneficiary","type":"address"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"TokensBought","type":"event"},{"inputs":[],"name":"EALRY_PHASE_RATE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"EARLY_PHASE_CAP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"EARLY_PHASE_MINIMUM_INVESTMENT_CAP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LATE_PHASE_CAP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LATE_PHASE_MINIMUM_INVESTMENT_CAP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LATE_PHASE_RATE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MULTIPLIER","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTokens","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"fundCollected","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"fundsReceiver","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"open","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"reclaimTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"token","outputs":[{"internalType":"contract KYCDToken","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
608060405234801561001057600080fd5b506040516112713803806112718339818101604052604081101561003357600080fd5b508051602090910151600160009081556100546001600160e01b036100ff16565b600180546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506100b4826001600160e01b0361010316565b6100c6816001600160e01b0361010316565b600280546001600160a01b03199081166001600160a01b039485161790915560048054909116919092161760ff60a01b19169055610153565b3390565b6001600160a01b038116610150576040805162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206164647265737360881b604482015290519081900360640190fd5b50565b61110f806101626000396000f3fe6080604052600436106101025760003560e01c80638da5cb5b11610095578063e71fb56c11610064578063e71fb56c14610247578063f2fde38b1461025c578063fc0c546a1461028f578063fcb8bad0146102a4578063fcfff16f146102b957610111565b80638da5cb5b14610200578063cc12f92814610215578063d06238cc1461022a578063d0febe4c1461023f57610111565b806347535d7b116100d157806347535d7b146101835780636952b556146101ac578063715018a6146101c15780637760da7f146101d657610111565b8063059f8b161461011657806323c7e09c1461013d578063370329c41461016e578063416940621461011657610111565b366101115761010f6102ce565b005b600080fd5b34801561012257600080fd5b5061012b6104b3565b60408051918252519081900360200190f35b34801561014957600080fd5b506101526104bf565b604080516001600160a01b039092168252519081900360200190f35b34801561017a57600080fd5b5061012b6104ce565b34801561018f57600080fd5b506101986104da565b604080519115158252519081900360200190f35b3480156101b857600080fd5b5061012b6104ea565b3480156101cd57600080fd5b5061010f6104f7565b3480156101e257600080fd5b5061010f600480360360208110156101f957600080fd5b5035610599565b34801561020c57600080fd5b506101526106cc565b34801561022157600080fd5b5061012b6106db565b34801561023657600080fd5b5061012b6106e8565b61010f6102ce565b34801561025357600080fd5b5061012b6106f5565b34801561026857600080fd5b5061010f6004803603602081101561027f57600080fd5b50356001600160a01b03166106fb565b34801561029b57600080fd5b506101526107f4565b3480156102b057600080fd5b5061012b610803565b3480156102c557600080fd5b5061010f610810565b60026000541415610326576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b600260005561033361099c565b60003411610388576040805162461bcd60e51b815260206004820152601f60248201527f5a65726f20696e766573746d656e7473206172656e277420616c6c6f77656400604482015290519081900360640190fd5b600061039334610a5b565b6004549091506103b2906001600160a01b03163463ffffffff610bfd16565b6002546040805163a9059cbb60e01b81523360048201526024810184905290516001600160a01b039092169163a9059cbb916044808201926020929091908290030181600087803b15801561040657600080fd5b505af115801561041a573d6000803e3d6000fd5b505050506040513d602081101561043057600080fd5b5051610475576040805162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b604482015290519081900360640190fd5b60408051828152905133917f745f661b8143944fb883f50694ebed3a871e43c451d9d4bf4648a9d551d7e47a919081900360200190a2506001600055565b670de0b6b3a764000081565b6004546001600160a01b031681565b6706f05b59d3b2000081565b600454600160a01b900460ff1681565b6815af1d78b58c40000081565b6104ff610ce7565b6001546001600160a01b0390811691161461054f576040805162461bcd60e51b81526020600482018190526024820152600080516020611081833981519152604482015290519081900360640190fd5b6001546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600180546001600160a01b0319169055565b6105a1610ce7565b6001546001600160a01b039081169116146105f1576040805162461bcd60e51b81526020600482018190526024820152600080516020611081833981519152604482015290519081900360640190fd5b6002546001600160a01b031663a9059cbb61060a610ce7565b836040518363ffffffff1660e01b815260040180836001600160a01b03166001600160a01b0316815260200182815260200192505050602060405180830381600087803b15801561065a57600080fd5b505af115801561066e573d6000803e3d6000fd5b505050506040513d602081101561068457600080fd5b50516106c9576040805162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b604482015290519081900360640190fd5b50565b6001546001600160a01b031690565b682086ac35105260000081565b6825f273933db570000081565b60035481565b610703610ce7565b6001546001600160a01b03908116911614610753576040805162461bcd60e51b81526020600482018190526024820152600080516020611081833981519152604482015290519081900360640190fd5b6001600160a01b0381166107985760405162461bcd60e51b81526004018080602001828103825260268152602001806110216026913960400191505060405180910390fd5b6001546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600180546001600160a01b0319166001600160a01b0392909216919091179055565b6002546001600160a01b031681565b681043561a882930000081565b610818610ce7565b6001546001600160a01b03908116911614610868576040805162461bcd60e51b81526020600482018190526024820152600080516020611081833981519152604482015290519081900360640190fd5b600454600160a01b900460ff16156108be576040805162461bcd60e51b815260206004820152601460248201527329b0b6329034b99030b63932b0b23c9037b832b760611b604482015290519081900360640190fd5b600254604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b15801561090957600080fd5b505afa15801561091d573d6000803e3d6000fd5b505050506040513d602081101561093357600080fd5b505111610987576040805162461bcd60e51b815260206004820152601760248201527f42616c616e636520697320696e73756666696369656e74000000000000000000604482015290519081900360640190fd5b6004805460ff60a01b1916600160a01b179055565b600454600160a01b900460ff166109fa576040805162461bcd60e51b815260206004820152601a60248201527f53616c65206861732079657420746f2062652073746172746564000000000000604482015290519081900360640190fd5b6003546825f273933db570000011610a59576040805162461bcd60e51b815260206004820152601b60248201527f43617020697320726561636865642c2053616c6520636c6f7365640000000000604482015290519081900360640190fd5b565b6000681043561a88293000006003541015610ba557670de0b6b3a7640000821015610ab75760405162461bcd60e51b815260040180806020018281038252603a815260200180610fe7603a913960400191505060405180910390fd5b600354600090610acd908463ffffffff610ceb16565b9050681043561a8829300000811115610b7057610b1f670de0b6b3a76400006825f273933db5700000610b1286681043561a88292fffff19860163ffffffff610d4c16565b029063ffffffff610d8e16565b9150610b4f610b4084681043561a88292fffff19840163ffffffff610d4c16565b6003549063ffffffff610ceb16565b600355610b67681043561a88292fffff198201610dd0565b82019150610b9f565b600354670de0b6b3a76400006825f273933db57000008502049250610b9b908463ffffffff610ceb16565b6003555b50610bf8565b6706f05b59d3b20000821015610bec5760405162461bcd60e51b81526004018080602001828103825260398152602001806110a16039913960400191505060405180910390fd5b610bf582610dd0565b90505b919050565b80471015610c52576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e6365000000604482015290519081900360640190fd5b6040516000906001600160a01b0384169083908381818185875af1925050503d8060008114610c9d576040519150601f19603f3d011682016040523d82523d6000602084013e610ca2565b606091505b5050905080610ce25760405162461bcd60e51b815260040180806020018281038252603a815260200180611047603a913960400191505060405180910390fd5b505050565b3390565b600082820183811015610d45576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6000610d4583836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610eea565b6000610d4583836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250610f81565b600080610de883600354610ceb90919063ffffffff16565b90506825f273933db5700000811115610e3b57918290036825f273933db570000001916825f273933db56fffff198101610e3981610e24610ce7565b6001600160a01b03169063ffffffff610bfd16565b505b600354670de0b6b3a7640000682086ac3510526000008502049250610e66908463ffffffff610ceb16565b60038190556825f273933db57000001415610ee457600260009054906101000a90046001600160a01b03166001600160a01b031663b80d60726040518163ffffffff1660e01b8152600401600060405180830381600087803b158015610ecb57600080fd5b505af1158015610edf573d6000803e3d6000fd5b505050505b50919050565b60008184841115610f795760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610f3e578181015183820152602001610f26565b50505050905090810190601f168015610f6b5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008183610fd05760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315610f3e578181015183820152602001610f26565b506000838581610fdc57fe5b049594505050505056fe4c657373207468616e206d696e696d756d20616c6c6f77656420696e766573746d656e7420616d6f756e7420696e206561726c792070686173654f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373416464726573733a20756e61626c6520746f2073656e642076616c75652c20726563697069656e74206d617920686176652072657665727465644f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65724c657373207468616e206d696e696d756d20616c6c6f77656420696e766573746d656e7420616d6f756e7420696e206c617465207068617365a26469706673582212206c0b77975792f773c19cca50d71b2c663b6baeca7fe8c38de30c379ff0f61ba064736f6c634300060200330000000000000000000000005e8da97efc0bb4759331ed2caa298df0ef752a96000000000000000000000000903ae1b519395049d7f56779c66ff74047577c1f
Deployed Bytecode
0x6080604052600436106101025760003560e01c80638da5cb5b11610095578063e71fb56c11610064578063e71fb56c14610247578063f2fde38b1461025c578063fc0c546a1461028f578063fcb8bad0146102a4578063fcfff16f146102b957610111565b80638da5cb5b14610200578063cc12f92814610215578063d06238cc1461022a578063d0febe4c1461023f57610111565b806347535d7b116100d157806347535d7b146101835780636952b556146101ac578063715018a6146101c15780637760da7f146101d657610111565b8063059f8b161461011657806323c7e09c1461013d578063370329c41461016e578063416940621461011657610111565b366101115761010f6102ce565b005b600080fd5b34801561012257600080fd5b5061012b6104b3565b60408051918252519081900360200190f35b34801561014957600080fd5b506101526104bf565b604080516001600160a01b039092168252519081900360200190f35b34801561017a57600080fd5b5061012b6104ce565b34801561018f57600080fd5b506101986104da565b604080519115158252519081900360200190f35b3480156101b857600080fd5b5061012b6104ea565b3480156101cd57600080fd5b5061010f6104f7565b3480156101e257600080fd5b5061010f600480360360208110156101f957600080fd5b5035610599565b34801561020c57600080fd5b506101526106cc565b34801561022157600080fd5b5061012b6106db565b34801561023657600080fd5b5061012b6106e8565b61010f6102ce565b34801561025357600080fd5b5061012b6106f5565b34801561026857600080fd5b5061010f6004803603602081101561027f57600080fd5b50356001600160a01b03166106fb565b34801561029b57600080fd5b506101526107f4565b3480156102b057600080fd5b5061012b610803565b3480156102c557600080fd5b5061010f610810565b60026000541415610326576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b600260005561033361099c565b60003411610388576040805162461bcd60e51b815260206004820152601f60248201527f5a65726f20696e766573746d656e7473206172656e277420616c6c6f77656400604482015290519081900360640190fd5b600061039334610a5b565b6004549091506103b2906001600160a01b03163463ffffffff610bfd16565b6002546040805163a9059cbb60e01b81523360048201526024810184905290516001600160a01b039092169163a9059cbb916044808201926020929091908290030181600087803b15801561040657600080fd5b505af115801561041a573d6000803e3d6000fd5b505050506040513d602081101561043057600080fd5b5051610475576040805162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b604482015290519081900360640190fd5b60408051828152905133917f745f661b8143944fb883f50694ebed3a871e43c451d9d4bf4648a9d551d7e47a919081900360200190a2506001600055565b670de0b6b3a764000081565b6004546001600160a01b031681565b6706f05b59d3b2000081565b600454600160a01b900460ff1681565b6815af1d78b58c40000081565b6104ff610ce7565b6001546001600160a01b0390811691161461054f576040805162461bcd60e51b81526020600482018190526024820152600080516020611081833981519152604482015290519081900360640190fd5b6001546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600180546001600160a01b0319169055565b6105a1610ce7565b6001546001600160a01b039081169116146105f1576040805162461bcd60e51b81526020600482018190526024820152600080516020611081833981519152604482015290519081900360640190fd5b6002546001600160a01b031663a9059cbb61060a610ce7565b836040518363ffffffff1660e01b815260040180836001600160a01b03166001600160a01b0316815260200182815260200192505050602060405180830381600087803b15801561065a57600080fd5b505af115801561066e573d6000803e3d6000fd5b505050506040513d602081101561068457600080fd5b50516106c9576040805162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b604482015290519081900360640190fd5b50565b6001546001600160a01b031690565b682086ac35105260000081565b6825f273933db570000081565b60035481565b610703610ce7565b6001546001600160a01b03908116911614610753576040805162461bcd60e51b81526020600482018190526024820152600080516020611081833981519152604482015290519081900360640190fd5b6001600160a01b0381166107985760405162461bcd60e51b81526004018080602001828103825260268152602001806110216026913960400191505060405180910390fd5b6001546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600180546001600160a01b0319166001600160a01b0392909216919091179055565b6002546001600160a01b031681565b681043561a882930000081565b610818610ce7565b6001546001600160a01b03908116911614610868576040805162461bcd60e51b81526020600482018190526024820152600080516020611081833981519152604482015290519081900360640190fd5b600454600160a01b900460ff16156108be576040805162461bcd60e51b815260206004820152601460248201527329b0b6329034b99030b63932b0b23c9037b832b760611b604482015290519081900360640190fd5b600254604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b15801561090957600080fd5b505afa15801561091d573d6000803e3d6000fd5b505050506040513d602081101561093357600080fd5b505111610987576040805162461bcd60e51b815260206004820152601760248201527f42616c616e636520697320696e73756666696369656e74000000000000000000604482015290519081900360640190fd5b6004805460ff60a01b1916600160a01b179055565b600454600160a01b900460ff166109fa576040805162461bcd60e51b815260206004820152601a60248201527f53616c65206861732079657420746f2062652073746172746564000000000000604482015290519081900360640190fd5b6003546825f273933db570000011610a59576040805162461bcd60e51b815260206004820152601b60248201527f43617020697320726561636865642c2053616c6520636c6f7365640000000000604482015290519081900360640190fd5b565b6000681043561a88293000006003541015610ba557670de0b6b3a7640000821015610ab75760405162461bcd60e51b815260040180806020018281038252603a815260200180610fe7603a913960400191505060405180910390fd5b600354600090610acd908463ffffffff610ceb16565b9050681043561a8829300000811115610b7057610b1f670de0b6b3a76400006825f273933db5700000610b1286681043561a88292fffff19860163ffffffff610d4c16565b029063ffffffff610d8e16565b9150610b4f610b4084681043561a88292fffff19840163ffffffff610d4c16565b6003549063ffffffff610ceb16565b600355610b67681043561a88292fffff198201610dd0565b82019150610b9f565b600354670de0b6b3a76400006825f273933db57000008502049250610b9b908463ffffffff610ceb16565b6003555b50610bf8565b6706f05b59d3b20000821015610bec5760405162461bcd60e51b81526004018080602001828103825260398152602001806110a16039913960400191505060405180910390fd5b610bf582610dd0565b90505b919050565b80471015610c52576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e6365000000604482015290519081900360640190fd5b6040516000906001600160a01b0384169083908381818185875af1925050503d8060008114610c9d576040519150601f19603f3d011682016040523d82523d6000602084013e610ca2565b606091505b5050905080610ce25760405162461bcd60e51b815260040180806020018281038252603a815260200180611047603a913960400191505060405180910390fd5b505050565b3390565b600082820183811015610d45576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6000610d4583836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610eea565b6000610d4583836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250610f81565b600080610de883600354610ceb90919063ffffffff16565b90506825f273933db5700000811115610e3b57918290036825f273933db570000001916825f273933db56fffff198101610e3981610e24610ce7565b6001600160a01b03169063ffffffff610bfd16565b505b600354670de0b6b3a7640000682086ac3510526000008502049250610e66908463ffffffff610ceb16565b60038190556825f273933db57000001415610ee457600260009054906101000a90046001600160a01b03166001600160a01b031663b80d60726040518163ffffffff1660e01b8152600401600060405180830381600087803b158015610ecb57600080fd5b505af1158015610edf573d6000803e3d6000fd5b505050505b50919050565b60008184841115610f795760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610f3e578181015183820152602001610f26565b50505050905090810190601f168015610f6b5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008183610fd05760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315610f3e578181015183820152602001610f26565b506000838581610fdc57fe5b049594505050505056fe4c657373207468616e206d696e696d756d20616c6c6f77656420696e766573746d656e7420616d6f756e7420696e206561726c792070686173654f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373416464726573733a20756e61626c6520746f2073656e642076616c75652c20726563697069656e74206d617920686176652072657665727465644f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65724c657373207468616e206d696e696d756d20616c6c6f77656420696e766573746d656e7420616d6f756e7420696e206c617465207068617365a26469706673582212206c0b77975792f773c19cca50d71b2c663b6baeca7fe8c38de30c379ff0f61ba064736f6c63430006020033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000005e8da97efc0bb4759331ed2caa298df0ef752a96000000000000000000000000903ae1b519395049d7f56779c66ff74047577c1f
-----Decoded View---------------
Arg [0] : _tokenAddress (address): 0x5E8Da97efC0Bb4759331eD2caa298dF0EF752A96
Arg [1] : _fundsReceiver (address): 0x903AE1B519395049d7f56779C66FF74047577c1f
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000005e8da97efc0bb4759331ed2caa298df0ef752a96
Arg [1] : 000000000000000000000000903ae1b519395049d7f56779c66ff74047577c1f
Deployed Bytecode Sourcemap
39157:5810:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40836:11;:9;:11::i;:::-;39157:5810;;;;;40035:45;;8:9:-1;5:2;;;30:1;27;20:12;5:2;40035:45:0;;;:::i;:::-;;;;;;;;;;;;;;;;40461:28;;8:9:-1;5:2;;;30:1;27;20:12;5:2;40461:28:0;;;:::i;:::-;;;;-1:-1:-1;;;;;40461:28:0;;;;;;;;;;;;;;39908:72;;8:9:-1;5:2;;;30:1;27;20:12;5:2;39908:72:0;;;:::i;40553:18::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;40553:18:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;39774:50;;8:9:-1;5:2;;;30:1;27;20:12;5:2;39774:50:0;;;:::i;2794:148::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2794:148:0;;;:::i;41831:141::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;41831:141:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;41831:141:0;;:::i;2152:79::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2152:79:0;;;:::i;40233:58::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;40233:58:0;;;:::i;40138:59::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;40138:59:0;;;:::i;42075:689::-;;;:::i;40363:28::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;40363:28:0;;;:::i;3097:244::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3097:244:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;3097:244:0;-1:-1:-1;;;;;3097:244:0;;:::i;39286:22::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;39286:22:0;;;:::i;39716:51::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;39716:51:0;;;:::i;41563:208::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;41563:208:0;;;:::i;42075:689::-;16632:1;17238:7;;:19;;17230:63;;;;;-1:-1:-1;;;17230:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;16632:1;17371:7;:18;42188:14:::1;:12;:14::i;:::-;42270:1;42258:9;:13;42250:57;;;::::0;;-1:-1:-1;;;42250:57:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;42372:20;42395:17;42402:9;42395:6;:17::i;:::-;42496:13;::::0;42372:40;;-1:-1:-1;42480:52:0::1;::::0;-1:-1:-1;;;;;42496:13:0::1;42522:9;42480:52;:41;:52;:::i;:::-;42618:5;::::0;:40:::1;::::0;;-1:-1:-1;;;42618:40:0;;42633:10:::1;42618:40;::::0;::::1;::::0;;;;;;;;;-1:-1:-1;;;;;42618:5:0;;::::1;::::0;:14:::1;::::0;:40;;;;;::::1;::::0;;;;;;;;;:5:::1;::::0;:40;::::1;;5:2:-1::0;::::1;;;30:1;27::::0;20:12:::1;5:2;42618:40:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;42618:40:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26::::0;19:12:::1;2:2;-1:-1:::0;42618:40:0;42610:68:::1;;;::::0;;-1:-1:-1;;;42610:68:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;42610:68:0;;;;;;;;;;;;;::::1;;42718:38;::::0;;;;;;;42731:10:::1;::::0;42718:38:::1;::::0;;;;;::::1;::::0;;::::1;-1:-1:-1::0;16588:1:0;17550:7;:22;42075:689::o;40035:45::-;40072:8;40035:45;:::o;40461:28::-;;;-1:-1:-1;;;;;40461:28:0;;:::o;39908:72::-;39968:12;39908:72;:::o;40553:18::-;;;-1:-1:-1;;;40553:18:0;;;;;:::o;39774:50::-;39815:9;39774:50;:::o;2794:148::-;2374:12;:10;:12::i;:::-;2364:6;;-1:-1:-1;;;;;2364:6:0;;;:22;;;2356:67;;;;;-1:-1:-1;;;2356:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2356:67:0;;;;;;;;;;;;;;;2885:6:::1;::::0;2864:40:::1;::::0;2901:1:::1;::::0;-1:-1:-1;;;;;2885:6:0::1;::::0;2864:40:::1;::::0;2901:1;;2864:40:::1;2915:6;:19:::0;;-1:-1:-1;;;;;;2915:19:0::1;::::0;;2794:148::o;41831:141::-;2374:12;:10;:12::i;:::-;2364:6;;-1:-1:-1;;;;;2364:6:0;;;:22;;;2356:67;;;;;-1:-1:-1;;;2356:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2356:67:0;;;;;;;;;;;;;;;41907:5:::1;::::0;-1:-1:-1;;;;;41907:5:0::1;:14;41922:12;:10;:12::i;:::-;41936:7;41907:37;;;;;;;;;;;;;-1:-1:-1::0;;;;;41907:37:0::1;-1:-1:-1::0;;;;;41907:37:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27::::0;20:12:::1;5:2;41907:37:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;41907:37:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26::::0;19:12:::1;2:2;-1:-1:::0;41907:37:0;41899:65:::1;;;::::0;;-1:-1:-1;;;41899:65:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;41899:65:0;;;;;;;;;;;;;::::1;;41831:141:::0;:::o;2152:79::-;2217:6;;-1:-1:-1;;;;;2217:6:0;2152:79;:::o;40233:58::-;40275:16;40233:58;:::o;40138:59::-;40181:16;40138:59;:::o;40363:28::-;;;;:::o;3097:244::-;2374:12;:10;:12::i;:::-;2364:6;;-1:-1:-1;;;;;2364:6:0;;;:22;;;2356:67;;;;;-1:-1:-1;;;2356:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2356:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;3186:22:0;::::1;3178:73;;;;-1:-1:-1::0;;;3178:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3288:6;::::0;3267:38:::1;::::0;-1:-1:-1;;;;;3267:38:0;;::::1;::::0;3288:6:::1;::::0;3267:38:::1;::::0;3288:6:::1;::::0;3267:38:::1;3316:6;:17:::0;;-1:-1:-1;;;;;;3316:17:0::1;-1:-1:-1::0;;;;;3316:17:0;;;::::1;::::0;;;::::1;::::0;;3097:244::o;39286:22::-;;;-1:-1:-1;;;;;39286:22:0;;:::o;39716:51::-;39758:9;39716:51;:::o;41563:208::-;2374:12;:10;:12::i;:::-;2364:6;;-1:-1:-1;;;;;2364:6:0;;;:22;;;2356:67;;;;;-1:-1:-1;;;2356:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2356:67:0;;;;;;;;;;;;;;;41618:6:::1;::::0;-1:-1:-1;;;41618:6:0;::::1;;;41617:7;41609:40;;;::::0;;-1:-1:-1;;;41609:40:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;41609:40:0;;;;;;;;;;;;;::::1;;41668:5;::::0;:30:::1;::::0;;-1:-1:-1;;;41668:30:0;;41692:4:::1;41668:30;::::0;::::1;::::0;;;41709:1:::1;::::0;-1:-1:-1;;;;;41668:5:0::1;::::0;:15:::1;::::0;:30;;;;;::::1;::::0;;;;;;;;:5;:30;::::1;;5:2:-1::0;::::1;;;30:1;27::::0;20:12:::1;5:2;41668:30:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;41668:30:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26::::0;19:12:::1;2:2;-1:-1:::0;41668:30:0;:43:::1;41660:79;;;::::0;;-1:-1:-1;;;41660:79:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;41750:6;:13:::0;;-1:-1:-1;;;;41750:13:0::1;-1:-1:-1::0;;;41750:13:0::1;::::0;;41563:208::o;44624:201::-;44681:6;;-1:-1:-1;;;44681:6:0;;;;44673:45;;;;;-1:-1:-1;;;44673:45:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;44737:13;;44753:32;-1:-1:-1;44729:88:0;;;;;-1:-1:-1;;;44729:88:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;44624:201::o;42831:1028::-;42881:12;39758:9;42910:13;;:31;42906:946;;;39894:7;42966;:45;;42958:116;;;;-1:-1:-1;;;42958:116:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43114:13;;43089:22;;43114:26;;43132:7;43114:26;:17;:26;:::i;:::-;43089:51;;39758:9;43159:14;:32;43155:492;;;43219:82;40072:8;40181:16;43220:45;:7;-1:-1:-1;;43232:32:0;;43220:45;:11;:45;:::i;:::-;:64;;43219:82;:70;:82;:::i;:::-;43212:89;-1:-1:-1;43336:64:0;43354:45;:7;-1:-1:-1;;43366:32:0;;43354:45;:11;:45;:::i;:::-;43336:13;;;:64;:17;:64;:::i;:::-;43320:13;:80;43433:50;-1:-1:-1;;43450:32:0;;43433:16;:50::i;:::-;43426:4;:57;43419:64;;43155:492;;;43605:13;;40072:8;40181:16;43531:26;;:39;;-1:-1:-1;43605:26:0;;43531;43605;:17;:26;:::i;:::-;43589:13;:42;43155:492;42906:946;;;;39968:12;43687:7;:44;;43679:114;;;;-1:-1:-1;;;43679:114:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43815:25;43832:7;43815:16;:25::i;:::-;43808:32;;42906:946;42831:1028;;;:::o;5510:397::-;5625:6;5600:21;:31;;5592:73;;;;;-1:-1:-1;;;5592:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;5775:35;;5757:12;;-1:-1:-1;;;;;5775:14:0;;;5798:6;;5757:12;5775:35;5757:12;5775:35;5798:6;5775:14;:35;;;;;;;12:1:-1;19;14:27;;;;67:4;61:11;56:16;;134:4;130:9;123:4;105:16;101:27;97:43;94:1;90:51;84:4;77:65;157:16;154:1;147:27;211:16;208:1;201:4;198:1;194:12;179:49;5:228;;14:27;32:4;27:9;;5:228;;5756:54:0;;;5829:7;5821:78;;;;-1:-1:-1;;;5821:78:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5510:397;;;:::o;665:106::-;753:10;665:106;:::o;10398:181::-;10456:7;10488:5;;;10512:6;;;;10504:46;;;;;-1:-1:-1;;;10504:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;10570:1;10398:181;-1:-1:-1;;;10398:181:0:o;10862:136::-;10920:7;10947:43;10951:1;10954;10947:43;;;;;;;;;;;;;;;;;:3;:43::i;12699:132::-;12757:7;12784:39;12788:1;12791;12784:39;;;;;;;;;;;;;;;;;:3;:39::i;43867:749::-;43927:12;43952:22;43977:26;43995:7;43977:13;;:17;;:26;;;;:::i;:::-;43952:51;-1:-1:-1;44036:32:0;44018:51;;44014:367;;;44234:21;;;;44176:32;44234:21;;-1:-1:-1;;44158:51:0;;44316:53;44158:51;44332:12;:10;:12::i;:::-;-1:-1:-1;;;;;44316:40:0;;:53;:40;:53;:::i;:::-;44014:367;;44463:13;;40072:8;40275:16;44398:25;;:38;;-1:-1:-1;44463:26:0;;44398:25;44463:26;:17;:26;:::i;:::-;44447:13;:42;;;44522:32;44504:51;44500:109;;;44572:5;;;;;;;;;-1:-1:-1;;;;;44572:5:0;-1:-1:-1;;;;;44572:23:0;;:25;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;44572:25:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;44572:25:0;;;;44500:109;43867:749;;;;:::o;11301:192::-;11387:7;11423:12;11415:6;;;;11407:29;;;;-1:-1:-1;;;11407:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;11407:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;11459:5:0;;;11301:192::o;13327:278::-;13413:7;13448:12;13441:5;13433:28;;;;-1:-1:-1;;;13433:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;13433:28:0;;13472:9;13488:1;13484;:5;;;;;;;13327:278;-1:-1:-1;;;;;13327:278:0:o
Swarm Source
ipfs://6c0b77975792f773c19cca50d71b2c663b6baeca7fe8c38de30c379ff0f61ba0
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
[ 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.