Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Sponsored
Latest 20 from a total of 20 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
Value | ||||
---|---|---|---|---|---|---|---|---|---|
Approve | 12460001 | 679 days 16 hrs ago | IN | 0 ETH | 0.00470276 | ||||
Transfer | 12309940 | 702 days 20 hrs ago | IN | 0 ETH | 0.0045288 | ||||
Transfer | 12309909 | 702 days 20 hrs ago | IN | 0 ETH | 0.00477142 | ||||
Transfer | 10866580 | 924 days 22 hrs ago | IN | 0 ETH | 0.0299638 | ||||
Approve And Call | 10641976 | 959 days 9 hrs ago | IN | 0 ETH | 0.02050587 | ||||
Transfer | 10641944 | 959 days 9 hrs ago | IN | 0 ETH | 0.02983327 | ||||
Approve And Call | 10641625 | 959 days 11 hrs ago | IN | 0 ETH | 0.00811122 | ||||
Approve And Call | 10641625 | 959 days 11 hrs ago | IN | 0 ETH | 0.02051343 | ||||
Transfer | 10639570 | 959 days 18 hrs ago | IN | 0 ETH | 0.01392923 | ||||
Transfer | 10639559 | 959 days 18 hrs ago | IN | 0 ETH | 0.01458663 | ||||
Approve And Call | 10639392 | 959 days 19 hrs ago | IN | 0 ETH | 0.02507197 | ||||
Approve And Call | 10639158 | 959 days 20 hrs ago | IN | 0 ETH | 0.02421403 | ||||
Change Controlle... | 10639116 | 959 days 20 hrs ago | IN | 0 ETH | 0.00254286 | ||||
Transfer | 10593129 | 966 days 22 hrs ago | IN | 0 ETH | 0.00821886 | ||||
Transfer | 10587044 | 967 days 21 hrs ago | IN | 0 ETH | 0.01084046 | ||||
Transfer | 10586845 | 967 days 21 hrs ago | IN | 0 ETH | 0.0091727 | ||||
Transfer | 10541046 | 975 days 7 mins ago | IN | 0 ETH | 0.00988845 | ||||
Change Controlle... | 10236619 | 1022 days 3 hrs ago | IN | 0 ETH | 0.00085479 | ||||
Generate Tokens | 10236491 | 1022 days 3 hrs ago | IN | 0 ETH | 0.00362427 | ||||
0x60806040 | 10236466 | 1022 days 3 hrs ago | IN | Create: VestingToken | 0 ETH | 0.10756425 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
VestingToken
Compiler Version
v0.5.16+commit.9c3226ce
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-06-12 */ // File: contracts/minime/MiniMeToken.sol pragma solidity ^0.5.0; /* Copyright 2016, Jordi Baylina This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ /// @title MiniMeToken Contract /// @author Jordi Baylina /// @dev This token contract's goal is to make it easy for anyone to clone this /// token using the token distribution at a given block, this will allow DAO's /// and DApps to upgrade their features in a decentralized manner without /// affecting the original token /// @dev It is ERC20 compliant, but still needs to under go further testing. contract Controlled { /// @notice The address of the controller is the only address that can call /// a function with this modifier modifier onlyController { require(msg.sender == controller, "Controlled: caller is not the controller"); _; } address payable public controller; constructor () public { controller = msg.sender;} /// @notice Changes the controller of the contract /// @param _newController The new controller of the contract function changeController(address payable _newController) public onlyController { controller = _newController; } } /// @dev The token controller contract must implement these functions contract TokenController { /// @notice Called when `_owner` sends ether to the MiniMe Token contract /// @param _owner The address that sent the ether to create tokens /// @return True if the ether is accepted, false if it throws function proxyPayment(address _owner) public payable returns(bool); /// @notice Notifies the controller about a token transfer allowing the /// controller to react if desired /// @param _from The origin of the transfer /// @param _to The destination of the transfer /// @param _amount The amount of the transfer /// @return False if the controller does not authorize the transfer function onTransfer(address _from, address _to, uint _amount) public returns(bool); /// @notice Notifies the controller about an approval allowing the /// controller to react if desired /// @param _owner The address that calls `approve()` /// @param _spender The spender in the `approve()` call /// @param _amount The amount in the `approve()` call /// @return False if the controller does not authorize the approval function onApprove(address _owner, address _spender, uint _amount) public returns(bool); } contract ApproveAndCallFallBack { function receiveApproval(address from, uint256 _amount, address _token, bytes memory _data) public; } /// @dev The actual token contract, the default controller is the msg.sender /// that deploys the contract, so usually this token will be deployed by a /// token controller contract, which Giveth will call a "Campaign" contract MiniMeToken is Controlled { string public name; //The Token's name: e.g. DigixDAO Tokens uint8 public decimals; //Number of decimals of the smallest unit string public symbol; //An identifier: e.g. REP string public version = 'MMT_0.2'; //An arbitrary versioning scheme /// @dev `Checkpoint` is the structure that attaches a block number to a /// given value, the block number attached is the one that last changed the /// value struct Checkpoint { // `fromBlock` is the block number that the value was generated from uint128 fromBlock; // `value` is the amount of tokens at a specific block number uint128 value; } // `parentToken` is the Token address that was cloned to produce this token; // it will be 0x0 for a token that was not cloned MiniMeToken public parentToken; // `parentSnapShotBlock` is the block number from the Parent Token that was // used to determine the initial distribution of the Clone Token uint public parentSnapShotBlock; // `creationBlock` is the block number that the Clone Token was created uint public creationBlock; // `balances` is the map that tracks the balance of each address, in this // contract when the balance changes the block number that the change // occurred is also included in the map mapping (address => Checkpoint[]) balances; // `allowed` tracks any extra transfer rights as in all ERC20 tokens mapping (address => mapping (address => uint256)) allowed; // Tracks the history of the `totalSupply` of the token Checkpoint[] totalSupplyHistory; // Flag that determines if the token is transferable or not. bool public transfersEnabled; // The factory used to create new clone tokens MiniMeTokenFactory public tokenFactory; //////////////// // Constructor //////////////// /// @notice Constructor to create a MiniMeToken /// @param _tokenFactory The address of the MiniMeTokenFactory contract that /// will create the Clone token contracts, the token factory needs to be /// deployed first /// @param _parentToken Address of the parent token, set to 0x0 if it is a /// new token /// @param _parentSnapShotBlock Block of the parent token that will /// determine the initial distribution of the clone token, set to 0 if it /// is a new token /// @param _tokenName Name of the new token /// @param _decimalUnits Number of decimals of the new token /// @param _tokenSymbol Token Symbol for the new token /// @param _transfersEnabled If true, tokens will be able to be transferred constructor ( address _tokenFactory, address payable _parentToken, uint _parentSnapShotBlock, string memory _tokenName, uint8 _decimalUnits, string memory _tokenSymbol, bool _transfersEnabled ) public { tokenFactory = MiniMeTokenFactory(_tokenFactory); name = _tokenName; // Set the name decimals = _decimalUnits; // Set the decimals symbol = _tokenSymbol; // Set the symbol parentToken = MiniMeToken(_parentToken); parentSnapShotBlock = _parentSnapShotBlock; transfersEnabled = _transfersEnabled; creationBlock = block.number; } /////////////////// // ERC20 Methods /////////////////// /// @notice Send `_amount` tokens to `_to` from `msg.sender` /// @param _to The address of the recipient /// @param _amount The amount of tokens to be transferred /// @return Whether the transfer was successful or not function transfer(address _to, uint256 _amount) public returns (bool success) { require(transfersEnabled, "MiniMeToken: transfer is not enable"); doTransfer(msg.sender, _to, _amount); return true; } /// @notice Send `_amount` tokens to `_to` from `_from` on the condition it /// is approved by `_from` /// @param _from The address holding the tokens being transferred /// @param _to The address of the recipient /// @param _amount The amount of tokens to be transferred /// @return True if the transfer was successful function transferFrom(address _from, address _to, uint256 _amount ) public returns (bool success) { // The controller of this contract can move tokens around at will, // this is important to recognize! Confirm that you trust the // controller of this contract, which in most situations should be // another open source smart contract or 0x0 if (msg.sender != controller) { require(transfersEnabled, "MiniMeToken: transfer is not enable"); // The standard ERC 20 transferFrom functionality require(allowed[_from][msg.sender] >= _amount); allowed[_from][msg.sender] -= _amount; } doTransfer(_from, _to, _amount); return true; } /// @dev This is the actual transfer function in the token contract, it can /// only be called by other functions in this contract. /// @param _from The address holding the tokens being transferred /// @param _to The address of the recipient /// @param _amount The amount of tokens to be transferred /// @return True if the transfer was successful function doTransfer(address _from, address _to, uint _amount ) internal { if (_amount == 0) { emit Transfer(_from, _to, _amount); // Follow the spec to louch the event when transfer 0 return; } require(parentSnapShotBlock < block.number); // Do not allow transfer to 0x0 or the token contract itself require((_to != address(0)) && (_to != address(this))); // If the amount being transfered is more than the balance of the // account the transfer throws uint previousBalanceFrom = balanceOfAt(_from, block.number); require(previousBalanceFrom >= _amount); // Alerts the token controller of the transfer if (isContract(controller)) { require(TokenController(controller).onTransfer(_from, _to, _amount)); } // First update the balance array with the new value for the address // sending the tokens updateValueAtNow(balances[_from], previousBalanceFrom - _amount); // Then update the balance array with the new value for the address // receiving the tokens uint previousBalanceTo = balanceOfAt(_to, block.number); require(previousBalanceTo + _amount >= previousBalanceTo); // Check for overflow updateValueAtNow(balances[_to], previousBalanceTo + _amount); // An event to make the transfer easy to find on the blockchain emit Transfer(_from, _to, _amount); } /// @param _owner The address that's balance is being requested /// @return The balance of `_owner` at the current block function balanceOf(address _owner) public view returns (uint256 balance) { return balanceOfAt(_owner, block.number); } /// @notice `msg.sender` approves `_spender` to spend `_amount` tokens on /// its behalf. This is a modified version of the ERC20 approve function /// to be a little bit safer /// @param _spender The address of the account able to transfer the tokens /// @param _amount The amount of tokens to be approved for transfer /// @return True if the approval was successful function approve(address _spender, uint256 _amount) public returns (bool success) { require(transfersEnabled, "MiniMeToken: transfer is not enable"); // To change the approve amount you first have to reduce the addresses` // allowance to zero by calling `approve(_spender,0)` if it is not // already 0 to mitigate the race condition described here: // https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 require((_amount == 0) || (allowed[msg.sender][_spender] == 0)); // Alerts the token controller of the approve function call if (isContract(controller)) { require(TokenController(controller).onApprove(msg.sender, _spender, _amount)); } allowed[msg.sender][_spender] = _amount; emit Approval(msg.sender, _spender, _amount); return true; } /// @dev This function makes it easy to read the `allowed[]` map /// @param _owner The address of the account that owns the token /// @param _spender The address of the account able to transfer the tokens /// @return Amount of remaining tokens of _owner that _spender is allowed /// to spend function allowance(address _owner, address _spender ) public view returns (uint256 remaining) { return allowed[_owner][_spender]; } /// @notice `msg.sender` approves `_spender` to send `_amount` tokens on /// its behalf, and then a function is triggered in the contract that is /// being approved, `_spender`. This allows users to use their tokens to /// interact with contracts in one function call instead of two /// @param _spender The address of the contract able to transfer the tokens /// @param _amount The amount of tokens to be approved for transfer /// @return True if the function call was successful function approveAndCall(address _spender, uint256 _amount, bytes memory _extraData ) public returns (bool success) { require(approve(_spender, _amount)); ApproveAndCallFallBack(_spender).receiveApproval( msg.sender, _amount, address(this), _extraData ); return true; } /// @dev This function makes it easy to get the total number of tokens /// @return The total number of tokens function totalSupply() public view returns (uint) { return totalSupplyAt(block.number); } //////////////// // Query balance and totalSupply in History //////////////// /// @dev Queries the balance of `_owner` at a specific `_blockNumber` /// @param _owner The address from which the balance will be retrieved /// @param _blockNumber The block number when the balance is queried /// @return The balance at `_blockNumber` function balanceOfAt(address _owner, uint _blockNumber) public view returns (uint) { // These next few lines are used when the balance of the token is // requested before a check point was ever created for this token, it // requires that the `parentToken.balanceOfAt` be queried at the // genesis block for that token as this contains initial balance of // this token if ((balances[_owner].length == 0) || (balances[_owner][0].fromBlock > _blockNumber)) { if (address(parentToken) != address(0)) { return parentToken.balanceOfAt(_owner, min(_blockNumber, parentSnapShotBlock)); } else { // Has no parent return 0; } // This will return the expected balance during normal situations } else { return getValueAt(balances[_owner], _blockNumber); } } /// @notice Total amount of tokens at a specific `_blockNumber`. /// @param _blockNumber The block number when the totalSupply is queried /// @return The total amount of tokens at `_blockNumber` function totalSupplyAt(uint _blockNumber) public view returns(uint) { // These next few lines are used when the totalSupply of the token is // requested before a check point was ever created for this token, it // requires that the `parentToken.totalSupplyAt` be queried at the // genesis block for this token as that contains totalSupply of this // token at this block number. if ((totalSupplyHistory.length == 0) || (totalSupplyHistory[0].fromBlock > _blockNumber)) { if (address(parentToken) != address(0)) { return parentToken.totalSupplyAt(min(_blockNumber, parentSnapShotBlock)); } else { return 0; } // This will return the expected totalSupply during normal situations } else { return getValueAt(totalSupplyHistory, _blockNumber); } } //////////////// // Clone Token Method //////////////// /// @notice Creates a new clone token with the initial distribution being /// this token at `_snapshotBlock` /// @param _cloneTokenName Name of the clone token /// @param _cloneDecimalUnits Number of decimals of the smallest unit /// @param _cloneTokenSymbol Symbol of the clone token /// @param _snapshotBlock Block when the distribution of the parent token is /// copied to set the initial distribution of the new clone token; /// if the block is zero than the actual block, the current block is used /// @param _transfersEnabled True if transfers are allowed in the clone /// @return The address of the new MiniMeToken Contract function createCloneToken( string memory _cloneTokenName, uint8 _cloneDecimalUnits, string memory _cloneTokenSymbol, uint _snapshotBlock, bool _transfersEnabled ) public returns(address) { if (_snapshotBlock == 0) _snapshotBlock = block.number; MiniMeToken cloneToken = tokenFactory.createCloneToken( address(this), _snapshotBlock, _cloneTokenName, _cloneDecimalUnits, _cloneTokenSymbol, _transfersEnabled ); cloneToken.changeController(msg.sender); // An event to make the token easy to find on the blockchain emit NewCloneToken(address(cloneToken), _snapshotBlock); return address(cloneToken); } //////////////// // Generate and destroy tokens //////////////// /// @notice Generates `_amount` tokens that are assigned to `_owner` /// @param _owner The address that will be assigned the new tokens /// @param _amount The quantity of tokens generated /// @return True if the tokens are generated correctly function generateTokens(address _owner, uint _amount ) public onlyController returns (bool) { uint curTotalSupply = totalSupply(); require(curTotalSupply + _amount >= curTotalSupply); // Check for overflow uint previousBalanceTo = balanceOf(_owner); require(previousBalanceTo + _amount >= previousBalanceTo); // Check for overflow updateValueAtNow(totalSupplyHistory, curTotalSupply + _amount); updateValueAtNow(balances[_owner], previousBalanceTo + _amount); emit Transfer(address(0), _owner, _amount); return true; } /// @notice Burns `_amount` tokens from `_owner` /// @param _owner The address that will lose the tokens /// @param _amount The quantity of tokens to burn /// @return True if the tokens are burned correctly function destroyTokens(address _owner, uint _amount ) onlyController public returns (bool) { uint curTotalSupply = totalSupply(); require(curTotalSupply >= _amount); uint previousBalanceFrom = balanceOf(_owner); require(previousBalanceFrom >= _amount); updateValueAtNow(totalSupplyHistory, curTotalSupply - _amount); updateValueAtNow(balances[_owner], previousBalanceFrom - _amount); emit Transfer(_owner, address(0), _amount); return true; } //////////////// // Enable tokens transfers //////////////// /// @notice Enables token holders to transfer their tokens freely if true /// @param _transfersEnabled True if transfers are allowed in the clone function enableTransfers(bool _transfersEnabled) public onlyController { transfersEnabled = _transfersEnabled; } //////////////// // Internal helper functions to query and set a value in a snapshot array //////////////// /// @dev `getValueAt` retrieves the number of tokens at a given block number /// @param checkpoints The history of values being queried /// @param _block The block number to retrieve the value at /// @return The number of tokens being queried function getValueAt(Checkpoint[] storage checkpoints, uint _block ) view internal returns (uint) { if (checkpoints.length == 0) return 0; // Shortcut for the actual value if (_block >= checkpoints[checkpoints.length-1].fromBlock) return checkpoints[checkpoints.length-1].value; if (_block < checkpoints[0].fromBlock) return 0; // Binary search of the value in the array uint min = 0; uint max = checkpoints.length-1; while (max > min) { uint mid = (max + min + 1)/ 2; if (checkpoints[mid].fromBlock<=_block) { min = mid; } else { max = mid-1; } } return checkpoints[min].value; } /// @dev `updateValueAtNow` used to update the `balances` map and the /// `totalSupplyHistory` /// @param checkpoints The history of data being updated /// @param _value The new number of tokens function updateValueAtNow(Checkpoint[] storage checkpoints, uint _value ) internal { if ((checkpoints.length == 0) || (checkpoints[checkpoints.length -1].fromBlock < block.number)) { Checkpoint storage newCheckPoint = checkpoints[ checkpoints.length++ ]; newCheckPoint.fromBlock = uint128(block.number); newCheckPoint.value = uint128(_value); } else { Checkpoint storage oldCheckPoint = checkpoints[checkpoints.length-1]; oldCheckPoint.value = uint128(_value); } } /// @dev Internal function to determine if an address is a contract /// @param _addr The address being queried /// @return True if `_addr` is a contract function isContract(address _addr) view internal returns(bool) { uint size; if (_addr == address(0)) return false; assembly { size := extcodesize(_addr) } return size>0; } /// @dev Helper function to return a min betwen the two uints function min(uint a, uint b) pure internal returns (uint) { return a < b ? a : b; } /// @notice The fallback function: If the contract's controller has not been /// set to 0, then the `proxyPayment` method is called which relays the /// ether and creates tokens as described in the token controller contract function () external payable { require(isContract(controller)); require(TokenController(controller).proxyPayment.value(msg.value)(msg.sender)); } ////////// // Safety Methods ////////// /// @notice This method can be used by the controller to extract mistakenly /// sent tokens to this contract. /// @param _token The address of the token contract that you want to recover /// set to 0 in case you want to extract ether. function claimTokens(address payable _token) public onlyController { if (_token == address(0)) { controller.transfer(address(this).balance); return; } MiniMeToken token = MiniMeToken(_token); uint balance = token.balanceOf(address(this)); token.transfer(controller, balance); emit ClaimedTokens(_token, controller, balance); } //////////////// // Events //////////////// event ClaimedTokens(address indexed _token, address indexed _controller, uint _amount); event Transfer(address indexed _from, address indexed _to, uint256 _amount); event NewCloneToken(address indexed _cloneToken, uint _snapshotBlock); event Approval( address indexed _owner, address indexed _spender, uint256 _amount ); } //////////////// // MiniMeTokenFactory //////////////// /// @dev This contract is used to generate clone contracts from a contract. /// In solidity this is the way to create a contract from a contract of the /// same class contract MiniMeTokenFactory { /// @notice Update the DApp by creating a new token with new functionalities /// the msg.sender becomes the controller of this clone token /// @param _parentToken Address of the token being cloned /// @param _snapshotBlock Block of the parent token that will /// determine the initial distribution of the clone token /// @param _tokenName Name of the new token /// @param _decimalUnits Number of decimals of the new token /// @param _tokenSymbol Token Symbol for the new token /// @param _transfersEnabled If true, tokens will be able to be transferred /// @return The address of the new token contract function createCloneToken( address payable _parentToken, uint _snapshotBlock, string memory _tokenName, uint8 _decimalUnits, string memory _tokenSymbol, bool _transfersEnabled ) public returns (MiniMeToken) { MiniMeToken newToken = new MiniMeToken( address(this), _parentToken, _snapshotBlock, _tokenName, _decimalUnits, _tokenSymbol, _transfersEnabled ); newToken.changeController(msg.sender); return newToken; } } // File: contracts/openzeppelin-solidity/math/SafeMath.sol pragma solidity ^0.5.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) { require(b <= a, "SafeMath: subtraction overflow"); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { // Solidity only automatically asserts when dividing by 0 require(b > 0, "SafeMath: division by zero"); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { require(b != 0, "SafeMath: modulo by zero"); return a % b; } } // File: contracts/VestingToken.sol pragma solidity ^0.5.0; contract VestingToken is MiniMeToken { using SafeMath for uint256; bool private _initiated; // Durations and timestamps are expressed in UNIX time, the same units as block.timestamp. uint256 private _cliff; uint256 private _start; uint256 private _duration; mapping (address => uint256) private _released; constructor ( address tokenFactory, address payable parentToken, uint parentSnapShotBlock, string memory tokenName, uint8 decimalUnits, string memory tokenSymbol, bool transfersEnabled ) public MiniMeToken(tokenFactory, parentToken, parentSnapShotBlock, tokenName, decimalUnits, tokenSymbol, transfersEnabled) { // solhint-disable-previous-line no-empty-blocks } modifier beforeInitiated() { require(!_initiated, "VestingToken: cannot execute after initiation"); _; } modifier afterInitiated() { require(_initiated, "VestingToken: cannot execute before initiation"); _; } /** * @dev Returns true if the token can be released, and false otherwise. */ function initiated() public view returns (bool) { return _initiated; } /** * @return the cliff time of the token vesting. */ function cliff() public view returns (uint256) { return _cliff; } /** * @return the start time of the token vesting. */ function start() public view returns (uint256) { return _start; } /** * @return the duration of the token vesting. */ function duration() public view returns (uint256) { return _duration; } /** * @param beneficiary the beneficiary of the tokens. * @return the amount of the token released. */ function released(address beneficiary) public view returns (uint256) { return _released[beneficiary]; } /** * @notice Makes vested tokens releasable. * @param start the time (as Unix time) at which point vesting starts * @param cliffDuration duration in seconds of the cliff in which tokens will begin to vest * @param duration duration in seconds of the period in which the tokens will vest */ function initiate(uint256 start, uint256 cliffDuration, uint256 duration) public beforeInitiated onlyController { _initiated = true; enableTransfers(false); // solhint-disable-next-line max-line-length require(cliffDuration <= duration, "VestingToken: cliff is longer than duration"); require(duration > 0, "VestingToken: duration is 0"); // solhint-disable-next-line max-line-length require(start.add(duration) > block.timestamp, "VestingToken: final time is before current time"); _duration = duration; _cliff = start.add(cliffDuration); _start = start; } /** * @dev This is the actual transfer function in the token contract. * @param from The address holding the tokens being transferred * @param to The address of the recipient * @param amount The amount of tokens to be transferred */ function doTransfer(address from, address to, uint amount) internal beforeInitiated { super.doTransfer(from, to, amount); } /** * @notice Destroys releasable tokens. * @param beneficiary the beneficiary of the tokens. */ function destroyReleasableTokens(address beneficiary) public afterInitiated onlyController returns (uint256 unreleased) { unreleased = releasableAmount(beneficiary); require(unreleased > 0, "VestingToken: no tokens are due"); _released[beneficiary] = _released[beneficiary].add(unreleased); require(destroyTokens(beneficiary, unreleased), "VestingToken: failed to destroy tokens"); } /** * @dev Calculates the amount that has already vested but hasn't been released yet. * @param beneficiary the beneficiary of the tokens. */ function releasableAmount(address beneficiary) public view returns (uint256) { return _vestedAmount(beneficiary).sub(_released[beneficiary]); } /** * @dev Calculates the amount that has already vested. * @param beneficiary the beneficiary of the tokens. */ function _vestedAmount(address beneficiary) private view returns (uint256) { if (!_initiated) { return 0; } uint256 currentVestedAmount = balanceOf(beneficiary); uint256 totalVestedAmount = currentVestedAmount.add(_released[beneficiary]); if (block.timestamp < _cliff) { return 0; } else if (block.timestamp >= _start.add(_duration)) { return totalVestedAmount; } else { return totalVestedAmount.mul(block.timestamp.sub(_start)).div(_duration); } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"tokenFactory","type":"address"},{"internalType":"address payable","name":"parentToken","type":"address"},{"internalType":"uint256","name":"parentSnapShotBlock","type":"uint256"},{"internalType":"string","name":"tokenName","type":"string"},{"internalType":"uint8","name":"decimalUnits","type":"uint8"},{"internalType":"string","name":"tokenSymbol","type":"string"},{"internalType":"bool","name":"transfersEnabled","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_owner","type":"address"},{"indexed":true,"internalType":"address","name":"_spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_token","type":"address"},{"indexed":true,"internalType":"address","name":"_controller","type":"address"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"ClaimedTokens","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_cloneToken","type":"address"},{"indexed":false,"internalType":"uint256","name":"_snapshotBlock","type":"uint256"}],"name":"NewCloneToken","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_from","type":"address"},{"indexed":true,"internalType":"address","name":"_to","type":"address"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"Transfer","type":"event"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"constant":true,"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"_spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_spender","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_spender","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes","name":"_extraData","type":"bytes"}],"name":"approveAndCall","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"uint256","name":"_blockNumber","type":"uint256"}],"name":"balanceOfAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address payable","name":"_newController","type":"address"}],"name":"changeController","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address payable","name":"_token","type":"address"}],"name":"claimTokens","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"cliff","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"controller","outputs":[{"internalType":"address payable","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"string","name":"_cloneTokenName","type":"string"},{"internalType":"uint8","name":"_cloneDecimalUnits","type":"uint8"},{"internalType":"string","name":"_cloneTokenSymbol","type":"string"},{"internalType":"uint256","name":"_snapshotBlock","type":"uint256"},{"internalType":"bool","name":"_transfersEnabled","type":"bool"}],"name":"createCloneToken","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"creationBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"beneficiary","type":"address"}],"name":"destroyReleasableTokens","outputs":[{"internalType":"uint256","name":"unreleased","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"destroyTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"duration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"bool","name":"_transfersEnabled","type":"bool"}],"name":"enableTransfers","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"generateTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"cliffDuration","type":"uint256"},{"internalType":"uint256","name":"duration","type":"uint256"}],"name":"initiate","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"initiated","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"parentSnapShotBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"parentToken","outputs":[{"internalType":"contract MiniMeToken","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"beneficiary","type":"address"}],"name":"releasableAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"beneficiary","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"start","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"tokenFactory","outputs":[{"internalType":"contract MiniMeTokenFactory","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"_blockNumber","type":"uint256"}],"name":"totalSupplyAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"transfersEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"version","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040526040518060400160405280600781526020017f4d4d545f302e320000000000000000000000000000000000000000000000000081525060049080519060200190620000519291906200038a565b503480156200005f57600080fd5b506040516200414438038062004144833981810160405260e08110156200008557600080fd5b8101908080519060200190929190805190602001909291908051906020019092919080516040519392919084640100000000821115620000c457600080fd5b83820191506020820185811115620000db57600080fd5b8251866001820283011164010000000082111715620000f957600080fd5b8083526020830192505050908051906020019080838360005b838110156200012f57808201518184015260208101905062000112565b50505050905090810190601f1680156200015d5780820380516001836020036101000a031916815260200191505b5060405260200180519060200190929190805160405193929190846401000000008211156200018b57600080fd5b83820191506020820185811115620001a257600080fd5b8251866001820283011164010000000082111715620001c057600080fd5b8083526020830192505050908051906020019080838360005b83811015620001f6578082015181840152602081019050620001d9565b50505050905090810190601f168015620002245780820380516001836020036101000a031916815260200191505b506040526020018051906020019092919050505086868686868686336000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555086600b60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508360019080519060200190620002d89291906200038a565b5082600260006101000a81548160ff021916908360ff16021790555081600390805190602001906200030c9291906200038a565b5085600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508460068190555080600b60006101000a81548160ff02191690831515021790555043600781905550505050505050505050505050505062000439565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620003cd57805160ff1916838001178555620003fe565b82800160010185558215620003fe579182015b82811115620003fd578251825591602001919060010190620003e0565b5b5090506200040d919062000411565b5090565b6200043691905b808211156200043257600081600090555060010162000418565b5090565b90565b613cfb80620004496000396000f3fe6080604052600436106101ee5760003560e01c8063827f32c01161010d578063c5bcc4f1116100a0578063dd62ed3e1161006f578063dd62ed3e14610ebd578063df8de3e714610f42578063e77772fe14610f93578063f41e60c514610fea578063f77c479114611027576101ee565b8063c5bcc4f114610cc6578063c99b5d4714610cf1578063cae9ca5114610d40578063d3ce77fe14610e4a576101ee565b80639f118536116100dc5780639f11853614610bca578063a9059cbb14610bf9578063be9a655514610c6c578063bef97c8714610c97576101ee565b8063827f32c014610a1357806395d89b4114610a86578063981b24d014610b165780639852595c14610b65576101ee565b806323b872dd1161018557806354fd4d501161015457806354fd4d50146107055780636638c0871461079557806370a082311461095757806380a54001146109bc576101ee565b806323b872dd14610581578063313ce567146106145780633cebb823146106455780634ee2cd7e14610696576101ee565b80631726cbc8116101c15780631726cbc81461046157806317634514146104c657806318160ddd146104f15780631f82b5251461051c576101ee565b806306fdde0314610308578063095ea7b3146103985780630fb5a6b41461040b57806313d033c014610436575b6102186000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661107e565b61022157600080fd5b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f48c305434336040518363ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019150506020604051808303818588803b1580156102c157600080fd5b505af11580156102d5573d6000803e3d6000fd5b50505050506040513d60208110156102ec57600080fd5b810190808051906020019092919050505061030657600080fd5b005b34801561031457600080fd5b5061031d6110d1565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561035d578082015181840152602081019050610342565b50505050905090810190601f16801561038a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156103a457600080fd5b506103f1600480360360408110156103bb57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061116f565b604051808215151515815260200191505060405180910390f35b34801561041757600080fd5b506104206114aa565b6040518082815260200191505060405180910390f35b34801561044257600080fd5b5061044b6114b4565b6040518082815260200191505060405180910390f35b34801561046d57600080fd5b506104b06004803603602081101561048457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506114be565b6040518082815260200191505060405180910390f35b3480156104d257600080fd5b506104db611521565b6040518082815260200191505060405180910390f35b3480156104fd57600080fd5b50610506611527565b6040518082815260200191505060405180910390f35b34801561052857600080fd5b5061056b6004803603602081101561053f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611537565b6040518082815260200191505060405180910390f35b34801561058d57600080fd5b506105fa600480360360608110156105a457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506117bd565b604051808215151515815260200191505060405180910390f35b34801561062057600080fd5b506106296119a2565b604051808260ff1660ff16815260200191505060405180910390f35b34801561065157600080fd5b506106946004803603602081101561066857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506119b5565b005b3480156106a257600080fd5b506106ef600480360360408110156106b957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611a9d565b6040518082815260200191505060405180910390f35b34801561071157600080fd5b5061071a611d1d565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561075a57808201518184015260208101905061073f565b50505050905090810190601f1680156107875780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156107a157600080fd5b50610915600480360360a08110156107b857600080fd5b81019080803590602001906401000000008111156107d557600080fd5b8201836020820111156107e757600080fd5b8035906020019184600183028401116401000000008311171561080957600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290803560ff1690602001909291908035906020019064010000000081111561087957600080fd5b82018360208201111561088b57600080fd5b803590602001918460018302840111640100000000831117156108ad57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050919291929080359060200190929190803515159060200190929190505050611dbb565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561096357600080fd5b506109a66004803603602081101561097a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612097565b6040518082815260200191505060405180910390f35b3480156109c857600080fd5b506109d16120aa565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610a1f57600080fd5b50610a6c60048036036040811015610a3657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506120d0565b604051808215151515815260200191505060405180910390f35b348015610a9257600080fd5b50610a9b612277565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610adb578082015181840152602081019050610ac0565b50505050905090810190601f168015610b085780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610b2257600080fd5b50610b4f60048036036020811015610b3957600080fd5b8101908080359060200190929190505050612315565b6040518082815260200191505060405180910390f35b348015610b7157600080fd5b50610bb460048036036020811015610b8857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506124a9565b6040518082815260200191505060405180910390f35b348015610bd657600080fd5b50610bdf6124f2565b604051808215151515815260200191505060405180910390f35b348015610c0557600080fd5b50610c5260048036036040811015610c1c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612509565b604051808215151515815260200191505060405180910390f35b348015610c7857600080fd5b50610c81612585565b6040518082815260200191505060405180910390f35b348015610ca357600080fd5b50610cac61258f565b604051808215151515815260200191505060405180910390f35b348015610cd257600080fd5b50610cdb6125a2565b6040518082815260200191505060405180910390f35b348015610cfd57600080fd5b50610d3e60048036036060811015610d1457600080fd5b810190808035906020019092919080359060200190929190803590602001909291905050506125a8565b005b348015610d4c57600080fd5b50610e3060048036036060811015610d6357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190640100000000811115610daa57600080fd5b820183602082011115610dbc57600080fd5b80359060200191846001830284011164010000000083111715610dde57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050919291929050505061283d565b604051808215151515815260200191505060405180910390f35b348015610e5657600080fd5b50610ea360048036036040811015610e6d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061299d565b604051808215151515815260200191505060405180910390f35b348015610ec957600080fd5b50610f2c60048036036040811015610ee057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612b40565b6040518082815260200191505060405180910390f35b348015610f4e57600080fd5b50610f9160048036036020811015610f6557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612bc7565b005b348015610f9f57600080fd5b50610fa8612f3f565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610ff657600080fd5b506110256004803603602081101561100d57600080fd5b81019080803515159060200190929190505050612f65565b005b34801561103357600080fd5b5061103c613027565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b600080600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156110c05760009150506110cc565b823b9050600081119150505b919050565b60018054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156111675780601f1061113c57610100808354040283529160200191611167565b820191906000526020600020905b81548152906001019060200180831161114a57829003601f168201915b505050505081565b6000600b60009054906101000a900460ff166111d6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180613b806023913960400191505060405180910390fd5b600082148061126157506000600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054145b61126a57600080fd5b6112946000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661107e565b156113ba576000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663da682aeb3385856040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050602060405180830381600087803b15801561137557600080fd5b505af1158015611389573d6000803e3d6000fd5b505050506040513d602081101561139f57600080fd5b81019080805190602001909291905050506113b957600080fd5b5b81600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040518082815260200191505060405180910390a36001905092915050565b6000600e54905090565b6000600c54905090565b600061151a600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461150c8461304c565b61314f90919063ffffffff16565b9050919050565b60075481565b600061153243612315565b905090565b6000600b60159054906101000a900460ff1661159e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e815260200180613ba3602e913960400191505060405180910390fd5b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611643576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180613c4e6028913960400191505060405180910390fd5b61164c826114be565b9050600081116116c4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f56657374696e67546f6b656e3a206e6f20746f6b656e7320617265206475650081525060200191505060405180910390fd5b61171681600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546131d890919063ffffffff16565b600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611763828261299d565b6117b8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180613c766026913960400191505060405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461198c57600b60009054906101000a900460ff16611878576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180613b806023913960400191505060405180910390fd5b81600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054101561190157600080fd5b81600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055505b611997848484613260565b600190509392505050565b600260009054906101000a900460ff1681565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611a5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180613c4e6028913960400191505060405180910390fd5b806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805490501480611b74575081600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548110611b3657fe5b9060005260206000200160000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16115b15611ccc57600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611cc357600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16634ee2cd7e84611c1a856006546132d6565b6040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060206040518083038186803b158015611c8157600080fd5b505afa158015611c95573d6000803e3d6000fd5b505050506040513d6020811015611cab57600080fd5b81019080805190602001909291905050509050611d17565b60009050611d17565b611d14600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020836132ef565b90505b92915050565b60048054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611db35780601f10611d8857610100808354040283529160200191611db3565b820191906000526020600020905b815481529060010190602001808311611d9657829003601f168201915b505050505081565b600080831415611dc9574392505b6000600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16635b7b72c130868a8a8a896040518763ffffffff1660e01b8152600401808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001868152602001806020018560ff1660ff1681526020018060200184151515158152602001838103835287818151815260200191508051906020019080838360005b83811015611eb0578082015181840152602081019050611e95565b50505050905090810190601f168015611edd5780820380516001836020036101000a031916815260200191505b50838103825285818151815260200191508051906020019080838360005b83811015611f16578082015181840152602081019050611efb565b50505050905090810190601f168015611f435780820380516001836020036101000a031916815260200191505b5098505050505050505050602060405180830381600087803b158015611f6857600080fd5b505af1158015611f7c573d6000803e3d6000fd5b505050506040513d6020811015611f9257600080fd5b810190808051906020019092919050505090508073ffffffffffffffffffffffffffffffffffffffff16633cebb823336040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001915050600060405180830381600087803b15801561202457600080fd5b505af1158015612038573d6000803e3d6000fd5b505050508073ffffffffffffffffffffffffffffffffffffffff167f086c875b377f900b07ce03575813022f05dd10ed7640b5282cf6d3c3fc352ade856040518082815260200191505060405180910390a28091505095945050505050565b60006120a38243611a9d565b9050919050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612177576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180613c4e6028913960400191505060405180910390fd5b6000612181611527565b905080838201101561219257600080fd5b600061219d85612097565b90508084820110156121ae57600080fd5b6121bb600a8584016134ee565b612205600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208583016134ee565b8473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040518082815260200191505060405180910390a360019250505092915050565b60038054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561230d5780601f106122e25761010080835404028352916020019161230d565b820191906000526020600020905b8154815290600101906020018083116122f057829003601f168201915b505050505081565b600080600a805490501480612372575081600a60008154811061233457fe5b9060005260206000200160000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16115b1561249657600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461248d57600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663981b24d0612417846006546132d6565b6040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b15801561244b57600080fd5b505afa15801561245f573d6000803e3d6000fd5b505050506040513d602081101561247557600080fd5b810190808051906020019092919050505090506124a4565b600090506124a4565b6124a1600a836132ef565b90505b919050565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600b60159054906101000a900460ff16905090565b6000600b60009054906101000a900460ff16612570576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180613b806023913960400191505060405180910390fd5b61257b338484613260565b6001905092915050565b6000600d54905090565b600b60009054906101000a900460ff1681565b60065481565b600b60159054906101000a900460ff161561260e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602d815260200180613c00602d913960400191505060405180910390fd5b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146126b3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180613c4e6028913960400191505060405180910390fd5b6001600b60156101000a81548160ff0219169083151502179055506126d86000612f65565b80821115612731576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b815260200180613c9c602b913960400191505060405180910390fd5b600081116127a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f56657374696e67546f6b656e3a206475726174696f6e2069732030000000000081525060200191505060405180910390fd5b426127bb82856131d890919063ffffffff16565b11612811576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180613bd1602f913960400191505060405180910390fd5b80600e8190555061282b82846131d890919063ffffffff16565b600c8190555082600d81905550505050565b6000612849848461116f565b61285257600080fd5b8373ffffffffffffffffffffffffffffffffffffffff16638f4ffcb1338530866040518563ffffffff1660e01b8152600401808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018481526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561292b578082015181840152602081019050612910565b50505050905090810190601f1680156129585780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b15801561297a57600080fd5b505af115801561298e573d6000803e3d6000fd5b50505050600190509392505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612a44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180613c4e6028913960400191505060405180910390fd5b6000612a4e611527565b905082811015612a5d57600080fd5b6000612a6885612097565b905083811015612a7757600080fd5b612a84600a8584036134ee565b612ace600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208583036134ee565b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040518082815260200191505060405180910390a360019250505092915050565b6000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612c6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180613c4e6028913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612d0e576000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015612d08573d6000803e3d6000fd5b50612f3c565b600081905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015612d9257600080fd5b505afa158015612da6573d6000803e3d6000fd5b505050506040513d6020811015612dbc57600080fd5b810190808051906020019092919050505090508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015612e7757600080fd5b505af1158015612e8b573d6000803e3d6000fd5b505050506040513d6020811015612ea157600080fd5b8101908080519060200190929190505050506000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167ff931edb47c50b4b4104c187b5814a9aef5f709e17e2ecf9617e860cacade929c836040518082815260200191505060405180910390a350505b50565b600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461300a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180613c4e6028913960400191505060405180910390fd5b80600b60006101000a81548160ff02191690831515021790555050565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600b60159054906101000a900460ff1661306b576000905061314a565b600061307683612097565b905060006130cc600f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054836131d890919063ffffffff16565b9050600c544210156130e35760009250505061314a565b6130fa600e54600d546131d890919063ffffffff16565b421061310a57809250505061314a565b613145600e54613137613128600d544261314f90919063ffffffff16565b8461365d90919063ffffffff16565b6136e390919063ffffffff16565b925050505b919050565b6000828211156131c7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525060200191505060405180910390fd5b600082840390508091505092915050565b600080828401905083811015613256576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600b60159054906101000a900460ff16156132c6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602d815260200180613c00602d913960400191505060405180910390fd5b6132d1838383613772565b505050565b60008183106132e557816132e7565b825b905092915050565b6000808380549050141561330657600090506134e8565b8260018480549050038154811061331957fe5b9060005260206000200160000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1682106133b1578260018480549050038154811061336e57fe5b9060005260206000200160000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1690506134e8565b826000815481106133be57fe5b9060005260206000200160000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1682101561340a57600090506134e8565b60008090506000600185805490500390505b8181111561349b57600060026001848401018161343557fe5b0490508486828154811061344557fe5b9060005260206000200160000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff161161348e57809250613495565b6001810391505b5061341c565b8482815481106134a757fe5b9060005260206000200160000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16925050505b92915050565b60008280549050148061354e5750438260018480549050038154811061351057fe5b9060005260206000200160000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16105b156135fb576000828380548091906001016135699190613aee565b8154811061357357fe5b906000526020600020019050438160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550818160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555050613659565b60008260018480549050038154811061361057fe5b906000526020600020019050818160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550505b5050565b60008083141561367057600090506136dd565b600082840290508284828161368157fe5b04146136d8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180613c2d6021913960400191505060405180910390fd5b809150505b92915050565b600080821161375a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525060200191505060405180910390fd5b600082848161376557fe5b0490508091505092915050565b60008114156137e5578173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3613ae9565b43600654106137f357600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561385c57503073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b61386557600080fd5b60006138718443611a9d565b90508181101561388057600080fd5b6138aa6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661107e565b156139d0576000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16634a3931498585856040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050602060405180830381600087803b15801561398b57600080fd5b505af115801561399f573d6000803e3d6000fd5b505050506040513d60208110156139b557600080fd5b81019080805190602001909291905050506139cf57600080fd5b5b613a1a600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208383036134ee565b6000613a268443611a9d565b9050808382011015613a3757600080fd5b613a81600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208483016134ee565b8373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a350505b505050565b815481835581811115613b1557818360005260206000209182019101613b149190613b1a565b5b505050565b613b7c91905b80821115613b7857600080820160006101000a8154906fffffffffffffffffffffffffffffffff02191690556000820160106101000a8154906fffffffffffffffffffffffffffffffff021916905550600101613b20565b5090565b9056fe4d696e694d65546f6b656e3a207472616e73666572206973206e6f7420656e61626c6556657374696e67546f6b656e3a2063616e6e6f742065786563757465206265666f726520696e6974696174696f6e56657374696e67546f6b656e3a2066696e616c2074696d65206973206265666f72652063757272656e742074696d6556657374696e67546f6b656e3a2063616e6e6f74206578656375746520616674657220696e6974696174696f6e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77436f6e74726f6c6c65643a2063616c6c6572206973206e6f742074686520636f6e74726f6c6c657256657374696e67546f6b656e3a206661696c656420746f2064657374726f7920746f6b656e7356657374696e67546f6b656e3a20636c696666206973206c6f6e676572207468616e206475726174696f6ea265627a7a72315820f93e05050eca74972e0c5500c4599ea053e38ca3fd5187bdff3b810f3482af0e64736f6c6343000510003200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000001f53747261746567696320546f6b616d616b204e6574776f726b20546f6b656e00000000000000000000000000000000000000000000000000000000000000000c537472617465676963544f4e0000000000000000000000000000000000000000
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000001f53747261746567696320546f6b616d616b204e6574776f726b20546f6b656e00000000000000000000000000000000000000000000000000000000000000000c537472617465676963544f4e0000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : tokenFactory (address): 0x0000000000000000000000000000000000000000
Arg [1] : parentToken (address): 0x0000000000000000000000000000000000000000
Arg [2] : parentSnapShotBlock (uint256): 0
Arg [3] : tokenName (string): Strategic Tokamak Network Token
Arg [4] : decimalUnits (uint8): 18
Arg [5] : tokenSymbol (string): StrategicTON
Arg [6] : transfersEnabled (bool): True
-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [3] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [7] : 000000000000000000000000000000000000000000000000000000000000001f
Arg [8] : 53747261746567696320546f6b616d616b204e6574776f726b20546f6b656e00
Arg [9] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [10] : 537472617465676963544f4e0000000000000000000000000000000000000000
Deployed ByteCode Sourcemap
29395:5027:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22801:22;22812:10;;;;;;;;;;;22801;:22::i;:::-;22793:31;;;;;;22859:10;;;;;;;;;;;22843:40;;;22890:9;22901:10;22843:69;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;22843:69:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;22843:69:0;;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;22843:69:0;;;;;;;;;;;;;;;;22835:78;;;;;;29395:5027;3527:18;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3527:18:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;3527:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11342:890;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11342:890:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;11342:890:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;31065:85;;8:9:-1;5:2;;;30:1;27;20:12;5:2;31065:85:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;30751:79;;8:9:-1;5:2;;;30:1;27;20:12;5:2;30751:79:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;33537:157;;8:9:-1;5:2;;;30:1;27;20:12;5:2;33537:157:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;33537:157:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;4695:25;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4695:25:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;13732:103;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13732:103:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;32934:430;;8:9:-1;5:2;;;30:1;27;20:12;5:2;32934:430:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;32934:430:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;7909:766;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7909:766:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;7909:766:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;3608:21;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3608:21:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;1683:126;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1683:126:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;1683:126:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;14200:964;;8:9:-1;5:2;;;30:1;27;20:12;5:2;14200:964:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;14200:964:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;3756:33;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3756:33:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;3756:33:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17069:805;;8:9:-1;5:2;;;30:1;27;20:12;5:2;17069:805:0;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;17069:805:0;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;17069:805:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;17069:805:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;17069:805:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;17069:805:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;17069:805:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;17069:805:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;17069:805:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;17069:805:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;10803:132;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10803:132:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;10803:132:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;4387:30;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4387:30:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;18215:600;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18215:600:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;18215:600:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;3690:20;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3690:20:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;3690:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15382:934;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15382:934:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;15382:934:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;31284:117;;8:9:-1;5:2;;;30:1;27;20:12;5:2;31284:117:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;31284:117:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;30588:84;;8:9:-1;5:2;;;30:1;27;20:12;5:2;30588:84:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;7321:230;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7321:230:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;7321:230:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;30909:79;;8:9:-1;5:2;;;30:1;27;20:12;5:2;30909:79:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;5288:28;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5288:28:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;4578:31;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4578:31:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;31735:658;;8:9:-1;5:2;;;30:1;27;20:12;5:2;31735:658:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;31735:658:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;13234:370;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13234:370:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;13234:370:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;13234:370:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;13234:370:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;13234:370:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;13234:370:0;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;19052:524;;8:9:-1;5:2;;;30:1;27;20:12;5:2;19052:524:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;19052:524:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;12558:150;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12558:150:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;12558:150:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;23231:413;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23231:413:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;23231:413:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;5377:38;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5377:38:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;19808:126;;8:9:-1;5:2;;;30:1;27;20:12;5:2;19808:126:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;19808:126:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;1462:33;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1462:33:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;22098:234;22155:4;22172:9;22213:1;22196:19;;:5;:19;;;22192:37;;;22224:5;22217:12;;;;;22192:37;22284:5;22272:18;22264:26;;22323:1;22318:4;:6;22311:13;;;22098:234;;;;:::o;3527:18::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;11342:890::-;11410:12;11443:16;;;;;;;;;;;11435:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11839:1;11828:7;:12;11827:54;;;;11879:1;11846:7;:19;11854:10;11846:19;;;;;;;;;;;;;;;:29;11866:8;11846:29;;;;;;;;;;;;;;;;:34;11827:54;11819:63;;;;;;11968:22;11979:10;;;;;;;;;;;11968;:22::i;:::-;11964:132;;;12031:10;;;;;;;;;;;12015:37;;;12053:10;12065:8;12075:7;12015:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12015:68:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;12015:68:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;12015:68:0;;;;;;;;;;;;;;;;12007:77;;;;;;11964:132;12140:7;12108;:19;12116:10;12108:19;;;;;;;;;;;;;;;:29;12128:8;12108:29;;;;;;;;;;;;;;;:39;;;;12184:8;12163:39;;12172:10;12163:39;;;12194:7;12163:39;;;;;;;;;;;;;;;;;;12220:4;12213:11;;11342:890;;;;:::o;31065:85::-;31106:7;31133:9;;31126:16;;31065:85;:::o;30751:79::-;30789:7;30816:6;;30809:13;;30751:79;:::o;33537:157::-;33605:7;33632:54;33663:9;:22;33673:11;33663:22;;;;;;;;;;;;;;;;33632:26;33646:11;33632:13;:26::i;:::-;:30;;:54;;;;:::i;:::-;33625:61;;33537:157;;;:::o;4695:25::-;;;;:::o;13732:103::-;13776:4;13800:27;13814:12;13800:13;:27::i;:::-;13793:34;;13732:103;:::o;32934:430::-;33034:18;30404:10;;;;;;;;;;;30396:69;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1393:10;;;;;;;;;;;1379:24;;:10;:24;;;1371:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33078:29;33095:11;33078:16;:29::i;:::-;33065:42;;33141:1;33128:10;:14;33120:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33216:38;33243:10;33216:9;:22;33226:11;33216:22;;;;;;;;;;;;;;;;:26;;:38;;;;:::i;:::-;33191:9;:22;33201:11;33191:22;;;;;;;;;;;;;;;:63;;;;33275:38;33289:11;33302:10;33275:13;:38::i;:::-;33267:89;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32934:430;;;:::o;7909:766::-;7998:12;8323:10;;;;;;;;;;;8309:24;;:10;:24;;;8305:299;;8358:16;;;;;;;;;;;8350:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8532:7;8502;:14;8510:5;8502:14;;;;;;;;;;;;;;;:26;8517:10;8502:26;;;;;;;;;;;;;;;;:37;;8494:46;;;;;;8585:7;8555;:14;8563:5;8555:14;;;;;;;;;;;;;;;:26;8570:10;8555:26;;;;;;;;;;;;;;;;:37;;;;;;;;;;;8305:299;8614:31;8625:5;8632:3;8637:7;8614:10;:31::i;:::-;8663:4;8656:11;;7909:766;;;;;:::o;3608:21::-;;;;;;;;;;;;;:::o;1683:126::-;1393:10;;;;;;;;;;;1379:24;;:10;:24;;;1371:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1787:14;1774:10;;:27;;;;;;;;;;;;;;;;;;1683:126;:::o;14200:964::-;14286:4;14669:1;14642:8;:16;14651:6;14642:16;;;;;;;;;;;;;;;:23;;;;:28;14641:93;;;;14721:12;14689:8;:16;14698:6;14689:16;;;;;;;;;;;;;;;14706:1;14689:19;;;;;;;;;;;;;;;:29;;;;;;;;;;;;:44;;;14641:93;14637:520;;;14787:1;14755:34;;14763:11;;;;;;;;;;;14755:34;;;14751:236;;14817:11;;;;;;;;;;;:23;;;14841:6;14849:38;14853:12;14867:19;;14849:3;:38::i;:::-;14817:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;14817:71:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;14817:71:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;14817:71:0;;;;;;;;;;;;;;;;14810:78;;;;14751:236;14970:1;14963:8;;;;14637:520;15103:42;15114:8;:16;15123:6;15114:16;;;;;;;;;;;;;;;15132:12;15103:10;:42::i;:::-;15096:49;;14200:964;;;;;:::o;3756:33::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;17069:805::-;17301:7;17343:1;17325:14;:19;17321:54;;;17363:12;17346:29;;17321:54;17386:22;17411:12;;;;;;;;;;;:29;;;17463:4;17483:14;17512:15;17542:18;17575:17;17607;17411:228;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;17411:228:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;17411:228:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;17411:228:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;17411:228:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;17411:228:0;;;;;;;;;;;;;;;;17386:253;;17652:10;:27;;;17680:10;17652:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;17652:39:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;17652:39:0;;;;17801:10;17779:50;;;17814:14;17779:50;;;;;;;;;;;;;;;;;;17855:10;17840:26;;;17069:805;;;;;;;:::o;10803:132::-;10859:15;10894:33;10906:6;10914:12;10894:11;:33::i;:::-;10887:40;;10803:132;;;:::o;4387:30::-;;;;;;;;;;;;;:::o;18215:600::-;18306:4;1393:10;;;;;;;;;;;1379:24;;:10;:24;;;1371:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18323:19;18345:13;:11;:13::i;:::-;18323:35;;18405:14;18394:7;18377:14;:24;:42;;18369:51;;;;;;18453:22;18478:17;18488:6;18478:9;:17::i;:::-;18453:42;;18545:17;18534:7;18514:17;:27;:48;;18506:57;;;;;;18596:62;18613:18;18650:7;18633:14;:24;18596:16;:62::i;:::-;18669:63;18686:8;:16;18695:6;18686:16;;;;;;;;;;;;;;;18724:7;18704:17;:27;18669:16;:63::i;:::-;18769:6;18748:37;;18765:1;18748:37;;;18777:7;18748:37;;;;;;;;;;;;;;;;;;18803:4;18796:11;;;;18215:600;;;;:::o;3690:20::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;15382:934::-;15444:4;15853:1;15824:18;:25;;;;:30;15823:97;;;;15907:12;15873:18;15892:1;15873:21;;;;;;;;;;;;;;;:31;;;;;;;;;;;;:46;;;15823:97;15819:490;;;15973:1;15941:34;;15949:11;;;;;;;;;;;15941:34;;;15937:196;;16003:11;;;;;;;;;;;:25;;;16029:38;16033:12;16047:19;;16029:3;:38::i;:::-;16003:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;16003:65:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;16003:65:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;16003:65:0;;;;;;;;;;;;;;;;15996:72;;;;15937:196;16116:1;16109:8;;;;15819:490;16253:44;16264:18;16284:12;16253:10;:44::i;:::-;16246:51;;15382:934;;;;:::o;31284:117::-;31344:7;31371:9;:22;31381:11;31371:22;;;;;;;;;;;;;;;;31364:29;;31284:117;;;:::o;30588:84::-;30630:4;30654:10;;;;;;;;;;;30647:17;;30588:84;:::o;7321:230::-;7385:12;7418:16;;;;;;;;;;;7410:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7485:36;7496:10;7508:3;7513:7;7485:10;:36::i;:::-;7539:4;7532:11;;7321:230;;;;:::o;30909:79::-;30947:7;30974:6;;30967:13;;30909:79;:::o;5288:28::-;;;;;;;;;;;;;:::o;4578:31::-;;;;:::o;31735:658::-;30271:10;;;;;;;;;;;30270:11;30262:69;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1393:10;;;;;;;;;;;1379:24;;:10;:24;;;1371:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31871:4;31858:10;;:17;;;;;;;;;;;;;;;;;;31888:22;31904:5;31888:15;:22::i;:::-;32002:8;31985:13;:25;;31977:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32088:1;32077:8;:12;32069:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32216:15;32194:19;32204:8;32194:5;:9;;:19;;;;:::i;:::-;:37;32186:97;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32308:8;32296:9;:20;;;;32336:24;32346:13;32336:5;:9;;:24;;;;:::i;:::-;32327:6;:33;;;;32380:5;32371:6;:14;;;;31735:658;;;:::o;13234:370::-;13340:12;13373:26;13381:8;13391:7;13373;:26::i;:::-;13365:35;;;;;;13436:8;13413:48;;;13476:10;13501:7;13531:4;13551:10;13413:159;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;13413:159:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13413:159:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;13413:159:0;;;;13592:4;13585:11;;13234:370;;;;;:::o;19052:524::-;19142:4;1393:10;;;;;;;;;;;1379:24;;:10;:24;;;1371:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19159:19;19181:13;:11;:13::i;:::-;19159:35;;19231:7;19213:14;:25;;19205:34;;;;;;19250:24;19277:17;19287:6;19277:9;:17::i;:::-;19250:44;;19336:7;19313:19;:30;;19305:39;;;;;;19355:62;19372:18;19409:7;19392:14;:24;19355:16;:62::i;:::-;19428:65;19445:8;:16;19454:6;19445:16;;;;;;;;;;;;;;;19485:7;19463:19;:29;19428:16;:65::i;:::-;19534:1;19509:37;;19518:6;19509:37;;;19538:7;19509:37;;;;;;;;;;;;;;;;;;19564:4;19557:11;;;;19052:524;;;;:::o;12558:150::-;12638:17;12675:7;:15;12683:6;12675:15;;;;;;;;;;;;;;;:25;12691:8;12675:25;;;;;;;;;;;;;;;;12668:32;;12558:150;;;;:::o;23231:413::-;1393:10;;;;;;;;;;;1379:24;;:10;:24;;;1371:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23331:1;23313:20;;:6;:20;;;23309:116;;;23350:10;;;;;;;;;;;:19;;:42;23370:21;23350:42;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;23350:42:0;23407:7;;23309:116;23437:17;23469:6;23437:39;;23487:12;23502:5;:15;;;23526:4;23502:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23502:30:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;23502:30:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;23502:30:0;;;;;;;;;;;;;;;;23487:45;;23543:5;:14;;;23558:10;;;;;;;;;;;23570:7;23543:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23543:35:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;23543:35:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;23543:35:0;;;;;;;;;;;;;;;;;23616:10;;;;;;;;;;;23594:42;;23608:6;23594:42;;;23628:7;23594:42;;;;;;;;;;;;;;;;;;1450:1;;;23231:413;:::o;5377:38::-;;;;;;;;;;;;;:::o;19808:126::-;1393:10;;;;;;;;;;;1379:24;;:10;:24;;;1371:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19909:17;19890:16;;:36;;;;;;;;;;;;;;;;;;19808:126;:::o;1462:33::-;;;;;;;;;;;;;:::o;33838:581::-;33904:7;33929:10;;;;;;;;;;;33924:52;;33963:1;33956:8;;;;33924:52;33988:27;34018:22;34028:11;34018:9;:22::i;:::-;33988:52;;34051:25;34079:47;34103:9;:22;34113:11;34103:22;;;;;;;;;;;;;;;;34079:19;:23;;:47;;;;:::i;:::-;34051:75;;34161:6;;34143:15;:24;34139:273;;;34191:1;34184:8;;;;;;34139:273;34233:21;34244:9;;34233:6;;:10;;:21;;;;:::i;:::-;34214:15;:40;34210:202;;34278:17;34271:24;;;;;;34210:202;34335:65;34390:9;;34335:50;34357:27;34377:6;;34357:15;:19;;:27;;;;:::i;:::-;34335:17;:21;;:50;;;;:::i;:::-;:54;;:65;;;;:::i;:::-;34328:72;;;;33838:581;;;;:::o;27003:184::-;27061:7;27094:1;27089;:6;;27081:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27141:9;27157:1;27153;:5;27141:17;;27178:1;27171:8;;;27003:184;;;;:::o;26547:181::-;26605:7;26625:9;26641:1;26637;:5;26625:17;;26666:1;26661;:6;;26653:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26719:1;26712:8;;;26547:181;;;;:::o;32669:137::-;30271:10;;;;;;;;;;;30270:11;30262:69;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32764:34;32781:4;32787:2;32791:6;32764:16;:34::i;:::-;32669:137;;;:::o;22407:97::-;22459:4;22487:1;22483;:5;:13;;22495:1;22483:13;;;22491:1;22483:13;22476:20;;22407:97;;;;:::o;20318:782::-;20414:4;20457:1;20435:11;:18;;;;:23;20431:37;;;20467:1;20460:8;;;;20431:37;20537:11;20568:1;20549:11;:18;;;;:20;20537:33;;;;;;;;;;;;;;;:43;;;;;;;;;;;;20527:53;;:6;:53;20523:118;;20602:11;20633:1;20614:11;:18;;;;:20;20602:33;;;;;;;;;;;;;;;:39;;;;;;;;;;;;20595:46;;;;;;20523:118;20665:11;20677:1;20665:14;;;;;;;;;;;;;;;:24;;;;;;;;;;;;20656:33;;:6;:33;20652:47;;;20698:1;20691:8;;;;20652:47;20764:8;20775:1;20764:12;;20787:8;20817:1;20798:11;:18;;;;:20;20787:31;;20829:224;20842:3;20836;:9;20829:224;;;20862:8;20890:1;20886;20880:3;20874;:9;:13;20873:18;;;;;;20862:29;;20938:6;20910:11;20922:3;20910:16;;;;;;;;;;;;;;;:26;;;;;;;;;;;;:34;;;20906:136;;20971:3;20965:9;;20906:136;;;21025:1;21021:3;:5;21015:11;;20906:136;20829:224;;;;21070:11;21082:3;21070:16;;;;;;;;;;;;;;;:22;;;;;;;;;;;;21063:29;;;;;;20318:782;;;;;:::o;21324:598::-;21451:1;21429:11;:18;;;;:23;21428:99;;;;21514:12;21467:11;21499:1;21479:11;:18;;;;:21;21467:34;;;;;;;;;;;;;;;:44;;;;;;;;;;;;:59;;;21428:99;21424:491;;;21547:32;21582:11;21595;:20;;;;;;;;;;;:::i;:::-;21582:35;;;;;;;;;;;;;;;21547:70;;21670:12;21635:13;:23;;;:48;;;;;;;;;;;;;;;;;;21731:6;21701:13;:19;;;:37;;;;;;;;;;;;;;;;;;21424:491;;;;21777:32;21812:11;21843:1;21824:11;:18;;;;:20;21812:33;;;;;;;;;;;;;;;21777:68;;21893:6;21863:13;:19;;;:37;;;;;;;;;;;;;;;;;;21424:491;;21324:598;;:::o;27438:470::-;27496:7;27745:1;27740;:6;27736:47;;;27770:1;27763:8;;;;27736:47;27795:9;27811:1;27807;:5;27795:17;;27840:1;27835;27831;:5;;;;;;:10;27823:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27899:1;27892:8;;;27438:470;;;;;:::o;28376:333::-;28434:7;28533:1;28529;:5;28521:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28576:9;28592:1;28588;:5;;;;;;28576:17;;28700:1;28693:8;;;28376:333;;;;:::o;9062:1602::-;9170:1;9159:7;:12;9155:166;;;9212:3;9196:29;;9205:5;9196:29;;;9217:7;9196:29;;;;;;;;;;;;;;;;;;9300:7;;9155:166;9366:12;9344:19;;:34;9336:43;;;;;;9492:1;9477:17;;:3;:17;;;;9476:45;;;;;9515:4;9500:20;;:3;:20;;;;9476:45;9468:54;;;;;;9660:24;9687:32;9699:5;9706:12;9687:11;:32::i;:::-;9660:59;;9766:7;9743:19;:30;;9735:39;;;;;;9853:22;9864:10;;;;;;;;;;;9853;:22::i;:::-;9849:129;;;9919:10;;;;;;;;;;;9903:38;;;9942:5;9949:3;9954:7;9903:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9903:59:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;9903:59:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;9903:59:0;;;;;;;;;;;;;;;;9895:68;;;;;;9849:129;10109:64;10126:8;:15;10135:5;10126:15;;;;;;;;;;;;;;;10165:7;10143:19;:29;10109:16;:64::i;:::-;10306:22;10331:30;10343:3;10348:12;10331:11;:30::i;:::-;10306:55;;10414:17;10403:7;10383:17;:27;:48;;10375:57;;;;;;10468:60;10485:8;:13;10494:3;10485:13;;;;;;;;;;;;;;;10520:7;10500:17;:27;10468:16;:60::i;:::-;10641:3;10625:29;;10634:5;10625:29;;;10646:7;10625:29;;;;;;;;;;;;;;;;;;9062:1602;;;;;;:::o;29395:5027::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o
Swarm Source
bzzr://f93e05050eca74972e0c5500c4599ea053e38ca3fd5187bdff3b810f3482af0e
Loading...
Loading
Loading...
Loading
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.
[ 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.