Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
10,260,452.4997411509053248 SCALE
Holders
243
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Scale
Compiler Version
v0.4.24+commit.e67f0147
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2018-07-30 */ pragma solidity ^0.4.24; /************************************************************** * @title Scale Token Contract * @file Scale.sol * @author Jared Downing and Kane Thomas of the Scale Network * @version 1.0 * * @section DESCRIPTION * * This is an ERC20-based token with staking and inflationary functionality. * *************************************************************/ ////////////////////////////////// /// OpenZeppelin library imports ////////////////////////////////// /** * @title ERC20Basic * @dev Simpler version of ERC20 interface * @dev see https://github.com/ethereum/EIPs/issues/179 */ contract ERC20Basic { uint256 public totalSupply; function balanceOf(address who) public view returns (uint256); function transfer(address to, uint256 value) public returns (bool); event Transfer(address indexed from, address indexed to, uint256 value); } /** * @title Ownable * @dev The Ownable contract has an owner address, and provides basic authorization control * functions, this simplifies the implementation of "user permissions". */ contract Ownable { address public owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev The Ownable constructor sets the original `owner` of the contract to the sender * account. */ constructor() public { owner = msg.sender; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(msg.sender == owner); _; } /** * @dev Allows the current owner to transfer control of the contract to a newOwner. * @param newOwner The address to transfer ownership to. */ function transferOwnership(address newOwner) public onlyOwner { require(newOwner != address(0)); emit OwnershipTransferred(owner, newOwner); owner = newOwner; } } /** * @title SafeMath * @dev Math operations with safety checks that throw on error */ library SafeMath { function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) { return 0; } uint256 c = a * b; assert(c / a == b); return c; } function div(uint256 a, uint256 b) internal pure returns (uint256) { // assert(b > 0); // Solidity automatically throws when dividing by 0 uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } function sub(uint256 a, uint256 b) internal pure returns (uint256) { assert(b <= a); return a - b; } function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; assert(c >= a); return c; } } /** * @title Basic token * @dev Basic version of StandardToken, with no allowances. */ contract BasicToken is ERC20Basic { using SafeMath for uint256; mapping(address => uint256) balances; /** * @dev transfer token for a specified address * @param _to The address to transfer to. * @param _value The amount to be transferred. */ function transfer(address _to, uint256 _value) public returns (bool) { require(_to != address(0)); require(_value <= balances[msg.sender]); // SafeMath.sub will throw if there is not enough balance. balances[msg.sender] = balances[msg.sender].sub(_value); balances[_to] = balances[_to].add(_value); emit Transfer(msg.sender, _to, _value); return true; } /** * @dev Gets the balance of the specified address. * @param _owner The address to query the the balance of. * @return An uint256 representing the amount owned by the passed address. */ function balanceOf(address _owner) public view returns (uint256 balance) { return balances[_owner]; } } /** * @title ERC20 interface * @dev see https://github.com/ethereum/EIPs/issues/20 */ contract ERC20 is ERC20Basic { function allowance(address owner, address spender) public view returns (uint256); function transferFrom(address from, address to, uint256 value) public returns (bool); function approve(address spender, uint256 value) public returns (bool); event Approval(address indexed owner, address indexed spender, uint256 value); } /** * @title Standard ERC20 token * * @dev Implementation of the basic standard token. * @dev https://github.com/ethereum/EIPs/issues/20 * @dev Based on code by FirstBlood: https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol */ contract StandardToken is ERC20, BasicToken { mapping (address => mapping (address => uint256)) internal allowed; /** * @dev Transfer tokens from one address to another * @param _from address The address which you want to send tokens from * @param _to address The address which you want to transfer to * @param _value uint256 the amount of tokens to be transferred */ function transferFrom(address _from, address _to, uint256 _value) public returns (bool) { require(_to != address(0)); require(_value <= balances[_from]); require(_value <= allowed[_from][msg.sender]); balances[_from] = balances[_from].sub(_value); balances[_to] = balances[_to].add(_value); allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_value); emit Transfer(_from, _to, _value); return true; } /** * @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender. * * Beware that changing an allowance with this method brings the risk that someone may use both the old * and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this * race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * @param _spender The address which will spend the funds. * @param _value The amount of tokens to be spent. */ function approve(address _spender, uint256 _value) public returns (bool) { allowed[msg.sender][_spender] = _value; emit Approval(msg.sender, _spender, _value); return true; } /** * @dev Function to check the amount of tokens that an owner allowed to a spender. * @param _owner address The address which owns the funds. * @param _spender address The address which will spend the funds. * @return A uint256 specifying the amount of tokens still available for the spender. */ function allowance(address _owner, address _spender) public view returns (uint256) { return allowed[_owner][_spender]; } /** * @dev Increase the amount of tokens that an owner allowed to a spender. * * approve should be called when allowed[_spender] == 0. To increment * allowed value is better to use this function to avoid 2 calls (and wait until * the first transaction is mined) * From MonolithDAO Token.sol * @param _spender The address which will spend the funds. * @param _addedValue The amount of tokens to increase the allowance by. */ function increaseApproval(address _spender, uint _addedValue) public returns (bool) { allowed[msg.sender][_spender] = allowed[msg.sender][_spender].add(_addedValue); emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]); return true; } /** * @dev Decrease the amount of tokens that an owner allowed to a spender. * * approve should be called when allowed[_spender] == 0. To decrement * allowed value is better to use this function to avoid 2 calls (and wait until * the first transaction is mined) * From MonolithDAO Token.sol * @param _spender The address which will spend the funds. * @param _subtractedValue The amount of tokens to decrease the allowance by. */ function decreaseApproval(address _spender, uint _subtractedValue) public returns (bool) { uint oldValue = allowed[msg.sender][_spender]; if (_subtractedValue > oldValue) { allowed[msg.sender][_spender] = 0; } else { allowed[msg.sender][_spender] = oldValue.sub(_subtractedValue); } emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]); return true; } } /** * @title Mintable token * @dev Simple ERC20 Token example, with mintable token creation * @dev Issue: * https://github.com/OpenZeppelin/zeppelin-solidity/issues/120 * Based on code by TokenMarketNet: https://github.com/TokenMarketNet/ico/blob/master/contracts/MintableToken.sol * Modified to allow minting for non-owner addresses */ contract MintableToken is StandardToken, Ownable { event Mint(address indexed to, uint256 amount); /** * @dev Function to mint tokens * @param _to The address that will receive the minted tokens. * @param _amount The amount of tokens to mint. * @return A boolean that indicates if the operation was successful. */ function mint(address _to, uint256 _amount) internal returns (bool) { totalSupply = totalSupply.add(_amount); balances[_to] = balances[_to].add(_amount); emit Mint(_to, _amount); emit Transfer(address(0), _to, _amount); return true; } } /** * @title Contracts that should not own Ether * @author Remco Bloemen <remco@2π.com> * @dev This tries to block incoming ether to prevent accidental loss of Ether. Should Ether end up * in the contract, it will allow the owner to reclaim this ether. * @notice Ether can still be send to this contract by: * calling functions labeled `payable` * `selfdestruct(contract_address)` * mining directly to the contract address */ contract HasNoEther is Ownable { /** * @dev Constructor that rejects incoming Ether * @dev The `payable` flag is added so we can access `msg.value` without compiler warning. If we * leave out payable, then Solidity will allow inheriting contracts to implement a payable * constructor. By doing it this way we prevent a payable constructor from working. Alternatively * we could use assembly to access msg.value. */ constructor() public payable { require(msg.value == 0); } /** * @dev Disallows direct send by settings a default function without the `payable` flag. */ function() external { } /** * @dev Transfer all Ether held by the contract to the owner. */ function reclaimEther() external onlyOwner { assert(owner.send(address(this).balance)); } } ////////////////////////////////// /// Scale Token ////////////////////////////////// contract Scale is MintableToken, HasNoEther { // Libraries using SafeMath for uint; ////////////////////// // Token Information ////////////////////// string public constant name = "SCALE"; string public constant symbol = "SCALE"; uint8 public constant decimals = 18; /////////////////////////////////////////////////////////// // Variables For Staking and Pooling /////////////////////////////////////////////////////////// // -- Pool Minting Rates and Percentages -- // // Pool for Scale distribution to rewards pool // Set to address 0 to prohibit minting to the pool before it is assigned address public pool = address(0); // Pool and Owner minted tokens per second uint public poolMintRate; uint public ownerMintRate; // Amount of Scale to be staked to the pool, staking, and mint, as calculated through their percentages uint public poolMintAmount; uint public stakingMintAmount; uint public ownerMintAmount; // Scale distribution percentages uint public poolPercentage = 70; uint public ownerPercentage = 5; uint public stakingPercentage = 25; // Last time minted for owner and pool uint public ownerTimeLastMinted; uint public poolTimeLastMinted; // -- Staking -- // // Minted tokens per second uint public stakingMintRate; // Total Scale currently staked uint public totalScaleStaked; // Mapping of the timestamp => totalStaking that is created each time an address stakes or unstakes mapping (uint => uint) totalStakingHistory; // Variable for staking accuracy. Set to 86400 for seconds in a day so that staking gains are based on the day an account begins staking. uint timingVariable = 86400; // Address staking information struct AddressStakeData { uint stakeBalance; uint initialStakeTime; } // Track all tokens staked mapping (address => AddressStakeData) public stakeBalances; // -- Inflation -- // // Inflation rate begins at 100% per year and decreases by 30% per year until it // reaches 10% where it decreases by 0.5% per year, stopping at 1% per year. uint256 inflationRate = 1000; // Used to manage when to inflate. Allowed to inflate once per year until the rate reaches 1%. uint256 public lastInflationUpdate; // -- Events -- // // Fired when tokens are staked event Stake(address indexed staker, uint256 value); // Fired when tokens are unstaked event Unstake(address indexed unstaker, uint256 stakedAmount, uint256 stakingGains); ////////////////////////////////////////////////// /// Scale Token Functionality ////////////////////////////////////////////////// /// @dev Scale token constructor constructor() public { // Assign owner owner = msg.sender; // Assign initial owner supply uint _initOwnerSupply = 10000000 ether; // Mint given to owner only one-time bool _success = mint(msg.sender, _initOwnerSupply); // Require minting success require(_success); // Set pool and owner last minted to ensure extra coins are not minted by either ownerTimeLastMinted = now; poolTimeLastMinted = now; // Set minting amount for pool, staking, and owner over the course of 1 year poolMintAmount = _initOwnerSupply.mul(poolPercentage).div(100); ownerMintAmount = _initOwnerSupply.mul(ownerPercentage).div(100); stakingMintAmount = _initOwnerSupply.mul(stakingPercentage).div(100); // One year in seconds uint _oneYearInSeconds = 31536000 ether; // Set the rate of coins minted per second for the pool, owner, and global staking poolMintRate = calculateFraction(poolMintAmount, _oneYearInSeconds, decimals); ownerMintRate = calculateFraction(ownerMintAmount, _oneYearInSeconds, decimals); stakingMintRate = calculateFraction(stakingMintAmount, _oneYearInSeconds, decimals); // Set the last time inflation was update to now so that the next time it can be updated is 1 year from now lastInflationUpdate = now; } ///////////// // Inflation ///////////// /// @dev the inflation rate begins at 100% and decreases by 30% every year until it reaches 10% /// at 10% the rate begins to decrease by 0.5% until it reaches 1% function adjustInflationRate() private { // Make sure adjustInflationRate cannot be called for at least another year lastInflationUpdate = now; // Decrease inflation rate by 30% each year if (inflationRate > 100) { inflationRate = inflationRate.sub(300); } // Inflation rate reaches 10%. Decrease inflation rate by 0.5% from here on out until it reaches 1%. else if (inflationRate > 10) { inflationRate = inflationRate.sub(5); } // Calculate new mint amount of Scale that should be created per year. poolMintAmount = totalSupply.mul(inflationRate).div(1000).mul(poolPercentage).div(100); ownerMintAmount = totalSupply.mul(inflationRate).div(1000).mul(ownerPercentage).div(100); stakingMintAmount = totalSupply.mul(inflationRate).div(1000).mul(stakingPercentage).div(100); // Adjust Scale created per-second for each rate poolMintRate = calculateFraction(poolMintAmount, 31536000 ether, decimals); ownerMintRate = calculateFraction(ownerMintAmount, 31536000 ether, decimals); stakingMintRate = calculateFraction(stakingMintAmount, 31536000 ether, decimals); } /// @dev anyone can call this function to update the inflation rate yearly function updateInflationRate() public { // Require 1 year to have passed for every inflation adjustment require(now.sub(lastInflationUpdate) >= 31536000); adjustInflationRate(); } ///////////// // Staking ///////////// /// @dev staking function which allows users to stake an amount of tokens to gain interest for up to 365 days /// @param _stakeAmount how many tokens a user wants to stake function stakeScale(uint _stakeAmount) external { // Require that tokens are staked successfully require(stake(msg.sender, _stakeAmount)); } /// @dev stake for a seperate address /// @param _stakeAmount how many tokens a user wants to stake function stakeFor(address _user, uint _stakeAmount) external { // You can only stake tokens for another user if they have not already staked tokens require(stakeBalances[_user].stakeBalance == 0); // Transfer Scale from to the msg.sender to the user transfer( _user, _stakeAmount); // Stake for the user stake(_user, _stakeAmount); } /// @dev stake function reduces the user's total available balance and adds it to their staking balance /// @param _value how many tokens a user wants to stake function stake(address _user, uint256 _value) private returns (bool success) { // You can only stake as many tokens as you have require(_value <= balances[_user]); // You can only stake tokens if you have not already staked tokens require(stakeBalances[_user].stakeBalance == 0); // Subtract stake amount from regular token balance balances[_user] = balances[_user].sub(_value); // Add stake amount to staked balance stakeBalances[_user].stakeBalance = _value; // Increment the staking staked tokens value totalScaleStaked = totalScaleStaked.add(_value); // Save the time that the stake started stakeBalances[_user].initialStakeTime = now.div(timingVariable); // Set the new staking history setTotalStakingHistory(); // Fire an event to tell the world of the newly staked tokens emit Stake(_user, _value); return true; } /// @dev returns how much Scale a user has earned so far /// @param _now is passed in to allow for a gas-free analysis /// @return staking gains based on the amount of time passed since staking began function getStakingGains(uint _now) view public returns (uint) { if (stakeBalances[msg.sender].stakeBalance == 0) { return 0; } return calculateStakeGains(_now); } /// @dev allows users to reclaim any staked tokens /// @return bool on success function unstake() external returns (bool) { // Require that there was some amount vested require(stakeBalances[msg.sender].stakeBalance > 0); // Require that at least 7 timing variables have passed (days) require(now.div(timingVariable).sub(stakeBalances[msg.sender].initialStakeTime) >= 7); // Calculate tokens to mint uint _tokensToMint = calculateStakeGains(now); balances[msg.sender] = balances[msg.sender].add(stakeBalances[msg.sender].stakeBalance); // Subtract stake balance from totalScaleStaked totalScaleStaked = totalScaleStaked.sub(stakeBalances[msg.sender].stakeBalance); // Mint the new tokens to the sender mint(msg.sender, _tokensToMint); // Scale unstaked event emit Unstake(msg.sender, stakeBalances[msg.sender].stakeBalance, _tokensToMint); // Clear out stored data from mapping stakeBalances[msg.sender].stakeBalance = 0; stakeBalances[msg.sender].initialStakeTime = 0; // Set this every time someone adjusts the totalScaleStaking amount setTotalStakingHistory(); return true; } /// @dev Helper function to claimStake that modularizes the minting via staking calculation /// @param _now when the user stopped staking. Passed in as a variable to allow for checking without using gas from the getStakingGains function. /// @return uint for total coins to be minted function calculateStakeGains(uint _now) view private returns (uint mintTotal) { uint _nowAsTimingVariable = _now.div(timingVariable); // Today as a unique value in unix time uint _initialStakeTimeInVariable = stakeBalances[msg.sender].initialStakeTime; // When the user started staking as a unique day in unix time uint _timePassedSinceStakeInVariable = _nowAsTimingVariable.sub(_initialStakeTimeInVariable); // How much time has passed, in days, since the user started staking. uint _stakePercentages = 0; // Keeps an additive track of the user's staking percentages over time uint _tokensToMint = 0; // How many new Scale tokens to create uint _lastUsedVariable; // Last day the totalScaleStaked was updated // Average this msg.sender's relative percentage ownership of totalScaleStaked throughout each day since they started staking for (uint i = _initialStakeTimeInVariable; i < _nowAsTimingVariable; i++) { // If the day exists add it to the percentages if (totalStakingHistory[i] != 0) { // If the day does exist add it to the number to be later averaged as a total average percentage of total staking _stakePercentages = _stakePercentages.add(calculateFraction(stakeBalances[msg.sender].stakeBalance, totalStakingHistory[i], decimals)); // Set this as the last day someone staked _lastUsedVariable = totalStakingHistory[i]; } else { // Use the last day found in the totalStakingHistory mapping _stakePercentages = _stakePercentages.add(calculateFraction(stakeBalances[msg.sender].stakeBalance, _lastUsedVariable, decimals)); } } // Get the account's average percentage staked of the total stake over the course of all days they have been staking uint _stakePercentageAverage = calculateFraction(_stakePercentages, _timePassedSinceStakeInVariable, 0); // Calculate this account's mint rate per second while staking uint _finalMintRate = stakingMintRate.mul(_stakePercentageAverage); // Account for 18 decimals when calculating the amount of tokens to mint _finalMintRate = _finalMintRate.div(1 ether); // Calculate total tokens to be minted. Multiply by timingVariable to convert back to seconds. if (_timePassedSinceStakeInVariable >= 365) { // Tokens were staked for the maximum amount of time, one year. Give them one year's worth of tokens. ( this limit is placed to avoid gas limits) _tokensToMint = calculateMintTotal(timingVariable.mul(365), _finalMintRate); } else { // Tokens were staked for less than the maximum amount of time _tokensToMint = calculateMintTotal(_timePassedSinceStakeInVariable.mul(timingVariable), _finalMintRate); } return _tokensToMint; } /// @dev set the new totalStakingHistory mapping to the current timestamp and totalScaleStaked function setTotalStakingHistory() private { // Get now in terms of the variable staking accuracy (days in Scale's case) uint _nowAsTimingVariable = now.div(timingVariable); // Set the totalStakingHistory as a timestamp of the totalScaleStaked today totalStakingHistory[_nowAsTimingVariable] = totalScaleStaked; } /// @dev Allows user to check their staked balance /// @return staked balance function getStakedBalance() view external returns (uint stakedBalance) { return stakeBalances[msg.sender].stakeBalance; } ///////////// // Scale Owner Claiming ///////////// /// @dev allows contract owner to claim their mint function ownerClaim() external onlyOwner { require(now > ownerTimeLastMinted); uint _timePassedSinceLastMint; // The amount of time passed since the owner claimed in seconds uint _tokenMintCount; // The amount of new tokens to mint bool _mintingSuccess; // The success of minting the new Scale tokens // Calculate the number of seconds that have passed since the owner last took a claim _timePassedSinceLastMint = now.sub(ownerTimeLastMinted); assert(_timePassedSinceLastMint > 0); // Determine the token mint amount, determined from the number of seconds passed and the ownerMintRate _tokenMintCount = calculateMintTotal(_timePassedSinceLastMint, ownerMintRate); // Mint the owner's tokens; this also increases totalSupply _mintingSuccess = mint(msg.sender, _tokenMintCount); require(_mintingSuccess); // New minting was a success. Set last time minted to current block.timestamp (now) ownerTimeLastMinted = now; } //////////////////////////////// // Scale Pool Distribution //////////////////////////////// /// @dev anyone can call this function that mints Scale to the pool dedicated to Scale distribution to rewards pool function poolIssue() public { // Do not allow tokens to be minted to the pool until the pool is set require(pool != address(0)); // Make sure time has passed since last minted to pool require(now > poolTimeLastMinted); require(pool != address(0)); uint _timePassedSinceLastMint; // The amount of time passed since the pool claimed in seconds uint _tokenMintCount; // The amount of new tokens to mint bool _mintingSuccess; // The success of minting the new Scale tokens // Calculate the number of seconds that have passed since the pool last took a claim _timePassedSinceLastMint = now.sub(poolTimeLastMinted); assert(_timePassedSinceLastMint > 0); // Determine the token mint amount, determined from the number of seconds passed and the poolMintRate _tokenMintCount = calculateMintTotal(_timePassedSinceLastMint, poolMintRate); // Mint the pool's tokens; this also increases totalSupply _mintingSuccess = mint(pool, _tokenMintCount); require(_mintingSuccess); // New minting was a success! Set last time minted to current block.timestamp (now) poolTimeLastMinted = now; } /// @dev sets the address for the rewards pool /// @param _newAddress pool Address function setPool(address _newAddress) public onlyOwner { pool = _newAddress; } //////////////////////////////// // Helper Functions //////////////////////////////// /// @dev calculateFraction allows us to better handle the Solidity ugliness of not having decimals as a native type /// @param _numerator is the top part of the fraction we are calculating /// @param _denominator is the bottom part of the fraction we are calculating /// @param _precision tells the function how many significant digits to calculate out to /// @return quotient returns the result of our fraction calculation function calculateFraction(uint _numerator, uint _denominator, uint _precision) pure private returns(uint quotient) { // Take passed value and expand it to the required precision _numerator = _numerator.mul(10 ** (_precision + 1)); // Handle last-digit rounding uint _quotient = ((_numerator.div(_denominator)) + 5) / 10; return (_quotient); } /// @dev Determines the amount of Scale to create based on the number of seconds that have passed /// @param _timeInSeconds is the time passed in seconds to mint for /// @param _mintRate the mint rate per second /// @return uint with the calculated number of new tokens to mint function calculateMintTotal(uint _timeInSeconds, uint _mintRate) pure private returns(uint mintAmount) { // Calculates the amount of tokens to mint based upon the number of seconds passed return(_timeInSeconds.mul(_mintRate)); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"constant":true,"inputs":[],"name":"stakingMintAmount","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"pool","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_stakeAmount","type":"uint256"}],"name":"stakeScale","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"unstake","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_user","type":"address"},{"name":"_stakeAmount","type":"uint256"}],"name":"stakeFor","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"stakeBalances","outputs":[{"name":"stakeBalance","type":"uint256"},{"name":"initialStakeTime","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"poolPercentage","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"ownerPercentage","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_newAddress","type":"address"}],"name":"setPool","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"ownerClaim","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"poolTimeLastMinted","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"updateInflationRate","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"stakingMintRate","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_now","type":"uint256"}],"name":"getStakingGains","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"poolIssue","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"lastInflationUpdate","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getStakedBalance","outputs":[{"name":"stakedBalance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"poolMintAmount","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"stakingPercentage","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"poolMintRate","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"reclaimEther","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"ownerMintRate","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"ownerTimeLastMinted","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"ownerMintAmount","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalScaleStaked","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":false,"stateMutability":"nonpayable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"staker","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Stake","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"unstaker","type":"address"},{"indexed":false,"name":"stakedAmount","type":"uint256"},{"indexed":false,"name":"stakingGains","type":"uint256"}],"name":"Unstake","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"}]
Contract Creation Code
60806040526000600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506046600a556005600b556019600c55620151806012556103e86014553480156200006f57600080fd5b50600080600033600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600034141515620000c657600080fd5b33600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506a084595161401484a0000009250620001303384620002cd640100000000026401000000009004565b91508115156200013f57600080fd5b42600d8190555042600e8190555062000195606462000178600a54866200045d6401000000000262002b53179091906401000000009004565b6200049c64010000000002620024fe179091906401000000009004565b600781905550620001e36064620001c6600b54866200045d6401000000000262002b53179091906401000000009004565b6200049c64010000000002620024fe179091906401000000009004565b60098190555062000231606462000214600c54866200045d6401000000000262002b53179091906401000000009004565b6200049c64010000000002620024fe179091906401000000009004565b6008819055506a1a1601fc4ea7109e00000090506200026760075482601260ff16620004b8640100000000026401000000009004565b6005819055506200028f60095482601260ff16620004b8640100000000026401000000009004565b600681905550620002b760085482601260ff16620004b8640100000000026401000000009004565b600f819055504260158190555050505062000545565b6000620002f4826000546200052664010000000002620024e0179091906401000000009004565b6000819055506200035c82600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546200052664010000000002620024e0179091906401000000009004565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff167f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d4121396885836040518082815260200191505060405180910390a28273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a36001905092915050565b600080600084141562000474576000915062000495565b82840290508284828115156200048657fe5b041415156200049157fe5b8091505b5092915050565b6000808284811515620004ab57fe5b0490508091505092915050565b600080620004e460018401600a0a866200045d6401000000000262002b53179091906401000000009004565b9450600a60056200050d86886200049c64010000000002620024fe179091906401000000009004565b018115156200051857fe5b049050809150509392505050565b60008082840190508381101515156200053b57fe5b8091505092915050565b612bba80620005556000396000f3006080604052600436106101d8576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff16806304e78a30146101e757806306fdde0314610212578063095ea7b3146102a257806316f0115b1461030757806318160ddd1461035e5780631d60993b1461038957806323b872dd146103b65780632def66201461043b5780632ee409081461046a578063313ce567146104b75780633b317dab146104e85780633e7e30ba1461054657806341da7555146105715780634437152a1461059c5780634dbe5889146105df578063531e4827146105f657806361c083b914610621578063628a01ce14610638578063661884631461066357806366e1cebd146106c85780636b178f47146107095780636b4e8bb01461072057806370a082311461074b57806376965867146107a25780637e575524146107cd57806381e1ccba146107f85780638da5cb5b1461082357806390cad5371461087a57806395d89b41146108a55780639f727c2714610935578063a0d8b4e91461094c578063a9059cbb14610977578063ac185644146109dc578063bb00c8f914610a07578063d73dd62314610a32578063dd62ed3e14610a97578063f162c5a114610b0e578063f2fde38b14610b39575b3480156101e457600080fd5b50005b3480156101f357600080fd5b506101fc610b7c565b6040518082815260200191505060405180910390f35b34801561021e57600080fd5b50610227610b82565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561026757808201518184015260208101905061024c565b50505050905090810190601f1680156102945780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102ae57600080fd5b506102ed600480360381019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610bbb565b604051808215151515815260200191505060405180910390f35b34801561031357600080fd5b5061031c610cad565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561036a57600080fd5b50610373610cd3565b6040518082815260200191505060405180910390f35b34801561039557600080fd5b506103b460048036038101908080359060200190929190505050610cd9565b005b3480156103c257600080fd5b50610421600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610cf1565b604051808215151515815260200191505060405180910390f35b34801561044757600080fd5b506104506110b0565b604051808215151515815260200191505060405180910390f35b34801561047657600080fd5b506104b5600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506113fe565b005b3480156104c357600080fd5b506104cc611469565b604051808260ff1660ff16815260200191505060405180910390f35b3480156104f457600080fd5b50610529600480360381019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061146e565b604051808381526020018281526020019250505060405180910390f35b34801561055257600080fd5b5061055b611492565b6040518082815260200191505060405180910390f35b34801561057d57600080fd5b50610586611498565b6040518082815260200191505060405180910390f35b3480156105a857600080fd5b506105dd600480360381019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061149e565b005b3480156105eb57600080fd5b506105f461153e565b005b34801561060257600080fd5b5061060b611604565b6040518082815260200191505060405180910390f35b34801561062d57600080fd5b5061063661160a565b005b34801561064457600080fd5b5061064d61163b565b6040518082815260200191505060405180910390f35b34801561066f57600080fd5b506106ae600480360381019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611641565b604051808215151515815260200191505060405180910390f35b3480156106d457600080fd5b506106f3600480360381019080803590602001909291905050506118d2565b6040518082815260200191505060405180910390f35b34801561071557600080fd5b5061071e611938565b005b34801561072c57600080fd5b50610735611a7f565b6040518082815260200191505060405180910390f35b34801561075757600080fd5b5061078c600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611a85565b6040518082815260200191505060405180910390f35b3480156107ae57600080fd5b506107b7611ace565b6040518082815260200191505060405180910390f35b3480156107d957600080fd5b506107e2611b18565b6040518082815260200191505060405180910390f35b34801561080457600080fd5b5061080d611b1e565b6040518082815260200191505060405180910390f35b34801561082f57600080fd5b50610838611b24565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561088657600080fd5b5061088f611b4a565b6040518082815260200191505060405180910390f35b3480156108b157600080fd5b506108ba611b50565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156108fa5780820151818401526020810190506108df565b50505050905090810190601f1680156109275780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561094157600080fd5b5061094a611b89565b005b34801561095857600080fd5b50610961611c5d565b6040518082815260200191505060405180910390f35b34801561098357600080fd5b506109c2600480360381019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611c63565b604051808215151515815260200191505060405180910390f35b3480156109e857600080fd5b506109f1611e87565b6040518082815260200191505060405180910390f35b348015610a1357600080fd5b50610a1c611e8d565b6040518082815260200191505060405180910390f35b348015610a3e57600080fd5b50610a7d600480360381019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611e93565b604051808215151515815260200191505060405180910390f35b348015610aa357600080fd5b50610af8600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061208f565b6040518082815260200191505060405180910390f35b348015610b1a57600080fd5b50610b23612116565b6040518082815260200191505060405180910390f35b348015610b4557600080fd5b50610b7a600480360381019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061211c565b005b60085481565b6040805190810160405280600581526020017f5343414c4500000000000000000000000000000000000000000000000000000081525081565b600081600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040518082815260200191505060405180910390a36001905092915050565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60005481565b610ce33382612274565b1515610cee57600080fd5b50565b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614151515610d2e57600080fd5b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548211151515610d7c57600080fd5b600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548211151515610e0757600080fd5b610e5982600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124c790919063ffffffff16565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610eee82600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124e090919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610fc082600260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124c790919063ffffffff16565b600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a3600190509392505050565b6000806000601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000015411151561110457600080fd5b600761116f601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010154611161601254426124fe90919063ffffffff16565b6124c790919063ffffffff16565b1015151561117c57600080fd5b61118542612519565b905061121b601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000154600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124e090919063ffffffff16565b600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506112b5601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001546010546124c790919063ffffffff16565b6010819055506112c53382612776565b503373ffffffffffffffffffffffffffffffffffffffff167ff960dbf9e5d0682f7a298ed974e33a28b4464914b7a2bfac12ae419a9afeb280601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000015483604051808381526020018281526020019250505060405180910390a26000601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001819055506000601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101819055506113f66128e6565b600191505090565b6000601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000015414151561144f57600080fd5b6114598282611c63565b506114648282612274565b505050565b601281565b60136020528060005260406000206000915090508060000154908060010154905082565b600a5481565b600b5481565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415156114fa57600080fd5b80600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000806000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614151561159f57600080fd5b600d54421115156115af57600080fd5b6115c4600d54426124c790919063ffffffff16565b92506000831115156115d257fe5b6115de8360065461291c565b91506115ea3383612776565b90508015156115f857600080fd5b42600d81905550505050565b600e5481565b6301e13380611624601554426124c790919063ffffffff16565b1015151561163157600080fd5b611639612939565b565b600f5481565b600080600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905080831115611752576000600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506117e6565b61176583826124c790919063ffffffff16565b600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b8373ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546040518082815260200191505060405180910390a3600191505092915050565b600080601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000015414156119275760009050611933565b61193082612519565b90505b919050565b60008060008073ffffffffffffffffffffffffffffffffffffffff16600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415151561199a57600080fd5b600e54421115156119aa57600080fd5b600073ffffffffffffffffffffffffffffffffffffffff16600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614151515611a0857600080fd5b611a1d600e54426124c790919063ffffffff16565b9250600083111515611a2b57fe5b611a378360055461291c565b9150611a65600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683612776565b9050801515611a7357600080fd5b42600e81905550505050565b60155481565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000154905090565b60075481565b600c5481565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60055481565b6040805190810160405280600581526020017f5343414c4500000000000000000000000000000000000000000000000000000081525081565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141515611be557600080fd5b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc3073ffffffffffffffffffffffffffffffffffffffff16319081150290604051600060405180830381858888f193505050501515611c5b57fe5b565b60065481565b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614151515611ca057600080fd5b600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548211151515611cee57600080fd5b611d4082600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124c790919063ffffffff16565b600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611dd582600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124e090919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a36001905092915050565b600d5481565b60095481565b6000611f2482600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124e090919063ffffffff16565b600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546040518082815260200191505060405180910390a36001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60105481565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614151561217857600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141515156121b457600080fd5b8073ffffffffffffffffffffffffffffffffffffffff16600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205482111515156122c457600080fd5b6000601360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000015414151561231557600080fd5b61236782600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124c790919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081601360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000181905550612406826010546124e090919063ffffffff16565b601081905550612421601254426124fe90919063ffffffff16565b601360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001018190555061246f6128e6565b8273ffffffffffffffffffffffffffffffffffffffff167febedb8b3c678666e7f36970bc8f57abf6d8fa2e828c0da91ea5b75bf68ed101a836040518082815260200191505060405180910390a26001905092915050565b60008282111515156124d557fe5b818303905092915050565b60008082840190508381101515156124f457fe5b8091505092915050565b600080828481151561250c57fe5b0490508091505092915050565b60008060008060008060008060008061253d6012548c6124fe90919063ffffffff16565b9850601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101549750612597888a6124c790919063ffffffff16565b965060009550600094508792505b888310156126d0576000601160008581526020019081526020016000205414151561265d57612640612631601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001546011600087815260200190815260200160002054601260ff16612b06565b876124e090919063ffffffff16565b9550601160008481526020019081526020016000205493506126c3565b6126c06126b1601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000015486601260ff16612b06565b876124e090919063ffffffff16565b95505b82806001019350506125a5565b6126dc86886000612b06565b91506126f382600f54612b5390919063ffffffff16565b9050612710670de0b6b3a7640000826124fe90919063ffffffff16565b905061016d871015156127445761273d61273761016d601254612b5390919063ffffffff16565b8261291c565b9450612765565b61276261275c60125489612b5390919063ffffffff16565b8261291c565b94505b849950505050505050505050919050565b600061278d826000546124e090919063ffffffff16565b6000819055506127e582600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124e090919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff167f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d4121396885836040518082815260200191505060405180910390a28273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a36001905092915050565b60006128fd601254426124fe90919063ffffffff16565b9050601054601160008381526020019081526020016000208190555050565b60006129318284612b5390919063ffffffff16565b905092915050565b426015819055506064601454111561296d5761296261012c6014546124c790919063ffffffff16565b601481905550612996565b600a60145411156129955761298e60056014546124c790919063ffffffff16565b6014819055505b5b6129e860646129da600a546129cc6103e86129be601454600054612b5390919063ffffffff16565b6124fe90919063ffffffff16565b612b5390919063ffffffff16565b6124fe90919063ffffffff16565b600781905550612a406064612a32600b54612a246103e8612a16601454600054612b5390919063ffffffff16565b6124fe90919063ffffffff16565b612b5390919063ffffffff16565b6124fe90919063ffffffff16565b600981905550612a986064612a8a600c54612a7c6103e8612a6e601454600054612b5390919063ffffffff16565b6124fe90919063ffffffff16565b612b5390919063ffffffff16565b6124fe90919063ffffffff16565b600881905550612aba6007546a1a1601fc4ea7109e000000601260ff16612b06565b600581905550612adc6009546a1a1601fc4ea7109e000000601260ff16612b06565b600681905550612afe6008546a1a1601fc4ea7109e000000601260ff16612b06565b600f81905550565b600080612b2260018401600a0a86612b5390919063ffffffff16565b9450600a6005612b3b86886124fe90919063ffffffff16565b01811515612b4557fe5b049050809150509392505050565b6000806000841415612b685760009150612b87565b8284029050828482811515612b7957fe5b04141515612b8357fe5b8091505b50929150505600a165627a7a723058200c758d6bd8786358b550a1b3f8c0a0aebbd62d7cc43d5f7c866859242edaa1da0029
Deployed Bytecode
0x6080604052600436106101d8576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff16806304e78a30146101e757806306fdde0314610212578063095ea7b3146102a257806316f0115b1461030757806318160ddd1461035e5780631d60993b1461038957806323b872dd146103b65780632def66201461043b5780632ee409081461046a578063313ce567146104b75780633b317dab146104e85780633e7e30ba1461054657806341da7555146105715780634437152a1461059c5780634dbe5889146105df578063531e4827146105f657806361c083b914610621578063628a01ce14610638578063661884631461066357806366e1cebd146106c85780636b178f47146107095780636b4e8bb01461072057806370a082311461074b57806376965867146107a25780637e575524146107cd57806381e1ccba146107f85780638da5cb5b1461082357806390cad5371461087a57806395d89b41146108a55780639f727c2714610935578063a0d8b4e91461094c578063a9059cbb14610977578063ac185644146109dc578063bb00c8f914610a07578063d73dd62314610a32578063dd62ed3e14610a97578063f162c5a114610b0e578063f2fde38b14610b39575b3480156101e457600080fd5b50005b3480156101f357600080fd5b506101fc610b7c565b6040518082815260200191505060405180910390f35b34801561021e57600080fd5b50610227610b82565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561026757808201518184015260208101905061024c565b50505050905090810190601f1680156102945780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102ae57600080fd5b506102ed600480360381019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610bbb565b604051808215151515815260200191505060405180910390f35b34801561031357600080fd5b5061031c610cad565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561036a57600080fd5b50610373610cd3565b6040518082815260200191505060405180910390f35b34801561039557600080fd5b506103b460048036038101908080359060200190929190505050610cd9565b005b3480156103c257600080fd5b50610421600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610cf1565b604051808215151515815260200191505060405180910390f35b34801561044757600080fd5b506104506110b0565b604051808215151515815260200191505060405180910390f35b34801561047657600080fd5b506104b5600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506113fe565b005b3480156104c357600080fd5b506104cc611469565b604051808260ff1660ff16815260200191505060405180910390f35b3480156104f457600080fd5b50610529600480360381019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061146e565b604051808381526020018281526020019250505060405180910390f35b34801561055257600080fd5b5061055b611492565b6040518082815260200191505060405180910390f35b34801561057d57600080fd5b50610586611498565b6040518082815260200191505060405180910390f35b3480156105a857600080fd5b506105dd600480360381019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061149e565b005b3480156105eb57600080fd5b506105f461153e565b005b34801561060257600080fd5b5061060b611604565b6040518082815260200191505060405180910390f35b34801561062d57600080fd5b5061063661160a565b005b34801561064457600080fd5b5061064d61163b565b6040518082815260200191505060405180910390f35b34801561066f57600080fd5b506106ae600480360381019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611641565b604051808215151515815260200191505060405180910390f35b3480156106d457600080fd5b506106f3600480360381019080803590602001909291905050506118d2565b6040518082815260200191505060405180910390f35b34801561071557600080fd5b5061071e611938565b005b34801561072c57600080fd5b50610735611a7f565b6040518082815260200191505060405180910390f35b34801561075757600080fd5b5061078c600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611a85565b6040518082815260200191505060405180910390f35b3480156107ae57600080fd5b506107b7611ace565b6040518082815260200191505060405180910390f35b3480156107d957600080fd5b506107e2611b18565b6040518082815260200191505060405180910390f35b34801561080457600080fd5b5061080d611b1e565b6040518082815260200191505060405180910390f35b34801561082f57600080fd5b50610838611b24565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561088657600080fd5b5061088f611b4a565b6040518082815260200191505060405180910390f35b3480156108b157600080fd5b506108ba611b50565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156108fa5780820151818401526020810190506108df565b50505050905090810190601f1680156109275780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561094157600080fd5b5061094a611b89565b005b34801561095857600080fd5b50610961611c5d565b6040518082815260200191505060405180910390f35b34801561098357600080fd5b506109c2600480360381019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611c63565b604051808215151515815260200191505060405180910390f35b3480156109e857600080fd5b506109f1611e87565b6040518082815260200191505060405180910390f35b348015610a1357600080fd5b50610a1c611e8d565b6040518082815260200191505060405180910390f35b348015610a3e57600080fd5b50610a7d600480360381019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611e93565b604051808215151515815260200191505060405180910390f35b348015610aa357600080fd5b50610af8600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061208f565b6040518082815260200191505060405180910390f35b348015610b1a57600080fd5b50610b23612116565b6040518082815260200191505060405180910390f35b348015610b4557600080fd5b50610b7a600480360381019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061211c565b005b60085481565b6040805190810160405280600581526020017f5343414c4500000000000000000000000000000000000000000000000000000081525081565b600081600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040518082815260200191505060405180910390a36001905092915050565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60005481565b610ce33382612274565b1515610cee57600080fd5b50565b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614151515610d2e57600080fd5b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548211151515610d7c57600080fd5b600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548211151515610e0757600080fd5b610e5982600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124c790919063ffffffff16565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610eee82600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124e090919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610fc082600260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124c790919063ffffffff16565b600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a3600190509392505050565b6000806000601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000015411151561110457600080fd5b600761116f601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010154611161601254426124fe90919063ffffffff16565b6124c790919063ffffffff16565b1015151561117c57600080fd5b61118542612519565b905061121b601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000154600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124e090919063ffffffff16565b600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506112b5601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001546010546124c790919063ffffffff16565b6010819055506112c53382612776565b503373ffffffffffffffffffffffffffffffffffffffff167ff960dbf9e5d0682f7a298ed974e33a28b4464914b7a2bfac12ae419a9afeb280601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000015483604051808381526020018281526020019250505060405180910390a26000601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001819055506000601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101819055506113f66128e6565b600191505090565b6000601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000015414151561144f57600080fd5b6114598282611c63565b506114648282612274565b505050565b601281565b60136020528060005260406000206000915090508060000154908060010154905082565b600a5481565b600b5481565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415156114fa57600080fd5b80600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000806000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614151561159f57600080fd5b600d54421115156115af57600080fd5b6115c4600d54426124c790919063ffffffff16565b92506000831115156115d257fe5b6115de8360065461291c565b91506115ea3383612776565b90508015156115f857600080fd5b42600d81905550505050565b600e5481565b6301e13380611624601554426124c790919063ffffffff16565b1015151561163157600080fd5b611639612939565b565b600f5481565b600080600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905080831115611752576000600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506117e6565b61176583826124c790919063ffffffff16565b600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b8373ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546040518082815260200191505060405180910390a3600191505092915050565b600080601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000015414156119275760009050611933565b61193082612519565b90505b919050565b60008060008073ffffffffffffffffffffffffffffffffffffffff16600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415151561199a57600080fd5b600e54421115156119aa57600080fd5b600073ffffffffffffffffffffffffffffffffffffffff16600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614151515611a0857600080fd5b611a1d600e54426124c790919063ffffffff16565b9250600083111515611a2b57fe5b611a378360055461291c565b9150611a65600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683612776565b9050801515611a7357600080fd5b42600e81905550505050565b60155481565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000154905090565b60075481565b600c5481565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60055481565b6040805190810160405280600581526020017f5343414c4500000000000000000000000000000000000000000000000000000081525081565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141515611be557600080fd5b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc3073ffffffffffffffffffffffffffffffffffffffff16319081150290604051600060405180830381858888f193505050501515611c5b57fe5b565b60065481565b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614151515611ca057600080fd5b600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548211151515611cee57600080fd5b611d4082600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124c790919063ffffffff16565b600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611dd582600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124e090919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a36001905092915050565b600d5481565b60095481565b6000611f2482600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124e090919063ffffffff16565b600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546040518082815260200191505060405180910390a36001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60105481565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614151561217857600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141515156121b457600080fd5b8073ffffffffffffffffffffffffffffffffffffffff16600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205482111515156122c457600080fd5b6000601360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000015414151561231557600080fd5b61236782600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124c790919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081601360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000181905550612406826010546124e090919063ffffffff16565b601081905550612421601254426124fe90919063ffffffff16565b601360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001018190555061246f6128e6565b8273ffffffffffffffffffffffffffffffffffffffff167febedb8b3c678666e7f36970bc8f57abf6d8fa2e828c0da91ea5b75bf68ed101a836040518082815260200191505060405180910390a26001905092915050565b60008282111515156124d557fe5b818303905092915050565b60008082840190508381101515156124f457fe5b8091505092915050565b600080828481151561250c57fe5b0490508091505092915050565b60008060008060008060008060008061253d6012548c6124fe90919063ffffffff16565b9850601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101549750612597888a6124c790919063ffffffff16565b965060009550600094508792505b888310156126d0576000601160008581526020019081526020016000205414151561265d57612640612631601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001546011600087815260200190815260200160002054601260ff16612b06565b876124e090919063ffffffff16565b9550601160008481526020019081526020016000205493506126c3565b6126c06126b1601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000015486601260ff16612b06565b876124e090919063ffffffff16565b95505b82806001019350506125a5565b6126dc86886000612b06565b91506126f382600f54612b5390919063ffffffff16565b9050612710670de0b6b3a7640000826124fe90919063ffffffff16565b905061016d871015156127445761273d61273761016d601254612b5390919063ffffffff16565b8261291c565b9450612765565b61276261275c60125489612b5390919063ffffffff16565b8261291c565b94505b849950505050505050505050919050565b600061278d826000546124e090919063ffffffff16565b6000819055506127e582600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124e090919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff167f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d4121396885836040518082815260200191505060405180910390a28273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a36001905092915050565b60006128fd601254426124fe90919063ffffffff16565b9050601054601160008381526020019081526020016000208190555050565b60006129318284612b5390919063ffffffff16565b905092915050565b426015819055506064601454111561296d5761296261012c6014546124c790919063ffffffff16565b601481905550612996565b600a60145411156129955761298e60056014546124c790919063ffffffff16565b6014819055505b5b6129e860646129da600a546129cc6103e86129be601454600054612b5390919063ffffffff16565b6124fe90919063ffffffff16565b612b5390919063ffffffff16565b6124fe90919063ffffffff16565b600781905550612a406064612a32600b54612a246103e8612a16601454600054612b5390919063ffffffff16565b6124fe90919063ffffffff16565b612b5390919063ffffffff16565b6124fe90919063ffffffff16565b600981905550612a986064612a8a600c54612a7c6103e8612a6e601454600054612b5390919063ffffffff16565b6124fe90919063ffffffff16565b612b5390919063ffffffff16565b6124fe90919063ffffffff16565b600881905550612aba6007546a1a1601fc4ea7109e000000601260ff16612b06565b600581905550612adc6009546a1a1601fc4ea7109e000000601260ff16612b06565b600681905550612afe6008546a1a1601fc4ea7109e000000601260ff16612b06565b600f81905550565b600080612b2260018401600a0a86612b5390919063ffffffff16565b9450600a6005612b3b86886124fe90919063ffffffff16565b01811515612b4557fe5b049050809150509392505050565b6000806000841415612b685760009150612b87565b8284029050828482811515612b7957fe5b04141515612b8357fe5b8091505b50929150505600a165627a7a723058200c758d6bd8786358b550a1b3f8c0a0aebbd62d7cc43d5f7c866859242edaa1da0029
Swarm Source
bzzr://0c758d6bd8786358b550a1b3f8c0a0aebbd62d7cc43d5f7c866859242edaa1da
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.