Feature Tip: Add private address tag to any address under My Name Tag !
More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 130 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Approve | 24269508 | 39 days ago | IN | 0 ETH | 0.00000333 | ||||
| Transfer | 15890569 | 1212 days ago | IN | 0 ETH | 0.00300872 | ||||
| Transfer | 15890197 | 1212 days ago | IN | 0 ETH | 0.00082197 | ||||
| Transfer | 13847987 | 1530 days ago | IN | 0 ETH | 0.00163508 | ||||
| Transfer | 13840879 | 1531 days ago | IN | 0 ETH | 0.00192527 | ||||
| Transfer | 13827366 | 1533 days ago | IN | 0 ETH | 0.00249138 | ||||
| Transfer | 13802005 | 1537 days ago | IN | 0 ETH | 0.00235987 | ||||
| Transfer | 13801910 | 1537 days ago | IN | 0 ETH | 0.00202546 | ||||
| Transfer | 13796361 | 1538 days ago | IN | 0 ETH | 0.00117523 | ||||
| Approve | 13769062 | 1542 days ago | IN | 0 ETH | 0.00293404 | ||||
| Transfer | 13752548 | 1545 days ago | IN | 0 ETH | 0.0041414 | ||||
| Transfer | 13752007 | 1545 days ago | IN | 0 ETH | 0.00457614 | ||||
| Transfer | 13751620 | 1545 days ago | IN | 0 ETH | 0.00488036 | ||||
| Transfer | 13751113 | 1545 days ago | IN | 0 ETH | 0.00505411 | ||||
| Transfer | 13751098 | 1545 days ago | IN | 0 ETH | 0.00280613 | ||||
| Approve | 13727923 | 1548 days ago | IN | 0 ETH | 0.00457285 | ||||
| Transfer | 13707293 | 1552 days ago | IN | 0 ETH | 0.00292809 | ||||
| Transfer | 13707285 | 1552 days ago | IN | 0 ETH | 0.00512769 | ||||
| Approve | 13701720 | 1553 days ago | IN | 0 ETH | 0.00282745 | ||||
| Approve | 13701544 | 1553 days ago | IN | 0 ETH | 0.0035581 | ||||
| Transfer | 13701544 | 1553 days ago | IN | 0 ETH | 0.00287962 | ||||
| Transfer | 13701508 | 1553 days ago | IN | 0 ETH | 0.00269888 | ||||
| Approve | 13694795 | 1554 days ago | IN | 0 ETH | 0.00435545 | ||||
| Transfer | 13691754 | 1554 days ago | IN | 0 ETH | 0.00574441 | ||||
| Transfer | 13690701 | 1554 days ago | IN | 0 ETH | 0.00631642 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
MainToken
Compiler Version
v0.4.24+commit.e67f0147
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2021-08-06
*/
pragma solidity ^0.4.23;
/**
* @title ERC20Basic
* @dev Simpler version of ERC20 interface
* @dev see https://github.com/ethereum/EIPs/issues/179
*/
contract ERC20Basic {
function totalSupply() public view returns (uint256);
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 SafeMath
* @dev Math operations with safety checks that throw on error
*/
library SafeMath {
/**
* @dev Multiplies two numbers, throws on overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256 c) {
// Gas optimization: this is cheaper than asserting '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;
}
c = a * b;
assert(c / a == b);
return c;
}
/**
* @dev Integer division of two numbers, truncating the quotient.
*/
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 a / b;
}
/**
* @dev Subtracts two numbers, throws on overflow (i.e. if subtrahend is greater than minuend).
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
assert(b <= a);
return a - b;
}
/**
* @dev Adds two numbers, throws on overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256 c) {
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;
uint256 totalSupply_;
/**
* @dev total number of tokens in existence
*/
function totalSupply() public view returns (uint256) {
return totalSupply_;
}
/**
* @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]);
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) {
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 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 OwnershipRenounced(address indexed previousOwner);
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 relinquish control of the contract.
*/
function renounceOwnership() public onlyOwner {
emit OwnershipRenounced(owner);
owner = address(0);
}
/**
* @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 {
_transferOwnership(_newOwner);
}
/**
* @dev Transfers control of the contract to a newOwner.
* @param _newOwner The address to transfer ownership to.
*/
function _transferOwnership(address _newOwner) internal {
require(_newOwner != address(0));
emit OwnershipTransferred(owner, _newOwner);
owner = _newOwner;
}
}
/**
* @title Mintable token
* @dev Simple ERC20 Token example, with mintable token creation
* @dev Issue: * https://github.com/OpenZeppelin/openzeppelin-solidity/issues/120
* Based on code by TokenMarketNet: https://github.com/TokenMarketNet/ico/blob/master/contracts/MintableToken.sol
*/
contract MintableToken is StandardToken, Ownable {
event Mint(address indexed to, uint256 amount);
event MintFinished();
bool public mintingFinished = false;
modifier canMint() {
require(!mintingFinished);
_;
}
modifier hasMintPermission() {
require(msg.sender == owner);
_;
}
/**
* @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
)
hasMintPermission
canMint
public
returns (bool)
{
totalSupply_ = totalSupply_.add(_amount);
balances[_to] = balances[_to].add(_amount);
emit Mint(_to, _amount);
emit Transfer(address(0), _to, _amount);
return true;
}
/**
* @dev Function to stop minting new tokens.
* @return True if the operation was successful.
*/
function finishMinting() onlyOwner canMint public returns (bool) {
mintingFinished = true;
emit MintFinished();
return true;
}
}
contract FreezableToken is StandardToken {
// freezing chains
mapping (bytes32 => uint64) internal chains;
// freezing amounts for each chain
mapping (bytes32 => uint) internal freezings;
// total freezing balance per address
mapping (address => uint) internal freezingBalance;
event Freezed(address indexed to, uint64 release, uint amount);
event Released(address indexed owner, uint amount);
/**
* @dev Gets the balance of the specified address include freezing tokens.
* @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 super.balanceOf(_owner) + freezingBalance[_owner];
}
/**
* @dev Gets the balance of the specified address without freezing tokens.
* @param _owner The address to query the the balance of.
* @return An uint256 representing the amount owned by the passed address.
*/
function actualBalanceOf(address _owner) public view returns (uint256 balance) {
return super.balanceOf(_owner);
}
function freezingBalanceOf(address _owner) public view returns (uint256 balance) {
return freezingBalance[_owner];
}
/**
* @dev gets freezing count
* @param _addr Address of freeze tokens owner.
*/
function freezingCount(address _addr) public view returns (uint count) {
uint64 release = chains[toKey(_addr, 0)];
while (release != 0) {
count++;
release = chains[toKey(_addr, release)];
}
}
/**
* @dev gets freezing end date and freezing balance for the freezing portion specified by index.
* @param _addr Address of freeze tokens owner.
* @param _index Freezing portion index. It ordered by release date descending.
*/
function getFreezing(address _addr, uint _index) public view returns (uint64 _release, uint _balance) {
for (uint i = 0; i < _index + 1; i++) {
_release = chains[toKey(_addr, _release)];
if (_release == 0) {
return;
}
}
_balance = freezings[toKey(_addr, _release)];
}
/**
* @dev freeze your tokens to the specified address.
* Be careful, gas usage is not deterministic,
* and depends on how many freezes _to address already has.
* @param _to Address to which token will be freeze.
* @param _amount Amount of token to freeze.
* @param _until Release date, must be in future.
*/
function freezeTo(address _to, uint _amount, uint64 _until) public {
require(_to != address(0));
require(_amount <= balances[msg.sender]);
balances[msg.sender] = balances[msg.sender].sub(_amount);
bytes32 currentKey = toKey(_to, _until);
freezings[currentKey] = freezings[currentKey].add(_amount);
freezingBalance[_to] = freezingBalance[_to].add(_amount);
freeze(_to, _until);
emit Transfer(msg.sender, _to, _amount);
emit Freezed(_to, _until, _amount);
}
/**
* @dev release first available freezing tokens.
*/
function releaseOnce() public {
bytes32 headKey = toKey(msg.sender, 0);
uint64 head = chains[headKey];
require(head != 0);
require(uint64(block.timestamp) > head);
bytes32 currentKey = toKey(msg.sender, head);
uint64 next = chains[currentKey];
uint amount = freezings[currentKey];
delete freezings[currentKey];
balances[msg.sender] = balances[msg.sender].add(amount);
freezingBalance[msg.sender] = freezingBalance[msg.sender].sub(amount);
if (next == 0) {
delete chains[headKey];
} else {
chains[headKey] = next;
delete chains[currentKey];
}
emit Released(msg.sender, amount);
}
/**
* @dev release all available for release freezing tokens. Gas usage is not deterministic!
* @return how many tokens was released
*/
function releaseAll() public returns (uint tokens) {
uint release;
uint balance;
(release, balance) = getFreezing(msg.sender, 0);
while (release != 0 && block.timestamp > release) {
releaseOnce();
tokens += balance;
(release, balance) = getFreezing(msg.sender, 0);
}
}
function toKey(address _addr, uint _release) internal pure returns (bytes32 result) {
// WISH masc to increase entropy
result = 0x5749534800000000000000000000000000000000000000000000000000000000;
assembly {
result := or(result, mul(_addr, 0x10000000000000000))
result := or(result, and(_release, 0xffffffffffffffff))
}
}
function freeze(address _to, uint64 _until) internal {
require(_until > block.timestamp);
bytes32 key = toKey(_to, _until);
bytes32 parentKey = toKey(_to, uint64(0));
uint64 next = chains[parentKey];
if (next == 0) {
chains[parentKey] = _until;
return;
}
bytes32 nextKey = toKey(_to, next);
uint parent;
while (next != 0 && _until > next) {
parent = next;
parentKey = nextKey;
next = chains[nextKey];
nextKey = toKey(_to, next);
}
if (_until == next) {
return;
}
if (next != 0) {
chains[key] = next;
}
chains[parentKey] = _until;
}
}
/**
* @title Burnable Token
* @dev Token that can be irreversibly burned (destroyed).
*/
contract BurnableToken is BasicToken {
event Burn(address indexed burner, uint256 value);
/**
* @dev Burns a specific amount of tokens.
* @param _value The amount of token to be burned.
*/
function burn(uint256 _value) public {
_burn(msg.sender, _value);
}
function _burn(address _who, uint256 _value) internal {
require(_value <= balances[_who]);
// no need to require value <= totalSupply, since that would imply the
// sender's balance is greater than the totalSupply, which *should* be an assertion failure
balances[_who] = balances[_who].sub(_value);
totalSupply_ = totalSupply_.sub(_value);
emit Burn(_who, _value);
emit Transfer(_who, address(0), _value);
}
}
/**
* @title Pausable
* @dev Base contract which allows children to implement an emergency stop mechanism.
*/
contract Pausable is Ownable {
event Pause();
event Unpause();
bool public paused = false;
/**
* @dev Modifier to make a function callable only when the contract is not paused.
*/
modifier whenNotPaused() {
require(!paused);
_;
}
/**
* @dev Modifier to make a function callable only when the contract is paused.
*/
modifier whenPaused() {
require(paused);
_;
}
/**
* @dev called by the owner to pause, triggers stopped state
*/
function pause() onlyOwner whenNotPaused public {
paused = true;
emit Pause();
}
/**
* @dev called by the owner to unpause, returns to normal state
*/
function unpause() onlyOwner whenPaused public {
paused = false;
emit Unpause();
}
}
contract FreezableMintableToken is FreezableToken, MintableToken {
/**
* @dev Mint the specified amount of token to the specified address and freeze it until the specified date.
* Be careful, gas usage is not deterministic,
* and depends on how many freezes _to address already has.
* @param _to Address to which token will be freeze.
* @param _amount Amount of token to mint and freeze.
* @param _until Release date, must be in future.
* @return A boolean that indicates if the operation was successful.
*/
function mintAndFreeze(address _to, uint _amount, uint64 _until) public onlyOwner canMint returns (bool) {
totalSupply_ = totalSupply_.add(_amount);
bytes32 currentKey = toKey(_to, _until);
freezings[currentKey] = freezings[currentKey].add(_amount);
freezingBalance[_to] = freezingBalance[_to].add(_amount);
freeze(_to, _until);
emit Mint(_to, _amount);
emit Freezed(_to, _until, _amount);
emit Transfer(msg.sender, _to, _amount);
return true;
}
}
contract Consts {
uint public constant TOKEN_DECIMALS = 18;
uint8 public constant TOKEN_DECIMALS_UINT8 = 18;
uint public constant TOKEN_DECIMAL_MULTIPLIER = 10 ** TOKEN_DECIMALS;
string public constant TOKEN_NAME = "FIAT";
string public constant TOKEN_SYMBOL = "FIAT";
bool public constant PAUSED = false;
address public constant TARGET_USER = 0xD70b8cAA8b18b7115978C6A41fAdf43FcEdaD4B1;
bool public constant CONTINUE_MINTING = false;
}
contract MainToken is Consts, FreezableMintableToken, BurnableToken, Pausable
{
event Initialized();
bool public initialized = false;
constructor() public {
init();
transferOwnership(TARGET_USER);
}
function name() public pure returns (string _name) {
return TOKEN_NAME;
}
function symbol() public pure returns (string _symbol) {
return TOKEN_SYMBOL;
}
function decimals() public pure returns (uint8 _decimals) {
return TOKEN_DECIMALS_UINT8;
}
function transferFrom(address _from, address _to, uint256 _value) public returns (bool _success) {
require(!paused);
return super.transferFrom(_from, _to, _value);
}
function transfer(address _to, uint256 _value) public returns (bool _success) {
require(!paused);
return super.transfer(_to, _value);
}
function init() private {
require(!initialized);
initialized = true;
if (PAUSED) {
pause();
}
address[1] memory addresses = [address(0xd70b8caa8b18b7115978c6a41fadf43fcedad4b1)];
uint[1] memory amounts = [uint(100000000000000000000000000)];
uint64[1] memory freezes = [uint64(0)];
for (uint i = 0; i < addresses.length; i++) {
if (freezes[i] == 0) {
mint(addresses[i], amounts[i]);
} else {
mintAndFreeze(addresses[i], amounts[i], freezes[i]);
}
}
if (!CONTINUE_MINTING) {
finishMinting();
}
emit Initialized();
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"constant":true,"inputs":[],"name":"CONTINUE_MINTING","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_addr","type":"address"},{"name":"_index","type":"uint256"}],"name":"getFreezing","outputs":[{"name":"_release","type":"uint64"},{"name":"_balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"mintingFinished","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"_name","type":"string"}],"payable":false,"stateMutability":"pure","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":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"},{"name":"_until","type":"uint64"}],"name":"mintAndFreeze","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"initialized","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"actualBalanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"TOKEN_NAME","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"_success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"TOKEN_SYMBOL","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"_decimals","type":"uint8"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"},{"name":"_until","type":"uint64"}],"name":"freezeTo","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"mint","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"TOKEN_DECIMAL_MULTIPLIER","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"TOKEN_DECIMALS","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"releaseAll","outputs":[{"name":"tokens","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"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":false,"inputs":[],"name":"releaseOnce","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"TARGET_USER","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"finishMinting","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"_symbol","type":"string"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"_success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"PAUSED","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_addr","type":"address"}],"name":"freezingCount","outputs":[{"name":"count","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"TOKEN_DECIMALS_UINT8","outputs":[{"name":"","type":"uint8"}],"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":"freezingBalanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","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":false,"inputs":[{"name":"_newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[],"name":"Pause","type":"event"},{"anonymous":false,"inputs":[],"name":"Unpause","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"burner","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[],"name":"MintFinished","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"}],"name":"OwnershipRenounced","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":"to","type":"address"},{"indexed":false,"name":"release","type":"uint64"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Freezed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Released","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
60806040526006805460a060020a62ffffff02191690553480156200002357600080fd5b5060068054600160a060020a031916331790556200004964010000000062000077810204565b6200007173d70b8caa8b18b7115978c6a41fadf43fcedad4b16401000000006200023a810204565b62000885565b6200008162000866565b6200008b62000866565b6200009562000866565b600654600090760100000000000000000000000000000000000000000000900460ff1615620000c357600080fd5b6006805460b060020a60ff0219167601000000000000000000000000000000000000000000001790555050604080516020818101835273d70b8caa8b18b7115978c6a41fadf43fcedad4b18252825180820184526a52b7d2dcc80cd2e40000008152835191820190935260008082529194509192505b6001811015620001f7578181600181106200015057fe5b60200201516001604060020a03161515620001a3576200019c8482600181106200017657fe5b60200201518483600181106200018857fe5b602002015164010000000062000269810204565b50620001ee565b620001ec848260018110620001b457fe5b6020020151848360018110620001c657fe5b6020020151848460018110620001d857fe5b602002015164010000000062000378810204565b505b60010162000139565b6200020a6401000000006200054b810204565b506040517f5daa87a0e9463431830481fd4b6e3403442dfb9a12b9c07597e9f61d50b633c890600090a150505050565b600654600160a060020a031633146200025257600080fd5b6200026681640100000000620005e5810204565b50565b600654600090600160a060020a031633146200028457600080fd5b60065474010000000000000000000000000000000000000000900460ff1615620002ad57600080fd5b600154620002ca9083640100000000620013de6200065782021704565b600155600160a060020a038316600090815260208190526040902054620003009083640100000000620013de6200065782021704565b600160a060020a03841660008181526020818152604091829020939093558051858152905191926000805160206200225483398151915292918290030190a2604080518381529051600160a060020a03851691600091600080516020620022348339815191529181900360200190a350600192915050565b6006546000908190600160a060020a031633146200039557600080fd5b60065474010000000000000000000000000000000000000000900460ff1615620003be57600080fd5b600154620003db9085640100000000620013de6200065782021704565b600155620003fc856001604060020a0385166401000000006200066b810204565b600081815260046020526040902054909150620004289085640100000000620013de6200065782021704565b600082815260046020908152604080832093909355600160a060020a0388168252600590522054620004699085640100000000620013de6200065782021704565b600160a060020a038616600090815260056020526040902055620004978584640100000000620006a8810204565b604080518581529051600160a060020a0387169160008051602062002254833981519152919081900360200190a2604080516001604060020a0385168152602081018690528151600160a060020a038816927f2ecd071e4d10ed2221b04636ed0724cce66a873aa98c1a31b4bb0e6846d3aab4928290030190a2604080518581529051600160a060020a038716913391600080516020620022348339815191529181900360200190a3506001949350505050565b600654600090600160a060020a031633146200056657600080fd5b60065474010000000000000000000000000000000000000000900460ff16156200058f57600080fd5b6006805460a060020a60ff021916740100000000000000000000000000000000000000001790556040517fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0890600090a150600190565b600160a060020a0381161515620005fb57600080fd5b600654604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a360068054600160a060020a031916600160a060020a0392909216919091179055565b818101828110156200066557fe5b92915050565b6001604060020a03166801000000000000000091909102177f57495348000000000000000000000000000000000000000000000000000000001790565b600080808080426001604060020a03871611620006c457600080fd5b620006e2876001604060020a0388166401000000006200066b810204565b9450620006fa8760006401000000006200066b810204565b6000818152600360205260409020549094506001604060020a031692508215156200074c57600084815260036020526040902080546001604060020a0319166001604060020a0388161790556200085d565b6200076a876001604060020a0385166401000000006200066b810204565b91505b6001604060020a03831615801590620007975750826001604060020a0316866001604060020a0316115b15620007dc57506000818152600360205260409020549092506001604060020a0390811691839116620007d487846401000000006200066b810204565b91506200076d565b826001604060020a0316866001604060020a03161415620007fd576200085d565b6001604060020a038316156200083557600085815260036020526040902080546001604060020a0319166001604060020a0385161790555b600084815260036020526040902080546001604060020a0319166001604060020a0388161790555b50505050505050565b6020604051908101604052806001906020820280388339509192915050565b61199f80620008956000396000f3006080604052600436106101d65763ffffffff7c01000000000000000000000000000000000000000000000000000000006000350416623fd35a81146101db57806302d6f7301461020457806305d2035b1461024c57806306fdde0314610261578063095ea7b3146102eb5780630bb2cd6b1461030f578063158ef93e1461034057806317a950ac1461035557806318160ddd14610388578063188214001461039d57806323b872dd146103b25780632a9053181461039d578063313ce567146103dc5780633be1e952146104075780633f4ba83a1461043a57806340c10f191461044f57806342966c6814610473578063567800851461048b5780635b7f415c146104a05780635be7fde8146104b55780635c975abb146104ca57806366188463146104df57806366a92cda1461050357806370a0823114610518578063715018a614610539578063726a431a1461054e5780637d64bcb41461057f5780638456cb59146105945780638da5cb5b146105a957806395d89b4114610261578063a9059cbb146105be578063a9aad58c146101db578063ca63b5b8146105e2578063cf3b196714610603578063d73dd62314610618578063d8aeedf51461063c578063dd62ed3e1461065d578063f2fde38b14610684575b600080fd5b3480156101e757600080fd5b506101f06106a5565b604080519115158252519081900360200190f35b34801561021057600080fd5b50610228600160a060020a03600435166024356106aa565b6040805167ffffffffffffffff909316835260208301919091528051918290030190f35b34801561025857600080fd5b506101f0610737565b34801561026d57600080fd5b50610276610747565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102b0578181015183820152602001610298565b50505050905090810190601f1680156102dd5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102f757600080fd5b506101f0600160a060020a036004351660243561077e565b34801561031b57600080fd5b506101f0600160a060020a036004351660243567ffffffffffffffff604435166107e4565b34801561034c57600080fd5b506101f0610982565b34801561036157600080fd5b50610376600160a060020a03600435166109a5565b60408051918252519081900360200190f35b34801561039457600080fd5b506103766109b6565b3480156103a957600080fd5b506102766109bc565b3480156103be57600080fd5b506101f0600160a060020a03600435811690602435166044356109f3565b3480156103e857600080fd5b506103f1610a20565b6040805160ff9092168252519081900360200190f35b34801561041357600080fd5b50610438600160a060020a036004351660243567ffffffffffffffff60443516610a25565b005b34801561044657600080fd5b50610438610b99565b34801561045b57600080fd5b506101f0600160a060020a0360043516602435610c12565b34801561047f57600080fd5b50610438600435610d0a565b34801561049757600080fd5b50610376610d17565b3480156104ac57600080fd5b50610376610d23565b3480156104c157600080fd5b50610376610d28565b3480156104d657600080fd5b506101f0610d8d565b3480156104eb57600080fd5b506101f0600160a060020a0360043516602435610d9d565b34801561050f57600080fd5b50610438610e8d565b34801561052457600080fd5b50610376600160a060020a0360043516611030565b34801561054557600080fd5b50610438611059565b34801561055a57600080fd5b506105636110c7565b60408051600160a060020a039092168252519081900360200190f35b34801561058b57600080fd5b506101f06110df565b3480156105a057600080fd5b50610438611163565b3480156105b557600080fd5b506105636111e1565b3480156105ca57600080fd5b506101f0600160a060020a03600435166024356111f0565b3480156105ee57600080fd5b50610376600160a060020a036004351661121b565b34801561060f57600080fd5b506103f1610d23565b34801561062457600080fd5b506101f0600160a060020a03600435166024356112a1565b34801561064857600080fd5b50610376600160a060020a036004351661133a565b34801561066957600080fd5b50610376600160a060020a0360043581169060243516611355565b34801561069057600080fd5b50610438600160a060020a0360043516611380565b600081565b600080805b8360010181101561070357600360006106d2878667ffffffffffffffff166113a0565b815260208101919091526040016000205467ffffffffffffffff1692508215156106fb5761072f565b6001016106af565b6004600061071b878667ffffffffffffffff166113a0565b815260208101919091526040016000205491505b509250929050565b60065460a060020a900460ff1681565b60408051808201909152600481527f4649415400000000000000000000000000000000000000000000000000000000602082015290565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b6006546000908190600160a060020a0316331461080057600080fd5b60065460a060020a900460ff161561081757600080fd5b60015461082a908563ffffffff6113de16565b6001556108418567ffffffffffffffff85166113a0565b600081815260046020526040902054909150610863908563ffffffff6113de16565b600082815260046020908152604080832093909355600160a060020a038816825260059052205461089a908563ffffffff6113de16565b600160a060020a0386166000908152600560205260409020556108bd85846113eb565b604080518581529051600160a060020a038716917f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d4121396885919081900360200190a26040805167ffffffffffffffff85168152602081018690528151600160a060020a038816927f2ecd071e4d10ed2221b04636ed0724cce66a873aa98c1a31b4bb0e6846d3aab4928290030190a2604080518581529051600160a060020a0387169133916000805160206119548339815191529181900360200190a3506001949350505050565b600654760100000000000000000000000000000000000000000000900460ff1681565b60006109b082611585565b92915050565b60015490565b60408051808201909152600481527f4649415400000000000000000000000000000000000000000000000000000000602082015281565b60065460009060a860020a900460ff1615610a0d57600080fd5b610a188484846115a0565b949350505050565b601290565b6000600160a060020a0384161515610a3c57600080fd5b33600090815260208190526040902054831115610a5857600080fd5b33600090815260208190526040902054610a78908463ffffffff61170516565b33600090815260208190526040902055610a9c8467ffffffffffffffff84166113a0565b600081815260046020526040902054909150610abe908463ffffffff6113de16565b600082815260046020908152604080832093909355600160a060020a0387168252600590522054610af5908463ffffffff6113de16565b600160a060020a038516600090815260056020526040902055610b1884836113eb565b604080518481529051600160a060020a0386169133916000805160206119548339815191529181900360200190a36040805167ffffffffffffffff84168152602081018590528151600160a060020a038716927f2ecd071e4d10ed2221b04636ed0724cce66a873aa98c1a31b4bb0e6846d3aab4928290030190a250505050565b600654600160a060020a03163314610bb057600080fd5b60065460a860020a900460ff161515610bc857600080fd5b6006805475ff000000000000000000000000000000000000000000191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b600654600090600160a060020a03163314610c2c57600080fd5b60065460a060020a900460ff1615610c4357600080fd5b600154610c56908363ffffffff6113de16565b600155600160a060020a038316600090815260208190526040902054610c82908363ffffffff6113de16565b600160a060020a03841660008181526020818152604091829020939093558051858152905191927f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688592918290030190a2604080518381529051600160a060020a038516916000916000805160206119548339815191529181900360200190a350600192915050565b610d143382611717565b50565b670de0b6b3a764000081565b601281565b6000806000610d383360006106aa565b67ffffffffffffffff909116925090505b8115801590610d5757508142115b15610d8857610d64610e8d565b91820191610d733360006106aa565b67ffffffffffffffff90911692509050610d49565b505090565b60065460a860020a900460ff1681565b336000908152600260209081526040808320600160a060020a038616845290915281205480831115610df257336000908152600260209081526040808320600160a060020a0388168452909152812055610e27565b610e02818463ffffffff61170516565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b6000806000806000610ea03360006113a0565b60008181526003602052604090205490955067ffffffffffffffff169350831515610eca57600080fd5b8367ffffffffffffffff164267ffffffffffffffff16111515610eec57600080fd5b610f00338567ffffffffffffffff166113a0565b600081815260036020908152604080832054600483528184208054908590553385529284905292205492955067ffffffffffffffff90911693509150610f4c908263ffffffff6113de16565b3360009081526020818152604080832093909355600590522054610f76908263ffffffff61170516565b3360009081526005602052604090205567ffffffffffffffff82161515610fb9576000858152600360205260409020805467ffffffffffffffff19169055610ff3565b600085815260036020526040808220805467ffffffffffffffff861667ffffffffffffffff19918216179091558583529120805490911690555b60408051828152905133917fb21fb52d5749b80f3182f8c6992236b5e5576681880914484d7f4c9b062e619e919081900360200190a25050505050565b600160a060020a03811660009081526005602052604081205461105283611585565b0192915050565b600654600160a060020a0316331461107057600080fd5b600654604051600160a060020a03909116907ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482090600090a26006805473ffffffffffffffffffffffffffffffffffffffff19169055565b73d70b8caa8b18b7115978c6a41fadf43fcedad4b181565b600654600090600160a060020a031633146110f957600080fd5b60065460a060020a900460ff161561111057600080fd5b6006805474ff0000000000000000000000000000000000000000191660a060020a1790556040517fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0890600090a150600190565b600654600160a060020a0316331461117a57600080fd5b60065460a860020a900460ff161561119157600080fd5b6006805475ff000000000000000000000000000000000000000000191660a860020a1790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b600654600160a060020a031681565b60065460009060a860020a900460ff161561120a57600080fd5b6112148383611806565b9392505050565b6000806003600061122d8560006113a0565b815260208101919091526040016000205467ffffffffffffffff1690505b67ffffffffffffffff81161561129b57600190910190600360006112798567ffffffffffffffff85166113a0565b815260208101919091526040016000205467ffffffffffffffff16905061124b565b50919050565b336000908152600260209081526040808320600160a060020a03861684529091528120546112d5908363ffffffff6113de16565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a031660009081526005602052604090205490565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600654600160a060020a0316331461139757600080fd5b610d14816118d5565b67ffffffffffffffff166801000000000000000091909102177f57495348000000000000000000000000000000000000000000000000000000001790565b818101828110156109b057fe5b6000808080804267ffffffffffffffff87161161140757600080fd5b61141b878767ffffffffffffffff166113a0565b94506114288760006113a0565b60008181526003602052604090205490945067ffffffffffffffff16925082151561147b576000848152600360205260409020805467ffffffffffffffff191667ffffffffffffffff881617905561157c565b61148f878467ffffffffffffffff166113a0565b91505b67ffffffffffffffff8316158015906114be57508267ffffffffffffffff168667ffffffffffffffff16115b156114f7575060008181526003602052604090205490925067ffffffffffffffff908116918391166114f087846113a0565b9150611492565b8267ffffffffffffffff168667ffffffffffffffff1614156115185761157c565b67ffffffffffffffff831615611552576000858152600360205260409020805467ffffffffffffffff191667ffffffffffffffff85161790555b6000848152600360205260409020805467ffffffffffffffff191667ffffffffffffffff88161790555b50505050505050565b600160a060020a031660009081526020819052604090205490565b6000600160a060020a03831615156115b757600080fd5b600160a060020a0384166000908152602081905260409020548211156115dc57600080fd5b600160a060020a038416600090815260026020908152604080832033845290915290205482111561160c57600080fd5b600160a060020a038416600090815260208190526040902054611635908363ffffffff61170516565b600160a060020a03808616600090815260208190526040808220939093559085168152205461166a908363ffffffff6113de16565b600160a060020a038085166000908152602081815260408083209490945591871681526002825282812033825290915220546116ac908363ffffffff61170516565b600160a060020a0380861660008181526002602090815260408083203384528252918290209490945580518681529051928716939192600080516020611954833981519152929181900390910190a35060019392505050565b60008282111561171157fe5b50900390565b600160a060020a03821660009081526020819052604090205481111561173c57600080fd5b600160a060020a038216600090815260208190526040902054611765908263ffffffff61170516565b600160a060020a038316600090815260208190526040902055600154611791908263ffffffff61170516565b600155604080518281529051600160a060020a038416917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a2604080518281529051600091600160a060020a038516916000805160206119548339815191529181900360200190a35050565b6000600160a060020a038316151561181d57600080fd5b3360009081526020819052604090205482111561183957600080fd5b33600090815260208190526040902054611859908363ffffffff61170516565b3360009081526020819052604080822092909255600160a060020a0385168152205461188b908363ffffffff6113de16565b600160a060020a038416600081815260208181526040918290209390935580518581529051919233926000805160206119548339815191529281900390910190a350600192915050565b600160a060020a03811615156118ea57600080fd5b600654604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36006805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03929092169190911790555600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a72305820992d53eec5eda4531989db6be926cf0cb31ba552657b8819604828f8a83a00b80029ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d4121396885
Deployed Bytecode
0x6080604052600436106101d65763ffffffff7c01000000000000000000000000000000000000000000000000000000006000350416623fd35a81146101db57806302d6f7301461020457806305d2035b1461024c57806306fdde0314610261578063095ea7b3146102eb5780630bb2cd6b1461030f578063158ef93e1461034057806317a950ac1461035557806318160ddd14610388578063188214001461039d57806323b872dd146103b25780632a9053181461039d578063313ce567146103dc5780633be1e952146104075780633f4ba83a1461043a57806340c10f191461044f57806342966c6814610473578063567800851461048b5780635b7f415c146104a05780635be7fde8146104b55780635c975abb146104ca57806366188463146104df57806366a92cda1461050357806370a0823114610518578063715018a614610539578063726a431a1461054e5780637d64bcb41461057f5780638456cb59146105945780638da5cb5b146105a957806395d89b4114610261578063a9059cbb146105be578063a9aad58c146101db578063ca63b5b8146105e2578063cf3b196714610603578063d73dd62314610618578063d8aeedf51461063c578063dd62ed3e1461065d578063f2fde38b14610684575b600080fd5b3480156101e757600080fd5b506101f06106a5565b604080519115158252519081900360200190f35b34801561021057600080fd5b50610228600160a060020a03600435166024356106aa565b6040805167ffffffffffffffff909316835260208301919091528051918290030190f35b34801561025857600080fd5b506101f0610737565b34801561026d57600080fd5b50610276610747565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102b0578181015183820152602001610298565b50505050905090810190601f1680156102dd5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102f757600080fd5b506101f0600160a060020a036004351660243561077e565b34801561031b57600080fd5b506101f0600160a060020a036004351660243567ffffffffffffffff604435166107e4565b34801561034c57600080fd5b506101f0610982565b34801561036157600080fd5b50610376600160a060020a03600435166109a5565b60408051918252519081900360200190f35b34801561039457600080fd5b506103766109b6565b3480156103a957600080fd5b506102766109bc565b3480156103be57600080fd5b506101f0600160a060020a03600435811690602435166044356109f3565b3480156103e857600080fd5b506103f1610a20565b6040805160ff9092168252519081900360200190f35b34801561041357600080fd5b50610438600160a060020a036004351660243567ffffffffffffffff60443516610a25565b005b34801561044657600080fd5b50610438610b99565b34801561045b57600080fd5b506101f0600160a060020a0360043516602435610c12565b34801561047f57600080fd5b50610438600435610d0a565b34801561049757600080fd5b50610376610d17565b3480156104ac57600080fd5b50610376610d23565b3480156104c157600080fd5b50610376610d28565b3480156104d657600080fd5b506101f0610d8d565b3480156104eb57600080fd5b506101f0600160a060020a0360043516602435610d9d565b34801561050f57600080fd5b50610438610e8d565b34801561052457600080fd5b50610376600160a060020a0360043516611030565b34801561054557600080fd5b50610438611059565b34801561055a57600080fd5b506105636110c7565b60408051600160a060020a039092168252519081900360200190f35b34801561058b57600080fd5b506101f06110df565b3480156105a057600080fd5b50610438611163565b3480156105b557600080fd5b506105636111e1565b3480156105ca57600080fd5b506101f0600160a060020a03600435166024356111f0565b3480156105ee57600080fd5b50610376600160a060020a036004351661121b565b34801561060f57600080fd5b506103f1610d23565b34801561062457600080fd5b506101f0600160a060020a03600435166024356112a1565b34801561064857600080fd5b50610376600160a060020a036004351661133a565b34801561066957600080fd5b50610376600160a060020a0360043581169060243516611355565b34801561069057600080fd5b50610438600160a060020a0360043516611380565b600081565b600080805b8360010181101561070357600360006106d2878667ffffffffffffffff166113a0565b815260208101919091526040016000205467ffffffffffffffff1692508215156106fb5761072f565b6001016106af565b6004600061071b878667ffffffffffffffff166113a0565b815260208101919091526040016000205491505b509250929050565b60065460a060020a900460ff1681565b60408051808201909152600481527f4649415400000000000000000000000000000000000000000000000000000000602082015290565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b6006546000908190600160a060020a0316331461080057600080fd5b60065460a060020a900460ff161561081757600080fd5b60015461082a908563ffffffff6113de16565b6001556108418567ffffffffffffffff85166113a0565b600081815260046020526040902054909150610863908563ffffffff6113de16565b600082815260046020908152604080832093909355600160a060020a038816825260059052205461089a908563ffffffff6113de16565b600160a060020a0386166000908152600560205260409020556108bd85846113eb565b604080518581529051600160a060020a038716917f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d4121396885919081900360200190a26040805167ffffffffffffffff85168152602081018690528151600160a060020a038816927f2ecd071e4d10ed2221b04636ed0724cce66a873aa98c1a31b4bb0e6846d3aab4928290030190a2604080518581529051600160a060020a0387169133916000805160206119548339815191529181900360200190a3506001949350505050565b600654760100000000000000000000000000000000000000000000900460ff1681565b60006109b082611585565b92915050565b60015490565b60408051808201909152600481527f4649415400000000000000000000000000000000000000000000000000000000602082015281565b60065460009060a860020a900460ff1615610a0d57600080fd5b610a188484846115a0565b949350505050565b601290565b6000600160a060020a0384161515610a3c57600080fd5b33600090815260208190526040902054831115610a5857600080fd5b33600090815260208190526040902054610a78908463ffffffff61170516565b33600090815260208190526040902055610a9c8467ffffffffffffffff84166113a0565b600081815260046020526040902054909150610abe908463ffffffff6113de16565b600082815260046020908152604080832093909355600160a060020a0387168252600590522054610af5908463ffffffff6113de16565b600160a060020a038516600090815260056020526040902055610b1884836113eb565b604080518481529051600160a060020a0386169133916000805160206119548339815191529181900360200190a36040805167ffffffffffffffff84168152602081018590528151600160a060020a038716927f2ecd071e4d10ed2221b04636ed0724cce66a873aa98c1a31b4bb0e6846d3aab4928290030190a250505050565b600654600160a060020a03163314610bb057600080fd5b60065460a860020a900460ff161515610bc857600080fd5b6006805475ff000000000000000000000000000000000000000000191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b600654600090600160a060020a03163314610c2c57600080fd5b60065460a060020a900460ff1615610c4357600080fd5b600154610c56908363ffffffff6113de16565b600155600160a060020a038316600090815260208190526040902054610c82908363ffffffff6113de16565b600160a060020a03841660008181526020818152604091829020939093558051858152905191927f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688592918290030190a2604080518381529051600160a060020a038516916000916000805160206119548339815191529181900360200190a350600192915050565b610d143382611717565b50565b670de0b6b3a764000081565b601281565b6000806000610d383360006106aa565b67ffffffffffffffff909116925090505b8115801590610d5757508142115b15610d8857610d64610e8d565b91820191610d733360006106aa565b67ffffffffffffffff90911692509050610d49565b505090565b60065460a860020a900460ff1681565b336000908152600260209081526040808320600160a060020a038616845290915281205480831115610df257336000908152600260209081526040808320600160a060020a0388168452909152812055610e27565b610e02818463ffffffff61170516565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b6000806000806000610ea03360006113a0565b60008181526003602052604090205490955067ffffffffffffffff169350831515610eca57600080fd5b8367ffffffffffffffff164267ffffffffffffffff16111515610eec57600080fd5b610f00338567ffffffffffffffff166113a0565b600081815260036020908152604080832054600483528184208054908590553385529284905292205492955067ffffffffffffffff90911693509150610f4c908263ffffffff6113de16565b3360009081526020818152604080832093909355600590522054610f76908263ffffffff61170516565b3360009081526005602052604090205567ffffffffffffffff82161515610fb9576000858152600360205260409020805467ffffffffffffffff19169055610ff3565b600085815260036020526040808220805467ffffffffffffffff861667ffffffffffffffff19918216179091558583529120805490911690555b60408051828152905133917fb21fb52d5749b80f3182f8c6992236b5e5576681880914484d7f4c9b062e619e919081900360200190a25050505050565b600160a060020a03811660009081526005602052604081205461105283611585565b0192915050565b600654600160a060020a0316331461107057600080fd5b600654604051600160a060020a03909116907ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482090600090a26006805473ffffffffffffffffffffffffffffffffffffffff19169055565b73d70b8caa8b18b7115978c6a41fadf43fcedad4b181565b600654600090600160a060020a031633146110f957600080fd5b60065460a060020a900460ff161561111057600080fd5b6006805474ff0000000000000000000000000000000000000000191660a060020a1790556040517fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0890600090a150600190565b600654600160a060020a0316331461117a57600080fd5b60065460a860020a900460ff161561119157600080fd5b6006805475ff000000000000000000000000000000000000000000191660a860020a1790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b600654600160a060020a031681565b60065460009060a860020a900460ff161561120a57600080fd5b6112148383611806565b9392505050565b6000806003600061122d8560006113a0565b815260208101919091526040016000205467ffffffffffffffff1690505b67ffffffffffffffff81161561129b57600190910190600360006112798567ffffffffffffffff85166113a0565b815260208101919091526040016000205467ffffffffffffffff16905061124b565b50919050565b336000908152600260209081526040808320600160a060020a03861684529091528120546112d5908363ffffffff6113de16565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a031660009081526005602052604090205490565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600654600160a060020a0316331461139757600080fd5b610d14816118d5565b67ffffffffffffffff166801000000000000000091909102177f57495348000000000000000000000000000000000000000000000000000000001790565b818101828110156109b057fe5b6000808080804267ffffffffffffffff87161161140757600080fd5b61141b878767ffffffffffffffff166113a0565b94506114288760006113a0565b60008181526003602052604090205490945067ffffffffffffffff16925082151561147b576000848152600360205260409020805467ffffffffffffffff191667ffffffffffffffff881617905561157c565b61148f878467ffffffffffffffff166113a0565b91505b67ffffffffffffffff8316158015906114be57508267ffffffffffffffff168667ffffffffffffffff16115b156114f7575060008181526003602052604090205490925067ffffffffffffffff908116918391166114f087846113a0565b9150611492565b8267ffffffffffffffff168667ffffffffffffffff1614156115185761157c565b67ffffffffffffffff831615611552576000858152600360205260409020805467ffffffffffffffff191667ffffffffffffffff85161790555b6000848152600360205260409020805467ffffffffffffffff191667ffffffffffffffff88161790555b50505050505050565b600160a060020a031660009081526020819052604090205490565b6000600160a060020a03831615156115b757600080fd5b600160a060020a0384166000908152602081905260409020548211156115dc57600080fd5b600160a060020a038416600090815260026020908152604080832033845290915290205482111561160c57600080fd5b600160a060020a038416600090815260208190526040902054611635908363ffffffff61170516565b600160a060020a03808616600090815260208190526040808220939093559085168152205461166a908363ffffffff6113de16565b600160a060020a038085166000908152602081815260408083209490945591871681526002825282812033825290915220546116ac908363ffffffff61170516565b600160a060020a0380861660008181526002602090815260408083203384528252918290209490945580518681529051928716939192600080516020611954833981519152929181900390910190a35060019392505050565b60008282111561171157fe5b50900390565b600160a060020a03821660009081526020819052604090205481111561173c57600080fd5b600160a060020a038216600090815260208190526040902054611765908263ffffffff61170516565b600160a060020a038316600090815260208190526040902055600154611791908263ffffffff61170516565b600155604080518281529051600160a060020a038416917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a2604080518281529051600091600160a060020a038516916000805160206119548339815191529181900360200190a35050565b6000600160a060020a038316151561181d57600080fd5b3360009081526020819052604090205482111561183957600080fd5b33600090815260208190526040902054611859908363ffffffff61170516565b3360009081526020819052604080822092909255600160a060020a0385168152205461188b908363ffffffff6113de16565b600160a060020a038416600081815260208181526040918290209390935580518581529051919233926000805160206119548339815191529281900390910190a350600192915050565b600160a060020a03811615156118ea57600080fd5b600654604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36006805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03929092169190911790555600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a72305820992d53eec5eda4531989db6be926cf0cb31ba552657b8819604828f8a83a00b80029
Deployed Bytecode Sourcemap
19909:1705:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19850:45;;8:9:-1;5:2;;;30:1;27;20:12;5:2;19850:45:0;;;;;;;;;;;;;;;;;;;;;;12690:355;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;12690:355:0;-1:-1:-1;;;;;12690:355:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9680:35;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9680:35:0;;;;20174:87;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20174:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;20174:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5320:192;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;5320:192:0;-1:-1:-1;;;;;5320:192:0;;;;;;;18868:535;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;18868:535:0;-1:-1:-1;;;;;18868:535:0;;;;;;;;;;;20033:31;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20033:31:0;;;;11797:128;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;11797:128:0;-1:-1:-1;;;;;11797:128:0;;;;;;;;;;;;;;;;;;;;;2128:85;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2128:85:0;;;;19615:42;;8:9:-1;5:2;;;30:1;27;20:12;5:2;19615:42:0;;;;20482:188;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;20482:188:0;-1:-1:-1;;;;;20482:188:0;;;;;;;;;;;;20370:104;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20370:104:0;;;;;;;;;;;;;;;;;;;;;;;13419:547;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;13419:547:0;-1:-1:-1;;;;;13419:547:0;;;;;;;;;;;;;18188:95;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18188:95:0;;;;10117:326;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;10117:326:0;-1:-1:-1;;;;;10117:326:0;;;;;;;16837:75;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;16837:75:0;;;;;19538:68;;8:9:-1;5:2;;;30:1;27;20:12;5:2;19538:68:0;;;;19437:40;;8:9:-1;5:2;;;30:1;27;20:12;5:2;19437:40:0;;;;14969:357;;8:9:-1;5:2;;;30:1;27;20:12;5:2;14969:357:0;;;;17567:26;;8:9:-1;5:2;;;30:1;27;20:12;5:2;17567:26:0;;;;7248:440;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;7248:440:0;-1:-1:-1;;;;;7248:440:0;;;;;;;14046:756;;8:9:-1;5:2;;;30:1;27;20:12;5:2;14046:756:0;;;;11400:148;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;11400:148:0;-1:-1:-1;;;;;11400:148:0;;;;;8536:114;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8536:114:0;;;;19757:80;;8:9:-1;5:2;;;30:1;27;20:12;5:2;19757:80:0;;;;;;;;-1:-1:-1;;;;;19757:80:0;;;;;;;;;;;;;;10563:144;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10563:144:0;;;;18008:93;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18008:93:0;;;;7918:20;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7918:20:0;;;;20678:158;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;20678:158:0;-1:-1:-1;;;;;20678:158:0;;;;;;;12175:249;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;12175:249:0;-1:-1:-1;;;;;12175:249:0;;;;;19484:47;;8:9:-1;5:2;;;30:1;27;20:12;5:2;19484:47:0;;;;6470:304;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;6470:304:0;-1:-1:-1;;;;;6470:304:0;;;;;;;11933:130;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;11933:130:0;-1:-1:-1;;;;;11933:130:0;;;;;5839:162;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;5839:162:0;-1:-1:-1;;;;;5839:162:0;;;;;;;;;;8818:105;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;8818:105:0;-1:-1:-1;;;;;8818:105:0;;;;;19850:45;19890:5;19850:45;:::o;12690:355::-;12760:15;;;12803:180;12824:6;12833:1;12824:10;12820:1;:14;12803:180;;;12867:6;:30;12874:22;12880:5;12887:8;12874:22;;:5;:22::i;:::-;12867:30;;;;;;;;;;;;;;;;;-1:-1:-1;12916:13:0;;12912:60;;;12950:7;;12912:60;12836:3;;12803:180;;;13004:9;:33;13014:22;13020:5;13027:8;13014:22;;:5;:22::i;:::-;13004:33;;;;;;;;;;;;;;;-1:-1:-1;12690:355:0;;;;;;;:::o;9680:35::-;;;-1:-1:-1;;;9680:35:0;;;;;:::o;20174:87::-;20243:10;;;;;;;;;;;;;;;;;20174:87;:::o;5320:192::-;5408:10;5387:4;5400:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;5400:29:0;;;;;;;;;;;:38;;;5450;;;;;;;5387:4;;5400:29;;5408:10;;5450:38;;;;;;;;-1:-1:-1;5502:4:0;5320:192;;;;:::o;18868:535::-;8421:5;;18967:4;;;;-1:-1:-1;;;;;8421:5:0;8407:10;:19;8399:28;;;;;;9759:15;;-1:-1:-1;;;9759:15:0;;;;9758:16;9750:25;;;;;;18999:12;;:25;;19016:7;18999:25;:16;:25;:::i;:::-;18984:12;:40;19058:18;19064:3;19058:18;;;:5;:18::i;:::-;19111:21;;;;:9;:21;;;;;;19037:39;;-1:-1:-1;19111:34:0;;19137:7;19111:34;:25;:34;:::i;:::-;19087:21;;;;:9;:21;;;;;;;;:58;;;;-1:-1:-1;;;;;19179:20:0;;;;:15;:20;;;;:33;;19204:7;19179:33;:24;:33;:::i;:::-;-1:-1:-1;;;;;19156:20:0;;;;;;:15;:20;;;;;:56;19225:19;19172:3;19237:6;19225;:19::i;:::-;19260:18;;;;;;;;-1:-1:-1;;;;;19260:18:0;;;;;;;;;;;;;19294:29;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19294:29:0;;;;;;;;;;;19339:34;;;;;;;;-1:-1:-1;;;;;19339:34:0;;;19348:10;;-1:-1:-1;;;;;;;;;;;19339:34:0;;;;;;;;-1:-1:-1;19391:4:0;;18868:535;-1:-1:-1;;;;18868:535:0:o;20033:31::-;;;;;;;;;:::o;11797:128::-;11859:15;11894:23;11910:6;11894:15;:23::i;:::-;11887:30;11797:128;-1:-1:-1;;11797:128:0:o;2128:85::-;2195:12;;2128:85;:::o;19615:42::-;;;;;;;;;;;;;;;;;;;:::o;20482:188::-;20599:6;;20564:13;;-1:-1:-1;;;20599:6:0;;;;20598:7;20590:16;;;;;;20624:38;20643:5;20650:3;20655:6;20624:18;:38::i;:::-;20617:45;20482:188;-1:-1:-1;;;;20482:188:0:o;20370:104::-;19529:2;20370:104;:::o;13419:547::-;13656:18;-1:-1:-1;;;;;13505:17:0;;;;13497:26;;;;;;13562:10;13553:8;:20;;;;;;;;;;;13542:31;;;13534:40;;;;;;13619:10;13610:8;:20;;;;;;;;;;;:33;;13635:7;13610:33;:24;:33;:::i;:::-;13596:10;13587:8;:20;;;;;;;;;;:56;13677:18;13683:3;13677:18;;;:5;:18::i;:::-;13730:21;;;;:9;:21;;;;;;13656:39;;-1:-1:-1;13730:34:0;;13756:7;13730:34;:25;:34;:::i;:::-;13706:21;;;;:9;:21;;;;;;;;:58;;;;-1:-1:-1;;;;;13798:20:0;;;;:15;:20;;;;:33;;13823:7;13798:33;:24;:33;:::i;:::-;-1:-1:-1;;;;;13775:20:0;;;;;;:15;:20;;;;;:56;13844:19;13791:3;13856:6;13844;:19::i;:::-;13879:34;;;;;;;;-1:-1:-1;;;;;13879:34:0;;;13888:10;;-1:-1:-1;;;;;;;;;;;13879:34:0;;;;;;;;13929:29;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13929:29:0;;;;;;;;;;;13419:547;;;;:::o;18188:95::-;8421:5;;-1:-1:-1;;;;;8421:5:0;8407:10;:19;8399:28;;;;;;17903:6;;-1:-1:-1;;;17903:6:0;;;;17895:15;;;;;;;;18242:6;:14;;-1:-1:-1;;18242:14:0;;;18268:9;;;;18251:5;;18268:9;18188:95::o;10117:326::-;9853:5;;10238:4;;-1:-1:-1;;;;;9853:5:0;9839:10;:19;9831:28;;;;;;9759:15;;-1:-1:-1;;;9759:15:0;;;;9758:16;9750:25;;;;;;10269:12;;:25;;10286:7;10269:25;:16;:25;:::i;:::-;10254:12;:40;-1:-1:-1;;;;;10317:13:0;;:8;:13;;;;;;;;;;;:26;;10335:7;10317:26;:17;:26;:::i;:::-;-1:-1:-1;;;;;10301:13:0;;:8;:13;;;;;;;;;;;;:42;;;;10355:18;;;;;;;10301:13;;10355:18;;;;;;;;;10385:34;;;;;;;;-1:-1:-1;;;;;10385:34:0;;;10402:1;;-1:-1:-1;;;;;;;;;;;10385:34:0;;;;;;;;-1:-1:-1;10433:4:0;10117:326;;;;:::o;16837:75::-;16881:25;16887:10;16899:6;16881:5;:25::i;:::-;16837:75;:::o;19538:68::-;19586:20;19538:68;:::o;19437:40::-;19475:2;19437:40;:::o;14969:357::-;15007:11;15031:12;15054;15098:26;15110:10;15122:1;15098:11;:26::i;:::-;15077:47;;;;;-1:-1:-1;15077:47:0;-1:-1:-1;15135:184:0;15142:12;;;;;:41;;;15176:7;15158:15;:25;15142:41;15135:184;;;15200:13;:11;:13::i;:::-;15228:17;;;;15281:26;15293:10;15305:1;15281:11;:26::i;:::-;15260:47;;;;;-1:-1:-1;15260:47:0;-1:-1:-1;15135:184:0;;;14969:357;;;:::o;17567:26::-;;;-1:-1:-1;;;17567:26:0;;;;;:::o;7248:440::-;7396:10;7356:4;7388:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;7388:29:0;;;;;;;;;;7428:27;;;7424:168;;;7474:10;7498:1;7466:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;7466:29:0;;;;;;;;;:33;7424:168;;;7554:30;:8;7567:16;7554:30;:12;:30;:::i;:::-;7530:10;7522:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;7522:29:0;;;;;;;;;:62;7424:168;7612:10;7634:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;7603:61:0;;7634:29;;;;;;;;;;;7603:61;;;;;;;;;7612:10;7603:61;;;;;;;;;;;-1:-1:-1;7678:4:0;;7248:440;-1:-1:-1;;;7248:440:0:o;14046:756::-;14087:15;14136:11;14255:18;14312:11;14357;14105:20;14111:10;14123:1;14105:5;:20::i;:::-;14150:15;;;;:6;:15;;;;;;14087:38;;-1:-1:-1;14150:15:0;;;-1:-1:-1;14184:9:0;;;14176:18;;;;;;14239:4;14213:30;;14220:15;14213:30;;;14205:39;;;;;;;;14276:23;14282:10;14294:4;14276:23;;:5;:23::i;:::-;14326:18;;;;:6;:18;;;;;;;;;14371:9;:21;;;;;;;14403:28;;;;14476:10;14467:20;;;;;;;;;14255:44;;-1:-1:-1;14326:18:0;;;;;-1:-1:-1;14371:21:0;-1:-1:-1;14467:32:0;;14371:21;14467:32;:24;:32;:::i;:::-;14453:10;14444:8;:20;;;;;;;;;;;:55;;;;14540:15;:27;;;;:39;;14572:6;14540:39;:31;:39;:::i;:::-;14526:10;14510:27;;;;:15;:27;;;;;:69;14596:9;;;;14592:159;;;14629:15;;;;:6;:15;;;;;14622:22;;-1:-1:-1;;14622:22:0;;;14592:159;;;14677:15;;;;:6;:15;;;;;;:22;;;;;-1:-1:-1;;14677:22:0;;;;;;;14721:18;;;;;14714:25;;;;;;;14592:159;14766:28;;;;;;;;14775:10;;14766:28;;;;;;;;;;14046:756;;;;;:::o;11400:148::-;-1:-1:-1;;;;;11517:23:0;;11456:15;11517:23;;;:15;:23;;;;;;11491;11533:6;11491:15;:23::i;:::-;:49;;11400:148;-1:-1:-1;;11400:148:0:o;8536:114::-;8421:5;;-1:-1:-1;;;;;8421:5:0;8407:10;:19;8399:28;;;;;;8613:5;;8594:25;;-1:-1:-1;;;;;8613:5:0;;;;8594:25;;8613:5;;8594:25;8626:5;:18;;-1:-1:-1;;8626:18:0;;;8536:114::o;19757:80::-;19795:42;19757:80;:::o;10563:144::-;8421:5;;10622:4;;-1:-1:-1;;;;;8421:5:0;8407:10;:19;8399:28;;;;;;9759:15;;-1:-1:-1;;;9759:15:0;;;;9758:16;9750:25;;;;;;10635:15;:22;;-1:-1:-1;;10635:22:0;-1:-1:-1;;;10635:22:0;;;10669:14;;;;10635:22;;10669:14;-1:-1:-1;10697:4:0;10563:144;:::o;18008:93::-;8421:5;;-1:-1:-1;;;;;8421:5:0;8407:10;:19;8399:28;;;;;;17743:6;;-1:-1:-1;;;17743:6:0;;;;17742:7;17734:16;;;;;;18063:6;:13;;-1:-1:-1;;18063:13:0;-1:-1:-1;;;18063:13:0;;;18088:7;;;;18063:13;;18088:7;18008:93::o;7918:20::-;;;-1:-1:-1;;;;;7918:20:0;;:::o;20678:158::-;20776:6;;20741:13;;-1:-1:-1;;;20776:6:0;;;;20775:7;20767:16;;;;;;20801:27;20816:3;20821:6;20801:14;:27::i;:::-;20794:34;20678:158;-1:-1:-1;;;20678:158:0:o;12175:249::-;12234:10;12257:14;12274:6;:23;12281:15;12287:5;12294:1;12281:5;:15::i;:::-;12274:23;;;;;;;;;;;;;;;;;-1:-1:-1;12308:109:0;12315:12;;;;12308:109;;12344:7;;;;;12376:6;:29;12383:21;12389:5;12383:21;;;:5;:21::i;:::-;12376:29;;;;;;;;;;;;;;;;;-1:-1:-1;12308:109:0;;;12175:249;;;;:::o;6470:304::-;6638:10;6573:4;6630:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;6630:29:0;;;;;;;;;;:46;;6664:11;6630:46;:33;:46;:::i;:::-;6597:10;6589:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;6589:29:0;;;;;;;;;;;;:88;;;6689:61;;;;;;6589:29;;6689:61;;;;;;;;;;;-1:-1:-1;6764:4:0;6470:304;;;;:::o;11933:130::-;-1:-1:-1;;;;;12032:23:0;11997:15;12032:23;;;:15;:23;;;;;;;11933:130::o;5839:162::-;-1:-1:-1;;;;;5970:15:0;;;5944:7;5970:15;;;:7;:15;;;;;;;;:25;;;;;;;;;;;;;5839:162::o;8818:105::-;8421:5;;-1:-1:-1;;;;;8421:5:0;8407:10;:19;8399:28;;;;;;8888:29;8907:9;8888:18;:29::i;15334:387::-;15683:18;15669:33;15613:19;15602:31;;;;15658:45;15480:66;15658:45;;15566:148::o;1695:127::-;1775:5;;;1794:6;;;;1787:14;;;15729:789;15837:11;;;;;15810:15;15801:24;;;;15793:33;;;;;;15851:18;15857:3;15862:6;15851:18;;:5;:18::i;:::-;15837:32;-1:-1:-1;15900:21:0;15906:3;15918:1;15900:5;:21::i;:::-;15946:17;;;;:6;:17;;;;;;15880:41;;-1:-1:-1;15946:17:0;;;-1:-1:-1;15980:9:0;;15976:89;;;16006:17;;;;:6;:17;;;;;:26;;-1:-1:-1;;16006:26:0;;;;;;;16047:7;;15976:89;16095:16;16101:3;16106:4;16095:16;;:5;:16::i;:::-;16077:34;;16146:189;16153:9;;;;;;;:26;;;16175:4;16166:13;;:6;:13;;;16153:26;16146:189;;;-1:-1:-1;16267:15:0;;;;:6;:15;;;;;;16236:7;;-1:-1:-1;16196:13:0;16267:15;;;;16236:7;;16196:13;16307:16;16313:3;16267:15;16307:5;:16::i;:::-;16297:26;;16146:189;;;16361:4;16351:14;;:6;:14;;;16347:53;;;16382:7;;16347:53;16416:9;;;;16412:60;;16442:11;;;;:6;:11;;;;;:18;;-1:-1:-1;;16442:18:0;;;;;;;16412:60;16484:17;;;;:6;:17;;;;;:26;;-1:-1:-1;;16484:26:0;;;;;;;15729:789;;;;;;;;:::o;2912:101::-;-1:-1:-1;;;;;2991:16:0;2968:7;2991:16;;;;;;;;;;;;2912:101::o;4198:487::-;4310:4;-1:-1:-1;;;;;4334:17:0;;;;4326:26;;;;;;-1:-1:-1;;;;;4377:15:0;;:8;:15;;;;;;;;;;;4367:25;;;4359:34;;;;;;-1:-1:-1;;;;;4418:14:0;;;;;;:7;:14;;;;;;;;4433:10;4418:26;;;;;;;;4408:36;;;4400:45;;;;;;-1:-1:-1;;;;;4472:15:0;;:8;:15;;;;;;;;;;;:27;;4492:6;4472:27;:19;:27;:::i;:::-;-1:-1:-1;;;;;4454:15:0;;;:8;:15;;;;;;;;;;;:45;;;;4522:13;;;;;;;:25;;4540:6;4522:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;4506:13:0;;;:8;:13;;;;;;;;;;;:41;;;;4583:14;;;;;:7;:14;;;;;4598:10;4583:26;;;;;;;:38;;4614:6;4583:38;:30;:38;:::i;:::-;-1:-1:-1;;;;;4554:14:0;;;;;;;:7;:14;;;;;;;;4569:10;4554:26;;;;;;;;:67;;;;4633:28;;;;;;;;;;;4554:14;;-1:-1:-1;;;;;;;;;;;4633:28:0;;;;;;;;;;-1:-1:-1;4675:4:0;4198:487;;;;;:::o;1515:113::-;1573:7;1596:6;;;;1589:14;;;;-1:-1:-1;1617:5:0;;;1515:113::o;16918:447::-;-1:-1:-1;;;;;16997:14:0;;:8;:14;;;;;;;;;;;16987:24;;;16979:33;;;;;;-1:-1:-1;;;;;17211:14:0;;:8;:14;;;;;;;;;;;:26;;17230:6;17211:26;:18;:26;:::i;:::-;-1:-1:-1;;;;;17194:14:0;;:8;:14;;;;;;;;;;:43;17259:12;;:24;;17276:6;17259:24;:16;:24;:::i;:::-;17244:12;:39;17295:18;;;;;;;;-1:-1:-1;;;;;17295:18:0;;;;;;;;;;;;;17325:34;;;;;;;;17348:1;;-1:-1:-1;;;;;17325:34:0;;;-1:-1:-1;;;;;;;;;;;17325:34:0;;;;;;;;16918:447;;:::o;2374:329::-;2437:4;-1:-1:-1;;;;;2458:17:0;;;;2450:26;;;;;;2510:10;2501:8;:20;;;;;;;;;;;2491:30;;;2483:39;;;;;;2563:10;2554:8;:20;;;;;;;;;;;:32;;2579:6;2554:32;:24;:32;:::i;:::-;2540:10;2531:8;:20;;;;;;;;;;;:55;;;;-1:-1:-1;;;;;2609:13:0;;;;;;:25;;2627:6;2609:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;2593:13:0;;:8;:13;;;;;;;;;;;;:41;;;;2646:33;;;;;;;2593:13;;2655:10;;-1:-1:-1;;;;;;;;;;;2646:33:0;;;;;;;;;-1:-1:-1;2693:4:0;2374:329;;;;:::o;9064:175::-;-1:-1:-1;;;;;9135:23:0;;;;9127:32;;;;;;9192:5;;9171:38;;-1:-1:-1;;;;;9171:38:0;;;;9192:5;;9171:38;;9192:5;;9171:38;9216:5;:17;;-1:-1:-1;;9216:17:0;-1:-1:-1;;;;;9216:17:0;;;;;;;;;;9064:175::o
Swarm Source
bzzr://992d53eec5eda4531989db6be926cf0cb31ba552657b8819604828f8a83a00b8
Loading...
Loading
Loading...
Loading
OVERVIEW
FIATUM is a new-generation bank with crypto-fiat and e-wallet system for end users and an API for businesses.Net Worth in USD
$0.31
Net Worth in ETH
0.000166
Token Allocations
USDC
100.00%
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|---|---|---|---|---|
| ETH | 100.00% | $0.999829 | 0.3137 | $0.3136 |
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.