ETH Price: $2,203.02 (-5.89%)

Contract

0x9b7fE03eCcCbB9b21deB2461433E1E1AA2cd4EDa
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

More Info

Private Name Tags

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Burn243845452026-02-04 16:00:1142 days ago1770220811IN
0x9b7fE03e...AA2cd4EDa
0 ETH0.000081112.55407475
Mint240461102025-12-19 10:41:4789 days ago1766140907IN
0x9b7fE03e...AA2cd4EDa
0 ETH0.000108712.02762459
Mint240409152025-12-18 17:15:2390 days ago1766078123IN
0x9b7fE03e...AA2cd4EDa
0 ETH0.000087132.38556714
Burn240263872025-12-16 16:32:5992 days ago1765902779IN
0x9b7fE03e...AA2cd4EDa
0 ETH0.000077782.12774106
Mint240186792025-12-15 14:44:2393 days ago1765809863IN
0x9b7fE03e...AA2cd4EDa
0 ETH0.000075772.07437742
Mint237828862025-11-12 11:35:35126 days ago1762947335IN
0x9b7fE03e...AA2cd4EDa
0 ETH0.000113662.12010118
Burn234188242025-09-22 13:20:23177 days ago1758547223IN
0x9b7fE03e...AA2cd4EDa
0 ETH0.000049781.56775844
Burn234187782025-09-22 13:11:11177 days ago1758546671IN
0x9b7fE03e...AA2cd4EDa
0 ETH0.000047931.5087354
Burn234187102025-09-22 12:56:59177 days ago1758545819IN
0x9b7fE03e...AA2cd4EDa
0 ETH0.000055541.74963235
Mint234185392025-09-22 12:22:47177 days ago1758543767IN
0x9b7fE03e...AA2cd4EDa
0 ETH0.000077461.44477297
Burn211800702024-11-13 16:49:35490 days ago1731516575IN
0x9b7fE03e...AA2cd4EDa
0 ETH0.0029067391.52751863
Burn211800402024-11-13 16:43:35490 days ago1731516215IN
0x9b7fE03e...AA2cd4EDa
0 ETH0.0028368789.32782105
Mint199671602024-05-28 8:25:59659 days ago1716884759IN
0x9b7fE03e...AA2cd4EDa
0 ETH0.0008043815.0063238
Mint197263232024-04-24 16:08:23693 days ago1713974903IN
0x9b7fE03e...AA2cd4EDa
0 ETH0.0009091916.95790744
Mint196683612024-04-16 13:32:23701 days ago1713274343IN
0x9b7fE03e...AA2cd4EDa
0 ETH0.0006408611.95034377
Burn162397582022-12-22 10:50:351182 days ago1671706235IN
0x9b7fE03e...AA2cd4EDa
0 ETH0.0003688911.61135799
Burn151207542022-07-11 10:13:301346 days ago1657534410IN
0x9b7fE03e...AA2cd4EDa
0 ETH0.0005166516.26840332
Mint148318242022-05-23 21:08:521394 days ago1653340132IN
0x9b7fE03e...AA2cd4EDa
0 ETH0.0012236322.82265052
Mint147995112022-05-18 15:06:271400 days ago1652886387IN
0x9b7fE03e...AA2cd4EDa
0 ETH0.0014534139.80328315
Mint147991162022-05-18 13:30:041400 days ago1652880604IN
0x9b7fE03e...AA2cd4EDa
0 ETH0.0019776836.88670441
Mint147103712022-05-04 10:24:441414 days ago1651659884IN
0x9b7fE03e...AA2cd4EDa
0 ETH0.0012450934.0981009
Mint143028152022-03-01 18:46:351477 days ago1646160395IN
0x9b7fE03e...AA2cd4EDa
0 ETH0.0027299874.76347876
Mint143027892022-03-01 18:41:151477 days ago1646160075IN
0x9b7fE03e...AA2cd4EDa
0 ETH0.002433366.6384053
Mint143017102022-03-01 14:36:251478 days ago1646145385IN
0x9b7fE03e...AA2cd4EDa
0 ETH0.0025940371.04023488
Mint143003242022-03-01 9:35:481478 days ago1646127348IN
0x9b7fE03e...AA2cd4EDa
0 ETH0.0011826932.38929107
View all transactions

Advanced mode:
Parent Transaction Hash Method Block
From
To
View All Internal Transactions
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
StableCoin

Compiler Version
v0.5.13+commit.5b0b510c

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity Multiple files format)

File 1 of 6: StableCoin.sol
pragma solidity ^0.5.13;

import "./ERC20.sol";
import "./DateTime.sol";
import "./Ownable.sol";

contract StableCoin is ERC20, DateTime, Ownable {
    using SafeMath for uint256;

    address public tokenIssuer;
    uint256 public lastOxydationDate;

    event Oxydated(address holder, uint256 amount);
    event TimestampComparaison(uint256 newTimestamp, uint256 oldTimestamp);

    constructor(
        string memory _tokenName,
        string memory _tokenSymbol,
        uint8 _decimals,
        address _tokenIssuer
    ) public ERC20(_tokenName, _tokenSymbol, _decimals) Ownable() {
        lastOxydationDate = now;
        tokenIssuer = _tokenIssuer;
    }

    // change address that get fees from oxydation
    function setTokenIssuer(address _addressOneSilverFees) public onlyOwner {
        tokenIssuer = _addressOneSilverFees;
    }

    function mint(address _to, uint256 _tokenAmount) public onlyOwner {
        _mint(_to, _tokenAmount);
    }

    //Mint tokens to each each beneficiary
    function mints(address[] calldata _recipients, uint256[] calldata _values) external onlyOwner {
        for (uint256 i = 0; i < _recipients.length; i++) {
            mint(_recipients[i], _values[i]);
        }
    }

    function burn(address _account, uint256 _value) public onlyOwner {
        _burn(_account, _value);
    }

    //Burn tokens to each each beneficiary
    function burns(address[] calldata _recipients, uint256[] calldata _values) external onlyOwner {
        for (uint256 i = 0; i < _recipients.length; i++) {
            burn(_recipients[i], _values[i]);
        }
    }
    // can accept ether
    function() external payable {}

    // give number of ether owned by smart contract
    function getBalanceEthSmartContract() public view returns (uint256) {
        return address(this).balance;
    }

    // transfer smart contract balance to owner
    function withdrawEther(uint256 amount) public onlyOwner {
        address payable ownerPayable = address(uint160(Ownable.owner()));
        ownerPayable.transfer(amount);
    }

    // monthly oxydation for all investors
    function oxydation(address[] calldata holders) external {
        for (uint256 i = 0; i < holders.length; i++) {
            emit TimestampComparaison(getMonth(lastOxydationDate), getMonth(now));
            if (getMonth(lastOxydationDate) != getMonth(now)) {
                // once a month
                uint256 balanceCurrent = balanceOf(holders[i]);
                uint256 toOxyde = balanceCurrent.div(1200); // 1% annual over 12 months
                _burn(holders[i], toOxyde);
                _mint(tokenIssuer, toOxyde);
                emit Oxydated(holders[i], toOxyde);
            }
        }
        lastOxydationDate = now;
    }

    function Now() external view returns (uint256){
      return (now);
  }

}

File 2 of 6: DateTime.sol
pragma solidity ^0.5.13;

contract DateTime {
    /*
         *  Date and Time utilities for ethereum contracts
         *
         */
    struct _DateTime {
        uint16 year;
        uint8 month;
        uint8 day;
        uint8 hour;
        uint8 minute;
        uint8 second;
        uint8 weekday;
    }

    uint256 constant private DAY_IN_SECONDS = 86400;
    uint256 constant private YEAR_IN_SECONDS = 31536000;
    uint256 constant private LEAP_YEAR_IN_SECONDS = 31622400;

    uint256 constant private HOUR_IN_SECONDS = 3600;
    uint256 constant private MINUTE_IN_SECONDS = 60;

    uint16 constant private ORIGIN_YEAR = 1970;

    function isLeapYear(uint16 year) public pure returns (bool) {
        if (year % 4 != 0) {
            return false;
        }
        if (year % 100 != 0) {
            return true;
        }
        if (year % 400 != 0) {
            return false;
        }
        return true;
    }

    function leapYearsBefore(uint256 year) public pure returns (uint256) {
        year -= 1;
        return year / 4 - year / 100 + year / 400;
    }

    function getDaysInMonth(uint8 month, uint16 year)
        public
        pure
        returns (uint8)
    {
        if (
            month == 1 ||
            month == 3 ||
            month == 5 ||
            month == 7 ||
            month == 8 ||
            month == 10 ||
            month == 12
        ) {
            return 31;
        } else if (month == 4 || month == 6 || month == 9 || month == 11) {
            return 30;
        } else if (isLeapYear(year)) {
            return 29;
        } else {
            return 28;
        }
    }

    function parseTimestamp(uint256 timestamp)
        internal
        pure
        returns (_DateTime memory dt)
    {
        uint256 secondsAccountedFor = 0;
        uint256 buf;
        uint8 i;

        // Year
        dt.year = getYear(timestamp);
        buf = leapYearsBefore(dt.year) - leapYearsBefore(ORIGIN_YEAR);

        secondsAccountedFor += LEAP_YEAR_IN_SECONDS * buf;
        secondsAccountedFor += YEAR_IN_SECONDS * (dt.year - ORIGIN_YEAR - buf);

        // Month
        uint256 secondsInMonth;
        for (i = 1; i <= 12; i++) {
            secondsInMonth = DAY_IN_SECONDS * getDaysInMonth(i, dt.year);
            if (secondsInMonth + secondsAccountedFor > timestamp) {
                dt.month = i;
                break;
            }
            secondsAccountedFor += secondsInMonth;
        }

        // Day
        for (i = 1; i <= getDaysInMonth(dt.month, dt.year); i++) {
            if (DAY_IN_SECONDS + secondsAccountedFor > timestamp) {
                dt.day = i;
                break;
            }
            secondsAccountedFor += DAY_IN_SECONDS;
        }

        // Hour
        dt.hour = getHour(timestamp);

        // Minute
        dt.minute = getMinute(timestamp);

        // Second
        dt.second = getSecond(timestamp);

        // Day of week.
        dt.weekday = getWeekday(timestamp);
    }

    function getYear(uint256 timestamp) public pure returns (uint16) {
        uint256 secondsAccountedFor = 0;
        uint16 year;
        uint256 numLeapYears;

        // Year
        year = uint16(ORIGIN_YEAR + timestamp / YEAR_IN_SECONDS);
        numLeapYears = leapYearsBefore(year) - leapYearsBefore(ORIGIN_YEAR);

        secondsAccountedFor += LEAP_YEAR_IN_SECONDS * numLeapYears;
        secondsAccountedFor +=
            YEAR_IN_SECONDS *
            (year - ORIGIN_YEAR - numLeapYears);

        while (secondsAccountedFor > timestamp) {
            if (isLeapYear(uint16(year - 1))) {
                secondsAccountedFor -= LEAP_YEAR_IN_SECONDS;
            } else {
                secondsAccountedFor -= YEAR_IN_SECONDS;
            }
            year -= 1;
        }
        return year;
    }

    function getMonth(uint256 timestamp) public pure returns (uint8) {
        return parseTimestamp(timestamp).month;
    }

    function getDay(uint256 timestamp) public pure returns (uint8) {
        return parseTimestamp(timestamp).day;
    }

    function getHour(uint256 timestamp) public pure returns (uint8) {
        return uint8((timestamp / 60 / 60) % 24);
    }

    function getMinute(uint256 timestamp) public pure returns (uint8) {
        return uint8((timestamp / 60) % 60);
    }

    function getSecond(uint256 timestamp) public pure returns (uint8) {
        return uint8(timestamp % 60);
    }

    function getWeekday(uint256 timestamp) public pure returns (uint8) {
        return uint8((timestamp / DAY_IN_SECONDS + 4) % 7);
    }

    function toTimestamp(uint16 year, uint8 month, uint8 day)
        public
        pure
        returns (uint256 timestamp)
    {
        return toTimestamp(year, month, day, 0, 0, 0);
    }

    function toTimestamp(uint16 year, uint8 month, uint8 day, uint8 hour)
        public
        pure
        returns (uint256 timestamp)
    {
        return toTimestamp(year, month, day, hour, 0, 0);
    }

    function toTimestamp(
        uint16 year,
        uint8 month,
        uint8 day,
        uint8 hour,
        uint8 minute
    ) public pure returns (uint256 timestamp) {
        return toTimestamp(year, month, day, hour, minute, 0);
    }

    function toTimestamp(
        uint16 year,
        uint8 month,
        uint8 day,
        uint8 hour,
        uint8 minute,
        uint8 second
    ) public pure returns (uint256 timestamp) {
        uint16 i;

        // Year
        for (i = ORIGIN_YEAR; i < year; i++) {
            if (isLeapYear(i)) {
                timestamp += LEAP_YEAR_IN_SECONDS;
            } else {
                timestamp += YEAR_IN_SECONDS;
            }
        }

        // Month
        uint8[12] memory monthDayCounts;
        monthDayCounts[0] = 31;
        if (isLeapYear(year)) {
            monthDayCounts[1] = 29;
        } else {
            monthDayCounts[1] = 28;
        }
        monthDayCounts[2] = 31;
        monthDayCounts[3] = 30;
        monthDayCounts[4] = 31;
        monthDayCounts[5] = 30;
        monthDayCounts[6] = 31;
        monthDayCounts[7] = 31;
        monthDayCounts[8] = 30;
        monthDayCounts[9] = 31;
        monthDayCounts[10] = 30;
        monthDayCounts[11] = 31;

        for (i = 1; i < month; i++) {
            timestamp += DAY_IN_SECONDS * monthDayCounts[i - 1];
        }

        // Day
        timestamp += DAY_IN_SECONDS * (day - 1);

        // Hour
        timestamp += HOUR_IN_SECONDS * (hour);

        // Minute
        timestamp += MINUTE_IN_SECONDS * (minute);

        // Second
        timestamp += second;

        return timestamp;
    }
}

File 3 of 6: ERC20.sol
pragma solidity ^0.5.13;

import "./SafeMath.sol";

/**
 * @title Standard ERC20 token
 *
 * @dev Implementation of the basic standard token.
 * https://eips.ethereum.org/EIPS/eip-20
 * Originally based on code by FirstBlood:
 * https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol
 *
 * This implementation emits additional Approval events, allowing applications to reconstruct the allowance status for
 * all accounts just by listening to said events. Note that this isn't required by the specification, and other
 * compliant implementations may not do it.
 */
contract ERC20 {
    using SafeMath for uint256;

    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowed;

    uint256 private _totalSupply;

    string public name;
    string public symbol;
    uint8 public decimals;

    event Transfer(address indexed from, address indexed to, uint256 value);
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );

    constructor(string memory _name, string memory _symbol, uint8 _decimals) public {
        name = _name;
        symbol = _symbol;
        decimals = _decimals;
    }

    /**
     * @dev Total number of tokens in existence.
     */
    function totalSupply() public view returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev Gets the balance of the specified address.
     * @param owner The address to query the balance of.
     * @return A uint256 representing the amount owned by the passed address.
     */
    function balanceOf(address owner) public view returns (uint256) {
        return _balances[owner];
    }

    /**
     * @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 Transfer token to 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) {
        _transfer(msg.sender, 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) {
        _approve(msg.sender, spender, value);
        return true;
    }

    /**
     * @dev Transfer tokens from one address to another.
     * Note that while this function emits an Approval event, this is not required as per the specification,
     * and other compliant implementations may not emit the event.
     * @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)
    {
        _transfer(from, to, value);
        _approve(from, msg.sender, _allowed[from][msg.sender].sub(value));
        return true;
    }

    /**
     * @dev Increase the amount of tokens that an owner allowed to a spender.
     * approve should be called when _allowed[msg.sender][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
     * Emits an Approval event.
     * @param spender The address which will spend the funds.
     * @param addedValue The amount of tokens to increase the allowance by.
     */
    function increaseAllowance(address spender, uint256 addedValue)
        public
        returns (bool)
    {
        _approve(
            msg.sender,
            spender,
            _allowed[msg.sender][spender].add(addedValue)
        );
        return true;
    }

    /**
     * @dev Decrease the amount of tokens that an owner allowed to a spender.
     * approve should be called when _allowed[msg.sender][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
     * Emits an Approval event.
     * @param spender The address which will spend the funds.
     * @param subtractedValue The amount of tokens to decrease the allowance by.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue)
        public
        returns (bool)
    {
        _approve(
            msg.sender,
            spender,
            _allowed[msg.sender][spender].sub(subtractedValue)
        );
        return true;
    }

    /**
     * @dev Transfer token for a specified addresses.
     * @param from The address to transfer from.
     * @param to The address to transfer to.
     * @param value The amount to be transferred.
     */
    function _transfer(address from, address to, uint256 value) internal {
        require(to != address(0), "ERC20: transfer to the zero address");

        _balances[from] = _balances[from].sub(value);
        _balances[to] = _balances[to].add(value);
        emit Transfer(from, to, value);
    }

    /**
     * @dev Internal function that mints an amount of the token and assigns it to
     * an account. This encapsulates the modification of balances such that the
     * proper events are emitted.
     * @param account The account that will receive the created tokens.
     * @param value The amount that will be created.
     */
    function _mint(address account, uint256 value) internal {
        require(account != address(0), "ERC20: mint to the zero address");

        _totalSupply = _totalSupply.add(value);
        _balances[account] = _balances[account].add(value);
        emit Transfer(address(0), account, value);
    }

    /**
     * @dev Internal function that burns an amount of the token of a given
     * account.
     * @param account The account whose tokens will be burnt.
     * @param value The amount that will be burnt.
     */
    function _burn(address account, uint256 value) internal {
        require(account != address(0), "ERC20: burn from the zero address");

        _totalSupply = _totalSupply.sub(value);
        _balances[account] = _balances[account].sub(value);
        emit Transfer(account, address(0), value);
    }

    /**
     * @dev Approve an address to spend another addresses' tokens.
     * @param owner The address that owns the tokens.
     * @param spender The address that will spend the tokens.
     * @param value The number of tokens that can be spent.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowed[owner][spender] = value;
        emit Approval(owner, spender, value);
    }

    /**
     * @dev Internal function that burns an amount of the token of a given
     * account, deducting from the sender's allowance for said account. Uses the
     * internal burn function.
     * Emits an Approval event (reflecting the reduced allowance).
     * @param account The account whose tokens will be burnt.
     * @param value The amount that will be burnt.
     */
    function _burnFrom(address account, uint256 value) internal {
        _burn(account, value);
        _approve(account, msg.sender, _allowed[account][msg.sender].sub(value));
    }
}

File 4 of 6: Migrations.sol
pragma solidity ^0.5.13;

contract Migrations {
    address public owner;
    uint256 public lastCompletedMigration;

    modifier restricted() {
        if (msg.sender == owner) _;
    }

    constructor() public {
        owner = msg.sender;
    }

    function setCompleted(uint256 completed) public restricted {
        lastCompletedMigration = completed;
    }

    function upgrade(address new_address) public restricted {
        Migrations upgraded = Migrations(new_address);
        upgraded.setCompleted(lastCompletedMigration);
    }
}

File 5 of 6: Ownable.sol
pragma solidity ^0.5.13;

/**
 * @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 private _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() internal {
        _owner = msg.sender;
        emit OwnershipTransferred(address(0), _owner);
    }

    /**
     * @return the address of the owner.
     */
    function owner() public view returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(isOwner(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @return true if `msg.sender` is the owner of the contract.
     */
    function isOwner() public view returns (bool) {
        return msg.sender == _owner;
    }

    /**
     * @dev Allows the current owner to relinquish control of the contract.
     * It will not be possible to call the functions with the `onlyOwner`
     * modifier anymore.
     * @notice Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _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),
            "Ownable: new owner is the zero address"
        );
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

File 6 of 6: SafeMath.sol
pragma solidity ^0.5.13;

/**
 * @title SafeMath
 * @dev Unsigned math operations with safety checks that revert on error.
 */
library SafeMath {
    /**
     * @dev Multiplies two unsigned integers, reverts on overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Integer division of two unsigned integers truncating the quotient, reverts on division by zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        // Solidity only automatically asserts when dividing by 0
        require(b > 0, "SafeMath: division by zero");
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Subtracts two unsigned integers, reverts on overflow (i.e. if subtrahend is greater than minuend).
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b <= a, "SafeMath: subtraction overflow");
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Adds two unsigned integers, reverts on overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @dev Divides two unsigned integers and returns the remainder (unsigned integer modulo),
     * reverts when dividing by zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b != 0, "SafeMath: modulo by zero");
        return a % b;
    }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"string","name":"_tokenName","type":"string"},{"internalType":"string","name":"_tokenSymbol","type":"string"},{"internalType":"uint8","name":"_decimals","type":"uint8"},{"internalType":"address","name":"_tokenIssuer","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"holder","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Oxydated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newTimestamp","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"oldTimestamp","type":"uint256"}],"name":"TimestampComparaison","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"constant":true,"inputs":[],"name":"Now","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address[]","name":"_recipients","type":"address[]"},{"internalType":"uint256[]","name":"_values","type":"uint256[]"}],"name":"burns","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"getBalanceEthSmartContract","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"getDay","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":true,"inputs":[{"internalType":"uint8","name":"month","type":"uint8"},{"internalType":"uint16","name":"year","type":"uint16"}],"name":"getDaysInMonth","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"getHour","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"getMinute","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"getMonth","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"getSecond","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"getWeekday","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"getYear","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"uint16","name":"year","type":"uint16"}],"name":"isLeapYear","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"lastOxydationDate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"year","type":"uint256"}],"name":"leapYearsBefore","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_tokenAmount","type":"uint256"}],"name":"mint","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address[]","name":"_recipients","type":"address[]"},{"internalType":"uint256[]","name":"_values","type":"uint256[]"}],"name":"mints","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address[]","name":"holders","type":"address[]"}],"name":"oxydation","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_addressOneSilverFees","type":"address"}],"name":"setTokenIssuer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint16","name":"year","type":"uint16"},{"internalType":"uint8","name":"month","type":"uint8"},{"internalType":"uint8","name":"day","type":"uint8"},{"internalType":"uint8","name":"hour","type":"uint8"},{"internalType":"uint8","name":"minute","type":"uint8"}],"name":"toTimestamp","outputs":[{"internalType":"uint256","name":"timestamp","type":"uint256"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":true,"inputs":[{"internalType":"uint16","name":"year","type":"uint16"},{"internalType":"uint8","name":"month","type":"uint8"},{"internalType":"uint8","name":"day","type":"uint8"},{"internalType":"uint8","name":"hour","type":"uint8"}],"name":"toTimestamp","outputs":[{"internalType":"uint256","name":"timestamp","type":"uint256"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":true,"inputs":[{"internalType":"uint16","name":"year","type":"uint16"},{"internalType":"uint8","name":"month","type":"uint8"},{"internalType":"uint8","name":"day","type":"uint8"}],"name":"toTimestamp","outputs":[{"internalType":"uint256","name":"timestamp","type":"uint256"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":true,"inputs":[{"internalType":"uint16","name":"year","type":"uint16"},{"internalType":"uint8","name":"month","type":"uint8"},{"internalType":"uint8","name":"day","type":"uint8"},{"internalType":"uint8","name":"hour","type":"uint8"},{"internalType":"uint8","name":"minute","type":"uint8"},{"internalType":"uint8","name":"second","type":"uint8"}],"name":"toTimestamp","outputs":[{"internalType":"uint256","name":"timestamp","type":"uint256"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":true,"inputs":[],"name":"tokenIssuer","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawEther","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604051620035aa380380620035aa833981810160405260808110156200003757600080fd5b81019080805160405193929190846401000000008211156200005857600080fd5b838201915060208201858111156200006f57600080fd5b82518660018202830111640100000000821117156200008d57600080fd5b8083526020830192505050908051906020019080838360005b83811015620000c3578082015181840152602081019050620000a6565b50505050905090810190601f168015620000f15780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200011557600080fd5b838201915060208201858111156200012c57600080fd5b82518660018202830111640100000000821117156200014a57600080fd5b8083526020830192505050908051906020019080838360005b838110156200018057808201518184015260208101905062000163565b50505050905090810190601f168015620001ae5780820380516001836020036101000a031916815260200191505b5060405260200180519060200190929190805190602001909291905050508383838260039080519060200190620001e79291906200032f565b508160049080519060200190620002009291906200032f565b5080600560006101000a81548160ff021916908360ff16021790555050505033600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a34260078190555080600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505050620003de565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200037257805160ff1916838001178555620003a3565b82800160010185558215620003a3579182015b82811115620003a257825182559160200191906001019062000385565b5b509050620003b29190620003b6565b5090565b620003db91905b80821115620003d7576000816000905550600101620003bd565b5090565b90565b6131bc80620003ee6000396000f3fe60806040526004361061023b5760003560e01c80638c8d98a01161012e578063a457c2d7116100ab578063c28ab8901161006f578063c28ab89014610f4c578063dd62ed3e14611027578063f243c2a7146110ac578063f2fde38b14611103578063fa93f883146111545761023b565b8063a457c2d714610d5a578063a6f0e57714610dcd578063a9059cbb14610e24578063b199993714610e97578063b238ad0e14610ee65761023b565b80639508dc77116100f25780639508dc7714610b1457806395d89b4114610b3f5780639dc29fac14610bcf578063a131e0e514610c2a578063a324ad2414610d055761023b565b80638c8d98a0146109365780638da5cb5b146109a35780638f32d59b146109fa5780639054bdec14610a2957806392d6631314610abd5761023b565b806340c10f19116101bc57806365c728401161018057806365c728401461079657806370a08231146107eb578063715018a6146108505780637f791833146108675780638aa001fc146108e15761023b565b806340c10f191461060957806344d4fd19146106645780634ac1ad781461068f5780635f9efad6146106e457806362ba96871461070f5761023b565b8063291babc311610203578063291babc31461044f578063313ce567146104d557806339509351146105065780633bed33ce146105795780633e239e1a146105b45761023b565b806306fdde031461023d578063095ea7b3146102cd57806309daa7eb1461034057806318160ddd1461039157806323b872dd146103bc575b005b34801561024957600080fd5b506102526111a9565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610292578082015181840152602081019050610277565b50505050905090810190601f1680156102bf5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102d957600080fd5b50610326600480360360408110156102f057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611247565b604051808215151515815260200191505060405180910390f35b34801561034c57600080fd5b5061038f6004803603602081101561036357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061125e565b005b34801561039d57600080fd5b506103a661131c565b6040518082815260200191505060405180910390f35b3480156103c857600080fd5b50610435600480360360608110156103df57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611326565b604051808215151515815260200191505060405180910390f35b34801561045b57600080fd5b506104d36004803603602081101561047257600080fd5b810190808035906020019064010000000081111561048f57600080fd5b8201836020820111156104a157600080fd5b803590602001918460208302840111640100000000831117156104c357600080fd5b90919293919293905050506113d7565b005b3480156104e157600080fd5b506104ea6115b9565b604051808260ff1660ff16815260200191505060405180910390f35b34801561051257600080fd5b5061055f6004803603604081101561052957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506115cc565b604051808215151515815260200191505060405180910390f35b34801561058557600080fd5b506105b26004803603602081101561059c57600080fd5b8101908080359060200190929190505050611671565b005b3480156105c057600080fd5b506105ed600480360360208110156105d757600080fd5b8101908080359060200190929190505050611742565b604051808260ff1660ff16815260200191505060405180910390f35b34801561061557600080fd5b506106626004803603604081101561062c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611769565b005b34801561067057600080fd5b506106796117f1565b6040518082815260200191505060405180910390f35b34801561069b57600080fd5b506106c8600480360360208110156106b257600080fd5b81019080803590602001909291905050506117f9565b604051808260ff1660ff16815260200191505060405180910390f35b3480156106f057600080fd5b506106f961181c565b6040518082815260200191505060405180910390f35b34801561071b57600080fd5b50610780600480360360a081101561073257600080fd5b81019080803561ffff169060200190929190803560ff169060200190929190803560ff169060200190929190803560ff169060200190929190803560ff16906020019092919050505061183b565b6040518082815260200191505060405180910390f35b3480156107a257600080fd5b506107cf600480360360208110156107b957600080fd5b8101908080359060200190929190505050611857565b604051808260ff1660ff16815260200191505060405180910390f35b3480156107f757600080fd5b5061083a6004803603602081101561080e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061186d565b6040518082815260200191505060405180910390f35b34801561085c57600080fd5b506108656118b5565b005b34801561087357600080fd5b506108cb6004803603608081101561088a57600080fd5b81019080803561ffff169060200190929190803560ff169060200190929190803560ff169060200190929190803560ff1690602001909291905050506119f0565b6040518082815260200191505060405180910390f35b3480156108ed57600080fd5b5061091a6004803603602081101561090457600080fd5b8101908080359060200190929190505050611a0b565b604051808260ff1660ff16815260200191505060405180910390f35b34801561094257600080fd5b5061098d6004803603606081101561095957600080fd5b81019080803561ffff169060200190929190803560ff169060200190929190803560ff169060200190929190505050611a1f565b6040518082815260200191505060405180910390f35b3480156109af57600080fd5b506109b8611a3a565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610a0657600080fd5b50610a0f611a64565b604051808215151515815260200191505060405180910390f35b348015610a3557600080fd5b50610aa7600480360360c0811015610a4c57600080fd5b81019080803561ffff169060200190929190803560ff169060200190929190803560ff169060200190929190803560ff169060200190929190803560ff169060200190929190803560ff169060200190929190505050611abc565b6040518082815260200191505060405180910390f35b348015610ac957600080fd5b50610af660048036036020811015610ae057600080fd5b8101908080359060200190929190505050611d47565b604051808261ffff1661ffff16815260200191505060405180910390f35b348015610b2057600080fd5b50610b29611df0565b6040518082815260200191505060405180910390f35b348015610b4b57600080fd5b50610b54611df6565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610b94578082015181840152602081019050610b79565b50505050905090810190601f168015610bc15780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610bdb57600080fd5b50610c2860048036036040811015610bf257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611e94565b005b348015610c3657600080fd5b50610d0360048036036040811015610c4d57600080fd5b8101908080359060200190640100000000811115610c6a57600080fd5b820183602082011115610c7c57600080fd5b80359060200191846020830284011164010000000083111715610c9e57600080fd5b909192939192939080359060200190640100000000811115610cbf57600080fd5b820183602082011115610cd157600080fd5b80359060200191846020830284011164010000000083111715610cf357600080fd5b9091929391929390505050611f1c565b005b348015610d1157600080fd5b50610d3e60048036036020811015610d2857600080fd5b8101908080359060200190929190505050611fff565b604051808260ff1660ff16815260200191505060405180910390f35b348015610d6657600080fd5b50610db360048036036040811015610d7d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612015565b604051808215151515815260200191505060405180910390f35b348015610dd957600080fd5b50610e0a60048036036020811015610df057600080fd5b81019080803561ffff1690602001909291905050506120ba565b604051808215151515815260200191505060405180910390f35b348015610e3057600080fd5b50610e7d60048036036040811015610e4757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061212f565b604051808215151515815260200191505060405180910390f35b348015610ea357600080fd5b50610ed060048036036020811015610eba57600080fd5b8101908080359060200190929190505050612146565b6040518082815260200191505060405180910390f35b348015610ef257600080fd5b50610f3060048036036040811015610f0957600080fd5b81019080803560ff169060200190929190803561ffff169060200190929190505050612179565b604051808260ff1660ff16815260200191505060405180910390f35b348015610f5857600080fd5b5061102560048036036040811015610f6f57600080fd5b8101908080359060200190640100000000811115610f8c57600080fd5b820183602082011115610f9e57600080fd5b80359060200191846020830284011164010000000083111715610fc057600080fd5b909192939192939080359060200190640100000000811115610fe157600080fd5b820183602082011115610ff357600080fd5b8035906020019184602083028401116401000000008311171561101557600080fd5b9091929391929390505050612245565b005b34801561103357600080fd5b506110966004803603604081101561104a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612328565b6040518082815260200191505060405180910390f35b3480156110b857600080fd5b506110c16123af565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561110f57600080fd5b506111526004803603602081101561112657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506123d5565b005b34801561116057600080fd5b5061118d6004803603602081101561117757600080fd5b810190808035906020019092919050505061245b565b604051808260ff1660ff16815260200191505060405180910390f35b60038054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561123f5780601f106112145761010080835404028352916020019161123f565b820191906000526020600020905b81548152906001019060200180831161122257829003601f168201915b505050505081565b6000611254338484612478565b6001905092915050565b611266611a64565b6112d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600254905090565b600061133384848461266f565b6113cc84336113c785600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461288590919063ffffffff16565b612478565b600190509392505050565b60008090505b828290508110156115ad577fdb5665b0a3d4192e2580326487cbca8068d6897d382d150f9665263f17386594611414600754611fff565b61141d42611fff565b604051808360ff1681526020018260ff1681526020019250505060405180910390a161144842611fff565b60ff16611456600754611fff565b60ff16146115a057600061149184848481811061146f57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1661186d565b905060006114aa6104b08361290e90919063ffffffff16565b90506114de8585858181106114bb57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff168261299d565b61150a600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682612b3b565b7fb84a7337d97206cb6d967bf78ef8dd1ffd7f1528bb24f00c4c3705c9438566f585858581811061153757fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1682604051808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060405180910390a150505b80806001019150506113dd565b50426007819055505050565b600560009054906101000a900460ff1681565b6000611667338461166285600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612cf690919063ffffffff16565b612478565b6001905092915050565b611679611a64565b6116eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60006116f5611a3a565b90508073ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f1935050505015801561173d573d6000803e3d6000fd5b505050565b60006018603c80848161175157fe5b048161175957fe5b048161176157fe5b069050919050565b611771611a64565b6117e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6117ed8282612b3b565b5050565b600042905090565b60006007600462015180848161180b57fe5b04018161181457fe5b069050919050565b60003073ffffffffffffffffffffffffffffffffffffffff1631905090565b600061184c86868686866000611abc565b905095945050505050565b600061186282612d7e565b604001519050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6118bd611a64565b61192f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000611a0185858585600080611abc565b9050949350505050565b6000603c8281611a1757fe5b069050919050565b6000611a318484846000806000611abc565b90509392505050565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614905090565b6000806107b290505b8761ffff168161ffff161015611b0857611ade816120ba565b15611af1576301e2850082019150611afb565b6301e13380820191505b8080600101915050611ac5565b611b10613061565b601f816000600c8110611b1f57fe5b602002019060ff16908160ff1681525050611b39896120ba565b15611b6357601d816001600c8110611b4d57fe5b602002019060ff16908160ff1681525050611b84565b601c816001600c8110611b7257fe5b602002019060ff16908160ff16815250505b601f816002600c8110611b9357fe5b602002019060ff16908160ff1681525050601e816003600c8110611bb357fe5b602002019060ff16908160ff1681525050601f816004600c8110611bd357fe5b602002019060ff16908160ff1681525050601e816005600c8110611bf357fe5b602002019060ff16908160ff1681525050601f816006600c8110611c1357fe5b602002019060ff16908160ff1681525050601f816007600c8110611c3357fe5b602002019060ff16908160ff1681525050601e816008600c8110611c5357fe5b602002019060ff16908160ff1681525050601f816009600c8110611c7357fe5b602002019060ff16908160ff1681525050601e81600a600c8110611c9357fe5b602002019060ff16908160ff1681525050601f81600b600c8110611cb357fe5b602002019060ff16908160ff1681525050600191505b8760ff168261ffff161015611d0957806001830361ffff16600c8110611ceb57fe5b602002015160ff166201518002830192508180600101925050611cc9565b6001870360ff166201518002830192508560ff16610e1002830192508460ff16603c02830192508360ff168301925082925050509695505050505050565b600080600090506000806301e133808581611d5e57fe5b046107b261ffff16019150611d786107b261ffff16612146565b611d858361ffff16612146565b039050806301e285000283019250806107b2830361ffff16036301e1338002830192505b84831115611de557611dbd600183036120ba565b15611dd0576301e2850083039250611dda565b6301e13380830392505b600182039150611da9565b819350505050919050565b60075481565b60048054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611e8c5780601f10611e6157610100808354040283529160200191611e8c565b820191906000526020600020905b815481529060010190602001808311611e6f57829003601f168201915b505050505081565b611e9c611a64565b611f0e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b611f18828261299d565b5050565b611f24611a64565b611f96576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60008090505b84849050811015611ff857611feb858583818110611fb657fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff16848484818110611fdf57fe5b90506020020135611e94565b8080600101915050611f9c565b5050505050565b600061200a82612d7e565b602001519050919050565b60006120b033846120ab85600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461288590919063ffffffff16565b612478565b6001905092915050565b60008060048361ffff16816120cb57fe5b0661ffff16146120de576000905061212a565b600060648361ffff16816120ee57fe5b0661ffff1614612101576001905061212a565b60006101908361ffff168161211257fe5b0661ffff1614612125576000905061212a565b600190505b919050565b600061213c33848461266f565b6001905092915050565b6000600182039150610190828161215957fe5b046064838161216457fe5b046004848161216f57fe5b0403019050919050565b600060018360ff161480612190575060038360ff16145b8061219e575060058360ff16145b806121ac575060078360ff16145b806121ba575060088360ff16145b806121c85750600a8360ff16145b806121d65750600c8360ff16145b156121e457601f905061223f565b60048360ff1614806121f9575060068360ff16145b80612207575060098360ff16145b806122155750600b8360ff16145b1561222357601e905061223f565b61222c826120ba565b1561223a57601d905061223f565b601c90505b92915050565b61224d611a64565b6122bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60008090505b84849050811015612321576123148585838181106122df57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1684848481811061230857fe5b90506020020135611769565b80806001019150506122c5565b5050505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6123dd611a64565b61244f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b61245881612f1b565b50565b6000603c80838161246857fe5b048161247057fe5b069050919050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156124fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806131646024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612584576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806131216022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806130d86023913960400191505060405180910390fd5b612746816000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461288590919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506127d9816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612cf690919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b6000828211156128fd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525060200191505060405180910390fd5b600082840390508091505092915050565b6000808211612985576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525060200191505060405180910390fd5b600082848161299057fe5b0490508091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a23576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806131436021913960400191505060405180910390fd5b612a388160025461288590919063ffffffff16565b600281905550612a8f816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461288590919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612bde576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b612bf381600254612cf690919063ffffffff16565b600281905550612c4a816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612cf690919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600080828401905083811015612d74576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b612d86613084565b6000809050600080612d9785611d47565b846000019061ffff16908161ffff1681525050612db96107b261ffff16612146565b612dca856000015161ffff16612146565b039150816301e285000283019250816107b285600001510361ffff16036301e1338002830192506000600191505b600c8260ff1611612e4e57612e11828660000151612179565b60ff1662015180029050858482011115612e3c5781856020019060ff16908160ff1681525050612e4e565b80840193508180600101925050612df8565b600191505b612e6585602001518660000151612179565b60ff168260ff1611612eaa57858462015180011115612e955781856040019060ff16908160ff1681525050612eaa565b62015180840193508180600101925050612e53565b612eb386611742565b856060019060ff16908160ff1681525050612ecd8661245b565b856080019060ff16908160ff1681525050612ee786611a0b565b8560a0019060ff16908160ff1681525050612f01866117f9565b8560c0019060ff16908160ff168152505050505050919050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612fa1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806130fb6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b604051806101800160405280600c90602082028038833980820191505090505090565b6040518060e00160405280600061ffff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152509056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373a265627a7a72315820f5f7490ab99e32311f461d6aa0b5e73ebce8593c6c9a31d700a32b37ff1a65a264736f6c634300050d0032000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000800000000000000000000000006f9230d343884879cfe77576a81062d651a008c00000000000000000000000000000000000000000000000000000000000000094f6e6553696c7665720000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000353564f0000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061023b5760003560e01c80638c8d98a01161012e578063a457c2d7116100ab578063c28ab8901161006f578063c28ab89014610f4c578063dd62ed3e14611027578063f243c2a7146110ac578063f2fde38b14611103578063fa93f883146111545761023b565b8063a457c2d714610d5a578063a6f0e57714610dcd578063a9059cbb14610e24578063b199993714610e97578063b238ad0e14610ee65761023b565b80639508dc77116100f25780639508dc7714610b1457806395d89b4114610b3f5780639dc29fac14610bcf578063a131e0e514610c2a578063a324ad2414610d055761023b565b80638c8d98a0146109365780638da5cb5b146109a35780638f32d59b146109fa5780639054bdec14610a2957806392d6631314610abd5761023b565b806340c10f19116101bc57806365c728401161018057806365c728401461079657806370a08231146107eb578063715018a6146108505780637f791833146108675780638aa001fc146108e15761023b565b806340c10f191461060957806344d4fd19146106645780634ac1ad781461068f5780635f9efad6146106e457806362ba96871461070f5761023b565b8063291babc311610203578063291babc31461044f578063313ce567146104d557806339509351146105065780633bed33ce146105795780633e239e1a146105b45761023b565b806306fdde031461023d578063095ea7b3146102cd57806309daa7eb1461034057806318160ddd1461039157806323b872dd146103bc575b005b34801561024957600080fd5b506102526111a9565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610292578082015181840152602081019050610277565b50505050905090810190601f1680156102bf5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102d957600080fd5b50610326600480360360408110156102f057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611247565b604051808215151515815260200191505060405180910390f35b34801561034c57600080fd5b5061038f6004803603602081101561036357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061125e565b005b34801561039d57600080fd5b506103a661131c565b6040518082815260200191505060405180910390f35b3480156103c857600080fd5b50610435600480360360608110156103df57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611326565b604051808215151515815260200191505060405180910390f35b34801561045b57600080fd5b506104d36004803603602081101561047257600080fd5b810190808035906020019064010000000081111561048f57600080fd5b8201836020820111156104a157600080fd5b803590602001918460208302840111640100000000831117156104c357600080fd5b90919293919293905050506113d7565b005b3480156104e157600080fd5b506104ea6115b9565b604051808260ff1660ff16815260200191505060405180910390f35b34801561051257600080fd5b5061055f6004803603604081101561052957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506115cc565b604051808215151515815260200191505060405180910390f35b34801561058557600080fd5b506105b26004803603602081101561059c57600080fd5b8101908080359060200190929190505050611671565b005b3480156105c057600080fd5b506105ed600480360360208110156105d757600080fd5b8101908080359060200190929190505050611742565b604051808260ff1660ff16815260200191505060405180910390f35b34801561061557600080fd5b506106626004803603604081101561062c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611769565b005b34801561067057600080fd5b506106796117f1565b6040518082815260200191505060405180910390f35b34801561069b57600080fd5b506106c8600480360360208110156106b257600080fd5b81019080803590602001909291905050506117f9565b604051808260ff1660ff16815260200191505060405180910390f35b3480156106f057600080fd5b506106f961181c565b6040518082815260200191505060405180910390f35b34801561071b57600080fd5b50610780600480360360a081101561073257600080fd5b81019080803561ffff169060200190929190803560ff169060200190929190803560ff169060200190929190803560ff169060200190929190803560ff16906020019092919050505061183b565b6040518082815260200191505060405180910390f35b3480156107a257600080fd5b506107cf600480360360208110156107b957600080fd5b8101908080359060200190929190505050611857565b604051808260ff1660ff16815260200191505060405180910390f35b3480156107f757600080fd5b5061083a6004803603602081101561080e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061186d565b6040518082815260200191505060405180910390f35b34801561085c57600080fd5b506108656118b5565b005b34801561087357600080fd5b506108cb6004803603608081101561088a57600080fd5b81019080803561ffff169060200190929190803560ff169060200190929190803560ff169060200190929190803560ff1690602001909291905050506119f0565b6040518082815260200191505060405180910390f35b3480156108ed57600080fd5b5061091a6004803603602081101561090457600080fd5b8101908080359060200190929190505050611a0b565b604051808260ff1660ff16815260200191505060405180910390f35b34801561094257600080fd5b5061098d6004803603606081101561095957600080fd5b81019080803561ffff169060200190929190803560ff169060200190929190803560ff169060200190929190505050611a1f565b6040518082815260200191505060405180910390f35b3480156109af57600080fd5b506109b8611a3a565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610a0657600080fd5b50610a0f611a64565b604051808215151515815260200191505060405180910390f35b348015610a3557600080fd5b50610aa7600480360360c0811015610a4c57600080fd5b81019080803561ffff169060200190929190803560ff169060200190929190803560ff169060200190929190803560ff169060200190929190803560ff169060200190929190803560ff169060200190929190505050611abc565b6040518082815260200191505060405180910390f35b348015610ac957600080fd5b50610af660048036036020811015610ae057600080fd5b8101908080359060200190929190505050611d47565b604051808261ffff1661ffff16815260200191505060405180910390f35b348015610b2057600080fd5b50610b29611df0565b6040518082815260200191505060405180910390f35b348015610b4b57600080fd5b50610b54611df6565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610b94578082015181840152602081019050610b79565b50505050905090810190601f168015610bc15780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610bdb57600080fd5b50610c2860048036036040811015610bf257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611e94565b005b348015610c3657600080fd5b50610d0360048036036040811015610c4d57600080fd5b8101908080359060200190640100000000811115610c6a57600080fd5b820183602082011115610c7c57600080fd5b80359060200191846020830284011164010000000083111715610c9e57600080fd5b909192939192939080359060200190640100000000811115610cbf57600080fd5b820183602082011115610cd157600080fd5b80359060200191846020830284011164010000000083111715610cf357600080fd5b9091929391929390505050611f1c565b005b348015610d1157600080fd5b50610d3e60048036036020811015610d2857600080fd5b8101908080359060200190929190505050611fff565b604051808260ff1660ff16815260200191505060405180910390f35b348015610d6657600080fd5b50610db360048036036040811015610d7d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612015565b604051808215151515815260200191505060405180910390f35b348015610dd957600080fd5b50610e0a60048036036020811015610df057600080fd5b81019080803561ffff1690602001909291905050506120ba565b604051808215151515815260200191505060405180910390f35b348015610e3057600080fd5b50610e7d60048036036040811015610e4757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061212f565b604051808215151515815260200191505060405180910390f35b348015610ea357600080fd5b50610ed060048036036020811015610eba57600080fd5b8101908080359060200190929190505050612146565b6040518082815260200191505060405180910390f35b348015610ef257600080fd5b50610f3060048036036040811015610f0957600080fd5b81019080803560ff169060200190929190803561ffff169060200190929190505050612179565b604051808260ff1660ff16815260200191505060405180910390f35b348015610f5857600080fd5b5061102560048036036040811015610f6f57600080fd5b8101908080359060200190640100000000811115610f8c57600080fd5b820183602082011115610f9e57600080fd5b80359060200191846020830284011164010000000083111715610fc057600080fd5b909192939192939080359060200190640100000000811115610fe157600080fd5b820183602082011115610ff357600080fd5b8035906020019184602083028401116401000000008311171561101557600080fd5b9091929391929390505050612245565b005b34801561103357600080fd5b506110966004803603604081101561104a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612328565b6040518082815260200191505060405180910390f35b3480156110b857600080fd5b506110c16123af565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561110f57600080fd5b506111526004803603602081101561112657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506123d5565b005b34801561116057600080fd5b5061118d6004803603602081101561117757600080fd5b810190808035906020019092919050505061245b565b604051808260ff1660ff16815260200191505060405180910390f35b60038054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561123f5780601f106112145761010080835404028352916020019161123f565b820191906000526020600020905b81548152906001019060200180831161122257829003601f168201915b505050505081565b6000611254338484612478565b6001905092915050565b611266611a64565b6112d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600254905090565b600061133384848461266f565b6113cc84336113c785600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461288590919063ffffffff16565b612478565b600190509392505050565b60008090505b828290508110156115ad577fdb5665b0a3d4192e2580326487cbca8068d6897d382d150f9665263f17386594611414600754611fff565b61141d42611fff565b604051808360ff1681526020018260ff1681526020019250505060405180910390a161144842611fff565b60ff16611456600754611fff565b60ff16146115a057600061149184848481811061146f57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1661186d565b905060006114aa6104b08361290e90919063ffffffff16565b90506114de8585858181106114bb57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff168261299d565b61150a600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682612b3b565b7fb84a7337d97206cb6d967bf78ef8dd1ffd7f1528bb24f00c4c3705c9438566f585858581811061153757fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1682604051808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060405180910390a150505b80806001019150506113dd565b50426007819055505050565b600560009054906101000a900460ff1681565b6000611667338461166285600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612cf690919063ffffffff16565b612478565b6001905092915050565b611679611a64565b6116eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60006116f5611a3a565b90508073ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f1935050505015801561173d573d6000803e3d6000fd5b505050565b60006018603c80848161175157fe5b048161175957fe5b048161176157fe5b069050919050565b611771611a64565b6117e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6117ed8282612b3b565b5050565b600042905090565b60006007600462015180848161180b57fe5b04018161181457fe5b069050919050565b60003073ffffffffffffffffffffffffffffffffffffffff1631905090565b600061184c86868686866000611abc565b905095945050505050565b600061186282612d7e565b604001519050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6118bd611a64565b61192f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000611a0185858585600080611abc565b9050949350505050565b6000603c8281611a1757fe5b069050919050565b6000611a318484846000806000611abc565b90509392505050565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614905090565b6000806107b290505b8761ffff168161ffff161015611b0857611ade816120ba565b15611af1576301e2850082019150611afb565b6301e13380820191505b8080600101915050611ac5565b611b10613061565b601f816000600c8110611b1f57fe5b602002019060ff16908160ff1681525050611b39896120ba565b15611b6357601d816001600c8110611b4d57fe5b602002019060ff16908160ff1681525050611b84565b601c816001600c8110611b7257fe5b602002019060ff16908160ff16815250505b601f816002600c8110611b9357fe5b602002019060ff16908160ff1681525050601e816003600c8110611bb357fe5b602002019060ff16908160ff1681525050601f816004600c8110611bd357fe5b602002019060ff16908160ff1681525050601e816005600c8110611bf357fe5b602002019060ff16908160ff1681525050601f816006600c8110611c1357fe5b602002019060ff16908160ff1681525050601f816007600c8110611c3357fe5b602002019060ff16908160ff1681525050601e816008600c8110611c5357fe5b602002019060ff16908160ff1681525050601f816009600c8110611c7357fe5b602002019060ff16908160ff1681525050601e81600a600c8110611c9357fe5b602002019060ff16908160ff1681525050601f81600b600c8110611cb357fe5b602002019060ff16908160ff1681525050600191505b8760ff168261ffff161015611d0957806001830361ffff16600c8110611ceb57fe5b602002015160ff166201518002830192508180600101925050611cc9565b6001870360ff166201518002830192508560ff16610e1002830192508460ff16603c02830192508360ff168301925082925050509695505050505050565b600080600090506000806301e133808581611d5e57fe5b046107b261ffff16019150611d786107b261ffff16612146565b611d858361ffff16612146565b039050806301e285000283019250806107b2830361ffff16036301e1338002830192505b84831115611de557611dbd600183036120ba565b15611dd0576301e2850083039250611dda565b6301e13380830392505b600182039150611da9565b819350505050919050565b60075481565b60048054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611e8c5780601f10611e6157610100808354040283529160200191611e8c565b820191906000526020600020905b815481529060010190602001808311611e6f57829003601f168201915b505050505081565b611e9c611a64565b611f0e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b611f18828261299d565b5050565b611f24611a64565b611f96576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60008090505b84849050811015611ff857611feb858583818110611fb657fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff16848484818110611fdf57fe5b90506020020135611e94565b8080600101915050611f9c565b5050505050565b600061200a82612d7e565b602001519050919050565b60006120b033846120ab85600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461288590919063ffffffff16565b612478565b6001905092915050565b60008060048361ffff16816120cb57fe5b0661ffff16146120de576000905061212a565b600060648361ffff16816120ee57fe5b0661ffff1614612101576001905061212a565b60006101908361ffff168161211257fe5b0661ffff1614612125576000905061212a565b600190505b919050565b600061213c33848461266f565b6001905092915050565b6000600182039150610190828161215957fe5b046064838161216457fe5b046004848161216f57fe5b0403019050919050565b600060018360ff161480612190575060038360ff16145b8061219e575060058360ff16145b806121ac575060078360ff16145b806121ba575060088360ff16145b806121c85750600a8360ff16145b806121d65750600c8360ff16145b156121e457601f905061223f565b60048360ff1614806121f9575060068360ff16145b80612207575060098360ff16145b806122155750600b8360ff16145b1561222357601e905061223f565b61222c826120ba565b1561223a57601d905061223f565b601c90505b92915050565b61224d611a64565b6122bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60008090505b84849050811015612321576123148585838181106122df57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1684848481811061230857fe5b90506020020135611769565b80806001019150506122c5565b5050505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6123dd611a64565b61244f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b61245881612f1b565b50565b6000603c80838161246857fe5b048161247057fe5b069050919050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156124fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806131646024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612584576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806131216022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806130d86023913960400191505060405180910390fd5b612746816000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461288590919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506127d9816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612cf690919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b6000828211156128fd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525060200191505060405180910390fd5b600082840390508091505092915050565b6000808211612985576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525060200191505060405180910390fd5b600082848161299057fe5b0490508091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a23576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806131436021913960400191505060405180910390fd5b612a388160025461288590919063ffffffff16565b600281905550612a8f816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461288590919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612bde576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b612bf381600254612cf690919063ffffffff16565b600281905550612c4a816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612cf690919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600080828401905083811015612d74576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b612d86613084565b6000809050600080612d9785611d47565b846000019061ffff16908161ffff1681525050612db96107b261ffff16612146565b612dca856000015161ffff16612146565b039150816301e285000283019250816107b285600001510361ffff16036301e1338002830192506000600191505b600c8260ff1611612e4e57612e11828660000151612179565b60ff1662015180029050858482011115612e3c5781856020019060ff16908160ff1681525050612e4e565b80840193508180600101925050612df8565b600191505b612e6585602001518660000151612179565b60ff168260ff1611612eaa57858462015180011115612e955781856040019060ff16908160ff1681525050612eaa565b62015180840193508180600101925050612e53565b612eb386611742565b856060019060ff16908160ff1681525050612ecd8661245b565b856080019060ff16908160ff1681525050612ee786611a0b565b8560a0019060ff16908160ff1681525050612f01866117f9565b8560c0019060ff16908160ff168152505050505050919050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612fa1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806130fb6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b604051806101800160405280600c90602082028038833980820191505090505090565b6040518060e00160405280600061ffff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152509056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373a265627a7a72315820f5f7490ab99e32311f461d6aa0b5e73ebce8593c6c9a31d700a32b37ff1a65a264736f6c634300050d0032

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000800000000000000000000000006f9230d343884879cfe77576a81062d651a008c00000000000000000000000000000000000000000000000000000000000000094f6e6553696c7665720000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000353564f0000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _tokenName (string): OneSilver
Arg [1] : _tokenSymbol (string): SVO
Arg [2] : _decimals (uint8): 8
Arg [3] : _tokenIssuer (address): 0x06F9230d343884879CFE77576a81062d651A008c

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [3] : 00000000000000000000000006f9230d343884879cfe77576a81062d651a008c
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [5] : 4f6e6553696c7665720000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [7] : 53564f0000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

104:2816:5:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;833:18:1;;8:9:-1;5:2;;;30:1;27;20:12;5:2;833:18:1;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;833:18:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3238:148;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3238:148:1;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;3238:148:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;747:126:5;;8:9:-1;5:2;;;30:1;27;20:12;5:2;747:126:5;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;747:126:5;;;;;;;;;;;;;;;;;;;:::i;:::-;;1358:91:1;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1358:91:1;;;:::i;:::-;;;;;;;;;;;;;;;;;;;3859:251;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3859:251:1;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;3859:251:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;2174:660:5;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2174:660:5;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;2174:660:5;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;2174:660:5;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;2174:660:5;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;2174:660:5;;;;;;;;;;;;:::i;:::-;;885:21:1;;8:9:-1;5:2;;;30:1;27;20:12;5:2;885:21:1;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;4636:276;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4636:276:1;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;4636:276:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;1943:179:5;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1943:179:5;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;1943:179:5;;;;;;;;;;;;;;;;;:::i;:::-;;4213:123:0;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4213:123:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;4213:123:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;881:109:5;;8:9:-1;5:2;;;30:1;27;20:12;5:2;881:109:5;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;881:109:5;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;2842:73;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2842:73:5;;;:::i;:::-;;;;;;;;;;;;;;;;;;;4593:136:0;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4593:136:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;4593:136:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;1771:115:5;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1771:115:5;;;:::i;:::-;;;;;;;;;;;;;;;;;;;5156:248:0;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5156:248:0;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;5156:248:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;4087:118;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4087:118:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;4087:118:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;1668:106:1;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1668:106:1;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;1668:106:1;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;1534:140:3;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1534:140:3;;;:::i;:::-;;4939:209:0;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4939:209:0;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;4939:209:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;4472:113;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4472:113:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;4472:113:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;4737:194;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4737:194:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;4737:194:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;708:79:3;;8:9:-1;5:2;;;30:1;27;20:12;5:2;708:79:3;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;1079:92;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1079:92:3;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;5412:1443:0;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5412:1443:0;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;5412:1443:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;3118:831;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3118:831:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;3118:831:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;227:32:5;;8:9:-1;5:2;;;30:1;27;20:12;5:2;227:32:5;;;:::i;:::-;;;;;;;;;;;;;;;;;;;858:20:1;;8:9:-1;5:2;;;30:1;27;20:12;5:2;858:20:1;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;858:20:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1270:107:5;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1270:107:5;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;1270:107:5;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;1429:220;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1429:220:5;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;1429:220:5;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;1429:220:5;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;1429:220:5;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;1429:220:5;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;1429:220:5;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;1429:220:5;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;1429:220:5;;;;;;;;;;;;:::i;:::-;;3957:122:0;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3957:122:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;3957:122:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;5443:286:1;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5443:286:1;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;5443:286:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;672:297:0;;8:9:-1;5:2;;;30:1;27;20:12;5:2;672:297:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;672:297:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;2451:140:1;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2451:140:1;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;2451:140:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;977:149:0;;8:9:-1;5:2;;;30:1;27;20:12;5:2;977:149:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;977:149:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;1134:575;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1134:575:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;1134:575:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;1042:220:5;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1042:220:5;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;1042:220:5;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;1042:220:5;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;1042:220:5;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;1042:220:5;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;1042:220:5;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;1042:220:5;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;1042:220:5;;;;;;;;;;;;:::i;:::-;;2113:163:1;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2113:163:1;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;2113:163:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;194:26:5;;8:9:-1;5:2;;;30:1;27;20:12;5:2;194:26:5;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;1851:109:3;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1851:109:3;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;1851:109:3;;;;;;;;;;;;;;;;;;;:::i;:::-;;4344:120:0;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4344:120:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;4344:120:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;833:18:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;3238:148::-;3303:4;3320:36;3329:10;3341:7;3350:5;3320:8;:36::i;:::-;3374:4;3367:11;;3238:148;;;;:::o;747:126:5:-;920:9:3;:7;:9::i;:::-;912:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;844:21:5;830:11;;:35;;;;;;;;;;;;;;;;;;747:126;:::o;1358:91:1:-;1402:7;1429:12;;1422:19;;1358:91;:::o;3859:251::-;3956:4;3978:26;3988:4;3994:2;3998:5;3978:9;:26::i;:::-;4015:65;4024:4;4030:10;4042:37;4073:5;4042:8;:14;4051:4;4042:14;;;;;;;;;;;;;;;:26;4057:10;4042:26;;;;;;;;;;;;;;;;:30;;:37;;;;:::i;:::-;4015:8;:65::i;:::-;4098:4;4091:11;;3859:251;;;;;:::o;2174:660:5:-;2246:9;2258:1;2246:13;;2241:552;2265:7;;:14;;2261:1;:18;2241:552;;;2306:64;2327:27;2336:17;;2327:8;:27::i;:::-;2356:13;2365:3;2356:8;:13::i;:::-;2306:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;2420:13;2429:3;2420:8;:13::i;:::-;2389:44;;:27;2398:17;;2389:8;:27::i;:::-;:44;;;2385:397;;2487:22;2512:21;2522:7;;2530:1;2522:10;;;;;;;;;;;;;;;2512:9;:21::i;:::-;2487:46;;2552:15;2570:24;2589:4;2570:14;:18;;:24;;;;:::i;:::-;2552:42;;2641:26;2647:7;;2655:1;2647:10;;;;;;;;;;;;;;;2659:7;2641:5;:26::i;:::-;2686:27;2692:11;;;;;;;;;;;2705:7;2686:5;:27::i;:::-;2737:29;2746:7;;2754:1;2746:10;;;;;;;;;;;;;;;2758:7;2737:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;2385:397;;;2281:3;;;;;;;2241:552;;;;2823:3;2803:17;:23;;;;2174:660;;:::o;885:21:1:-;;;;;;;;;;;;;:::o;4636:276::-;4734:4;4756:126;4779:10;4804:7;4826:45;4860:10;4826:8;:20;4835:10;4826:20;;;;;;;;;;;;;;;:29;4847:7;4826:29;;;;;;;;;;;;;;;;:33;;:45;;;;:::i;:::-;4756:8;:126::i;:::-;4900:4;4893:11;;4636:276;;;;:::o;1943:179:5:-;920:9:3;:7;:9::i;:::-;912:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2010:28:5;2057:15;:13;:15::i;:::-;2010:64;;2085:12;:21;;:29;2107:6;2085:29;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;2085:29:5;977:1:3;1943:179:5;:::o;4213:123:0:-;4270:5;4325:2;4319;4314;4302:9;:14;;;;;;:19;;;;;;4301:26;;;;;;4288:40;;4213:123;;;:::o;881:109:5:-;920:9:3;:7;:9::i;:::-;912:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;958:24:5;964:3;969:12;958:5;:24::i;:::-;881:109;;:::o;2842:73::-;2880:7;2905:3;2897:12;;2842:73;:::o;4593:136:0:-;4653:5;4719:1;4714;376:5;4685:9;:26;;;;;;:30;4684:36;;;;;;4671:50;;4593:136;;;:::o;1771:115:5:-;1830:7;1865:4;1857:21;;;1850:28;;1771:115;:::o;5156:248:0:-;5313:17;5350:46;5362:4;5368:5;5375:3;5380:4;5386:6;5394:1;5350:11;:46::i;:::-;5343:53;;5156:248;;;;;;;:::o;4087:118::-;4143:5;4168:25;4183:9;4168:14;:25::i;:::-;:29;;;4161:36;;4087:118;;;:::o;1668:106:1:-;1723:7;1750:9;:16;1760:5;1750:16;;;;;;;;;;;;;;;;1743:23;;1668:106;;;:::o;1534:140:3:-;920:9;:7;:9::i;:::-;912:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1633:1;1596:40;;1617:6;;;;;;;;;;;1596:40;;;;;;;;;;;;1664:1;1647:6;;:19;;;;;;;;;;;;;;;;;;1534:140::o;4939:209:0:-;5057:17;5099:41;5111:4;5117:5;5124:3;5129:4;5135:1;5138;5099:11;:41::i;:::-;5092:48;;4939:209;;;;;;:::o;4472:113::-;4531:5;4574:2;4562:9;:14;;;;;;4549:28;;4472:113;;;:::o;4737:194::-;4843:17;4885:38;4897:4;4903:5;4910:3;4915:1;4918;4921;4885:11;:38::i;:::-;4878:45;;4737:194;;;;;:::o;708:79:3:-;746:7;773:6;;;;;;;;;;;766:13;;708:79;:::o;1079:92::-;1119:4;1157:6;;;;;;;;;;;1143:20;;:10;:20;;;1136:27;;1079:92;:::o;5412:1443:0:-;5592:17;5622:8;659:4;5665:15;;5660:219;5686:4;5682:8;;:1;:8;;;5660:219;;;5716:13;5727:1;5716:10;:13::i;:::-;5712:156;;;494:8;5750:33;;;;5712:156;;;431:8;5824:28;;;;5712:156;5692:3;;;;;;;5660:219;;;5909:31;;:::i;:::-;5971:2;5951:14;5966:1;5951:17;;;;;;;;;;:22;;;;;;;;;;;5988:16;5999:4;5988:10;:16::i;:::-;5984:126;;;6041:2;6021:14;6036:1;6021:17;;;;;;;;;;:22;;;;;;;;;;;5984:126;;;6096:2;6076:14;6091:1;6076:17;;;;;;;;;;:22;;;;;;;;;;;5984:126;6140:2;6120:14;6135:1;6120:17;;;;;;;;;;:22;;;;;;;;;;;6173:2;6153:14;6168:1;6153:17;;;;;;;;;;:22;;;;;;;;;;;6206:2;6186:14;6201:1;6186:17;;;;;;;;;;:22;;;;;;;;;;;6239:2;6219:14;6234:1;6219:17;;;;;;;;;;:22;;;;;;;;;;;6272:2;6252:14;6267:1;6252:17;;;;;;;;;;:22;;;;;;;;;;;6305:2;6285:14;6300:1;6285:17;;;;;;;;;;:22;;;;;;;;;;;6338:2;6318:14;6333:1;6318:17;;;;;;;;;;:22;;;;;;;;;;;6371:2;6351:14;6366:1;6351:17;;;;;;;;;;:22;;;;;;;;;;;6405:2;6384:14;6399:2;6384:18;;;;;;;;;;:23;;;;;;;;;;;6439:2;6418:14;6433:2;6418:18;;;;;;;;;;:23;;;;;;;;;;;6463:1;6459:5;;6454:106;6470:5;6466:9;;:1;:9;;;6454:106;;;6527:14;6546:1;6542;:5;6527:21;;;;;;;;;;;;;6510:38;;376:5;6510:38;6497:51;;;;6477:3;;;;;;;6454:106;;;6625:1;6619:3;:7;6601:26;;376:5;6601:26;6588:39;;;;6689:4;6670:24;;554:4;6670:24;6657:37;;;;6760:6;6739:28;;610:2;6739:28;6726:41;;;;6812:6;6799:19;;;;;;6838:9;6831:16;;;;5412:1443;;;;;;;;:::o;3118:831::-;3175:6;3194:27;3224:1;3194:31;;3236:11;3258:20;431:8;3336:9;:27;;;;;;659:4;3322:41;;;3308:56;;3414:28;659:4;3414:28;;:15;:28::i;:::-;3390:21;3406:4;3390:21;;:15;:21::i;:::-;:52;3375:67;;3501:12;494:8;3478:35;3455:58;;;;3613:12;659:4;3592;:18;:33;;;431:8;3560:66;3524:102;;;;3639:281;3668:9;3646:19;:31;3639:281;;;3698:28;3723:1;3716:4;:8;3698:10;:28::i;:::-;3694:191;;;494:8;3747:43;;;;3694:191;;;431:8;3831:38;;;;3694:191;3907:1;3899:9;;;;3639:281;;;3937:4;3930:11;;;;;3118:831;;;:::o;227:32:5:-;;;;:::o;858:20:1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;1270:107:5:-;920:9:3;:7;:9::i;:::-;912:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1346:23:5;1352:8;1362:6;1346:5;:23::i;:::-;1270:107;;:::o;1429:220::-;920:9:3;:7;:9::i;:::-;912:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1539:9:5;1551:1;1539:13;;1534:108;1558:11;;:18;;1554:1;:22;1534:108;;;1598:32;1603:11;;1615:1;1603:14;;;;;;;;;;;;;;;1619:7;;1627:1;1619:10;;;;;;;;;;;;;1598:4;:32::i;:::-;1578:3;;;;;;;1534:108;;;;1429:220;;;;:::o;3957:122:0:-;4015:5;4040:25;4055:9;4040:14;:25::i;:::-;:31;;;4033:38;;3957:122;;;:::o;5443:286:1:-;5546:4;5568:131;5591:10;5616:7;5638:50;5672:15;5638:8;:20;5647:10;5638:20;;;;;;;;;;;;;;;:29;5659:7;5638:29;;;;;;;;;;;;;;;;:33;;:50;;;;:::i;:::-;5568:8;:131::i;:::-;5717:4;5710:11;;5443:286;;;;:::o;672:297:0:-;726:4;759:1;754;747:4;:8;;;;;;;;:13;;;743:58;;784:5;777:12;;;;743:58;829:1;822:3;815:4;:10;;;;;;;;:15;;;811:59;;854:4;847:11;;;;811:59;898:1;891:3;884:4;:10;;;;;;;;:15;;;880:60;;923:5;916:12;;;;880:60;957:4;950:11;;672:297;;;;:::o;2451:140:1:-;2512:4;2529:32;2539:10;2551:2;2555:5;2529:9;:32::i;:::-;2579:4;2572:11;;2451:140;;;;:::o;977:149:0:-;1037:7;1065:1;1057:9;;;;1115:3;1108:4;:10;;;;;;1102:3;1095:4;:10;;;;;;1091:1;1084:4;:8;;;;;;:21;:34;1077:41;;977:149;;;:::o;1134:575::-;1232:5;1282:1;1273:5;:10;;;:37;;;;1309:1;1300:5;:10;;;1273:37;:64;;;;1336:1;1327:5;:10;;;1273:64;:91;;;;1363:1;1354:5;:10;;;1273:91;:118;;;;1390:1;1381:5;:10;;;1273:118;:146;;;;1417:2;1408:5;:11;;;1273:146;:174;;;;1445:2;1436:5;:11;;;1273:174;1255:447;;;1481:2;1474:9;;;;1255:447;1514:1;1505:5;:10;;;:24;;;;1528:1;1519:5;:10;;;1505:24;:38;;;;1542:1;1533:5;:10;;;1505:38;:53;;;;1556:2;1547:5;:11;;;1505:53;1501:201;;;1582:2;1575:9;;;;1501:201;1606:16;1617:4;1606:10;:16::i;:::-;1602:100;;;1646:2;1639:9;;;;1602:100;1688:2;1681:9;;1134:575;;;;;:::o;1042:220:5:-;920:9:3;:7;:9::i;:::-;912:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1152:9:5;1164:1;1152:13;;1147:108;1171:11;;:18;;1167:1;:22;1147:108;;;1211:32;1216:11;;1228:1;1216:14;;;;;;;;;;;;;;;1232:7;;1240:1;1232:10;;;;;;;;;;;;;1211:4;:32::i;:::-;1191:3;;;;;;;1147:108;;;;1042:220;;;;:::o;2113:163:1:-;2212:7;2244:8;:15;2253:5;2244:15;;;;;;;;;;;;;;;:24;2260:7;2244:24;;;;;;;;;;;;;;;;2237:31;;2113:163;;;;:::o;194:26:5:-;;;;;;;;;;;;;:::o;1851:109:3:-;920:9;:7;:9::i;:::-;912:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1924:28;1943:8;1924:18;:28::i;:::-;1851:109;:::o;4344:120:0:-;4403:5;4453:2;4447;4435:9;:14;;;;;;4434:21;;;;;;4421:35;;4344:120;;;:::o;7727:332:1:-;7837:1;7820:19;;:5;:19;;;;7812:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7918:1;7899:21;;:7;:21;;;;7891:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7999:5;7972:8;:15;7981:5;7972:15;;;;;;;;;;;;;;;:24;7988:7;7972:24;;;;;;;;;;;;;;;:32;;;;8036:7;8020:31;;8029:5;8020:31;;;8045:5;8020:31;;;;;;;;;;;;;;;;;;7727:332;;;:::o;5957:301::-;6059:1;6045:16;;:2;:16;;;;6037:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6132:26;6152:5;6132:9;:15;6142:4;6132:15;;;;;;;;;;;;;;;;:19;;:26;;;;:::i;:::-;6114:9;:15;6124:4;6114:15;;;;;;;;;;;;;;;:44;;;;6185:24;6203:5;6185:9;:13;6195:2;6185:13;;;;;;;;;;;;;;;;:17;;:24;;;;:::i;:::-;6169:9;:13;6179:2;6169:13;;;;;;;;;;;;;;;:40;;;;6240:2;6225:25;;6234:4;6225:25;;;6244:5;6225:25;;;;;;;;;;;;;;;;;;5957:301;;;:::o;1319:184:4:-;1377:7;1410:1;1405;:6;;1397:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1457:9;1473:1;1469;:5;1457:17;;1494:1;1487:8;;;1319:184;;;;:::o;848:333::-;906:7;1005:1;1001;:5;993:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1048:9;1064:1;1060;:5;;;;;;1048:17;;1172:1;1165:8;;;848:333;;;;:::o;7148:306:1:-;7242:1;7223:21;;:7;:21;;;;7215:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7310:23;7327:5;7310:12;;:16;;:23;;;;:::i;:::-;7295:12;:38;;;;7365:29;7388:5;7365:9;:18;7375:7;7365:18;;;;;;;;;;;;;;;;:22;;:29;;;;:::i;:::-;7344:9;:18;7354:7;7344:18;;;;;;;;;;;;;;;:50;;;;7436:1;7410:36;;7419:7;7410:36;;;7440:5;7410:36;;;;;;;;;;;;;;;;;;7148:306;;:::o;6610:304::-;6704:1;6685:21;;:7;:21;;;;6677:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6770:23;6787:5;6770:12;;:16;;:23;;;;:::i;:::-;6755:12;:38;;;;6825:29;6848:5;6825:9;:18;6835:7;6825:18;;;;;;;;;;;;;;;;:22;;:29;;;;:::i;:::-;6804:9;:18;6814:7;6804:18;;;;;;;;;;;;;;;:50;;;;6891:7;6870:36;;6887:1;6870:36;;;6900:5;6870:36;;;;;;;;;;;;;;;;;;6610:304;;:::o;1591:181:4:-;1649:7;1669:9;1685:1;1681;:5;1669:17;;1710:1;1705;:6;;1697:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1763:1;1756:8;;;1591:181;;;;:::o;1717:1393:0:-;1810:19;;:::i;:::-;1847:27;1877:1;1847:31;;1889:11;1911:7;1958:18;1966:9;1958:7;:18::i;:::-;1948:2;:7;;:28;;;;;;;;;;;2020;659:4;2020:28;;:15;:28::i;:::-;1993:24;2009:2;:7;;;1993:24;;:15;:24::i;:::-;:55;1987:61;;2107:3;494:8;2084:26;2061:49;;;;2187:3;659:4;2163:2;:7;;;:21;:27;;;431:8;2144:47;2121:70;;;;2222:22;2264:1;2260:5;;2255:304;2272:2;2267:1;:7;;;2255:304;;2330:26;2345:1;2348:2;:7;;;2330:14;:26::i;:::-;2313:43;;376:5;2313:43;2296:60;;2414:9;2392:19;2375:14;:36;:48;2371:125;;;2455:1;2444:2;:8;;:12;;;;;;;;;;;2475:5;;2371:125;2533:14;2510:37;;;;2276:3;;;;;;;2255:304;;;2596:1;2592:5;;2587:258;2604:33;2619:2;:8;;;2629:2;:7;;;2604:14;:33::i;:::-;2599:38;;:1;:38;;;2587:258;;2702:9;2680:19;376:5;2663:36;:48;2659:123;;;2741:1;2732:2;:6;;:10;;;;;;;;;;;2761:5;;2659:123;376:5;2796:37;;;;2639:3;;;;;;;2587:258;;;2884:18;2892:9;2884:7;:18::i;:::-;2874:2;:7;;:28;;;;;;;;;;;2946:20;2956:9;2946;:20::i;:::-;2934:2;:9;;:32;;;;;;;;;;;3010:20;3020:9;3010;:20::i;:::-;2998:2;:9;;:32;;;;;;;;;;;3081:21;3092:9;3081:10;:21::i;:::-;3068:2;:10;;:34;;;;;;;;;;;1717:1393;;;;;;;:::o;2110:266:3:-;2218:1;2198:22;;:8;:22;;;;2176:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2331:8;2302:38;;2323:6;;;;;;;;;;;2302:38;;;;;;;;;;;;2360:8;2351:6;;:17;;;;;;;;;;;;;;;;;;2110:266;:::o;104:2816:5:-;;;;;;;;;;;29:2:-1;21:6;17:15;117:4;105:10;97:6;88:34;148:4;140:6;136:17;126:27;;0:157;104:2816:5;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o

Swarm Source

bzzr://f5f7490ab99e32311f461d6aa0b5e73ebce8593c6c9a31d700a32b37ff1a65a2

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
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.